Browse Source

应急处置,演出系统

dev
刘向辉 3 years ago
parent
commit
0503c77265
  1. 13
      src/app/babylon/controller/serve-manager.ts
  2. 2
      src/app/babylon/model/info/mark/mark-plan-info.ts
  3. 97
      src/app/babylon/view/mark-window/mark-window.ts

13
src/app/babylon/controller/serve-manager.ts

@ -5,7 +5,7 @@ import { BuildingBasicInfosService } from "src/app/service/babylon/building-basi
import { ObjectsService } from "src/app/service/objects.service";
import { InsitutionDataSimple } from "../model/data/institution/institution-data-simple";
import { AllMarkPlanData } from "../model/data/mark/mark-plan-data";
import { ModeManager } from "./mode-manager";
import { ModeManager, ModeType } from "./mode-manager";
//服务器通信
export class ServeManager {
@ -95,7 +95,7 @@ export class ServeManager {
this.buildingBISrv.getMarkData(institutionID)
.subscribe(data => {
ModeManager.log(data);
// ModeManager.log(data);
if (onSuccess) {
onSuccess(institutionID, JSON.parse((data as any).result));
}
@ -103,7 +103,13 @@ export class ServeManager {
if (error instanceof HttpErrorResponse) {
if (error.status === 404) {
ModeManager.log("没有标绘数据,新建:" + error.error);
onSuccess(institutionID, null); //data 为null ,表示新建
if (ModeManager.currentMode == ModeType.Edit) {
onSuccess(institutionID, null); //data 为null ,表示新建
}
else {
PlanComponent.instance.openSnackBar("暂无数据");
}
}
else {
if (onError) {
@ -138,6 +144,7 @@ export class ServeManager {
}
//PlanComponent.instance.openSnackBar("保存标绘信息成功");
// alert("保存标绘信息成功");
PlanComponent.instance.openSnackBar("保存成功");
//暂时没有失败的回调 onError
})

2
src/app/babylon/model/info/mark/mark-plan-info.ts

@ -83,7 +83,7 @@ export class MarkNodeInfo {
}
/**
* id
* id()
*/
getNextMarkDataId() {
//console.log(this.currentMarkDataIndex, 1);

97
src/app/babylon/view/mark-window/mark-window.ts

@ -117,8 +117,8 @@ export class MarkWindow extends UIBase {
isShowProperty3d: boolean = true;
/**
*
*/
*
*/
isShowWaterSource = false;
//#region 生命周期
@ -145,7 +145,9 @@ export class MarkWindow extends UIBase {
this.weatherTool = new WeatherTool(SceneManager.Instance.defaultCamera, SceneManager.Instance.scene);
SceneManager.Instance.scene.onBeforeRenderObservable.add(() => {
instance.onUpdateShow();
})
}
@ -623,9 +625,9 @@ export class MarkWindow extends UIBase {
}
/**
*
* @param temperature
*/
*
* @param temperature
*/
changeNature_windDirection(windDirection: WindDirectionType) {
if (this.currentMarkNodeInfo == null) {
return;
@ -635,9 +637,9 @@ export class MarkWindow extends UIBase {
}
/**
*
* @param temperature
*/
*
* @param temperature
*/
changeNature_windPower(windPower: number) {
if (this.currentMarkNodeInfo == null) {
return;
@ -646,7 +648,77 @@ export class MarkWindow extends UIBase {
}
/**
*
* @param play false
*/
playOrPauseShow(play: boolean) {
}
/**
*
*/
skipToNode(nodeID: string) {
}
//#endregion
//#region 演出系统
/**
*
*/
currentShowTime: number;
/**
*
*/
totalShowTime: number;
/**
*
*/
isPlayingShow: boolean = false;
/**
*
* @param id
*/
playMarkNode(id: number) {
//通知前端
}
/**
*
*/
onUpdateShow() {
if (this.isPlayingShow) {
if (this.currentShowTime > 0) {
this.currentShowTime -= SceneManager.Instance.scene.deltaTime * 0.001;
if (this.currentShowTime <= 0) {
let l_currentMarkNodeData: MarkNodeData = this.currentMarkNodeInfo.nodeData;
//播放下一个节点
this.getNextNode(l_currentMarkNodeData.id);
}
}
}
}
//#endregion
@ -904,6 +976,13 @@ export class MarkWindow extends UIBase {
return result;
}
/**
* null表示没有了
*/
getNextNode(id: number) {
let result: MarkNodeInfo = null;
return result;
}
//#endregion

Loading…
Cancel
Save