|
|
@ -2,21 +2,20 @@ import { Component, OnInit, ElementRef, ViewChild, AfterViewInit, Input } from ' |
|
|
|
import * as PIXI from 'pixi.js'; |
|
|
|
import * as PIXI from 'pixi.js'; |
|
|
|
import { EventEmitter } from 'events'; |
|
|
|
import { EventEmitter } from 'events'; |
|
|
|
import { EventManager } from '@angular/platform-browser'; |
|
|
|
import { EventManager } from '@angular/platform-browser'; |
|
|
|
import { OutlineFilter, OldFilmFilter } from 'pixi-filters'; |
|
|
|
import { OutlineFilter } from 'pixi-filters'; |
|
|
|
import { AssetData, CanvasShareDataService, DisposalNodeData, FloorNodeData } from '../canvas-share-data.service'; |
|
|
|
import { AssetData, CanvasShareDataService, DisposalNodeData, FloorNodeData } from '../canvas-share-data.service'; |
|
|
|
import * as ObjectID from 'bson-objectid'; |
|
|
|
import * as ObjectID from 'bson-objectid'; |
|
|
|
import { Charm } from './charm'; |
|
|
|
import { Charm } from './charm'; |
|
|
|
import { SinglePointIcon } from './model/singlePointIcon'; |
|
|
|
import { AxImageShape } from './model/axImageShape'; |
|
|
|
import { GameMode } from './model/gameMode'; |
|
|
|
import { GameMode } from './model/gameMode'; |
|
|
|
import { MultipointIcon } from './model/multipointIcon'; |
|
|
|
import { MultipointIcon } from './model/multipointIcon'; |
|
|
|
import { PolygonIcon } from './model/polygonIcon'; |
|
|
|
import { PolygonIcon } from './model/polygonIcon'; |
|
|
|
import { PutCarArea } from './model/putCarArea'; |
|
|
|
|
|
|
|
import { Arrows } from './model/arrows'; |
|
|
|
|
|
|
|
import { Pipeline } from './model/pipeline'; |
|
|
|
import { Pipeline } from './model/pipeline'; |
|
|
|
import { PaintMode } from './model/paintModel'; |
|
|
|
import { PaintMode } from './model/paintModel'; |
|
|
|
import { WallSpace } from './model/wallSpace'; |
|
|
|
|
|
|
|
import { AxShape } from './model/axShape'; |
|
|
|
import { AxShape } from './model/axShape'; |
|
|
|
import { PropertyInfo } from './model/PropertyInfo'; |
|
|
|
import { PropertyInfo } from './model/PropertyInfo'; |
|
|
|
|
|
|
|
import { AxPreviewImageShape } from './model/axPreviewImageShape'; |
|
|
|
|
|
|
|
import { AxArrowConnector } from './model/axArrowConnector'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
@Component({ |
|
|
@ -50,11 +49,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 背景图 |
|
|
|
* 背景图 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public backgroundImage: PIXI.Sprite; |
|
|
|
public backgroundImage: PIXI.Sprite = null; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 预览单点图标 |
|
|
|
* 绘制图片形状时预览状态的图片 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public previewSinglePointIcon = new PIXI.Sprite(); |
|
|
|
public previewImage: AxPreviewImageShape = null; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 预览线段 |
|
|
|
* 预览线段 |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -70,7 +69,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 绘画模式 |
|
|
|
* 绘画模式 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private paintMode: PaintMode; |
|
|
|
private paintMode: PaintMode = PaintMode.endPaint; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 选择器 |
|
|
|
* 选择器 |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -82,20 +81,19 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 绘制点集合 |
|
|
|
* 绘制点集合 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public paintPoints: PIXI.Point[]; |
|
|
|
public paintPoints: PIXI.Point[] = []; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 绘制中的管线 |
|
|
|
* 绘制中的管线 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public paintingPipeline: Pipeline; |
|
|
|
public paintingPipeline: Pipeline = null; |
|
|
|
/** |
|
|
|
|
|
|
|
* 绘制中的箭头 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public paintingArrows: Arrows = null; |
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 绘制中的多点图标 |
|
|
|
* 绘制中的多点图标 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public paintingIcon: MultipointIcon; |
|
|
|
public paintingIcon: MultipointIcon; |
|
|
|
public paintingWall: AxShape; |
|
|
|
/** |
|
|
|
|
|
|
|
* 绘制中的图形 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public paintingShape: AxShape = null; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 绘制中的连线 |
|
|
|
* 绘制中的连线 |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -159,52 +157,33 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
// 按Del键删除选中的图标
|
|
|
|
// 按Del键删除选中的图标
|
|
|
|
if (event.keyCode === 46) { |
|
|
|
if (event.keyCode === 46) { |
|
|
|
this.selection.objects.forEach(item => { |
|
|
|
this.selection.objects.forEach(item => { |
|
|
|
delete this.canvasData.originaleveryStoreyData.data[item.assetData.Id]; |
|
|
|
if (this.allowEdit |
|
|
|
this.backgroundImage.removeChild(this.backgroundImage.getChildByName(item.assetData.Id)); |
|
|
|
&& this.canvasData.gameMode === item.assetData.GameMode) { |
|
|
|
this.canvasData.isChange = true; |
|
|
|
switch (this.canvasData.gameMode) { |
|
|
|
|
|
|
|
case 0: |
|
|
|
|
|
|
|
// 删除楼层数据
|
|
|
|
|
|
|
|
delete this.canvasData.originaleveryStoreyData.data[item.assetData.Id]; |
|
|
|
|
|
|
|
// 删除建筑数据
|
|
|
|
|
|
|
|
delete this.canvasData.originalcompanyBuildingData.data[item.assetData.Id]; |
|
|
|
|
|
|
|
// 取消渲染
|
|
|
|
|
|
|
|
this.backgroundImage.removeChild(this.backgroundImage.getChildByName(item.assetData.Id)); |
|
|
|
|
|
|
|
// 数据更改
|
|
|
|
|
|
|
|
this.canvasData.isChange = true; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 1: |
|
|
|
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.DefinedIncrement[item.assetData.Id]; |
|
|
|
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Increment[item.assetData.Id]; |
|
|
|
|
|
|
|
delete this.canvasData.selectPanelPoint.Data.Stock[item.assetData.Id]; |
|
|
|
|
|
|
|
this.backgroundImage.removeChild(this.backgroundImage.getChildByName(item.assetData.Id)); |
|
|
|
|
|
|
|
this.canvasData.isChange = true; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
this.selection.deselectAll(); |
|
|
|
this.emit('deleteIcon'); |
|
|
|
this.emit('deleteIcon'); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
// 打印当前工作区信息
|
|
|
|
|
|
|
|
this.eventManager.addGlobalEventListener('window', 'keypress', (event: any) => { |
|
|
|
|
|
|
|
// console.log(event.keyCode);
|
|
|
|
|
|
|
|
if (event.keyCode === 32) { |
|
|
|
|
|
|
|
switch (this.paintMode) { |
|
|
|
|
|
|
|
case 0: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:单点图标`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 1: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:线段图标`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 2: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:自定义多边形`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 3: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:水带多边形`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 4: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:暂无`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 5: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:暂无`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 6: |
|
|
|
|
|
|
|
console.log(`当前的绘制模式是:结束绘制`); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
console.log('当前楼层的数据:'); |
|
|
|
|
|
|
|
console.log(this.canvasData.originaleveryStoreyData.data); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('绘制中的管线:'); |
|
|
|
|
|
|
|
console.log(this.paintingPipeline); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('处置预案数据:'); |
|
|
|
|
|
|
|
console.log(this.canvasData.selectPanelPoint.Data); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 页面初始化 |
|
|
|
* 页面初始化 |
|
|
@ -298,11 +277,18 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.app.ticker.add((delta) => { |
|
|
|
this.app.ticker.add((delta) => { |
|
|
|
this.animator.update(); |
|
|
|
this.animator.update(); |
|
|
|
this.mousePosition = this.app.renderer.plugins.interaction.mouse.global; |
|
|
|
this.mousePosition = this.app.renderer.plugins.interaction.mouse.global; |
|
|
|
if (this.backgroundImage !== undefined) { |
|
|
|
// 预览图片
|
|
|
|
this.previewSinglePointIcon.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
if (this.previewImage !== null) { |
|
|
|
|
|
|
|
this.previewImage.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.backgroundImage !== null) { |
|
|
|
this.circleShadow.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
this.circleShadow.position = this.backgroundImage.toLocal(this.mousePosition); |
|
|
|
this.refreshPreviewLineSegment(this.currentClickPoint.position, this.circleShadow.position); |
|
|
|
this.refreshPreviewLineSegment(this.currentClickPoint.position, this.circleShadow.position); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 显示框选 |
|
|
|
|
|
|
|
*/ |
|
|
|
if (this.rectToolGraphics.visible === true) { |
|
|
|
if (this.rectToolGraphics.visible === true) { |
|
|
|
|
|
|
|
|
|
|
|
const init = this.initialScreenMousePos; |
|
|
|
const init = this.initialScreenMousePos; |
|
|
@ -311,20 +297,22 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.rectToolGraphics.clear(); |
|
|
|
this.rectToolGraphics.clear(); |
|
|
|
this.rectToolGraphics.lineStyle(2, 0x00ff00, 1); |
|
|
|
this.rectToolGraphics.lineStyle(2, 0x00ff00, 1); |
|
|
|
this.rectToolGraphics.beginFill(0xccccf2, 0.25); |
|
|
|
this.rectToolGraphics.beginFill(0xccccf2, 0.25); |
|
|
|
this.rectToolGraphics.drawRect(init.x, init.y, final.x - init.x, final.y - init.y); |
|
|
|
if (final.x > init.x && final.y > init.y) { |
|
|
|
|
|
|
|
this.rectToolGraphics.drawRect(init.x, init.y, final.x - init.x, final.y - init.y); |
|
|
|
|
|
|
|
} else if (final.x > init.x && final.y < init.y) { |
|
|
|
|
|
|
|
this.rectToolGraphics.drawRect(init.x, final.y, final.x - init.x, init.y - final.y); |
|
|
|
|
|
|
|
} else if (final.x < init.x && final.y > init.y) { |
|
|
|
|
|
|
|
this.rectToolGraphics.drawRect(final.x, init.y, init.x - final.x, final.y - init.y); |
|
|
|
|
|
|
|
} else if (final.x < init.x && final.y < init.y) { |
|
|
|
|
|
|
|
this.rectToolGraphics.drawRect(final.x, final.y, init.x - final.x, init.y - final.y); |
|
|
|
|
|
|
|
} |
|
|
|
this.rectToolGraphics.endFill(); |
|
|
|
this.rectToolGraphics.endFill(); |
|
|
|
this.rectToolGraphics.closePath(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (this.paintingArrows !== null) { |
|
|
|
|
|
|
|
this.paintingArrows.assetData.pointB = new PIXI.Point(this.circleShadow.position.x, this.circleShadow.position.y); |
|
|
|
|
|
|
|
this.paintingArrows.refresh(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 选中事件 |
|
|
|
* 选中事件 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
this.on('select', obj => { |
|
|
|
this.on('select', obj => { |
|
|
|
// this.moveIconToScreenCenter(obj);
|
|
|
|
|
|
|
|
if (this.allowEdit) { |
|
|
|
if (this.allowEdit) { |
|
|
|
if (obj instanceof MultipointIcon) { |
|
|
|
if (obj instanceof MultipointIcon) { |
|
|
|
if (obj.assetData.GameMode === this.canvasData.gameMode) { |
|
|
|
if (obj.assetData.GameMode === this.canvasData.gameMode) { |
|
|
@ -353,6 +341,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
if (obj instanceof MultipointIcon) { |
|
|
|
if (obj instanceof MultipointIcon) { |
|
|
|
obj.setPointVisiable(false); |
|
|
|
obj.setPointVisiable(false); |
|
|
|
} else if (obj instanceof PolygonIcon) { |
|
|
|
} else if (obj instanceof PolygonIcon) { |
|
|
|
|
|
|
|
obj.filters = []; |
|
|
|
obj.setPointVisiable(false); |
|
|
|
obj.setPointVisiable(false); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
obj.filters = []; |
|
|
|
obj.filters = []; |
|
|
@ -361,10 +350,12 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
obj.filters = []; |
|
|
|
obj.filters = []; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 根据背景缩放事件 |
|
|
|
|
|
|
|
*/ |
|
|
|
this.on('backgroundScale', scale => { |
|
|
|
this.on('backgroundScale', scale => { |
|
|
|
this.previewSinglePointIcon.scale.set((0.5 / scale)); |
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
if (item instanceof AxImageShape) { |
|
|
|
if (item instanceof SinglePointIcon) { |
|
|
|
|
|
|
|
if (item.assetData.FixedSize) { |
|
|
|
if (item.assetData.FixedSize) { |
|
|
|
const data = 1 / scale; |
|
|
|
const data = 1 / scale; |
|
|
|
item.scale.set(data); |
|
|
|
item.scale.set(data); |
|
|
@ -378,19 +369,26 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
} else if (item instanceof PolygonIcon) { |
|
|
|
} else if (item instanceof PolygonIcon) { |
|
|
|
const data = 1 / scale; |
|
|
|
const data = 1 / scale; |
|
|
|
item.text.scale.set(data); |
|
|
|
item.text.scale.set(data); |
|
|
|
|
|
|
|
item.pointsGraphics.forEach(point => { |
|
|
|
|
|
|
|
point.scale.set(data); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else if (item instanceof AxPreviewImageShape) { |
|
|
|
|
|
|
|
const data = 1 / scale; |
|
|
|
|
|
|
|
item.scale.set(data); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 创建图标事件 |
|
|
|
|
|
|
|
*/ |
|
|
|
this.on('createIcon', obj => { |
|
|
|
this.on('createIcon', obj => { |
|
|
|
if (obj.assetData.GameMode === GameMode.BasicInformation) { |
|
|
|
if (obj.assetData.GameMode === GameMode.BasicInformation) { |
|
|
|
// if (obj.assetData.IsFromBuilding) {
|
|
|
|
// 添加楼层数据
|
|
|
|
// this.canvasData.originalcompanyBuildingData.data[obj.assetData.Id] = obj.assetData;
|
|
|
|
this.canvasData.originaleveryStoreyData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
// } else {
|
|
|
|
// 添加建筑数据
|
|
|
|
this.canvasData.originaleveryStoreyData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
this.canvasData.originalcompanyBuildingData.data[obj.assetData.Id] = obj.assetData; |
|
|
|
// }
|
|
|
|
|
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// console.log();
|
|
|
|
|
|
|
|
if (this.canvasData.selectPanelPoint.Data === undefined |
|
|
|
if (this.canvasData.selectPanelPoint.Data === undefined |
|
|
|
|| this.canvasData.selectPanelPoint.Data === null) { |
|
|
|
|| this.canvasData.selectPanelPoint.Data === null) { |
|
|
|
this.canvasData.selectPanelPoint.Data = new FloorNodeData(); |
|
|
|
this.canvasData.selectPanelPoint.Data = new FloorNodeData(); |
|
|
@ -399,6 +397,15 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
} |
|
|
|
} |
|
|
|
this.canvasData.isChange = true; |
|
|
|
this.canvasData.isChange = true; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// todo 创建一个无限大的grid
|
|
|
|
|
|
|
|
const cell = new PIXI.Graphics(); |
|
|
|
|
|
|
|
cell.lineStyle(1, 0xff0000); |
|
|
|
|
|
|
|
cell.beginFill(0x0000ff); |
|
|
|
|
|
|
|
cell.drawRect(0, 0, 500, 500); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cell.endFill(); |
|
|
|
|
|
|
|
this.app.stage.addChild(cell); |
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 重置画布 |
|
|
|
* 重置画布 |
|
|
@ -413,7 +420,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public setNameVisible(value: boolean, mode: GameMode): void { |
|
|
|
public setNameVisible(value: boolean, mode: GameMode): void { |
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
if (item instanceof SinglePointIcon) { |
|
|
|
if (item instanceof AxImageShape) { |
|
|
|
item.setNameVisible(value, mode); |
|
|
|
item.setNameVisible(value, mode); |
|
|
|
} else if (item instanceof MultipointIcon) { |
|
|
|
} else if (item instanceof MultipointIcon) { |
|
|
|
item.setNameVisible(value, mode); |
|
|
|
item.setNameVisible(value, mode); |
|
|
@ -428,12 +435,15 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public refreshIcon(id: string): void { |
|
|
|
public refreshIcon(id: string): void { |
|
|
|
const icon = this.backgroundImage.children.find(item => item.name === id); |
|
|
|
const icon = this.backgroundImage.children.find(item => item.name === id); |
|
|
|
if (icon instanceof SinglePointIcon) { |
|
|
|
console.log(icon); |
|
|
|
|
|
|
|
if (icon instanceof AxImageShape) { |
|
|
|
icon.refresh(); |
|
|
|
icon.refresh(); |
|
|
|
} else if (icon instanceof MultipointIcon) { |
|
|
|
} else if (icon instanceof MultipointIcon) { |
|
|
|
icon.refresh(); |
|
|
|
icon.refresh(); |
|
|
|
} else if (icon instanceof PolygonIcon) { |
|
|
|
} else if (icon instanceof PolygonIcon) { |
|
|
|
icon.refresh(); |
|
|
|
icon.refresh(); |
|
|
|
|
|
|
|
} else if (icon instanceof AxArrowConnector) { |
|
|
|
|
|
|
|
icon.redraw(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
@ -442,8 +452,9 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public setIconScale(value: number): void { |
|
|
|
public setIconScale(value: number): void { |
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
if (item instanceof SinglePointIcon) { |
|
|
|
if (item instanceof AxImageShape) { |
|
|
|
item.scale.set(value); |
|
|
|
console.log(item.image.scale); |
|
|
|
|
|
|
|
item.image.scale.set(value); |
|
|
|
} else if (item instanceof MultipointIcon) { |
|
|
|
} else if (item instanceof MultipointIcon) { |
|
|
|
|
|
|
|
|
|
|
|
} else if (item instanceof PolygonIcon) { |
|
|
|
} else if (item instanceof PolygonIcon) { |
|
|
@ -471,46 +482,46 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.setPaintMode(PaintMode.endPaint); |
|
|
|
this.setPaintMode(PaintMode.endPaint); |
|
|
|
this.resetCanvas(); |
|
|
|
this.resetCanvas(); |
|
|
|
this.destroyBackgroundImage(); |
|
|
|
this.destroyBackgroundImage(); |
|
|
|
await this.createBackgroundImage(this.canvasData.selectStorey.imageUrl); |
|
|
|
if (!this.canvasData.selectStorey.imageUrl) { |
|
|
|
|
|
|
|
return; |
|
|
|
// this.refreshBackgroundImage();
|
|
|
|
} |
|
|
|
// this.versionChecking();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await this.createBackgroundImage(this.canvasData.selectStorey.imageUrl); |
|
|
|
|
|
|
|
this.createFloorShape(); |
|
|
|
|
|
|
|
if (this.canvasData.gameMode === GameMode.Assignment) { |
|
|
|
|
|
|
|
this.createWorkNode(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 创建楼层图形 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private createFloorShape() { |
|
|
|
const floorData = this.canvasData.originaleveryStoreyData.data; |
|
|
|
const floorData = this.canvasData.originaleveryStoreyData.data; |
|
|
|
// const buildingData = this.canvasData.originalcompanyBuildingData.data;
|
|
|
|
|
|
|
|
// const floor = this.canvasData.selectStorey;
|
|
|
|
|
|
|
|
// // key=>属性名 data[key]=>属性值
|
|
|
|
|
|
|
|
Object.keys(floorData).forEach((key) => { |
|
|
|
Object.keys(floorData).forEach((key) => { |
|
|
|
// console.log(floorData[key]);
|
|
|
|
|
|
|
|
switch (floorData[key].InteractiveMode) { |
|
|
|
switch (floorData[key].InteractiveMode) { |
|
|
|
case 0: |
|
|
|
case 0: |
|
|
|
const singleIcon = new SinglePointIcon(floorData[key], this); |
|
|
|
const singleIcon = new AxImageShape(floorData[key], this); |
|
|
|
|
|
|
|
singleIcon.moveable = this.allowEdit && this.canvasData.gameMode === singleIcon.assetData.GameMode; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
const icon = new MultipointIcon(floorData[key], this); |
|
|
|
const icon = new MultipointIcon(floorData[key], this); |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
const polygonIcon = new PolygonIcon(floorData[key], this); |
|
|
|
const polygonIcon = new PolygonIcon(floorData[key], this); |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case 3: |
|
|
|
|
|
|
|
if (floorData[key].Name === '水带') { |
|
|
|
|
|
|
|
const pipeline = new Pipeline(floorData[key], this); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
const wall = new AxArrowConnector(floorData[key], this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
// Object.keys(buildingData).forEach((key) => {
|
|
|
|
} |
|
|
|
// if (buildingData[key].FloorId === floor.id) {
|
|
|
|
|
|
|
|
// switch (buildingData[key].InteractiveMode) {
|
|
|
|
|
|
|
|
// case 0:
|
|
|
|
|
|
|
|
// const singleIcon = new SinglePointIcon(buildingData[key], this);
|
|
|
|
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// case 1:
|
|
|
|
|
|
|
|
// const icon = new MultipointIcon(buildingData[key], this);
|
|
|
|
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// case 2:
|
|
|
|
|
|
|
|
// const polygonIcon = new PolygonIcon(buildingData[key], this);
|
|
|
|
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private createWorkNode() { |
|
|
|
// 加载处置节点数据
|
|
|
|
// 加载处置节点数据
|
|
|
|
const nodeData = this.canvasData.selectPanelPoint.Data; |
|
|
|
const nodeData = this.canvasData.selectPanelPoint.Data; |
|
|
|
if (nodeData !== undefined && nodeData !== null) { |
|
|
|
if (nodeData !== undefined && nodeData !== null) { |
|
|
@ -518,23 +529,22 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
Object.keys(nodeData[key]).forEach((tempKey) => { |
|
|
|
Object.keys(nodeData[key]).forEach((tempKey) => { |
|
|
|
switch (nodeData[key][tempKey].InteractiveMode) { |
|
|
|
switch (nodeData[key][tempKey].InteractiveMode) { |
|
|
|
case 0: |
|
|
|
case 0: |
|
|
|
const singleIcon = new SinglePointIcon(nodeData[key][tempKey], this); |
|
|
|
const singleIcon = new AxImageShape(nodeData[key][tempKey], this); |
|
|
|
|
|
|
|
singleIcon.moveable = this.allowEdit && this.canvasData.gameMode === singleIcon.assetData.GameMode; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
if (nodeData[key][tempKey].Name === '水带') { |
|
|
|
|
|
|
|
const pipeline = new Pipeline(nodeData[key][tempKey], this); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
const icon = new MultipointIcon(nodeData[key][tempKey], this); |
|
|
|
const icon = new MultipointIcon(nodeData[key][tempKey], this); |
|
|
|
} |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
|
|
|
|
const polygonIcon = new PolygonIcon(nodeData[key][tempKey], this); |
|
|
|
const polygonIcon = new PolygonIcon(nodeData[key][tempKey], this); |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case 3: |
|
|
|
|
|
|
|
const pipeline = new Pipeline(nodeData[key][tempKey], this); |
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* |
|
|
|
* |
|
|
@ -614,7 +624,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
this.backgroundImage.y = this.app.view.height / 2; |
|
|
|
this.backgroundImage.interactive = true; |
|
|
|
this.backgroundImage.interactive = true; |
|
|
|
this.backgroundImage.name = 'background'; |
|
|
|
this.backgroundImage.name = 'background'; |
|
|
|
|
|
|
|
this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle; |
|
|
|
// const left = this.init.element.nativeElement.querySelector('.functionalDomainLeft').clientWidth;
|
|
|
|
// const left = this.init.element.nativeElement.querySelector('.functionalDomainLeft').clientWidth;
|
|
|
|
// const right = this.init.element.nativeElement.querySelector('.functionalDomainRight').clientWidth;
|
|
|
|
// const right = this.init.element.nativeElement.querySelector('.functionalDomainRight').clientWidth;
|
|
|
|
const imageWidth = this.backgroundImage.texture.width; |
|
|
|
const imageWidth = this.backgroundImage.texture.width; |
|
|
@ -667,7 +677,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
ImageUrl: this.canvasData.selectTemplateData.imageUrl, |
|
|
|
ImageUrl: this.canvasData.selectTemplateData.imageUrl, |
|
|
|
InteractiveMode: this.canvasData.selectTemplateData.interactiveMode, |
|
|
|
InteractiveMode: this.canvasData.selectTemplateData.interactiveMode, |
|
|
|
MultiPoint : null, |
|
|
|
MultiPoint : null, |
|
|
|
Point: new PIXI.Point(this.previewSinglePointIcon.x, this.previewSinglePointIcon.y), |
|
|
|
Point: new PIXI.Point(this.previewImage.x, this.previewImage.y), |
|
|
|
Name : this.canvasData.selectTemplateData.name, |
|
|
|
Name : this.canvasData.selectTemplateData.name, |
|
|
|
PropertyInfos: list, |
|
|
|
PropertyInfos: list, |
|
|
|
Border : this.canvasData.selectTemplateData.border, |
|
|
|
Border : this.canvasData.selectTemplateData.border, |
|
|
@ -676,7 +686,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
IsFromBuilding : this.canvasData.selectTemplateData.isFromBuilding, |
|
|
|
IsFromBuilding : this.canvasData.selectTemplateData.isFromBuilding, |
|
|
|
GameMode : this.canvasData.gameMode |
|
|
|
GameMode : this.canvasData.gameMode |
|
|
|
}; |
|
|
|
}; |
|
|
|
const singleIcon = new SinglePointIcon(assetData, this); |
|
|
|
const singleIcon = new AxImageShape(assetData, this); |
|
|
|
this.emit('createIcon', singleIcon); |
|
|
|
this.emit('createIcon', singleIcon); |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
break; |
|
|
|
break; |
|
|
@ -761,78 +771,60 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
// this.paintingIcon = new PolygonIcon(this.paintPoints, this);
|
|
|
|
// this.paintingIcon = new PolygonIcon(this.paintPoints, this);
|
|
|
|
break; |
|
|
|
break; |
|
|
|
case PaintMode.Pipeline: |
|
|
|
case PaintMode.Pipeline: |
|
|
|
|
|
|
|
if (this.canvasData.selectTemplateData.name === '水带') { |
|
|
|
if (this.paintingPipeline !== null) { |
|
|
|
if (this.paintingPipeline !== null) { |
|
|
|
|
|
|
|
this.currentClickPoint.position = new PIXI.Point(this.circleShadow.x, this.circleShadow.y); |
|
|
|
|
|
|
|
this.paintPoints.push(new PIXI.Point(this.circleShadow.x, this.circleShadow.y)); |
|
|
|
|
|
|
|
this.paintingPipeline.assetData.MultiPoint = JSON.parse(JSON.stringify(this.paintPoints)); |
|
|
|
|
|
|
|
this.paintingPipeline.refresh(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.previewLineSegment.visible = true; |
|
|
|
this.currentClickPoint.position = new PIXI.Point(this.circleShadow.x, this.circleShadow.y); |
|
|
|
this.currentClickPoint.position = new PIXI.Point(this.circleShadow.x, this.circleShadow.y); |
|
|
|
this.paintPoints.push(new PIXI.Point(this.circleShadow.x, this.circleShadow.y)); |
|
|
|
this.paintPoints.push(new PIXI.Point(this.circleShadow.x, this.circleShadow.y)); |
|
|
|
this.paintingPipeline.assetData.MultiPoint = JSON.parse(JSON.stringify(this.paintPoints)); |
|
|
|
|
|
|
|
this.paintingPipeline.refresh(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.Arrows: |
|
|
|
|
|
|
|
if (this.paintingArrows === null) { |
|
|
|
|
|
|
|
const data = { |
|
|
|
|
|
|
|
Id: ObjectID.default.generate(), |
|
|
|
|
|
|
|
name: 'string', |
|
|
|
|
|
|
|
point: new PIXI.Point(this.circleShadow.x, this.circleShadow.y), |
|
|
|
|
|
|
|
pointA: new PIXI.Point(this.circleShadow.x, this.circleShadow.y), |
|
|
|
|
|
|
|
pointB: new PIXI.Point(this.circleShadow.x, this.circleShadow.y), |
|
|
|
|
|
|
|
source: 'assets/images/进攻方向.png', |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
this.paintingArrows = new Arrows(data, this); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.paintingArrows.ready = true; |
|
|
|
|
|
|
|
this.paintingArrows = null; |
|
|
|
|
|
|
|
this.paintMode = PaintMode.endPaint; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.Car: |
|
|
|
|
|
|
|
// this.previewLineSegment.visible = true;
|
|
|
|
|
|
|
|
// this.currentClickPoint.position = new PIXI.Point(this.circleShadow.x, this.circleShadow.y);
|
|
|
|
|
|
|
|
// this.paintPoints.push(new PIXI.Point(this.circleShadow.x, this.circleShadow.y));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (this.paintPoints.length >= 2) {
|
|
|
|
|
|
|
|
// this.enterPaintEndButton.position = this.circleShadow.position;
|
|
|
|
|
|
|
|
// this.enterPaintEndButton.visible = true;
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (this.paintingWall !== null) {
|
|
|
|
|
|
|
|
// this.backgroundImage.removeChild(this.paintingWall);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// const jsonObject1 = JSON.parse(JSON.stringify(this.canvasData.selectTemplateData.propertyInfos));
|
|
|
|
|
|
|
|
// const propertyList1 = [];
|
|
|
|
|
|
|
|
// jsonObject1.forEach(element => {
|
|
|
|
|
|
|
|
// const property = new PropertyInfo(element);
|
|
|
|
|
|
|
|
// propertyList1.push(property);
|
|
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
// const assetData11 = {
|
|
|
|
|
|
|
|
// TemplateId: this.canvasData.selectTemplateData.id,
|
|
|
|
|
|
|
|
// FloorId: this.canvasData.selectStorey.id,
|
|
|
|
|
|
|
|
// Angle: this.canvasData.selectTemplateData.angle,
|
|
|
|
|
|
|
|
// Color: this.canvasData.selectTemplateData.color,
|
|
|
|
|
|
|
|
// Enabled: this.canvasData.selectTemplateData.enabled,
|
|
|
|
|
|
|
|
// FillMode: this.canvasData.selectTemplateData.fillMode,
|
|
|
|
|
|
|
|
// FireElementId: this.canvasData.selectTemplateData.fireElementId,
|
|
|
|
|
|
|
|
// FixedSize: this.canvasData.selectTemplateData.fixedSize,
|
|
|
|
|
|
|
|
// Height: 32,
|
|
|
|
|
|
|
|
// Width: 32,
|
|
|
|
|
|
|
|
// Id: ObjectID.default.generate(),
|
|
|
|
|
|
|
|
// ImageUrl: this.canvasData.selectTemplateData.imageUrl,
|
|
|
|
|
|
|
|
// InteractiveMode: this.canvasData.selectTemplateData.interactiveMode,
|
|
|
|
|
|
|
|
// MultiPoint: JSON.parse(JSON.stringify(this.paintPoints)),
|
|
|
|
|
|
|
|
// Point: new PIXI.Point(0, 0),
|
|
|
|
|
|
|
|
// Name: this.canvasData.selectTemplateData.name,
|
|
|
|
|
|
|
|
// PropertyInfos: propertyList1,
|
|
|
|
|
|
|
|
// Border: this.canvasData.selectTemplateData.border,
|
|
|
|
|
|
|
|
// DrawMode: this.canvasData.selectTemplateData.drawMode,
|
|
|
|
|
|
|
|
// Thickness: this.canvasData.selectTemplateData.thickness,
|
|
|
|
|
|
|
|
// IsFromBuilding: this.canvasData.selectTemplateData.isFromBuilding,
|
|
|
|
|
|
|
|
// GameMode: this.canvasData.gameMode
|
|
|
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.paintingWall = new WallSpace(assetData11, this);
|
|
|
|
if (this.paintPoints.length >= 2) { |
|
|
|
// this.emit('backgroundScale', this.backgroundImage.scale.x);
|
|
|
|
this.enterPaintEndButton.position = this.circleShadow.position; |
|
|
|
|
|
|
|
this.enterPaintEndButton.visible = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (this.paintingShape === null) { |
|
|
|
|
|
|
|
const jsonObject = JSON.parse(JSON.stringify(this.canvasData.selectTemplateData.propertyInfos)); |
|
|
|
|
|
|
|
const propertyList = []; |
|
|
|
|
|
|
|
jsonObject.forEach(element => { |
|
|
|
|
|
|
|
const property = new PropertyInfo(element); |
|
|
|
|
|
|
|
propertyList.push(property); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
const assetData2 = { |
|
|
|
|
|
|
|
TemplateId: this.canvasData.selectTemplateData.id, |
|
|
|
|
|
|
|
FloorId: this.canvasData.selectStorey.id, |
|
|
|
|
|
|
|
Angle: this.canvasData.selectTemplateData.angle, |
|
|
|
|
|
|
|
Color: this.canvasData.selectTemplateData.color, |
|
|
|
|
|
|
|
Enabled: this.canvasData.selectTemplateData.enabled, |
|
|
|
|
|
|
|
FillMode: this.canvasData.selectTemplateData.fillMode, |
|
|
|
|
|
|
|
FireElementId: this.canvasData.selectTemplateData.fireElementId, |
|
|
|
|
|
|
|
FixedSize: this.canvasData.selectTemplateData.fixedSize, |
|
|
|
|
|
|
|
Height: 32, |
|
|
|
|
|
|
|
Width: 32, |
|
|
|
|
|
|
|
Id: ObjectID.default.generate(), |
|
|
|
|
|
|
|
ImageUrl: this.canvasData.selectTemplateData.imageUrl, |
|
|
|
|
|
|
|
InteractiveMode: this.canvasData.selectTemplateData.interactiveMode, |
|
|
|
|
|
|
|
MultiPoint: JSON.parse(JSON.stringify(this.paintPoints)), |
|
|
|
|
|
|
|
Point: new PIXI.Point(0, 0), |
|
|
|
|
|
|
|
Name: this.canvasData.selectTemplateData.name, |
|
|
|
|
|
|
|
PropertyInfos: propertyList, |
|
|
|
|
|
|
|
Border: this.canvasData.selectTemplateData.border, |
|
|
|
|
|
|
|
DrawMode: this.canvasData.selectTemplateData.drawMode, |
|
|
|
|
|
|
|
Thickness: this.canvasData.selectTemplateData.thickness, |
|
|
|
|
|
|
|
IsFromBuilding: this.canvasData.selectTemplateData.isFromBuilding, |
|
|
|
|
|
|
|
GameMode: this.canvasData.gameMode |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
this.paintingShape = new AxArrowConnector(assetData2, this);
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.paintingShape.assetData.MultiPoint = JSON.parse(JSON.stringify(this.paintPoints)); |
|
|
|
|
|
|
|
this.paintingShape.redraw(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
} else if (!event.currentTarget.dragging && this.selection.isMultiselection === true) { |
|
|
|
} else if (!event.currentTarget.dragging && this.selection.isMultiselection === true) { |
|
|
@ -849,11 +841,15 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.rectToolGraphics.visible === true) { |
|
|
|
if (this.rectToolGraphics.visible === true) { |
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
this.backgroundImage.children.forEach(item => { |
|
|
|
if (item instanceof SinglePointIcon |
|
|
|
if ( item instanceof AxImageShape |
|
|
|
|| item instanceof MultipointIcon |
|
|
|
|| item instanceof MultipointIcon |
|
|
|
|| item instanceof PolygonIcon) { |
|
|
|
|| item instanceof PolygonIcon |
|
|
|
if (this.rectToolGraphics.getLocalBounds().contains(item.x, item.y)) { |
|
|
|
|| item instanceof AxArrowConnector) { |
|
|
|
this.selection.select(item); |
|
|
|
// 判断2个矩形是否相交
|
|
|
|
|
|
|
|
const rect1 = this.rectToolGraphics.getBounds(); |
|
|
|
|
|
|
|
const rect2 = item.getBounds(); |
|
|
|
|
|
|
|
if (this.isOverlap(rect1, rect2)) { |
|
|
|
|
|
|
|
this.selection.select(item);
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
@ -884,19 +880,38 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.setPaintMode(PaintMode.endPaint); |
|
|
|
this.setPaintMode(PaintMode.endPaint); |
|
|
|
}) |
|
|
|
}) |
|
|
|
.on('pointerover', (event) => { |
|
|
|
.on('pointerover', (event) => { |
|
|
|
this.previewSinglePointIcon.filters = null; |
|
|
|
if (this.previewImage !== null |
|
|
|
|
|
|
|
&& this.paintMode === PaintMode.singlePointIcon) { |
|
|
|
|
|
|
|
this.previewImage.visible = true; |
|
|
|
|
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
.on('pointerout', (event) => { |
|
|
|
.on('pointerout', (event) => { |
|
|
|
this.previewSinglePointIcon.filters = null; |
|
|
|
if (this.previewImage !== null |
|
|
|
|
|
|
|
&& this.paintMode === PaintMode.singlePointIcon) { |
|
|
|
|
|
|
|
this.previewImage.visible = false; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.app.stage.addChild(this.backgroundImage); |
|
|
|
this.app.stage.addChild(this.backgroundImage); |
|
|
|
this.createPreviewSinglePointIcon(); |
|
|
|
this.createPreviewImage(); |
|
|
|
this.createPreviewLineSegment(); |
|
|
|
this.createPreviewLineSegment(); |
|
|
|
this.createCircleShadow(); |
|
|
|
this.createCircleShadow(); |
|
|
|
this.createEnterPaintEndButton(); |
|
|
|
this.createEnterPaintEndButton(); |
|
|
|
this.backgroundImage.addChild(this.paintingLine); |
|
|
|
this.backgroundImage.addChild(this.paintingLine); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public isOverlap(rect1, rect2):boolean { |
|
|
|
|
|
|
|
const l1 = { x: rect1.x, y: rect1.y } |
|
|
|
|
|
|
|
const r1 = { x: rect1.x + rect1.width, y: rect1.y + rect1.height } |
|
|
|
|
|
|
|
const l2 = { x: rect2.x, y: rect2.y } |
|
|
|
|
|
|
|
const r2 = { x: rect2.x + rect2.width, y: rect2.y + rect2.height } |
|
|
|
|
|
|
|
if ( |
|
|
|
|
|
|
|
l1.x > r2.x || |
|
|
|
|
|
|
|
l2.x > r1.x || |
|
|
|
|
|
|
|
l1.y > r2.y || |
|
|
|
|
|
|
|
l2.y > r1.y |
|
|
|
|
|
|
|
) return false |
|
|
|
|
|
|
|
return true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 刷新背景图 |
|
|
|
* 刷新背景图 |
|
|
@ -905,9 +920,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
if (!this.canvasData.selectStorey.imageUrl) { |
|
|
|
if (!this.canvasData.selectStorey.imageUrl) { |
|
|
|
this.backgroundImage.visible = false; |
|
|
|
this.backgroundImage.visible = false; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.backgroundImage.texture = PIXI.Texture.from(this.canvasData.selectStorey.imageUrl); |
|
|
|
// this.backgroundImage.texture = PIXI.Texture.from(this.canvasData.selectStorey.imageUrl);
|
|
|
|
this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle; |
|
|
|
// this.backgroundImage.angle = this.canvasData.selectStorey.imageAngle;
|
|
|
|
this.backgroundImage.visible = true; |
|
|
|
// this.backgroundImage.visible = true;
|
|
|
|
|
|
|
|
this.refresh(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
@ -921,8 +937,8 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
* @param scale 缩放系数 |
|
|
|
* @param scale 缩放系数 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public setBackgroundScale(scale: number): void { |
|
|
|
public setBackgroundScale(scale: number): void { |
|
|
|
this.backgroundImage.scale.set(scale); |
|
|
|
this.backgroundImage?.scale.set(scale); |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
this.emit('backgroundScale', this.backgroundImage?.scale.x); |
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 设置背景图角度 |
|
|
|
* 设置背景图角度 |
|
|
@ -934,22 +950,18 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 创建预览单点图标 |
|
|
|
* 创建预览单点图标 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private createPreviewSinglePointIcon(): void { |
|
|
|
private createPreviewImage(): void { |
|
|
|
this.previewSinglePointIcon = PIXI.Sprite.from('assets/images/noImg.png'); |
|
|
|
// if (this.previewSinglePointIcon === null) {
|
|
|
|
this.previewSinglePointIcon.width = 32; |
|
|
|
// this.previewSinglePointIcon = PIXI.Sprite.from(this.canvasData.selectTemplateData.imageUrl);
|
|
|
|
this.previewSinglePointIcon.height = 32; |
|
|
|
// this.previewSinglePointIcon.width = this.canvasData.selectTemplateData.width;
|
|
|
|
this.previewSinglePointIcon.alpha = 1; |
|
|
|
// this.previewSinglePointIcon.height = this.canvasData.selectTemplateData.height;
|
|
|
|
this.previewSinglePointIcon.anchor.set(0.5); |
|
|
|
// this.previewSinglePointIcon.anchor.set(0.5);
|
|
|
|
this.previewSinglePointIcon.visible = false; |
|
|
|
// this.previewSinglePointIcon.interactive = false;
|
|
|
|
this.backgroundImage.addChild(this.previewSinglePointIcon); |
|
|
|
// this.backgroundImage.addChild(this.previewSinglePointIcon);
|
|
|
|
} |
|
|
|
// this.previewSinglePointIcon.scale.set(1 / this.backgroundImage.scale.x);
|
|
|
|
/** |
|
|
|
// }
|
|
|
|
* 改变预览单点图标 |
|
|
|
this.previewImage = new AxPreviewImageShape(this); |
|
|
|
* @param uri 图片地址 |
|
|
|
this.previewImage.visible = false; |
|
|
|
*/ |
|
|
|
|
|
|
|
private changePreviewSinglePointIcon(uri: string): void { |
|
|
|
|
|
|
|
this.previewSinglePointIcon.texture = PIXI.Texture.from(uri); |
|
|
|
|
|
|
|
this.previewSinglePointIcon.visible = true; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 创建预览线段 |
|
|
|
* 创建预览线段 |
|
|
@ -969,7 +981,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private refreshPreviewLineSegment(pointA: PIXI.Point, pointB: PIXI.Point) { |
|
|
|
private refreshPreviewLineSegment(pointA: PIXI.Point, pointB: PIXI.Point) { |
|
|
|
this.previewLineSegment.clear(); |
|
|
|
this.previewLineSegment.clear(); |
|
|
|
this.previewLineSegment.lineStyle(1, 0xffd900, 1); |
|
|
|
this.previewLineSegment.lineStyle(5, 0x00ff00, 1); |
|
|
|
this.previewLineSegment.moveTo(pointA.x, pointA.y); |
|
|
|
this.previewLineSegment.moveTo(pointA.x, pointA.y); |
|
|
|
this.previewLineSegment.lineTo(pointB.x, pointB.y ); |
|
|
|
this.previewLineSegment.lineTo(pointB.x, pointB.y ); |
|
|
|
} |
|
|
|
} |
|
|
@ -986,7 +998,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
} |
|
|
|
} |
|
|
|
showConnectionPoint(b: boolean) { |
|
|
|
showConnectionPoint(b: boolean) { |
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
this.backgroundImage?.children.forEach(item => { |
|
|
|
if (item instanceof SinglePointIcon) { |
|
|
|
if (item instanceof AxImageShape) { |
|
|
|
if (item.assetData.CanConnect) { |
|
|
|
if (item.assetData.CanConnect) { |
|
|
|
item.showConnectionPoint(b); |
|
|
|
item.showConnectionPoint(b); |
|
|
|
} |
|
|
|
} |
|
|
@ -997,27 +1009,9 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
* 开始绘制 |
|
|
|
* 开始绘制 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public beginPaint() { |
|
|
|
public beginPaint() { |
|
|
|
if (this.canvasData.selectTemplateData.name === '水带') { |
|
|
|
this.selection.deselectAll(); |
|
|
|
this.showConnectionPoint(true); |
|
|
|
this.setPaintMode(PaintMode.endPaint); |
|
|
|
this.setPaintMode(PaintMode.Pipeline); |
|
|
|
this.setPaintMode(this.canvasData.selectTemplateData.interactiveMode); |
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
switch (this.canvasData.selectTemplateData.interactiveMode) { |
|
|
|
|
|
|
|
case 0: |
|
|
|
|
|
|
|
this.setPaintMode(PaintMode.singlePointIcon); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 1: |
|
|
|
|
|
|
|
this.setPaintMode(PaintMode.lineIcon); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 2: |
|
|
|
|
|
|
|
this.setPaintMode(PaintMode.polygonIcon); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case 3: |
|
|
|
|
|
|
|
if (this.canvasData.selectTemplateData.name) { |
|
|
|
|
|
|
|
this.setPaintMode(PaintMode.Pipeline); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 初始化管线数据 |
|
|
|
* 初始化管线数据 |
|
|
@ -1034,18 +1028,14 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
* @param mode 状态 |
|
|
|
* @param mode 状态 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public setPaintMode(mode: PaintMode) { |
|
|
|
public setPaintMode(mode: PaintMode) { |
|
|
|
if (this.paintMode === mode) { return; } |
|
|
|
if (this.paintMode === mode) { |
|
|
|
this.paintMode = mode; |
|
|
|
return; |
|
|
|
if (this.paintMode !== PaintMode.Pipeline) { |
|
|
|
|
|
|
|
this.showConnectionPoint(false); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
this.paintMode = mode; |
|
|
|
switch (this.paintMode) { |
|
|
|
switch (this.paintMode) { |
|
|
|
case PaintMode.Pipeline: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
this.previewSinglePointIcon.visible = false; |
|
|
|
this.previewImage.visible = true; |
|
|
|
this.changePreviewSinglePointIcon(this.canvasData.selectTemplateData.imageUrl); |
|
|
|
this.previewImage.setImageUrl(this.canvasData.selectTemplateData.imageUrl); |
|
|
|
break; |
|
|
|
break; |
|
|
|
case PaintMode.lineIcon: |
|
|
|
case PaintMode.lineIcon: |
|
|
|
this.circleShadow.visible = false; |
|
|
|
this.circleShadow.visible = false; |
|
|
@ -1054,7 +1044,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
if (this.paintingIcon !== null) { |
|
|
|
if (this.paintingIcon !== null) { |
|
|
|
this.backgroundImage.removeChild(this.paintingIcon); |
|
|
|
this.backgroundImage.removeChild(this.paintingIcon); |
|
|
|
} |
|
|
|
} |
|
|
|
this.previewSinglePointIcon.texture = PIXI.Texture.from(this.canvasData.selectTemplateData.imageUrl); |
|
|
|
this.previewImage.setImageUrl(this.canvasData.selectTemplateData.imageUrl); |
|
|
|
this.circleShadow.visible = true; |
|
|
|
this.circleShadow.visible = true; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case PaintMode.polygonIcon: |
|
|
|
case PaintMode.polygonIcon: |
|
|
@ -1065,7 +1055,18 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.paintingLine.clear(); |
|
|
|
this.paintingLine.clear(); |
|
|
|
this.circleShadow.visible = true; |
|
|
|
this.circleShadow.visible = true; |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.Pipeline: |
|
|
|
|
|
|
|
if (this.canvasData.selectTemplateData.name==='水带') { |
|
|
|
|
|
|
|
this.showConnectionPoint(true); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
case PaintMode.endPaint: |
|
|
|
case PaintMode.endPaint: |
|
|
|
|
|
|
|
this.showConnectionPoint(false); |
|
|
|
|
|
|
|
if (this.previewImage !== null) { |
|
|
|
|
|
|
|
this.previewImage.visible = false; |
|
|
|
|
|
|
|
} |
|
|
|
// 重置组件状态
|
|
|
|
// 重置组件状态
|
|
|
|
if ( this.paintingIcon !== undefined |
|
|
|
if ( this.paintingIcon !== undefined |
|
|
|
&& this.paintingIcon !== null) { |
|
|
|
&& this.paintingIcon !== null) { |
|
|
@ -1076,6 +1077,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
&& this.paintingPipeline !== null) { |
|
|
|
&& this.paintingPipeline !== null) { |
|
|
|
this.backgroundImage.removeChild(this.paintingPipeline); |
|
|
|
this.backgroundImage.removeChild(this.paintingPipeline); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (this.paintingShape !== null) { |
|
|
|
|
|
|
|
this.backgroundImage.removeChild(this.paintingShape); |
|
|
|
|
|
|
|
this.paintingShape = null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.enterPaintEndButton.visible = false; |
|
|
|
this.paintingLine.clear(); |
|
|
|
this.paintingLine.clear(); |
|
|
|
this.resetData(); |
|
|
|
this.resetData(); |
|
|
|
break; |
|
|
|
break; |
|
|
@ -1093,10 +1099,6 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
* 重置 |
|
|
|
* 重置 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public resetData() { |
|
|
|
public resetData() { |
|
|
|
this.previewSinglePointIcon.filters = null; |
|
|
|
|
|
|
|
this.previewSinglePointIcon.visible = false; |
|
|
|
|
|
|
|
this.previewSinglePointIcon.angle = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.initPipelineData(); |
|
|
|
this.initPipelineData(); |
|
|
|
//
|
|
|
|
//
|
|
|
|
this.circleShadow.visible = false; |
|
|
|
this.circleShadow.visible = false; |
|
|
@ -1108,7 +1110,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
private enterPaint(): void { |
|
|
|
private enterPaint(): void { |
|
|
|
this.previewLineSegment.visible = false; |
|
|
|
this.previewLineSegment.visible = false; |
|
|
|
this.enterPaintEndButton.visible = false; |
|
|
|
this.enterPaintEndButton.visible = false; |
|
|
|
|
|
|
|
console.log(this.paintMode); |
|
|
|
switch (this.paintMode) { |
|
|
|
switch (this.paintMode) { |
|
|
|
|
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
|
|
|
|
break; |
|
|
|
case PaintMode.lineIcon: |
|
|
|
case PaintMode.lineIcon: |
|
|
|
if (this.paintPoints.length >= 2) { |
|
|
|
if (this.paintPoints.length >= 2) { |
|
|
|
this.emit('createIcon', this.paintingIcon); |
|
|
|
this.emit('createIcon', this.paintingIcon); |
|
|
@ -1152,6 +1157,12 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
this.emit('createIcon', polygonIcon); |
|
|
|
this.emit('createIcon', polygonIcon); |
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.Pipeline: |
|
|
|
|
|
|
|
if (this.canvasData.selectTemplateData.name !== '水带') { |
|
|
|
|
|
|
|
this.emit('createIcon', this.paintingShape); |
|
|
|
|
|
|
|
this.paintingShape = null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
this.paintPoints.splice(0, this.paintPoints.length); |
|
|
|
this.paintPoints.splice(0, this.paintPoints.length); |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
@ -1185,7 +1196,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
// }
|
|
|
|
// }
|
|
|
|
switch (item.InteractiveMode) { |
|
|
|
switch (item.InteractiveMode) { |
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
case PaintMode.singlePointIcon: |
|
|
|
const singleIcon = new SinglePointIcon(newData, this); |
|
|
|
const singleIcon = new AxImageShape(newData, this); |
|
|
|
break; |
|
|
|
break; |
|
|
|
case PaintMode.lineIcon: |
|
|
|
case PaintMode.lineIcon: |
|
|
|
const lineIcon = new MultipointIcon(newData, this); |
|
|
|
const lineIcon = new MultipointIcon(newData, this); |
|
|
@ -1193,9 +1204,15 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV |
|
|
|
case PaintMode.polygonIcon: |
|
|
|
case PaintMode.polygonIcon: |
|
|
|
const polygonIcon = new PolygonIcon(newData, this); |
|
|
|
const polygonIcon = new PolygonIcon(newData, this); |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case PaintMode.Pipeline: |
|
|
|
|
|
|
|
if (item.Name !== '水带') { |
|
|
|
|
|
|
|
const wall = new AxArrowConnector(newData, this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
this.selection.select(this.backgroundImage.getChildByName(newData.Id)); |
|
|
|
this.selection.select(this.backgroundImage.getChildByName(newData.Id)); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
this.emit('backgroundScale', this.backgroundImage.scale.x); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|