Browse Source

更新版本1.0.3.20210109b

master
徐振升 4 years ago
parent
commit
bb568965f7
  1. 10
      src/app/working-area/model/axArrowConnector.ts
  2. 4
      src/app/working-area/model/axImageShape.ts
  3. 22
      src/app/working-area/model/axLegend.ts
  4. 3
      src/app/working-area/model/axPreviewImageShape.ts
  5. 6
      src/app/working-area/model/multipointIcon.ts
  6. 4
      src/app/working-area/model/polygonIcon.ts
  7. 24
      src/app/working-area/working-area.component.ts

10
src/app/working-area/model/axArrowConnector.ts

@ -2,6 +2,7 @@ import { WorkingAreaComponent } from '../working-area.component';
import * as PIXI from 'pixi.js'; import * as PIXI from 'pixi.js';
import { AxShape } from './axShape'; import { AxShape } from './axShape';
import { Sprite } from 'pixi.js'; import { Sprite } from 'pixi.js';
import { GameMode } from './gameMode';
/** /**
* *
@ -50,6 +51,7 @@ export class AxArrowConnector extends AxShape {
this.sortableChildren = true; this.sortableChildren = true;
this.text.zIndex = this.children.length; this.text.zIndex = this.children.length;
this.text.visible = this.showName; this.text.visible = this.showName;
this.text.angle = -this.workingArea.backgroundImage.angle;
} }
public drawPoints() { public drawPoints() {
@ -115,11 +117,16 @@ export class AxArrowConnector extends AxShape {
} }
// 设置缩放 // 设置缩放
public setItemScale(scale: number) { public setItemScale(scale: number) {
this.text.scale.set(scale); // this.text.scale.set(scale);
this.pointSprites.forEach(point => { this.pointSprites.forEach(point => {
point.scale.set(scale); point.scale.set(scale);
}); });
} }
public setNameVisible(value: boolean, mode: GameMode) {
if (this.assetData.GameMode === mode) {
this.text.visible = value;
}
}
/** /**
* *
*/ */
@ -359,6 +366,7 @@ export class AxArrowConnector extends AxShape {
// c.end(); // c.end();
// } // }
// } // }
this.text.angle = -this.workingArea.backgroundImage.angle;
} }
paintMarker(c: PIXI.Graphics, ptX: number, ptY: number, nx: number, ny: number, paintMarker(c: PIXI.Graphics, ptX: number, ptY: number, nx: number, ny: number,
size: number, arrowWidth: number, edgeWidth: number, spacing: number, initialMove: boolean) { size: number, arrowWidth: number, edgeWidth: number, spacing: number, initialMove: boolean) {

4
src/app/working-area/model/axImageShape.ts

@ -50,6 +50,7 @@ export class AxImageShape extends AxShape {
downRight: PIXI.Sprite; downRight: PIXI.Sprite;
constructor(assetData: any, workingArea: WorkingAreaComponent) { constructor(assetData: any, workingArea: WorkingAreaComponent) {
super(assetData, workingArea); super(assetData, workingArea);
this.angle = -this.workingArea.backgroundImage.angle;
this.x = this.assetData.Point.x; this.x = this.assetData.Point.x;
this.y = this.assetData.Point.y; this.y = this.assetData.Point.y;
this.name = this.assetData.Id; this.name = this.assetData.Id;
@ -185,7 +186,7 @@ export class AxImageShape extends AxShape {
if (this.assetData.FixedSize) { if (this.assetData.FixedSize) {
this.scale.set(scale); this.scale.set(scale);
} else { } else {
this.text.scale.set(scale); // this.text.scale.set(scale);
this.upLeft.scale.set(scale); this.upLeft.scale.set(scale);
this.upRight.scale.set(scale); this.upRight.scale.set(scale);
this.downLeft.scale.set(scale); this.downLeft.scale.set(scale);
@ -265,5 +266,6 @@ export class AxImageShape extends AxShape {
+ this.assetData.PropertyInfos?.find(item => item.PropertyName === '名称/编号')?.PropertyValue; + this.assetData.PropertyInfos?.find(item => item.PropertyName === '名称/编号')?.PropertyValue;
this.text.x = this.image.x; this.text.x = this.image.x;
this.text.y = this.image.y - this.image.height / 2; this.text.y = this.image.y - this.image.height / 2;
this.angle = -this.workingArea.backgroundImage.angle;
} }
} }

22
src/app/working-area/model/axLegend.ts

@ -15,6 +15,7 @@ export class AxLegend extends AxShape {
*/ */
constructor(assetData: any, workingArea: WorkingAreaComponent,shapeMap:Map<string,Legend>) { constructor(assetData: any, workingArea: WorkingAreaComponent,shapeMap:Map<string,Legend>) {
super(assetData, workingArea); super(assetData, workingArea);
this.angle = -this.workingArea.backgroundImage.angle;
this.name = this.assetData.Id; this.name = this.assetData.Id;
this.shapeMap = shapeMap; this.shapeMap = shapeMap;
this.refresh(); this.refresh();
@ -42,15 +43,15 @@ export class AxLegend extends AxShape {
refresh() { refresh() {
this.removeChildren(); this.removeChildren();
let index = 1; let index = 1;
let offset = 50; let offset = 25;
let number = 2; let number = 2;
let width = 450; let width = 300;
let height = 100; let height = 50;
for (let i = 0; i < number; i++){ for (let i = 0; i < number; i++){
if (i >= this.shapeMap.size) break; if (i >= this.shapeMap.size) break;
let x = width * i; let x = width * i;
var textImage = new Text('图例',{ var textImage = new Text('图例',{
fontSize: 36, fontSize: 20,
fill: ['#0000ff'], fill: ['#0000ff'],
}); });
textImage.anchor.set(0.5) textImage.anchor.set(0.5)
@ -59,7 +60,7 @@ export class AxLegend extends AxShape {
this.addChild(textImage); this.addChild(textImage);
var textName = new Text("名称"+' 【数量】',{ var textName = new Text("名称"+' 【数量】',{
fontSize: 36, fontSize: 20,
fill: ['#0000ff'], fill: ['#0000ff'],
}); });
textName.anchor.set(0,0.5); textName.anchor.set(0,0.5);
@ -71,14 +72,16 @@ export class AxLegend extends AxShape {
let x = index % number === 0 ? (number -1) * width : (index % number - 1) * width; let x = index % number === 0 ? (number -1) * width : (index % number - 1) * width;
let y = Math.ceil(index / number) * height; let y = Math.ceil(index / number) * height;
let image: Sprite = Sprite.from(item.ImageUrl); let image: Sprite = Sprite.from(item.ImageUrl);
image.width = 64; image.width = 32;
image.height = 64; image.height = 32;
image.anchor.set(0.5); image.anchor.set(0.5);
image.x = x; image.x = x;
image.y = y; image.y = y;
this.addChild(image); this.addChild(image);
var textName = new Text(item.Name+' 【'+item.Count.toString()+'】'); var textName = new Text(item.Name+' 【'+item.Count.toString()+'】',{
fontSize: 20,
});
textName.anchor.set(0,0.5); textName.anchor.set(0,0.5);
textName.x = x + image.width/2 + offset; textName.x = x + image.width/2 + offset;
textName.y = y; textName.y = y;
@ -89,7 +92,7 @@ export class AxLegend extends AxShape {
let rect = this.getLocalBounds(); let rect = this.getLocalBounds();
this.pen.clear(); this.pen.clear();
this.pen.beginFill(0xffffff,0.01); this.pen.beginFill(0xffffff,0.01);
this.pen.lineStyle(5, 0x000000); this.pen.lineStyle(3, 0x000000);
this.pen.moveTo(rect.left-offset, rect.top-offset); this.pen.moveTo(rect.left-offset, rect.top-offset);
this.pen.lineTo(rect.right+offset, rect.top-offset); this.pen.lineTo(rect.right+offset, rect.top-offset);
this.pen.lineTo(rect.right+offset, rect.bottom+offset); this.pen.lineTo(rect.right+offset, rect.bottom+offset);
@ -98,6 +101,7 @@ export class AxLegend extends AxShape {
this.pen.endFill(); this.pen.endFill();
} }
this.addChild(this.pen); this.addChild(this.pen);
this.angle = -this.workingArea.backgroundImage.angle;
} }
} }

3
src/app/working-area/model/axPreviewImageShape.ts

@ -33,4 +33,7 @@ export class AxPreviewImageShape extends AxShape {
*/ */
public drawBorder(scale: number) { public drawBorder(scale: number) {
} }
public refresh() {
this.angle = -this.workingArea.backgroundImage.angle;
}
} }

6
src/app/working-area/model/multipointIcon.ts

@ -36,7 +36,7 @@ export class MultipointIcon extends AxShape {
* @param points * @param points
*/ */
constructor(assetData: any,workingArea: WorkingAreaComponent) { constructor(assetData: any,workingArea: WorkingAreaComponent) {
super(assetData,workingArea); super(assetData, workingArea);
this.name = this.assetData.Id; this.name = this.assetData.Id;
this.pointsData = this.assetData.MultiPoint; this.pointsData = this.assetData.MultiPoint;
this.x = this.assetData.Point.x; this.x = this.assetData.Point.x;
@ -46,6 +46,7 @@ export class MultipointIcon extends AxShape {
this.text.anchor.set(0.5,0.5); this.text.anchor.set(0.5,0.5);
// this.text.position = this.getLineCenter(this.pointsData[0], this.pointsData[1]); // this.text.position = this.getLineCenter(this.pointsData[0], this.pointsData[1]);
this.text.visible = this.showName; this.text.visible = this.showName;
this.text.angle = -this.workingArea.backgroundImage.angle;
this.addChild(this.text); this.addChild(this.text);
// 画线图标 // 画线图标
for (let i = 0, count = this.pointsData.length - 1; i < count; i++) { for (let i = 0, count = this.pointsData.length - 1; i < count; i++) {
@ -184,7 +185,7 @@ export class MultipointIcon extends AxShape {
} }
// 设置缩放 // 设置缩放
public setItemScale(scale: number) { public setItemScale(scale: number) {
this.text.scale.set(scale); // this.text.scale.set(scale);
this.pointsGraphics.forEach((item, index, array) => { this.pointsGraphics.forEach((item, index, array) => {
item.scale.set(scale); item.scale.set(scale);
}); });
@ -198,5 +199,6 @@ export class MultipointIcon extends AxShape {
this.text.text = this.assetData.Name this.text.text = this.assetData.Name
+ '\r\n' + '\r\n'
+ this.assetData.PropertyInfos.find(item => item.PropertyName === '名称/编号')?.PropertyValue; + this.assetData.PropertyInfos.find(item => item.PropertyName === '名称/编号')?.PropertyValue;
this.text.angle = -this.workingArea.backgroundImage.angle;
} }
} }

4
src/app/working-area/model/polygonIcon.ts

@ -75,6 +75,7 @@ export class PolygonIcon extends AxShape {
this.text.anchor.set(0.5); this.text.anchor.set(0.5);
this.text.position = this.calculatePolygonGravityCenter(this.pointsData); this.text.position = this.calculatePolygonGravityCenter(this.pointsData);
this.text.visible = this.showName; this.text.visible = this.showName;
this.text.angle = -this.workingArea.backgroundImage.angle;
// console.log(this.calculatePolygonGravityCenter(this.pointsData)); // console.log(this.calculatePolygonGravityCenter(this.pointsData));
this.polygonGraphics.addChild(this.text); this.polygonGraphics.addChild(this.text);
// 添加圆点事件 // 添加圆点事件
@ -156,7 +157,7 @@ export class PolygonIcon extends AxShape {
} }
// 设置缩放 // 设置缩放
public setItemScale(scale: number) { public setItemScale(scale: number) {
this.text.scale.set(scale); // this.text.scale.set(scale);
this.pointsGraphics.forEach(point => { this.pointsGraphics.forEach(point => {
point.scale.set(scale); point.scale.set(scale);
}); });
@ -194,5 +195,6 @@ export class PolygonIcon extends AxShape {
this.polygonGraphics.beginFill(color, angle); this.polygonGraphics.beginFill(color, angle);
this.polygonGraphics.drawPolygon(this.getPoints()); this.polygonGraphics.drawPolygon(this.getPoints());
this.polygonGraphics.endFill(); this.polygonGraphics.endFill();
this.text.angle = -this.workingArea.backgroundImage.angle;
} }
} }

24
src/app/working-area/working-area.component.ts

@ -141,7 +141,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
// Beta版: 该版本相对于α版已有了很大的改进,消除了严重的错误,但还是存在着一些缺陷,需要经过多次测试来进一步消除,此版本主要的修改对像是软件的UI。 // Beta版: 该版本相对于α版已有了很大的改进,消除了严重的错误,但还是存在着一些缺陷,需要经过多次测试来进一步消除,此版本主要的修改对像是软件的UI。
// RC版: 该版本已经相当成熟了,基本上不存在导致错误的BUG,与即将发行的正式版相差无几。 // RC版: 该版本已经相当成熟了,基本上不存在导致错误的BUG,与即将发行的正式版相差无几。
// Release版: 该版本意味“最终版本”,在前面版本的一系列测试版之后,终归会有一个正式版本,是最终交付用户使用的一个版本。该版本有时也称为标准版。一般情况下,Release不会以单词形式出现在软件封面上,取而代之的是符号®。 // Release版: 该版本意味“最终版本”,在前面版本的一系列测试版之后,终归会有一个正式版本,是最终交付用户使用的一个版本。该版本有时也称为标准版。一般情况下,Release不会以单词形式出现在软件封面上,取而代之的是符号®。
public VERSION = '1.0.1.20210108_beta'; public VERSION = '1.0.3.20210109_beta';
/** /**
* *
*/ */
@ -442,6 +442,8 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
item.setNameVisible(value, mode); item.setNameVisible(value, mode);
} else if (item instanceof PolygonIcon) { } else if (item instanceof PolygonIcon) {
item.setNameVisible(value, mode); item.setNameVisible(value, mode);
} else if (item instanceof AxArrowConnector) {
item.setNameVisible(value, mode);
} }
}); });
} }
@ -491,17 +493,6 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.selection.select(obj); 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);
// }
/** /**
* *
*/ */
@ -605,6 +596,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.backgroundImage.sortableChildren = true; this.backgroundImage.sortableChildren = true;
this.backgroundImage this.backgroundImage
.on('pointerdown', event => { .on('pointerdown', event => {
if (event.data.button !== 0) return;
if (!event.currentTarget.dragging && this.selection.isMultiselection === false) { if (!event.currentTarget.dragging && this.selection.isMultiselection === false) {
this.selection.deselectAll(); this.selection.deselectAll();
event.currentTarget.data = event.data; event.currentTarget.data = event.data;
@ -662,6 +654,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
if (this.paintPoints.length >= 2) { if (this.paintPoints.length >= 2) {
this.enterPaintEndButton.position = this.circleShadow.position; this.enterPaintEndButton.position = this.circleShadow.position;
this.enterPaintEndButton.visible = true; this.enterPaintEndButton.visible = true;
this.enterPaintEndButton.zIndex = this.backgroundImage.children.length;
} }
if (this.paintingIcon !== null) { if (this.paintingIcon !== null) {
@ -719,6 +712,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.enterPaintEndButton.position = this.circleShadow.position; this.enterPaintEndButton.position = this.circleShadow.position;
} else if (this.paintPoints.length >= 3) { } else if (this.paintPoints.length >= 3) {
this.enterPaintEndButton.visible = true; this.enterPaintEndButton.visible = true;
this.enterPaintEndButton.zIndex = this.backgroundImage.children.length;
} }
this.paintPoints.forEach((value, index, array) => { this.paintPoints.forEach((value, index, array) => {
if (index === 0) { if (index === 0) {
@ -747,6 +741,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.previewLineSegment.visible = true; this.previewLineSegment.visible = true;
this.enterPaintEndButton.position = this.circleShadow.position; this.enterPaintEndButton.position = this.circleShadow.position;
this.enterPaintEndButton.visible = true; this.enterPaintEndButton.visible = true;
this.enterPaintEndButton.zIndex = this.backgroundImage.children.length;
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));
if (this.paintPoints.length < 2) { if (this.paintPoints.length < 2) {
@ -908,6 +903,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
// 设置图片缩放 // 设置图片缩放
this.backgroundImage.scale.set(scale); this.backgroundImage.scale.set(scale);
this.backgroundImage.visible = true; this.backgroundImage.visible = true;
this.backgroundImage.children.forEach((item) => {
if (item instanceof AxShape) {
item.refresh();
}
})
} }
} }
/** /**

Loading…
Cancel
Save