|
|
|
@ -316,8 +316,14 @@ export class FacilityWindow extends UIBase {
|
|
|
|
|
createNewFacilityByMesh(mesh: AbstractMesh, type: FacilityType) { |
|
|
|
|
let facilityData = this.createFacilityDataFromMesh(mesh, type); |
|
|
|
|
//let facilityInfo = this.createFacilityInfoFromMesh(facilityData, mesh, buildingInfo);
|
|
|
|
|
console.log("获取到干粉灭火器", mesh); |
|
|
|
|
this.createNewFacility(facilityData, mesh); |
|
|
|
|
console.log("获取到设备" + type, mesh); |
|
|
|
|
|
|
|
|
|
if (!this.isRepeatFacilityFromMesh(type, mesh.id)) //不重复
|
|
|
|
|
{ |
|
|
|
|
this.createNewFacility(facilityData, mesh); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -637,6 +643,9 @@ export class FacilityWindow extends UIBase {
|
|
|
|
|
else if (TsTool.stringContain(mesh.name, FacilityType.ZD_XF)) { |
|
|
|
|
this.createNewFacilityByMesh(mesh, FacilityType.ZD_XF); |
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(mesh.name, FacilityType.ZD_ZP)) { |
|
|
|
|
this.createNewFacilityByMesh(mesh, FacilityType.ZD_ZP); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -664,6 +673,41 @@ export class FacilityWindow extends UIBase {
|
|
|
|
|
return facilityInfo; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 来自建筑中的设备 是否重复 |
|
|
|
|
*/ |
|
|
|
|
isRepeatFacilityFromMesh(type: FacilityType, id: string) { |
|
|
|
|
let currentBuidngItem = StatusManager.getStatus<BuildingStatus>(BuildingStatus) |
|
|
|
|
.buildingWindow.currentBuidngItem; |
|
|
|
|
if (currentBuidngItem == null) { |
|
|
|
|
alert("请先选中目标建筑"); |
|
|
|
|
// ThreeDimensionalHomeComponent.instance.openSnackBar("请先选中目标建筑");
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
let result = false; |
|
|
|
|
|
|
|
|
|
let facilityInfoByTypes = currentBuidngItem.buildingInfo.ModelInfo.facilityInfos; |
|
|
|
|
if (facilityInfoByTypes != null) { |
|
|
|
|
for (let i = 0; i < facilityInfoByTypes.length; i++) { |
|
|
|
|
if (facilityInfoByTypes[i].type == type) { |
|
|
|
|
let infos = facilityInfoByTypes[i].facilityInfo; |
|
|
|
|
for (let j = 0; j < infos.length; j++) { |
|
|
|
|
if (infos[j].modelData.resName == id) { |
|
|
|
|
result = true; |
|
|
|
|
console.log("重复的设备,不添加"); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|