|
|
|
@ -15,6 +15,8 @@ import { AxShape } from './model/axShape';
|
|
|
|
|
import { PropertyInfo } from './model/PropertyInfo'; |
|
|
|
|
import { AxPreviewImageShape } from './model/axPreviewImageShape'; |
|
|
|
|
import { AxArrowConnector } from './model/axArrowConnector'; |
|
|
|
|
import { AxLegend, Legend } from './model/axLegend'; |
|
|
|
|
import { NullTemplateVisitor } from '@angular/compiler'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
@ -134,10 +136,18 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
public carData: Map<string, any> = new Map<string, any>(); |
|
|
|
|
// 当前选择的车辆id
|
|
|
|
|
public selectCar: any = null; |
|
|
|
|
// 本软件版本号由四部分组成:<主版本号><次版本号><修订版本号><日期加希腊字母版本号> 例如:1.0.0.20210105_beta
|
|
|
|
|
// Alpha版: 此版本表示该软件在此阶段主要是以实现软件功能为主,通常只在软件开发者内部交流,一般而言,该版本软件的Bug较多,需要继续修改。
|
|
|
|
|
// Beta版: 该版本相对于α版已有了很大的改进,消除了严重的错误,但还是存在着一些缺陷,需要经过多次测试来进一步消除,此版本主要的修改对像是软件的UI。
|
|
|
|
|
// RC版: 该版本已经相当成熟了,基本上不存在导致错误的BUG,与即将发行的正式版相差无几。
|
|
|
|
|
// Release版: 该版本意味“最终版本”,在前面版本的一系列测试版之后,终归会有一个正式版本,是最终交付用户使用的一个版本。该版本有时也称为标准版。一般情况下,Release不会以单词形式出现在软件封面上,取而代之的是符号®。
|
|
|
|
|
public VERSION = '1.0.0.20210107_beta'; |
|
|
|
|
/** |
|
|
|
|
* 数据初始化 |
|
|
|
|
*/ |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
PIXI.utils.skipHello() |
|
|
|
|
this.sayHello(); |
|
|
|
|
this.eventManager.addGlobalEventListener('window', 'keydown', (event: any) => { |
|
|
|
|
if (event.keyCode === 17) { |
|
|
|
|
this.selection.isMultiselection = true; |
|
|
|
@ -151,22 +161,51 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
} |
|
|
|
|
// 按Del键删除选中的图标
|
|
|
|
|
if (event.keyCode === 46) { |
|
|
|
|
this.selection.objects.forEach(item => { |
|
|
|
|
if (this.allowEdit |
|
|
|
|
&& this.canvasData.gameMode === item.assetData.GameMode) { |
|
|
|
|
this.backgroundImage.removeChild(this.backgroundImage.getChildByName(item.assetData.Id)); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
this.emit('deleteIcon'); |
|
|
|
|
this.deleteSelectedShape(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 删除选中的图标 |
|
|
|
|
*/ |
|
|
|
|
public deleteSelectedShape() { |
|
|
|
|
this.selection.objects.forEach(item => { |
|
|
|
|
this.deleteShape(item); |
|
|
|
|
}); |
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
*
|
|
|
|
|
* @param obj 删除一个形状 |
|
|
|
|
*/ |
|
|
|
|
public deleteShape(shape) { |
|
|
|
|
if (this.allowEdit && this.canvasData.gameMode === shape.assetData.GameMode) { |
|
|
|
|
this.emit('deleteIcon',shape); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 打招呼 |
|
|
|
|
*/ |
|
|
|
|
sayHello() { |
|
|
|
|
var _a; |
|
|
|
|
if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) { |
|
|
|
|
var args = [ |
|
|
|
|
"\n %c 版本号 - " + this.VERSION + "\n", |
|
|
|
|
'color: #ff66a5; background: #000000; padding:5px 0;', |
|
|
|
|
]; |
|
|
|
|
(_a = window.console).log.apply(_a, args); |
|
|
|
|
} |
|
|
|
|
else if (window.console) { |
|
|
|
|
window.console.log("\n %c 版本号 - " + this.VERSION + "\n"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 页面初始化 |
|
|
|
|
*/ |
|
|
|
|
ngAfterViewInit(): void { |
|
|
|
|
this.createCanvas(); |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.createCanvas(); |
|
|
|
|
}); |
|
|
|
|
window.onresize = () => { |
|
|
|
|
this.resetCanvas(); |
|
|
|
|
}; |
|
|
|
@ -184,7 +223,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
if (this.backgroundImage.scale.x >= 32) { |
|
|
|
|
this.backgroundImage.scale.x = 32; |
|
|
|
|
this.backgroundImage.scale.y = 32; |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
this.resizeItem(1/this.backgroundImage.scale.x) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.backgroundImage.pivot.set(pivot.x, pivot.y); |
|
|
|
@ -198,7 +237,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
if (this.backgroundImage.scale.x <= 0.1) { |
|
|
|
|
this.backgroundImage.scale.x = 0.1; |
|
|
|
|
this.backgroundImage.scale.y = 0.1; |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
this.resizeItem(1/this.backgroundImage.scale.x) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.backgroundImage.pivot.set(pivot.x, pivot.y); |
|
|
|
@ -209,7 +248,16 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.backgroundImage.position.x += delX; |
|
|
|
|
this.backgroundImage.position.y += delY; |
|
|
|
|
} |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
this.resizeItem(1/this.backgroundImage.scale.x) |
|
|
|
|
} |
|
|
|
|
// 重置图形缩放
|
|
|
|
|
public resizeItem(size:number) { |
|
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
|
if (item instanceof AxShape) { |
|
|
|
|
item.setItemScale(size); |
|
|
|
|
item.drawBorder(size); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
@ -249,17 +297,18 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
backgroundColor: 0xE9FAFF |
|
|
|
|
}); |
|
|
|
|
this.content.nativeElement.appendChild(this.app.view); |
|
|
|
|
this.app.view.style.border = '1px dashed blue'; |
|
|
|
|
this.animator = new Charm(PIXI); |
|
|
|
|
|
|
|
|
|
this.createBackgroundImage(); |
|
|
|
|
this.app.ticker.add((delta) => { |
|
|
|
|
this.animator.update(); |
|
|
|
|
this.mousePosition = this.app.renderer.plugins.interaction.mouse.global; |
|
|
|
|
// 预览图片
|
|
|
|
|
if (this.previewImage !== null && this.backgroundImage !== null) { |
|
|
|
|
if (this.previewImage !== undefined && this.previewImage !== null) { |
|
|
|
|
this.previewImage.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (this.circleShadow !== null && this.backgroundImage !== null) { |
|
|
|
|
if (this.circleShadow !== undefined && this.circleShadow !== null) { |
|
|
|
|
this.circleShadow.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
|
this.refreshPreviewLineSegment(this.currentClickPoint.position, this.circleShadow.position); |
|
|
|
|
this.refreshPreviewPoint(); |
|
|
|
@ -290,96 +339,88 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
/** |
|
|
|
|
* 选中事件 |
|
|
|
|
*/ |
|
|
|
|
this.on('select', shape => { |
|
|
|
|
if (shape instanceof AxShape) { |
|
|
|
|
shape.showBorder(); |
|
|
|
|
shape.setPointVisiable(this.allowEdit); |
|
|
|
|
} |
|
|
|
|
this.on('select', (axShape:AxShape)=> { |
|
|
|
|
axShape.showBorder(); |
|
|
|
|
axShape.setPointVisiable(this.allowEdit); |
|
|
|
|
}); |
|
|
|
|
/** |
|
|
|
|
* 取消选中事件 |
|
|
|
|
*/ |
|
|
|
|
this.on('deselect', shape => { |
|
|
|
|
if (shape instanceof AxShape) { |
|
|
|
|
shape.hideBorder(); |
|
|
|
|
shape.setPointVisiable(false); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
/** |
|
|
|
|
* 根据背景缩放事件 |
|
|
|
|
*/ |
|
|
|
|
this.on('backgroundScale', scale => { |
|
|
|
|
const data = 1 / scale; |
|
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
|
if (item instanceof AxImageShape) { |
|
|
|
|
item.setItemScale(data); |
|
|
|
|
item.drawBorder(data); |
|
|
|
|
} else if (item instanceof MultipointIcon) { |
|
|
|
|
item.setItemScale(data); |
|
|
|
|
item.drawBorder(data); |
|
|
|
|
} else if (item instanceof PolygonIcon) { |
|
|
|
|
item.setItemScale(data); |
|
|
|
|
item.drawBorder(data); |
|
|
|
|
} else if (item instanceof AxPreviewImageShape) { |
|
|
|
|
item.scale.set(data); |
|
|
|
|
} else if (item instanceof AxArrowConnector) { |
|
|
|
|
item.setItemScale(data); |
|
|
|
|
item.drawBorder(data); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.on('deselect', (axShape:AxShape)=> { |
|
|
|
|
axShape.hideBorder(); |
|
|
|
|
axShape.setPointVisiable(false); |
|
|
|
|
}); |
|
|
|
|
/** |
|
|
|
|
* 创建图标事件(数据处理) |
|
|
|
|
*/ |
|
|
|
|
this.on('createIcon', obj => { |
|
|
|
|
if (obj.assetData.GameMode === GameMode.BasicInformation) { // 基本信息
|
|
|
|
|
this.on('createIcon', (axShape:AxShape)=> { |
|
|
|
|
if (axShape.assetData.GameMode === GameMode.BasicInformation) { // 基本信息
|
|
|
|
|
// 添加楼层数据
|
|
|
|
|
this.canvasData.originaleveryStoreyData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
|
this.canvasData.originaleveryStoreyData.data[axShape.assetData.Id] = axShape.assetData; |
|
|
|
|
// 添加建筑数据
|
|
|
|
|
this.canvasData.originalcompanyBuildingData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
|
} else if (obj.assetData.GameMode === GameMode.Assignment) { // 处置预案
|
|
|
|
|
this.canvasData.originalcompanyBuildingData.data[axShape.assetData.Id] = axShape.assetData; |
|
|
|
|
} else if (axShape.assetData.GameMode === GameMode.Assignment) { // 处置预案
|
|
|
|
|
if (this.canvasData.selectPanelPoint.Data === undefined |
|
|
|
|
|| this.canvasData.selectPanelPoint.Data === null) { |
|
|
|
|
this.canvasData.selectPanelPoint.Data = new FloorNodeData(); |
|
|
|
|
} |
|
|
|
|
this.canvasData.selectPanelPoint.Data.Stock[obj.assetData.Id] = obj.assetData; |
|
|
|
|
} else if (obj.assetData.GameMode === GameMode.Examinee) { // 考生考试
|
|
|
|
|
if (obj.assetData.Tag === 1) { |
|
|
|
|
this.canvasData.examOriginaleveryStoreyData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
|
this.canvasData.selectPanelPoint.Data.Stock[axShape.assetData.Id] = axShape.assetData; |
|
|
|
|
} |
|
|
|
|
else if (axShape.assetData.GameMode === GameMode.Examinee) { // 考生考试
|
|
|
|
|
if (axShape.assetData.Tag === 1) { |
|
|
|
|
this.canvasData.examOriginaleveryStoreyData.data[axShape.assetData.Id] = axShape.assetData; |
|
|
|
|
} else { |
|
|
|
|
if (this.canvasData.selectPanelPoint.Data === undefined |
|
|
|
|
|| this.canvasData.selectPanelPoint.Data === null) { |
|
|
|
|
this.canvasData.selectPanelPoint.Data = new FloorNodeData(); |
|
|
|
|
} |
|
|
|
|
this.canvasData.selectPanelPoint.Data.Stock[obj.assetData.Id] = obj.assetData; |
|
|
|
|
this.canvasData.selectPanelPoint.Data.Stock[axShape.assetData.Id] = axShape.assetData; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
var temp = this.backgroundImage.getChildByName("图例") as AxLegend; |
|
|
|
|
if ( temp !== undefined |
|
|
|
|
&& temp !== null) { |
|
|
|
|
var itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1); |
|
|
|
|
temp.addItem(itemLegend); |
|
|
|
|
} |
|
|
|
|
this.canvasData.isChange = true; |
|
|
|
|
}); |
|
|
|
|
/** |
|
|
|
|
* 删除图标事件(数据处理) |
|
|
|
|
*/ |
|
|
|
|
this.on('deleteIcon', obj => { |
|
|
|
|
if (obj.assetData.GameMode === GameMode.BasicInformation) { // 基本信息
|
|
|
|
|
this.on('deleteIcon', (axShape:AxShape)=>{ |
|
|
|
|
// 删除图例对象
|
|
|
|
|
var temp = this.backgroundImage.getChildByName("图例") as AxLegend; |
|
|
|
|
if ( temp !== undefined |
|
|
|
|
&& temp !== null) { |
|
|
|
|
var itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1); |
|
|
|
|
temp.deleteItem(itemLegend); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (axShape.assetData.GameMode === GameMode.BasicInformation) { // 基本信息
|
|
|
|
|
// 删除楼层数据
|
|
|
|
|
delete this.canvasData.originaleveryStoreyData.data[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.originaleveryStoreyData.data[axShape.assetData.Id]; |
|
|
|
|
// 删除建筑数据
|
|
|
|
|
delete this.canvasData.originalcompanyBuildingData.data[obj.assetData.Id]; |
|
|
|
|
} else if (obj.assetData.GameMode === GameMode.Assignment) { // 处置预案
|
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.DefinedIncrement[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Increment[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Stock[obj.assetData.Id]; |
|
|
|
|
} else if (obj.assetData.GameMode === GameMode.Examinee) { // 考生考试
|
|
|
|
|
if (obj.assetData.Tag === 1) { |
|
|
|
|
delete this.canvasData.originalcompanyBuildingData.data[axShape.assetData.Id]; |
|
|
|
|
} else if (axShape.assetData.GameMode === GameMode.Assignment) { // 处置预案
|
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.DefinedIncrement[axShape.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Increment[axShape.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Stock[axShape.assetData.Id]; |
|
|
|
|
} |
|
|
|
|
else if (axShape.assetData.GameMode === GameMode.Examinee) { // 考生考试
|
|
|
|
|
if (axShape.assetData.Tag === 1) { |
|
|
|
|
// 删除楼层数据
|
|
|
|
|
delete this.canvasData.examOriginaleveryStoreyData.data[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.examOriginaleveryStoreyData.data[axShape.assetData.Id]; |
|
|
|
|
} else { |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.DefinedIncrement[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Increment[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Stock[obj.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.DefinedIncrement[axShape.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Increment[axShape.assetData.Id]; |
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Stock[axShape.assetData.Id]; |
|
|
|
|
} |
|
|
|
|
this.canvasData.isChange = true; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
this.backgroundImage.removeChild(axShape); |
|
|
|
|
this.canvasData.isChange = true; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
@ -450,17 +491,17 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.selection.select(obj); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 创建背景图 |
|
|
|
|
*/ |
|
|
|
|
public createBackground(imageUrl:string,imageAngle:number) { |
|
|
|
|
if (this.backgroundImage !== null) { |
|
|
|
|
this.backgroundImage.destroy(); |
|
|
|
|
this.backgroundImage = null; |
|
|
|
|
}
|
|
|
|
|
this.createBackgroundImage() |
|
|
|
|
this.refreshBackgroundImage(imageUrl,imageAngle); |
|
|
|
|
} |
|
|
|
|
// /**
|
|
|
|
|
// * 创建背景图
|
|
|
|
|
// */
|
|
|
|
|
// public createBackground(imageUrl:string,imageAngle:number) {
|
|
|
|
|
// if (this.backgroundImage !== null) {
|
|
|
|
|
// this.backgroundImage.destroy();
|
|
|
|
|
// this.backgroundImage = null;
|
|
|
|
|
// }
|
|
|
|
|
// this.createBackgroundImage()
|
|
|
|
|
// this.refreshBackgroundImage(imageUrl,imageAngle);
|
|
|
|
|
// }
|
|
|
|
|
/** |
|
|
|
|
* 创建楼层图形 |
|
|
|
|
*/ |
|
|
|
@ -489,7 +530,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 创建节点图形 |
|
|
|
@ -517,7 +558,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 创建确认绘制结束按钮 |
|
|
|
@ -530,7 +571,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.enterPaintEndButton.interactive = true; |
|
|
|
|
this.enterPaintEndButton.buttonMode = true; |
|
|
|
|
this.enterPaintEndButton |
|
|
|
|
.on('mousedown', event => { |
|
|
|
|
.on('pointerdown', event => { |
|
|
|
|
event.stopPropagation(); |
|
|
|
|
this.enterPaint(); |
|
|
|
|
}); |
|
|
|
@ -544,26 +585,26 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
public createBackgroundImage(){ |
|
|
|
|
this.backgroundImage = PIXI.Sprite.from('assets/images/noImg.png') |
|
|
|
|
this.backgroundImage.anchor.set(0.5); |
|
|
|
|
this.backgroundImage.x = this.app.view.width / 2; |
|
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
|
// this.backgroundImage.x = this.app.view.width / 2;
|
|
|
|
|
// this.backgroundImage.y = this.app.view.height / 2;
|
|
|
|
|
this.backgroundImage.interactive = true; |
|
|
|
|
this.backgroundImage.name = 'background'; |
|
|
|
|
this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle; |
|
|
|
|
const imageWidth = 665; |
|
|
|
|
const imageHeight = 530; |
|
|
|
|
const appWidth = this.app.view.width - 470; |
|
|
|
|
const appHeight = this.app.view.height; |
|
|
|
|
// this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle;
|
|
|
|
|
// const imageWidth = 665;
|
|
|
|
|
// const imageHeight = 530;
|
|
|
|
|
// const appWidth = this.app.view.width - 470;
|
|
|
|
|
// const appHeight = this.app.view.height;
|
|
|
|
|
|
|
|
|
|
const wScale = appWidth / imageWidth; |
|
|
|
|
const hScale = appHeight / imageHeight; |
|
|
|
|
// const wScale = appWidth / imageWidth;
|
|
|
|
|
// const hScale = appHeight / imageHeight;
|
|
|
|
|
|
|
|
|
|
const scale = wScale < hScale |
|
|
|
|
? wScale |
|
|
|
|
: hScale; |
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
// const scale = wScale < hScale
|
|
|
|
|
// ? wScale
|
|
|
|
|
// : hScale;
|
|
|
|
|
// this.backgroundImage.scale.set(scale);
|
|
|
|
|
this.backgroundImage.sortableChildren = true; |
|
|
|
|
this.backgroundImage |
|
|
|
|
.on('mousedown', event => { |
|
|
|
|
.on('pointerdown', event => { |
|
|
|
|
if (!event.currentTarget.dragging && this.selection.isMultiselection === false) { |
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
event.currentTarget.data = event.data; |
|
|
|
@ -573,7 +614,6 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
event.currentTarget.dragPoint.y -= event.currentTarget.y; |
|
|
|
|
switch (this.paintMode) { |
|
|
|
|
case PaintMode.endPaint: |
|
|
|
|
console.log(this.backgroundImage.toLocal(this.mousePosition)); |
|
|
|
|
break; |
|
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
|
const json = JSON.parse(JSON.stringify(this.canvasData.selectTemplateData.propertyInfos)); |
|
|
|
@ -612,7 +652,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
}; |
|
|
|
|
const singleIcon = new AxImageShape(assetData, this); |
|
|
|
|
this.emit('createIcon', singleIcon); |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
break; |
|
|
|
|
case PaintMode.lineIcon: |
|
|
|
|
this.previewLineSegment.visible = true; |
|
|
|
@ -669,7 +709,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.paintingIcon = new MultipointIcon(assetData1, this); |
|
|
|
|
// this.paintingIcon = new MultipointIcon(this.previewSinglePointIcon.texture, new PIXI.Point(0, 0), this.paintPoints, this,
|
|
|
|
|
// this.canvasData.selectTemplateData.name);
|
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
break; |
|
|
|
|
case PaintMode.polygonIcon: |
|
|
|
|
this.previewLineSegment.visible = true; |
|
|
|
@ -754,7 +794,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.paintingShape.redraw(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} else if (!event.currentTarget.dragging && this.selection.isMultiselection === true) { |
|
|
|
@ -764,7 +804,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.finalScreenMousePos = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.on('mouseup', event => { |
|
|
|
|
.on('pointerup', event => { |
|
|
|
|
if (event.currentTarget.dragging) { |
|
|
|
|
event.currentTarget.dragging = false; |
|
|
|
|
event.currentTarget.data = null; |
|
|
|
@ -787,13 +827,13 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.rectToolGraphics.visible = false; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.on('mouseupoutside', event => { |
|
|
|
|
.on('pointerupoutside', event => { |
|
|
|
|
if (event.currentTarget.dragging) { |
|
|
|
|
event.currentTarget.dragging = false; |
|
|
|
|
event.currentTarget.data = null; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.on('mousemove', event => { |
|
|
|
|
.on('pointermove', event => { |
|
|
|
|
if (event.currentTarget.dragging && this.selection.isMultiselection === false) { |
|
|
|
|
const newPosition = event.currentTarget.data.getLocalPosition(event.currentTarget.parent); |
|
|
|
|
event.currentTarget.x = newPosition.x - event.currentTarget.dragPoint.x; |
|
|
|
@ -850,43 +890,119 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
if (!imageUrl) { |
|
|
|
|
this.backgroundImage.visible = false; |
|
|
|
|
} else { |
|
|
|
|
this.backgroundImage.visible = false; |
|
|
|
|
this.backgroundImage.scale.set(1); |
|
|
|
|
this.backgroundImage.pivot.set(0); |
|
|
|
|
this.backgroundImage.x = this.app.view.width / 2; |
|
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
|
this.backgroundImage.texture = await PIXI.Texture.fromURL(imageUrl); |
|
|
|
|
const imageWidth = this.backgroundImage.texture.width; |
|
|
|
|
const imageHeight = this.backgroundImage.texture.height; |
|
|
|
|
const appWidth = this.app.view.width - 470; |
|
|
|
|
const appHeight = this.app.view.height; |
|
|
|
|
|
|
|
|
|
const wScale = appWidth / imageWidth; |
|
|
|
|
const hScale = appHeight / imageHeight; |
|
|
|
|
|
|
|
|
|
const scale = wScale < hScale? wScale: hScale; |
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
this.backgroundImage.angle = imageAngle; |
|
|
|
|
this.backgroundImage.visible = true; |
|
|
|
|
// 等待图片加载完成
|
|
|
|
|
let imageWidth = this.backgroundImage.texture.width; |
|
|
|
|
let imageHeight = this.backgroundImage.texture.height; |
|
|
|
|
let appWidth = this.app.view.width - 470; |
|
|
|
|
let appHeight = this.app.view.height; |
|
|
|
|
let wScale = appWidth / imageWidth; |
|
|
|
|
let hScale = appHeight / imageHeight; |
|
|
|
|
let scale = wScale < hScale ? wScale : hScale; |
|
|
|
|
// 设置图片缩放
|
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 清空画布 |
|
|
|
|
*/ |
|
|
|
|
public destroyBackgroundImage(): void { |
|
|
|
|
this.app.stage.removeChild(this.backgroundImage); |
|
|
|
|
this.backgroundImage = null; |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 设置背景图缩放 |
|
|
|
|
* @param scale 缩放系数 |
|
|
|
|
* 刷新 |
|
|
|
|
* @param imageUrl
|
|
|
|
|
* @param imageAngle
|
|
|
|
|
*/ |
|
|
|
|
public setBackgroundScale(scale: number): void { |
|
|
|
|
this.backgroundImage?.scale.set(scale); |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage?.scale.x); |
|
|
|
|
public async refresh(imageUrl: string = this.canvasData.selectStorey.imageUrl, imageAngle: number = this.canvasData.selectStorey.imageAngle): Promise<void> { |
|
|
|
|
this.backgroundImage.visible = false; |
|
|
|
|
this.backgroundImage.scale.set(1); |
|
|
|
|
this.backgroundImage.pivot.set(0); |
|
|
|
|
this.backgroundImage.x = this.app.view.width / 2; |
|
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
|
this.backgroundImage.texture = await PIXI.Texture.fromURL(imageUrl); |
|
|
|
|
this.backgroundImage.angle = imageAngle; |
|
|
|
|
// 等待图片加载完成
|
|
|
|
|
let imageWidth = this.backgroundImage.texture.width; |
|
|
|
|
let imageHeight = this.backgroundImage.texture.height; |
|
|
|
|
let appWidth = this.app.view.width - 470; |
|
|
|
|
let appHeight = this.app.view.height; |
|
|
|
|
let wScale = appWidth / imageWidth; |
|
|
|
|
let hScale = appHeight / imageHeight; |
|
|
|
|
let scale = wScale < hScale ? wScale : hScale; |
|
|
|
|
// 设置图片缩放
|
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
// 清空所有图形
|
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
let itemList = []; |
|
|
|
|
this.backgroundImage.children.forEach(item => {
|
|
|
|
|
if (item instanceof AxShape && item instanceof AxPreviewImageShape===false) { |
|
|
|
|
itemList.push(item.name);
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
itemList.forEach(item => {
|
|
|
|
|
this.backgroundImage.getChildByName(item).destroy(); |
|
|
|
|
// let child = this.backgroundImage.getChildByName(item);
|
|
|
|
|
// this.backgroundImage.removeChild(child);
|
|
|
|
|
}) |
|
|
|
|
//加载当前数据
|
|
|
|
|
this.createFloorShape(this.canvasData.originaleveryStoreyData.data); |
|
|
|
|
// 创建处置预案图形
|
|
|
|
|
this.createNodeShape(this.canvasData.selectPanelPoint.Data); |
|
|
|
|
this.createAxLegend(); |
|
|
|
|
this.backgroundImage.visible = true; |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 设置背景图角度 |
|
|
|
|
* @param imageAngle 角度值 |
|
|
|
|
* 创建安信图例 |
|
|
|
|
*/ |
|
|
|
|
public setBackgroundAngle(imageAngle: number) { |
|
|
|
|
this.backgroundImage.angle = imageAngle; |
|
|
|
|
public createAxLegend() { |
|
|
|
|
const tempAssetData = { |
|
|
|
|
Id: "图例",//ObjectID.default.generate()
|
|
|
|
|
Color: "#066EED80", |
|
|
|
|
PropertyInfos:[] |
|
|
|
|
}; |
|
|
|
|
let shapeMap: Map<string,Legend> = new Map<string,Legend>(); |
|
|
|
|
|
|
|
|
|
for (let item in this.canvasData.originaleveryStoreyData.data) { |
|
|
|
|
if (shapeMap.has(this.canvasData.originaleveryStoreyData.data[item].Name)) { |
|
|
|
|
shapeMap.get(this.canvasData.originaleveryStoreyData.data[item].Name).Count++; |
|
|
|
|
} else { |
|
|
|
|
shapeMap.set(this.canvasData.originaleveryStoreyData.data[item].Name, new Legend( |
|
|
|
|
this.canvasData.originaleveryStoreyData.data[item].Name, |
|
|
|
|
this.canvasData.originaleveryStoreyData.data[item].ImageUrl, |
|
|
|
|
1 |
|
|
|
|
)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
var axLegend = new AxLegend(tempAssetData, this, shapeMap); |
|
|
|
|
var rect = this.backgroundImage.getLocalBounds(); |
|
|
|
|
var itemRect = axLegend.getLocalBounds(); |
|
|
|
|
axLegend.x = rect.right - itemRect.right; |
|
|
|
|
axLegend.y = rect.bottom - itemRect.bottom; |
|
|
|
|
} |
|
|
|
|
// /**
|
|
|
|
|
// * 清空画布
|
|
|
|
|
// */
|
|
|
|
|
// public destroyBackgroundImage(): void {
|
|
|
|
|
// this.app.stage.removeChild(this.backgroundImage);
|
|
|
|
|
// this.backgroundImage = null;
|
|
|
|
|
// }
|
|
|
|
|
/** |
|
|
|
|
// // * 设置背景图缩放
|
|
|
|
|
// // * @param scale 缩放系数
|
|
|
|
|
// // */
|
|
|
|
|
// public setBackgroundScale(scale: number): void {
|
|
|
|
|
// this.backgroundImage?.scale.set(scale);
|
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage?.scale.x);
|
|
|
|
|
// }
|
|
|
|
|
// /**
|
|
|
|
|
// * 设置背景图角度
|
|
|
|
|
// * @param imageAngle 角度值
|
|
|
|
|
// */
|
|
|
|
|
// public setBackgroundAngle(imageAngle: number) {
|
|
|
|
|
// this.backgroundImage.angle = imageAngle;
|
|
|
|
|
// }
|
|
|
|
|
/** |
|
|
|
|
* 创建预览单点图标 |
|
|
|
|
*/ |
|
|
|
@ -1115,7 +1231,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
this.paintPoints.splice(0, this.paintPoints.length); |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 复制 |
|
|
|
@ -1164,7 +1280,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
} |
|
|
|
|
this.selection.select(this.backgroundImage.getChildByName(newData.Id)); |
|
|
|
|
}); |
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
} |
|
|
|
|
////////////////////////////////////////////////////////////////////////通用/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/** |
|
|
|
@ -1178,48 +1294,43 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
////////////////////////////////////////////////////////////////////////采集平台加载逻辑///////////////////////////////////////////////////////////////////////
|
|
|
|
|
public onBasicInformationClickFloor() { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////编制平台加载逻辑///////////////////////////////////////////////////////////////////////
|
|
|
|
|
public onClickAssignmentFloor() { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////考试系统加载逻辑///////////////////////////////////////////////////////////////////////
|
|
|
|
|
/** |
|
|
|
|
* 处理考生隐藏数据 |
|
|
|
|
*/ |
|
|
|
|
public processinghiddenData() { |
|
|
|
|
for (let key in this.canvasData.originaleveryStoreyData.data){ |
|
|
|
|
if (this.canvasData.hiddenBasicInfoFacilities.indexOf(key)!==-1) { |
|
|
|
|
delete this.canvasData.originaleveryStoreyData.data[key]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 考生点击楼层 |
|
|
|
|
*/ |
|
|
|
|
public onExamineeClickFloor() { |
|
|
|
|
// // 创建背景图
|
|
|
|
|
// this.createBackground(this.canvasData.selectStorey.imageUrl, this.canvasData.selectStorey.imageAngle);
|
|
|
|
|
// // 创建楼层图形
|
|
|
|
|
// this.createFloorShape(this.canvasData.examOriginaleveryStoreyData.data);
|
|
|
|
|
// // 处理共享数据中考官隐藏的数据
|
|
|
|
|
// this.processinghiddenData();
|
|
|
|
|
// // 建楼层图形
|
|
|
|
|
// this.createFloorShape(this.canvasData.originaleveryStoreyData.data);
|
|
|
|
|
// // 创建处置预案图形
|
|
|
|
|
// this.createNodeShape(this.canvasData.selectPanelPoint.Data);
|
|
|
|
|
// // 隐藏基本信息图形
|
|
|
|
|
// this.setNameVisible(false, 0);
|
|
|
|
|
// // 隐藏想定作业图形
|
|
|
|
|
// this.setNameVisible(false, 1);
|
|
|
|
|
// console.log("考生加载................................")
|
|
|
|
|
// 创建背景图
|
|
|
|
|
this.createBackground(this.canvasData.selectStorey.imageUrl, this.canvasData.selectStorey.imageAngle); |
|
|
|
|
public async onExamineeClickFloor() { |
|
|
|
|
this.backgroundImage.visible = false; |
|
|
|
|
this.backgroundImage.scale.set(1); |
|
|
|
|
this.backgroundImage.pivot.set(0); |
|
|
|
|
this.backgroundImage.x = this.app.view.width / 2; |
|
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
|
this.backgroundImage.texture = await PIXI.Texture.fromURL(this.canvasData.selectStorey.imageUrl); |
|
|
|
|
this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle; |
|
|
|
|
// 等待图片加载完成
|
|
|
|
|
let imageWidth = this.backgroundImage.texture.width; |
|
|
|
|
let imageHeight = this.backgroundImage.texture.height; |
|
|
|
|
let appWidth = this.app.view.width - 470; |
|
|
|
|
let appHeight = this.app.view.height; |
|
|
|
|
let wScale = appWidth / imageWidth; |
|
|
|
|
let hScale = appHeight / imageHeight; |
|
|
|
|
let scale = wScale < hScale ? wScale : hScale; |
|
|
|
|
// 设置图片缩放
|
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
// 清空所有图形
|
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
let itemList = []; |
|
|
|
|
this.backgroundImage.children.forEach(item => {
|
|
|
|
|
if (item instanceof AxShape && item instanceof AxPreviewImageShape===false) { |
|
|
|
|
itemList.push(item.name);
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
itemList.forEach(item => {
|
|
|
|
|
this.backgroundImage.getChildByName(item).destroy(); |
|
|
|
|
}) |
|
|
|
|
// 创建楼层图形
|
|
|
|
|
this.createFloorShape(this.canvasData.examOriginaleveryStoreyData.data); |
|
|
|
|
// 创建楼层图形
|
|
|
|
@ -1228,16 +1339,42 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.createNodeShape(this.canvasData.selectPanelPoint.Data); |
|
|
|
|
// 隐藏图标
|
|
|
|
|
this.setIconVisible(this.canvasData.hiddenBasicInfoFacilities, false); |
|
|
|
|
// 隐藏基本信息图形
|
|
|
|
|
this.setNameVisible(false, 0); |
|
|
|
|
this.backgroundImage.visible = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 考官点击楼层 |
|
|
|
|
*/ |
|
|
|
|
public onExaminerClickFloor() { |
|
|
|
|
// 创建背景图
|
|
|
|
|
this.createBackground(this.canvasData.selectStorey.imageUrl, this.canvasData.selectStorey.imageAngle); |
|
|
|
|
public async onExaminerClickFloor() { |
|
|
|
|
this.backgroundImage.visible = false; |
|
|
|
|
this.backgroundImage.scale.set(1); |
|
|
|
|
this.backgroundImage.pivot.set(0); |
|
|
|
|
this.backgroundImage.x = this.app.view.width / 2; |
|
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
|
this.backgroundImage.texture = await PIXI.Texture.fromURL(this.canvasData.selectStorey.imageUrl); |
|
|
|
|
this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle; |
|
|
|
|
// 等待图片加载完成
|
|
|
|
|
let imageWidth = this.backgroundImage.texture.width; |
|
|
|
|
let imageHeight = this.backgroundImage.texture.height; |
|
|
|
|
let appWidth = this.app.view.width - 470; |
|
|
|
|
let appHeight = this.app.view.height; |
|
|
|
|
let wScale = appWidth / imageWidth; |
|
|
|
|
let hScale = appHeight / imageHeight; |
|
|
|
|
let scale = wScale < hScale ? wScale : hScale; |
|
|
|
|
// 设置图片缩放
|
|
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
|
// 清空所有图形
|
|
|
|
|
this.selection.deselectAll(); |
|
|
|
|
let itemList = []; |
|
|
|
|
this.backgroundImage.children.forEach(item => {
|
|
|
|
|
if (item instanceof AxShape && item instanceof AxPreviewImageShape===false) { |
|
|
|
|
itemList.push(item.name);
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
itemList.forEach(item => {
|
|
|
|
|
this.backgroundImage.getChildByName(item).destroy(); |
|
|
|
|
}) |
|
|
|
|
// 创建楼层图形
|
|
|
|
|
this.createFloorShape(this.canvasData.examOriginaleveryStoreyData.data); |
|
|
|
|
// 创建楼层图形
|
|
|
|
@ -1246,6 +1383,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
this.createNodeShape(this.canvasData.selectPanelPoint.Data); |
|
|
|
|
// 隐藏图标
|
|
|
|
|
this.setIconVisible(this.canvasData.hiddenBasicInfoFacilities, false); |
|
|
|
|
this.backgroundImage.visible = true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|