|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
|
|
|
|
|
import { AbstractMesh, Material, Mesh } from "@babylonjs/core"; |
|
|
|
|
import { AbstractMesh, Material, Mesh, PBRMaterial, Texture } from "@babylonjs/core"; |
|
|
|
|
import { PlanComponent } from "src/app/pages/plan/plan.component"; |
|
|
|
|
import { DataManager } from "../../controller/data-manager"; |
|
|
|
|
import { InfoManager } from "../../controller/info-manager"; |
|
|
|
@ -8,6 +8,7 @@ import { ServeManager } from "../../controller/serve-manager";
|
|
|
|
|
import { BuildingStatus } from "../../controller/status/building-status"; |
|
|
|
|
import { StatusManager } from "../../controller/status/status-manager"; |
|
|
|
|
import { BuildingData, BuildingData_ChemicalPlant, BuildingData_Environment, BuildingData_Normal, BuildingType } from "../../model/data/institution/building/building-data"; |
|
|
|
|
import { JYZInfoMoudleType, JYZShowData } from "../../model/data/institution/jyz-show-data"; |
|
|
|
|
import { ModelType } from "../../model/data/model-data/model-data"; |
|
|
|
|
import { FacilityType } from "../../model/data/model-data/model-data-facility"; |
|
|
|
|
import { ModelEditData } from "../../model/data/model-data/model-edit-data"; |
|
|
|
@ -17,6 +18,7 @@ import { BuildingInfo_Environment } from "../../model/info/building/building-inf
|
|
|
|
|
import { BuildingInfo_Normal } from "../../model/info/building/building-info-normal"; |
|
|
|
|
import { ModelInfo_building } from "../../model/info/model/model-info-building"; |
|
|
|
|
import { FacilityInfoByType } from "../../model/info/model/model-info-facility"; |
|
|
|
|
import { BabylonTool } from "../../tool/babylon-tool"; |
|
|
|
|
import { TsTool } from "../../tool/ts-tool"; |
|
|
|
|
import { UIBase } from "../window-base/ui-base"; |
|
|
|
|
import { BuildingUIItem } from "./building-ui-item"; |
|
|
|
@ -24,6 +26,7 @@ import { BuildingUIItem } from "./building-ui-item";
|
|
|
|
|
//建筑界面
|
|
|
|
|
export class BuildingWindow extends UIBase { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* uv动画材质的特殊命名 |
|
|
|
|
*/ |
|
|
|
@ -215,12 +218,13 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
*/ |
|
|
|
|
showJYZInfoModel(type: JYZInfoMoudleType, show: boolean) { |
|
|
|
|
console.log("showJYZInfoModel", type, show); |
|
|
|
|
|
|
|
|
|
if (this.currentJYZInfoMoudleType == type) { |
|
|
|
|
if (show) { |
|
|
|
|
return; //与上次显示的模块相同
|
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
this.showJYZModules(type, show); |
|
|
|
|
this.showJYZModules(type, show); //单纯隐藏
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
@ -230,6 +234,27 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
this.showJYZModules(type, show);//展示本次要展示的内容
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (show) { |
|
|
|
|
if (type == JYZInfoMoudleType.YJCZ) { |
|
|
|
|
//进入应急处置
|
|
|
|
|
} |
|
|
|
|
else {//恢复查看状态
|
|
|
|
|
let showData = DataManager.institutionData.getMoudleShowData(type); |
|
|
|
|
if (showData != null) { |
|
|
|
|
let camera = SceneManager.Instance.defaultCamera; |
|
|
|
|
//showData.cameraData.setDataToCamera(camera);
|
|
|
|
|
let cameraData = showData.cameraData; |
|
|
|
|
BabylonTool.AnimMoveCameraTargetAB(camera, 60, cameraData.target, cameraData.radius, cameraData.alpha, cameraData.beta); |
|
|
|
|
this.showZP(showData.showZP); |
|
|
|
|
PlanComponent.instance.isOpenAwning = showData.showZP; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
if (type == JYZInfoMoudleType.YJCZ) { |
|
|
|
|
//退出应急处置
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -251,7 +276,10 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
this.three = PlanComponent.instance; |
|
|
|
|
this.three.buildingUIItems = this.buildingUIItems |
|
|
|
|
this.buildingUIItems.length ? this.three.beforeOneBuildingID = this.three.buildingUIItems[0].getBuildingID() : null |
|
|
|
|
|
|
|
|
|
let instance = this; |
|
|
|
|
SceneManager.Instance.scene.onBeforeRenderObservable.add(() => { |
|
|
|
|
instance.onUpdate(); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onShow() { |
|
|
|
@ -264,6 +292,11 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
super.onHide(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onUpdate() { |
|
|
|
|
this.updateUVAnim(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -308,10 +341,15 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log("选中建筑", modelInfo); |
|
|
|
|
this.showJYZModules(JYZInfoMoudleType.AQSS, false); |
|
|
|
|
this.showJYZModules(JYZInfoMoudleType.YQHSGX, false); |
|
|
|
|
this.showJYZModules(JYZInfoMoudleType.YQHSGX, false); |
|
|
|
|
|
|
|
|
|
//this.onChangeCurrentBuildingItem(item);
|
|
|
|
|
|
|
|
|
|
// this.three.selectLeftBuilding(item);
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -545,6 +583,11 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
*/ |
|
|
|
|
readonly c_xiaoFang = "XF_"; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 安全疏散 |
|
|
|
|
*/ |
|
|
|
|
readonly c_shuSan = "AQSS_"; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 加油站相关 |
|
|
|
|
*/ |
|
|
|
@ -593,18 +636,22 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
if (TsTool.stringContain(nodeName, "primitive")) { |
|
|
|
|
//复合材质被分解为多个子mesh,不看做特殊意义的对象
|
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(nodeName, this.c_zheDang))//遮挡
|
|
|
|
|
{ |
|
|
|
|
this.currentBuidngItem.createStopByMesh(allNode[i]); |
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(nodeName, this.c_xiaoFang)) //消防
|
|
|
|
|
{ |
|
|
|
|
this.currentBuidngItem.createFacilityByMesh(allNode[i]); |
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(nodeName, this.c_shuSan)) { |
|
|
|
|
this.currentBuidngItem.createAQSSFromMesh(allNode[i]);//安全疏散
|
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(nodeName, this.c_jiaYou))//加油站
|
|
|
|
|
{ |
|
|
|
|
this.currentBuidngItem.createOilingByMesh(allNode[i]); |
|
|
|
|
} |
|
|
|
|
else if (TsTool.stringContain(nodeName, this.c_zheDang))//遮挡
|
|
|
|
|
{ |
|
|
|
|
this.currentBuidngItem.createStopByMesh(allNode[i]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -618,6 +665,11 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
|
|
|
|
|
//#region 加油站基本信息模块的显隐表现
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 箭头UV动画速度 |
|
|
|
|
*/ |
|
|
|
|
readonly c_uvAnimSpeed = 0.001; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 当前查看的加油站信息模块类型 |
|
|
|
|
*/ |
|
|
|
@ -638,6 +690,13 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
*/ |
|
|
|
|
mat_UV: Map<JYZInfoMoudleType, Material[]> = new Map(); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 当前罩棚是否显示 |
|
|
|
|
*/ |
|
|
|
|
currentZPShow: boolean = true; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 展示加油站信息模块 |
|
|
|
|
* @param type
|
|
|
|
@ -659,15 +718,22 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
if (infos != null) { |
|
|
|
|
for (let j = 0; j < infos.length; j++) { |
|
|
|
|
infos[j].playShowAnim(show); |
|
|
|
|
//安全疏散,特殊,要在不显示时隐藏本体
|
|
|
|
|
if (type == JYZInfoMoudleType.AQSS) { |
|
|
|
|
infos[j].setEnable(show); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//阻挡类物体
|
|
|
|
|
let zdByType: FacilityInfoByType[] = []; |
|
|
|
|
if (this.zdByMoudle.has(type)) { |
|
|
|
|
zdByType = this.zdByMoudle.get(type); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
} |
|
|
|
|
for (let i = 0; i < zdByType.length; i++) { |
|
|
|
|
let infos = zdByType[i].facilityInfo; |
|
|
|
|
if (infos != null) { |
|
|
|
@ -676,6 +742,7 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (show) { |
|
|
|
|
this.currentJYZInfoMoudleType = type; |
|
|
|
|
} |
|
|
|
@ -711,6 +778,17 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < allFacilityByType.length; i++) { |
|
|
|
|
let l_facilityByType = allFacilityByType[i]; |
|
|
|
|
|
|
|
|
|
// if (moudleType == JYZInfoMoudleType.XF) //消防-逃生
|
|
|
|
|
// {
|
|
|
|
|
// if (TsTool.stringContain(l_facilityByType.type, FacilityType.XF_TSLX)) {
|
|
|
|
|
// continue;
|
|
|
|
|
// }
|
|
|
|
|
// if (TsTool.stringContain(l_facilityByType.type, FacilityType.XF_SSD)) {
|
|
|
|
|
// continue;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
if (TsTool.stringContain(l_facilityByType.type, zdKey)) { |
|
|
|
|
if (!this.zdByMoudle.has(moudleType)) { |
|
|
|
|
this.zdByMoudle.set(moudleType, []); |
|
|
|
@ -738,6 +816,7 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.currentZPShow = show; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -748,8 +827,8 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
getUVMat(facilityType: FacilityType, mesh: AbstractMesh) { |
|
|
|
|
let moudleType: JYZInfoMoudleType = null; |
|
|
|
|
switch (facilityType) { |
|
|
|
|
case FacilityType.XF_TSLX: |
|
|
|
|
moudleType = JYZInfoMoudleType.TSLX; |
|
|
|
|
case FacilityType.AQSS_TSLX: |
|
|
|
|
moudleType = JYZInfoMoudleType.AQSS; |
|
|
|
|
break; |
|
|
|
|
case FacilityType.JY_SYGX: |
|
|
|
|
moudleType = JYZInfoMoudleType.SYG; |
|
|
|
@ -783,6 +862,7 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
if (!isRepeat)//不重复,就添加进去
|
|
|
|
|
{ |
|
|
|
|
this.mat_UV.get(moudleType).push(l_mat); |
|
|
|
|
console.log("找到uv", l_mat); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -801,54 +881,72 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
for (let i = 0; i < childMesh.length; i++) { |
|
|
|
|
let mat = childMesh[i].material; |
|
|
|
|
if (TsTool.stringContain(mat.name, this.c_MAT_UV)) { |
|
|
|
|
// for(let j =0;j< result.length;j++)
|
|
|
|
|
// {
|
|
|
|
|
// if(mat != result[j])
|
|
|
|
|
// {
|
|
|
|
|
result.push(mat); |
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 加油站信息模块类型 |
|
|
|
|
*/ |
|
|
|
|
export enum JYZInfoMoudleType { |
|
|
|
|
/** |
|
|
|
|
* 消防 |
|
|
|
|
*/ |
|
|
|
|
XF = "XF", |
|
|
|
|
/** |
|
|
|
|
* 加油机 |
|
|
|
|
*/ |
|
|
|
|
JYJ = "JYJ", |
|
|
|
|
/** |
|
|
|
|
* 油罐 |
|
|
|
|
*/ |
|
|
|
|
YG = "YG", |
|
|
|
|
/** |
|
|
|
|
* 输油管 |
|
|
|
|
*/ |
|
|
|
|
SYG = "SYG", |
|
|
|
|
/** |
|
|
|
|
* 油气回收管线 |
|
|
|
|
* uv动画 update |
|
|
|
|
*/ |
|
|
|
|
YQHSGX = "YQHSGX", |
|
|
|
|
/** |
|
|
|
|
* 逃生路线 |
|
|
|
|
*/ |
|
|
|
|
TSLX = "TSLX", |
|
|
|
|
updateUVAnim() { |
|
|
|
|
// console.log("uv", this.mat_UV);
|
|
|
|
|
if (this.mat_UV == null || this.currentJYZInfoMoudleType == null) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let mats = this.mat_UV.get(this.currentJYZInfoMoudleType); |
|
|
|
|
if (mats == null) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < mats.length; i++) { |
|
|
|
|
let mat = mats[i]; |
|
|
|
|
if (mat instanceof PBRMaterial) { |
|
|
|
|
|
|
|
|
|
(mat.albedoTexture as Texture).vOffset += SceneManager.Instance.scene.deltaTime * this.c_uvAnimSpeed; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 罩棚 |
|
|
|
|
* 保存展示模块当前数据 |
|
|
|
|
*/ |
|
|
|
|
ZP = "ZP", |
|
|
|
|
} |
|
|
|
|
saveShowMoudleData() { |
|
|
|
|
|
|
|
|
|
let moudleType = this.currentJYZInfoMoudleType; |
|
|
|
|
let camera = SceneManager.Instance.defaultCamera; |
|
|
|
|
let showZP = this.currentZPShow; |
|
|
|
|
|
|
|
|
|
if (DataManager.institutionData.JYZShowDatas == null) { |
|
|
|
|
DataManager.institutionData.JYZShowDatas = []; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let jyzShowData: JYZShowData = null; |
|
|
|
|
for (let i = 0; i < DataManager.institutionData.JYZShowDatas.length; i++) { |
|
|
|
|
if (DataManager.institutionData.JYZShowDatas[i].moudleType == moudleType) { |
|
|
|
|
jyzShowData = DataManager.institutionData.JYZShowDatas[i]; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (jyzShowData == null) { |
|
|
|
|
jyzShowData = new JYZShowData(moudleType, camera, showZP); |
|
|
|
|
} |
|
|
|
|
jyzShowData.moudleType = moudleType; |
|
|
|
|
jyzShowData.cameraData.getDataFromCamera(camera); |
|
|
|
|
jyzShowData.showZP = showZP; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|