From 989cce91ef2a8d680997c58cbfebefacf65e2bbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=8C=AF=E5=8D=87?= <359059686@qq.com> Date: Fri, 25 Dec 2020 10:53:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../working-area/model/axArrowConnector.ts | 128 +++++-- src/app/working-area/model/axImageShape.ts | 18 +- src/app/working-area/model/axShape.ts | 4 + src/app/working-area/model/multipointIcon.ts | 105 +++--- src/app/working-area/model/pipeline.ts | 328 ------------------ src/app/working-area/model/polygonIcon.ts | 119 +++---- .../working-area/working-area.component.ts | 102 ++++-- 7 files changed, 305 insertions(+), 499 deletions(-) delete mode 100644 src/app/working-area/model/pipeline.ts diff --git a/src/app/working-area/model/axArrowConnector.ts b/src/app/working-area/model/axArrowConnector.ts index f6e1c17..8b72b39 100644 --- a/src/app/working-area/model/axArrowConnector.ts +++ b/src/app/working-area/model/axArrowConnector.ts @@ -1,12 +1,15 @@ import { WorkingAreaComponent } from '../working-area.component'; import * as PIXI from 'pixi.js'; import { AxShape } from './axShape'; +import { Sprite } from 'pixi.js'; /** - * 墙面 + * 连接箭头 */ export class AxArrowConnector extends AxShape { + pointTexture: PIXI.Texture = PIXI.Texture.from('assets/images/handle-main.png') + pointSprites: Array = new Array(); line: PIXI.Graphics; text: PIXI.Text; style = new PIXI.TextStyle({ @@ -27,8 +30,14 @@ export class AxArrowConnector extends AxShape { }); pts: PIXI.Point[]; - constructor(assetData: any, workingArea: WorkingAreaComponent) { + markerStart = true;// 是否绘制起始箭头 + markerEnd = true;// 是否绘制结束箭头 + constructor(assetData: any, workingArea: WorkingAreaComponent,markerStart: boolean,markerEnd:boolean) { super(assetData, workingArea); + + this.markerStart = markerStart; + this.markerEnd = markerEnd; + this.name = assetData.Id; this.text = new PIXI.Text(this.assetData.Name + '\r\n' @@ -38,25 +47,91 @@ export class AxArrowConnector extends AxShape { this.addChild(this.text); this.addChild(this.line); this.workingArea.backgroundImage.addChild(this); - this.refresh(this.line, this.assetData.MultiPoint); + this.refresh(); + this.drawPoints(); + this.sortableChildren = true; + this.text.zIndex = this.children.length; + } + public drawPoints() { + this.assetData.MultiPoint.forEach(element => { + var point = new Sprite(this.pointTexture); + point.position = element; + point.anchor.set(0.5); + this.pointSprites.push(point); + this.addChild(point); + }); + this.pointSprites.forEach((value, index, array) => { + value.interactive = true; + value.on('mousedown', event => { + event.stopPropagation(); + if (this.workingArea.allowEdit && this.assetData.GameMode === this.workingArea.canvasData.gameMode) { + event.currentTarget.data = event.data; + event.currentTarget.alpha = 0.5; + event.currentTarget.dragging = true; + } + }) + .on('mouseup', event => { + if (event.currentTarget.dragging) { + event.currentTarget.alpha = 1; + event.currentTarget.dragging = false; + event.currentTarget.data = null; + } + }) + .on('mouseupoutside', event => { + if (event.currentTarget.dragging) { + event.currentTarget.alpha = 1; + event.currentTarget.dragging = false; + event.currentTarget.data = null; + } + }) + .on('mousemove', event => { + if (event.currentTarget.dragging) { + const newPosition = event.currentTarget.data.getLocalPosition(event.currentTarget.parent); + event.currentTarget.x = newPosition.x; + event.currentTarget.y = newPosition.y; + + this.assetData.MultiPoint[index].x = newPosition.x; + this.assetData.MultiPoint[index].y = newPosition.y; + this.workingArea.canvasData.isChange = true; + this.refresh(); + } + }) + .on('rightclick', event => { + }); + }) + this.setPointsVisible(false); } + /** + * 设置点显示状态 + * @param b true/false + */ + public setPointsVisible(b:boolean) { + this.pointSprites.forEach(item => { + item.visible = b; + }) + } /** * 刷新形状 */ - public refresh(c: PIXI.Graphics, pts: PIXI.Point[]): void { + public refresh(): void { + const c = this.line; + const pts = this.assetData.MultiPoint; if (pts.length < 2) { return; } this.text.position = pts[0]; + this.text.anchor.set(0.5, 1); + this.text.text = this.assetData.Name + + '\r\n' + + this.assetData.PropertyInfos?.find(item => item.PropertyName === '名称/编号')?.PropertyValue; const strokeWidth = 1; const startWidth = 30 + strokeWidth; const endWidth = 30 + strokeWidth; - const edgeWidth = this.assetData.Thickness === 0?10:this.assetData.Thickness; // 宽度 + const edgeWidth = this.assetData.Thickness === 0 ? 10 : this.assetData.Thickness; // 宽度 const openEnded = false; - const markerStart = false;// 起始箭头 - const markerEnd = false;// 结束箭头 + const spacing = (openEnded) ? 0 : 0 + strokeWidth / 2; const startSize = 30 + strokeWidth; const endSize = 30 + strokeWidth; @@ -101,11 +176,13 @@ export class AxArrowConnector extends AxShape { // c.lineStyle(1, 0x000000, 1); c.clear(); c.lineTextureStyle({ width: 1, color: lineColor, join: PIXI.LINE_JOIN.ROUND }); - c.beginFill(fillColor); + const startNx = nx; const startNy = ny; - - if (markerStart && !openEnded) { + if (!openEnded) { + c.beginFill(fillColor); + } + if (this.markerStart && !openEnded) { this.paintMarker(c, pts[0].x, pts[0].y, nx, ny, startSize, startWidth, edgeWidth, spacing, true); } else { const outStartX = pts[0].x + orthx / 2 + spacing * nx; @@ -213,7 +290,7 @@ export class AxArrowConnector extends AxShape { orthx = edgeWidth * ny1; orthy = - edgeWidth * nx1; - if (markerEnd && !openEnded) { + if (this.markerEnd && !openEnded) { this.paintMarker(c, pe.x, pe.y, -nx, -ny, endSize, endWidth, edgeWidth, spacing, false); } else { c.lineTo(pe.x - spacing * nx1 + orthx / 2, pe.y - spacing * ny1 + orthy / 2); @@ -235,18 +312,16 @@ export class AxArrowConnector extends AxShape { for (let i = fns.length - 1; i >= 0; i--) { fns[i](); } - c.closePath(); - c.endFill(); - // if (openEnded) - // { - // c.end(); - // c.stroke(); - // } - // else - // { - // c.close(); - // c.fillAndStroke(); - // } + + if (openEnded) + { + c.closePath(); + } + else + { + c.closePath(); + c.endFill(); + } // c.setShadow(false); @@ -320,6 +395,11 @@ export class AxArrowConnector extends AxShape { } redraw(): void{ - this.refresh(this.line, this.assetData.MultiPoint); + this.pointSprites.forEach(item => { + item.destroy(); + }) + this.pointSprites.splice(0, this.pointSprites.length); + this.refresh(); + this.drawPoints(); } } diff --git a/src/app/working-area/model/axImageShape.ts b/src/app/working-area/model/axImageShape.ts index e76728e..67466be 100644 --- a/src/app/working-area/model/axImageShape.ts +++ b/src/app/working-area/model/axImageShape.ts @@ -1,12 +1,12 @@ import { WorkingAreaComponent } from '../working-area.component'; import * as ObjectID from 'bson-objectid'; import { GameMode } from './gameMode'; -import { Pipeline } from './pipeline'; import { PaintMode } from './paintModel'; import * as PIXI from 'pixi.js'; import { PropertyInfo } from './PropertyInfo'; import { AxShape } from './axShape'; import { Sprite } from 'pixi.js'; +import { AxArrowConnector } from './axArrowConnector'; /** * 安信图片形状 @@ -370,7 +370,7 @@ export class AxImageShape extends AxShape { paintingPipeline(x: number, y: number) { if (this.assetData.CanConnect) { if (this.workingArea.getPaintMode() === PaintMode.Pipeline) { - if (this.workingArea.paintingPipeline === null) { + if (this.workingArea.paintingShape === null) { this.workingArea.previewLineSegment.visible = true; this.workingArea.currentClickPoint.position = new PIXI.Point(this.workingArea.circleShadow.x, this.workingArea.circleShadow.y); @@ -408,19 +408,19 @@ export class AxImageShape extends AxShape { GameMode: this.workingArea.canvasData.gameMode, LinkedObjects: new Array(this.assetData.Id), }; - this.workingArea.paintingPipeline = new Pipeline(tempData, this.workingArea); - this.assetData.Pipelines.push(this.workingArea.paintingPipeline.assetData.Id); - this.workingArea.emit('createIcon', this.workingArea.paintingPipeline); + this.workingArea.paintingShape = new AxArrowConnector(tempData, this.workingArea,false,true); + this.assetData.Pipelines.push(this.workingArea.paintingShape.assetData.Id); + this.workingArea.emit('createIcon', this.workingArea.paintingShape); } else { this.workingArea.previewLineSegment.visible = false; this.workingArea.currentClickPoint.position = new PIXI.Point(this.workingArea.circleShadow.x, this.workingArea.circleShadow.y); this.workingArea.paintPoints.push(new PIXI.Point(x, y)); - this.workingArea.paintingPipeline.assetData.MultiPoint = + this.workingArea.paintingShape.assetData.MultiPoint = JSON.parse(JSON.stringify(this.workingArea.paintPoints)); - this.workingArea.paintingPipeline.assetData.LinkedObjects.push(this.assetData.Id); - this.assetData.Pipelines.push(this.workingArea.paintingPipeline.assetData.Id); - this.workingArea.paintingPipeline.refresh(); + this.workingArea.paintingShape.assetData.LinkedObjects.push(this.assetData.Id); + this.assetData.Pipelines.push(this.workingArea.paintingShape.assetData.Id); + this.workingArea.paintingShape.redraw(); this.workingArea.initPipelineData(); } } diff --git a/src/app/working-area/model/axShape.ts b/src/app/working-area/model/axShape.ts index bd82842..9ff01a6 100644 --- a/src/app/working-area/model/axShape.ts +++ b/src/app/working-area/model/axShape.ts @@ -73,4 +73,8 @@ export class AxShape extends Container { redraw(): void { } + + refresh(): void{ + + } } diff --git a/src/app/working-area/model/multipointIcon.ts b/src/app/working-area/model/multipointIcon.ts index df2da6f..e60b148 100644 --- a/src/app/working-area/model/multipointIcon.ts +++ b/src/app/working-area/model/multipointIcon.ts @@ -1,11 +1,12 @@ import { WorkingAreaComponent } from '../working-area.component'; import { GameMode } from './gameMode'; import * as PIXI from 'pixi.js'; +import { AxShape } from './axShape'; /** * 多点连线 */ -export class MultipointIcon extends PIXI.Container { +export class MultipointIcon extends AxShape { public pointsData: PIXI.Point[]; public pointsGraphics: PIXI.Graphics[] = []; public iconsTilingSprite: PIXI.TilingSprite[] = []; @@ -34,8 +35,8 @@ export class MultipointIcon extends PIXI.Container { * @param texture 图片素材 * @param points 点集合 */ - constructor(public assetData: any, private workingArea: WorkingAreaComponent) { - super(); + constructor(assetData: any,workingArea: WorkingAreaComponent) { + super(assetData,workingArea); this.name = this.assetData.Id; this.pointsData = this.assetData.MultiPoint; this.x = this.assetData.Point.x; @@ -56,7 +57,7 @@ export class MultipointIcon extends PIXI.Container { icon.x = pointA.x; icon.y = pointA.y; icon.angle = angle; - icon.height = this.assetData.Thickness === 0 ? 32 : this.assetData.Thickness; + // icon.height = this.assetData.Thickness === 0 ? 32 : this.assetData.Thickness; this.iconsTilingSprite.push(icon); this.addChild(icon); if (i === 0) { @@ -173,50 +174,50 @@ export class MultipointIcon extends PIXI.Container { // this.text.scale.set(scale); // }); // 添加选中事件 - this.iconsTilingSprite.forEach((item, index, array) => { - item.interactive = true; - item.buttonMode = true; - item.on('mousedown', event => { - event.stopPropagation(); - this.workingArea.selection.selectOne(this); - if (this.workingArea.allowEdit && this.assetData.GameMode === this.workingArea.canvasData.gameMode) { - event.currentTarget.parent.data = event.data; - event.currentTarget.parent.alpha = 0.5; - event.currentTarget.parent.dragging = true; - - event.currentTarget.parent.dragPoint = event.data.getLocalPosition(event.currentTarget.parent.parent); - event.currentTarget.parent.dragPoint.x -= event.currentTarget.parent.x; - event.currentTarget.parent.dragPoint.y -= event.currentTarget.parent.y; - } - }) - .on('mouseup', event => { - if (event.currentTarget.parent.dragging) { - event.currentTarget.parent.alpha = 1; - event.currentTarget.parent.dragging = false; - event.currentTarget.parent.data = null; - } - }) - .on('mouseupoutside', event => { - if (event.currentTarget.parent.dragging) { - event.currentTarget.parent.alpha = 1; - event.currentTarget.parent.dragging = false; - event.currentTarget.parent.data = null; - } - }) - .on('mousemove', event => { - if (event.currentTarget.parent.dragging) { - const newPosition = event.currentTarget.parent.data.getLocalPosition(event.currentTarget.parent.parent); - event.currentTarget.parent.x = newPosition.x - event.currentTarget.parent.dragPoint.x; - event.currentTarget.parent.y = newPosition.y - event.currentTarget.parent.dragPoint.y; - - this.assetData.Point = new PIXI.Point(this.x, this.y); - this.workingArea.canvasData.isChange = true; - } - }) - .on('rightclick', event => { - - }); - }); + // this.iconsTilingSprite.forEach((item, index, array) => { + // item.interactive = true; + // item.buttonMode = true; + // item.on('mousedown', event => { + // event.stopPropagation(); + // this.workingArea.selection.selectOne(this); + // if (this.workingArea.allowEdit && this.assetData.GameMode === this.workingArea.canvasData.gameMode) { + // event.currentTarget.parent.data = event.data; + // event.currentTarget.parent.alpha = 0.5; + // event.currentTarget.parent.dragging = true; + + // event.currentTarget.parent.dragPoint = event.data.getLocalPosition(event.currentTarget.parent.parent); + // event.currentTarget.parent.dragPoint.x -= event.currentTarget.parent.x; + // event.currentTarget.parent.dragPoint.y -= event.currentTarget.parent.y; + // } + // }) + // .on('mouseup', event => { + // if (event.currentTarget.parent.dragging) { + // event.currentTarget.parent.alpha = 1; + // event.currentTarget.parent.dragging = false; + // event.currentTarget.parent.data = null; + // } + // }) + // .on('mouseupoutside', event => { + // if (event.currentTarget.parent.dragging) { + // event.currentTarget.parent.alpha = 1; + // event.currentTarget.parent.dragging = false; + // event.currentTarget.parent.data = null; + // } + // }) + // .on('mousemove', event => { + // if (event.currentTarget.parent.dragging) { + // const newPosition = event.currentTarget.parent.data.getLocalPosition(event.currentTarget.parent.parent); + // event.currentTarget.parent.x = newPosition.x - event.currentTarget.parent.dragPoint.x; + // event.currentTarget.parent.y = newPosition.y - event.currentTarget.parent.dragPoint.y; + + // this.assetData.Point = new PIXI.Point(this.x, this.y); + // this.workingArea.canvasData.isChange = true; + // } + // }) + // .on('rightclick', event => { + + // }); + // }); } /** * 设置点显示状态 @@ -235,10 +236,10 @@ export class MultipointIcon extends PIXI.Container { } // 刷新数据 public refresh() { - console.log(this.assetData); - this.iconsTilingSprite.forEach(element => { - element.height = this.assetData.Thickness === 0 ? 32 : this.assetData.Thickness; - }); + // console.log(this.assetData); + // this.iconsTilingSprite.forEach(element => { + // element.height = this.assetData.Thickness === 0 ? 32 : this.assetData.Thickness; + // }); this.text.text = this.assetData.Name + '\r\n' + this.assetData.PropertyInfos.find(item => item.PropertyName === '名称/编号')?.PropertyValue; diff --git a/src/app/working-area/model/pipeline.ts b/src/app/working-area/model/pipeline.ts deleted file mode 100644 index 74045ad..0000000 --- a/src/app/working-area/model/pipeline.ts +++ /dev/null @@ -1,328 +0,0 @@ -import { WorkingAreaComponent } from '../working-area.component'; -import * as PIXI from 'pixi.js'; -import { AxShape } from './axShape'; - -/** - * 管线 - */ -export class Pipeline extends AxShape { - public line: PIXI.Graphics = new PIXI.Graphics(); - constructor(assetData: any, workingArea: WorkingAreaComponent) { - super(assetData, workingArea); - this.name = this.assetData.Id; - this.moveable = false; - this.x = this.assetData.Point.x; - this.y = this.assetData.Point.y; - this.workingArea.backgroundImage.addChild(this); - this.addChild(this.line); - // 画线图标 - this.refresh(); - this.interactive = true; - this.on('mousedown', event => { - event.stopPropagation(); - this.workingArea.selection.selectOne(this); - }); - } - /** - * 刷新 - */ - public refresh() { - - const strokeWidth = 1; - const startWidth = 30 + strokeWidth; - const endWidth = 30 + strokeWidth; - const edgeWidth = 10; - const openEnded = false; - const markerStart = false; - const markerEnd = true; - const spacing = (openEnded) ? 0 : 0 + strokeWidth / 2; - const startSize = 30 + strokeWidth; - const endSize = 30 + strokeWidth; - const isRounded = true; - const pts = this.assetData.MultiPoint; - const c = this.line; - if (pts.length < 2) { return; } - // Base vector (between first points) - const pe = pts[pts.length - 1]; - - // Finds first non-overlapping point - let i0 = 1; - - while (i0 < pts.length - 1 && pts[i0].x === pts[0].x && pts[i0].y === pts[0].y) { - i0++; - } - - const dx = pts[i0].x - pts[0].x; - const dy = pts[i0].y - pts[0].y; - const dist = Math.sqrt(dx * dx + dy * dy); - - if (dist === 0) { - return; - } - - // Computes the norm and the inverse norm - let nx = dx / dist; - let nx1 = nx; - let nx2 = nx; - let ny = dy / dist; - let ny2 = ny; - let ny1 = ny; - let orthx = edgeWidth * ny; - let orthy = -edgeWidth * nx; - - // Stores the inbound function calls in reverse order in fns - const fns = []; - - // if (isRounded) { - // // c.setLineJoin('round'); - // c.lineTextureStyle({ join: PIXI.LINE_JOIN.ROUND }); - // } else if (pts.length > 2) { - // // Only mitre if there are waypoints - // // c.setMiterLimit(1.42); - // c.lineTextureStyle({ miterLimit: 1.42 }); - // } - // c.lineStyle(1, 0x000000, 1); - c.clear(); - c.lineTextureStyle({ width: 1, color: 0x00000, join: PIXI.LINE_JOIN.ROUND }); - // c.begin(); - c.beginFill(0xffffff); - const startNx = nx; - const startNy = ny; - - if (markerStart && !openEnded) { - this.paintMarker(c, pts[0].x, pts[0].y, nx, ny, startSize, startWidth, edgeWidth, spacing, true); - } else { - const outStartX = pts[0].x + orthx / 2 + spacing * nx; - const outStartY = pts[0].y + orthy / 2 + spacing * ny; - const inEndX = pts[0].x - orthx / 2 + spacing * nx; - const inEndY = pts[0].y - orthy / 2 + spacing * ny; - - if (openEnded) { - c.moveTo(outStartX, outStartY); - fns.push( () => { - c.lineTo(inEndX, inEndY); - }); - } else { - c.moveTo(inEndX, inEndY); - c.lineTo(outStartX, outStartY); - } - } - let dx1 = 0; - let dy1 = 0; - let dist1 = 0; - - for (let i = 0; i < pts.length - 2; i++) { - // Work out in which direction the line is bending - const pos = this.relativeCcw(pts[i].x, pts[i].y, pts[i + 1].x, pts[i + 1].y, pts[i + 2].x, pts[i + 2].y); - - dx1 = pts[i + 2].x - pts[i + 1].x; - dy1 = pts[i + 2].y - pts[i + 1].y; - - dist1 = Math.sqrt(dx1 * dx1 + dy1 * dy1); - - if (dist1 !== 0) { - nx1 = dx1 / dist1; - ny1 = dy1 / dist1; - - const tmp1 = nx * nx1 + ny * ny1; - const tmp = Math.max(Math.sqrt((tmp1 + 1) / 2), 0.04); - - // Work out the normal orthogonal to the line through the control point and the edge sides intersection - nx2 = (nx + nx1); - ny2 = (ny + ny1); - - const dist2 = Math.sqrt(nx2 * nx2 + ny2 * ny2); - - if (dist2 !== 0) { - nx2 = nx2 / dist2; - ny2 = ny2 / dist2; - - // Higher strokewidths require a larger minimum bend, 0.35 covers all but the most extreme cases - const strokeWidthFactor = Math.max(tmp, Math.min(1 / 200 + 0.04, 0.35)); - const angleFactor = (pos !== 0 && isRounded) ? Math.max(0.1, strokeWidthFactor) : Math.max(tmp, 0.06); - - const outX = pts[i + 1].x + ny2 * edgeWidth / 2 / angleFactor; - const outY = pts[i + 1].y - nx2 * edgeWidth / 2 / angleFactor; - const inX = pts[i + 1].x - ny2 * edgeWidth / 2 / angleFactor; - const inY = pts[i + 1].y + nx2 * edgeWidth / 2 / angleFactor; - - if (pos === 0 || !isRounded) { - // If the two segments are aligned, or if we're not drawing curved sections between segments - // just draw straight to the intersection point - c.lineTo(outX, outY); - - ((x, y) => { - fns.push(() => { - c.lineTo(x, y); - }); - })(inX, inY); - } else if (pos === -1) { - const c1x = inX + ny * edgeWidth; - const c1y = inY - nx * edgeWidth; - const c2x = inX + ny1 * edgeWidth; - const c2y = inY - nx1 * edgeWidth; - c.lineTo(c1x, c1y); - if (isRounded) { - c.quadraticCurveTo(outX, outY, c2x, c2y); // 圆角 - } else { - c.lineTo(outX, outY); - } - ((x, y) => { - fns.push(() => { - c.lineTo(x, y); - }); - })(inX, inY); - } else { - c.lineTo(outX, outY); - - ((x, y) => { - const c1x = outX - ny * edgeWidth; - const c1y = outY + nx * edgeWidth; - const c2x = outX - ny1 * edgeWidth; - const c2y = outY + nx1 * edgeWidth; - - fns.push(() => { - if (isRounded) { - c.quadraticCurveTo(x, y, c1x, c1y); - } else { - c.lineTo(x, y); - } - }); - fns.push(() => { - c.lineTo(c2x, c2y); - }); - })(inX, inY); - } - - nx = nx1; - ny = ny1; - } - } - } - orthx = edgeWidth * ny1; - orthy = - edgeWidth * nx1; - - if (markerEnd && !openEnded) { - this.paintMarker(c, pe.x, pe.y, -nx, -ny, endSize, endWidth, edgeWidth, spacing, false); - } else { - c.lineTo(pe.x - spacing * nx1 + orthx / 2, pe.y - spacing * ny1 + orthy / 2); - - const inStartX = pe.x - spacing * nx1 - orthx / 2; - const inStartY = pe.y - spacing * ny1 - orthy / 2; - - if (!openEnded) { - c.lineTo(inStartX, inStartY); - } else { - c.moveTo(inStartX, inStartY); - - fns.splice(0, 0, () => { - c.moveTo(inStartX, inStartY); - }); - } - } - - for (let i = fns.length - 1; i >= 0; i--) { - fns[i](); - } - c.closePath(); - c.endFill(); - // if (openEnded) - // { - // c.end(); - // c.stroke(); - // } - // else - // { - // c.close(); - // c.fillAndStroke(); - // } - - // Workaround for shadow on top of base arrow - // c.setShadow(false); - - // Need to redraw the markers without the low miter limit - // c.setMiterLimit(4); - - // if (isRounded) - // { - // c.setLineJoin('flat'); - // } - - // if (pts.length > 2) { - // // Only to repaint markers if no waypoints - // // Need to redraw the markers without the low miter limit - // // c.setMiterLimit(4); - // c.lineTextureStyle({ width: 1, color: 0x00000, miterLimit: 4 }); - // if (markerStart && !openEnded) { - // // c.begin(); - // this.paintMarker(c, pts[0].x, pts[0].y, startNx, startNy, startSize, startWidth, edgeWidth, spacing, true); - // // c.stroke(); - // // c.end(); - // // c.closePath(); - // } - - // if (markerEnd && !openEnded) { - // // c.begin(); - // this.paintMarker(c, pe.x, pe.y, -nx, -ny, endSize, endWidth, edgeWidth, spacing, true); - // // c.stroke(); - // // c.end(); - // // c.closePath(); - // } - // } - } - /** - * 画箭头 - * @param c - * @param ptX - * @param ptY - * @param nx - * @param ny - * @param size - * @param arrowWidth - * @param edgeWidth - * @param spacing - * @param initialMove - */ - paintMarker(c: PIXI.Graphics, ptX: number, ptY: number, nx: number, ny: number, - size: number, arrowWidth: number, edgeWidth: number, spacing: number, initialMove: boolean) { - const widthArrowRatio = edgeWidth / arrowWidth; - const orthx = edgeWidth * ny / 2; - const orthy = -edgeWidth * nx / 2; - - const spaceX = (spacing + size) * nx; - const spaceY = (spacing + size) * ny; - - if (initialMove) { - c.moveTo(ptX - orthx + spaceX, ptY - orthy + spaceY); - } else { - c.lineTo(ptX - orthx + spaceX, ptY - orthy + spaceY); - } - c.lineTo(ptX - orthx / widthArrowRatio + spaceX, ptY - orthy / widthArrowRatio + spaceY); - c.lineTo(ptX + spacing * nx, ptY + spacing * ny); - c.lineTo(ptX + orthx / widthArrowRatio + spaceX, ptY + orthy / widthArrowRatio + spaceY); - c.lineTo(ptX + orthx + spaceX, ptY + orthy + spaceY); - } - - relativeCcw(x1: number, y1: number, x2: number, y2: number, px: number, py: number) { - x2 -= x1; - y2 -= y1; - px -= x1; - py -= y1; - let ccw = px * y2 - py * x2; - - if (ccw === 0.0) { - ccw = px * x2 + py * y2; - - if (ccw > 0.0) { - px -= x2; - py -= y2; - ccw = px * x2 + py * y2; - - if (ccw < 0.0) { - ccw = 0.0; - } - } - } - return (ccw < 0.0) ? -1 : ((ccw > 0.0) ? 1 : 0); - } -} diff --git a/src/app/working-area/model/polygonIcon.ts b/src/app/working-area/model/polygonIcon.ts index a7d0eb9..20a4a5d 100644 --- a/src/app/working-area/model/polygonIcon.ts +++ b/src/app/working-area/model/polygonIcon.ts @@ -2,11 +2,12 @@ import { WorkingAreaComponent } from '../working-area.component'; import { GameMode } from './gameMode'; import * as PIXI from 'pixi.js'; import { PaintMode } from './paintModel'; +import { AxShape } from './axShape'; /** * 多边形 */ -export class PolygonIcon extends PIXI.Container { +export class PolygonIcon extends AxShape { public pointsData: PIXI.Point[]; public pointsGraphics: PIXI.Graphics[] = []; public polygonGraphics: PIXI.Graphics = new PIXI.Graphics(); @@ -35,8 +36,8 @@ export class PolygonIcon extends PIXI.Container { * * @param points 点集合 */ - constructor(public assetData: any, private workingArea: WorkingAreaComponent) { - super(); + constructor(assetData: any,workingArea: WorkingAreaComponent) { + super(assetData,workingArea); this.name = this.assetData.Id; this.x = this.assetData.Point.x; this.y = this.assetData.Point.y; @@ -140,64 +141,64 @@ export class PolygonIcon extends PIXI.Container { } }); }); - // 添加选中事件 - this.polygonGraphics.interactive = true; - this.polygonGraphics.buttonMode = true; - this.polygonGraphics - .on('mousedown', event => { - event.stopPropagation(); - this.workingArea.selection.selectOne(this); - if (this.workingArea.allowEdit && this.assetData.GameMode === this.workingArea.canvasData.gameMode) { - event.currentTarget.parent.data = event.data; - event.currentTarget.parent.alpha = 0.5; - event.currentTarget.parent.dragging = true; + // // 添加选中事件 + // this.polygonGraphics.interactive = true; + // this.polygonGraphics.buttonMode = true; + // this.polygonGraphics + // .on('mousedown', event => { + // event.stopPropagation(); + // this.workingArea.selection.selectOne(this); + // if (this.workingArea.allowEdit && this.assetData.GameMode === this.workingArea.canvasData.gameMode) { + // event.currentTarget.parent.data = event.data; + // event.currentTarget.parent.alpha = 0.5; + // event.currentTarget.parent.dragging = true; - event.currentTarget.parent.dragPoint = event.data.getLocalPosition(event.currentTarget.parent.parent); - event.currentTarget.parent.dragPoint.x -= event.currentTarget.parent.x; - event.currentTarget.parent.dragPoint.y -= event.currentTarget.parent.y; - } - }) - .on('mouseup', event => { - if (event.currentTarget.parent.dragging) { - event.currentTarget.parent.alpha = 1; - event.currentTarget.parent.dragging = false; - event.currentTarget.parent.data = null; - } - }) - .on('mouseupoutside', event => { - if (event.currentTarget.parent.dragging) { - event.currentTarget.parent.alpha = 1; - event.currentTarget.parent.dragging = false; - event.currentTarget.parent.data = null; - } - }) - .on('mousemove', event => { - if (event.currentTarget.parent.dragging) { - const newPosition = event.currentTarget.parent.data.getLocalPosition(event.currentTarget.parent.parent); - event.currentTarget.parent.x = newPosition.x - event.currentTarget.parent.dragPoint.x; - event.currentTarget.parent.y = newPosition.y - event.currentTarget.parent.dragPoint.y; + // event.currentTarget.parent.dragPoint = event.data.getLocalPosition(event.currentTarget.parent.parent); + // event.currentTarget.parent.dragPoint.x -= event.currentTarget.parent.x; + // event.currentTarget.parent.dragPoint.y -= event.currentTarget.parent.y; + // } + // }) + // .on('mouseup', event => { + // if (event.currentTarget.parent.dragging) { + // event.currentTarget.parent.alpha = 1; + // event.currentTarget.parent.dragging = false; + // event.currentTarget.parent.data = null; + // } + // }) + // .on('mouseupoutside', event => { + // if (event.currentTarget.parent.dragging) { + // event.currentTarget.parent.alpha = 1; + // event.currentTarget.parent.dragging = false; + // event.currentTarget.parent.data = null; + // } + // }) + // .on('mousemove', event => { + // if (event.currentTarget.parent.dragging) { + // const newPosition = event.currentTarget.parent.data.getLocalPosition(event.currentTarget.parent.parent); + // event.currentTarget.parent.x = newPosition.x - event.currentTarget.parent.dragPoint.x; + // event.currentTarget.parent.y = newPosition.y - event.currentTarget.parent.dragPoint.y; - this.assetData.Point = new PIXI.Point(this.x, this.y); - this.workingArea.canvasData.isChange = true; - } - }) - .on('rightclick', event => { - // this.workingArea.selection.deselectAll(); - }) - .on('mouseover', event => { - event.stopPropagation(); - if (this.workingArea.previewImage !== null - && this.workingArea.getPaintMode() === PaintMode.singlePointIcon) { - this.workingArea.previewImage.visible = false; - } - }) - .on('mouseout', event => { - event.stopPropagation(); - if (this.workingArea.previewImage !== null - && this.workingArea.getPaintMode() === PaintMode.singlePointIcon) { - this.workingArea.previewImage.visible = true; - } - }); + // this.assetData.Point = new PIXI.Point(this.x, this.y); + // this.workingArea.canvasData.isChange = true; + // } + // }) + // .on('rightclick', event => { + // // this.workingArea.selection.deselectAll(); + // }) + // .on('mouseover', event => { + // event.stopPropagation(); + // if (this.workingArea.previewImage !== null + // && this.workingArea.getPaintMode() === PaintMode.singlePointIcon) { + // this.workingArea.previewImage.visible = false; + // } + // }) + // .on('mouseout', event => { + // event.stopPropagation(); + // if (this.workingArea.previewImage !== null + // && this.workingArea.getPaintMode() === PaintMode.singlePointIcon) { + // this.workingArea.previewImage.visible = true; + // } + // }); } /** * 设置点显示状态 diff --git a/src/app/working-area/working-area.component.ts b/src/app/working-area/working-area.component.ts index 688a14c..e211dce 100644 --- a/src/app/working-area/working-area.component.ts +++ b/src/app/working-area/working-area.component.ts @@ -10,12 +10,12 @@ import { AxImageShape } from './model/axImageShape'; import { GameMode } from './model/gameMode'; import { MultipointIcon } from './model/multipointIcon'; import { PolygonIcon } from './model/polygonIcon'; -import { Pipeline } from './model/pipeline'; import { PaintMode } from './model/paintModel'; import { AxShape } from './model/axShape'; import { PropertyInfo } from './model/PropertyInfo'; import { AxPreviewImageShape } from './model/axPreviewImageShape'; import { AxArrowConnector } from './model/axArrowConnector'; +import { Legend } from './model/legend'; @Component({ @@ -82,10 +82,6 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV * 绘制点集合 */ public paintPoints: PIXI.Point[] = []; - /** - * 绘制中的管线 - */ - public paintingPipeline: Pipeline = null; /** * 绘制中的多点图标 */ @@ -314,7 +310,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV */ this.on('select', obj => { if (this.allowEdit) { - if (obj instanceof MultipointIcon) { + if (obj instanceof AxArrowConnector) { + obj.setPointsVisible(true); + } + else if (obj instanceof MultipointIcon) { if (obj.assetData.GameMode === this.canvasData.gameMode) { obj.setPointVisiable(true); } else { @@ -338,7 +337,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV */ this.on('deselect', obj => { if (this.allowEdit) { - if (obj instanceof MultipointIcon) { + if (obj instanceof AxArrowConnector) { + obj.setPointsVisible(false); + } + else if (obj instanceof MultipointIcon) { obj.setPointVisiable(false); } else if (obj instanceof PolygonIcon) { obj.filters = []; @@ -375,6 +377,12 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV } else if (item instanceof AxPreviewImageShape) { const data = 1 / scale; item.scale.set(data); + }else if (item instanceof AxArrowConnector) { + const data = 1 / scale; + item.text.scale.set(data); + item.pointSprites.forEach(point => { + point.scale.set(data); + }); } }); @@ -479,6 +487,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV await this.createBackgroundImage(this.canvasData.selectStorey.imageUrl); this.createFloorShape(); + this.createBuildingShape(); if (this.canvasData.gameMode === GameMode.Assignment) { this.createWorkNode(); } @@ -503,15 +512,48 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV break; case 3: if (floorData[key].Name === '水带') { - const pipeline = new Pipeline(floorData[key], this); - } else { - const wall = new AxArrowConnector(floorData[key], this); + const distance = new AxArrowConnector(floorData[key], this,false,true); + } else if(floorData[key].Name === '距离'){ + const distance = new AxArrowConnector(floorData[key], this,true,true); + }else if(floorData[key].Name === '普通墙' || floorData[key].Name === '承重墙'){ + const wall = new AxArrowConnector(floorData[key], this,false,false); } break; } }); } - + /** + * 创建建筑图形 + */ + private createBuildingShape() { + const buildingData = this.canvasData.originalcompanyBuildingData.data; + const floor = this.canvasData.selectStorey; + Object.keys(buildingData).forEach((key) => { + if (buildingData[key].FloorId === floor.id) { + switch (buildingData[key].InteractiveMode) { + case 0: + const singleIcon = new AxImageShape(buildingData[key], this); + singleIcon.moveable = this.allowEdit && this.canvasData.gameMode === singleIcon.assetData.GameMode; + break; + case 1: + const icon = new MultipointIcon(buildingData[key], this); + break; + case 2: + const polygonIcon = new PolygonIcon(buildingData[key], this); + break; + case 3: + if (buildingData[key].Name === '水带') { + const distance = new AxArrowConnector(buildingData[key], this, false, true); + } else if (buildingData[key].Name === '距离') { + const distance = new AxArrowConnector(buildingData[key], this, true, true); + } else if (buildingData[key].Name === '普通墙' || buildingData[key].Name === '承重墙') { + const wall = new AxArrowConnector(buildingData[key], this, false, false); + } + break; + } + } + }); + } private createWorkNode() { // 加载处置节点数据 const nodeData = this.canvasData.selectPanelPoint.Data; @@ -530,7 +572,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV const polygonIcon = new PolygonIcon(nodeData[key][tempKey], this); break; case 3: - const pipeline = new Pipeline(nodeData[key][tempKey], this); + const pipeline = new AxArrowConnector(nodeData[key][tempKey], this,false,true); break; } }); @@ -763,20 +805,20 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV break; case PaintMode.Pipeline: if (this.canvasData.selectTemplateData.name === '水带') { - if (this.paintingPipeline !== null) { + if (this.paintingShape !== 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(); + this.paintingShape.assetData.MultiPoint = JSON.parse(JSON.stringify(this.paintPoints)); + this.paintingShape.refresh(); } } else { this.previewLineSegment.visible = true; + this.enterPaintEndButton.position = this.circleShadow.position; + this.enterPaintEndButton.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.paintPoints.length < 2) { + return; } if (this.paintingShape === null) { const jsonObject = JSON.parse(JSON.stringify(this.canvasData.selectTemplateData.propertyInfos)); @@ -809,7 +851,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV IsFromBuilding: this.canvasData.selectTemplateData.isFromBuilding, GameMode: this.canvasData.gameMode }; - this.paintingShape = new AxArrowConnector(assetData2, this); + if (this.canvasData.selectTemplateData.name === '距离') { + this.paintingShape = new AxArrowConnector(assetData2, this,true,true); + } else if (this.canvasData.selectTemplateData.name === '普通墙' || this.canvasData.selectTemplateData.name === '承重墙') { + this.paintingShape = new AxArrowConnector(assetData2, this,false,false); + } } else { this.paintingShape.assetData.MultiPoint = JSON.parse(JSON.stringify(this.paintPoints)); this.paintingShape.redraw(); @@ -1009,7 +1055,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV */ public initPipelineData(): void { this.paintPoints = []; - this.paintingPipeline = null; + this.paintingShape = null; } public beginPaintingArrows(): void { this.paintMode = PaintMode.Arrows; @@ -1064,10 +1110,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV this.backgroundImage.removeChild(this.paintingIcon); } - if (this.paintingPipeline !== undefined - && this.paintingPipeline !== null) { - this.backgroundImage.removeChild(this.paintingPipeline); - } + // if (this.paintingShape !== undefined + // && this.paintingShape !== null) { + // this.backgroundImage.removeChild(this.paintingShape); + // } if (this.paintingShape !== null) { this.backgroundImage.removeChild(this.paintingShape); this.paintingShape = null; @@ -1196,8 +1242,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV const polygonIcon = new PolygonIcon(newData, this); break; case PaintMode.Pipeline: - if (item.Name !== '水带') { - const wall = new AxArrowConnector(newData, this); + if (item.Name === '距离') { + const wall = new AxArrowConnector(newData, this,true,true); + } else if (item.Name === '普通墙' || item.Name === '承重墙') { + const wall = new AxArrowConnector(newData, this,false,false); } break; }