陈鹏飞 4 years ago
parent
commit
ebd8927e90
  1. 18
      package-lock.json
  2. 2
      package.json
  3. 114
      src/app/working-area/working-area.component.ts

18
package-lock.json generated

@ -12898,6 +12898,11 @@
"sha.js": "^2.4.8" "sha.js": "^2.4.8"
} }
}, },
"penner": {
"version": "0.1.3",
"resolved": "https://registry.npm.taobao.org/penner/download/penner-0.1.3.tgz",
"integrity": "sha1-C4tILU6bOa8vPXw3WSIpuKzClwU="
},
"perfect-scrollbar": { "perfect-scrollbar": {
"version": "1.5.0", "version": "1.5.0",
"resolved": "https://registry.npm.taobao.org/perfect-scrollbar/download/perfect-scrollbar-1.5.0.tgz", "resolved": "https://registry.npm.taobao.org/perfect-scrollbar/download/perfect-scrollbar-1.5.0.tgz",
@ -12975,6 +12980,14 @@
"@pixi/filter-zoom-blur": "3.1.1" "@pixi/filter-zoom-blur": "3.1.1"
} }
}, },
"pixi-viewport": {
"version": "4.20.0",
"resolved": "https://registry.npm.taobao.org/pixi-viewport/download/pixi-viewport-4.20.0.tgz",
"integrity": "sha1-Gu3vsQhZqv7toJUJ8o4jNvaVDQ4=",
"requires": {
"penner": "^0.1.3"
}
},
"pixi.js": { "pixi.js": {
"version": "5.3.3", "version": "5.3.3",
"resolved": "https://registry.npm.taobao.org/pixi.js/download/pixi.js-5.3.3.tgz", "resolved": "https://registry.npm.taobao.org/pixi.js/download/pixi.js-5.3.3.tgz",
@ -15913,6 +15926,11 @@
} }
} }
}, },
"three": {
"version": "0.125.2",
"resolved": "https://registry.npm.taobao.org/three/download/three-0.125.2.tgz",
"integrity": "sha1-3LoSdJoutBUi4VISuRnNP79ymxI="
},
"through": { "through": {
"version": "2.3.8", "version": "2.3.8",
"resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz", "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz",

2
package.json

@ -35,9 +35,11 @@
"ngx-echarts": "^4.2.2", "ngx-echarts": "^4.2.2",
"ngx-perfect-scrollbar": "^8.0.0", "ngx-perfect-scrollbar": "^8.0.0",
"pixi-filters": "^3.1.1", "pixi-filters": "^3.1.1",
"pixi-viewport": "^4.20.0",
"pixi.js": "^5.3.2", "pixi.js": "^5.3.2",
"rxjs": "~6.5.4", "rxjs": "~6.5.4",
"swiper": "^5.3.7", "swiper": "^5.3.7",
"three": "^0.125.2",
"tslib": "^1.10.0", "tslib": "^1.10.0",
"viewerjs": "^1.9.0", "viewerjs": "^1.9.0",
"zone.js": "~0.10.2" "zone.js": "~0.10.2"

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

@ -157,8 +157,12 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
* Beta版: 该版本相对于α版已有了很大的改进UI * Beta版: 该版本相对于α版已有了很大的改进UI
* RC版: 该版本已经相当成熟了BUG * RC版: 该版本已经相当成熟了BUG
* Release版: 该版本意味使Release不会以单词形式出现在软件封面上® * Release版: 该版本意味使Release不会以单词形式出现在软件封面上®
* -
* -
* -
* -
*/ */
public VERSION = '1.0.18.20210205_beta'; public VERSION = '1.2.2.20210220_beta';
/** /**
* *
*/ */
@ -201,7 +205,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
if (this.allowEdit && this.canvasData.gameMode === axShape.assetData.GameMode) { if (this.allowEdit && this.canvasData.gameMode === axShape.assetData.GameMode) {
// 删除图例对象 // 删除图例对象
const temp = this.backgroundImage.getChildByName('图例') as AxLegend; const temp = this.backgroundImage.getChildByName('图例') as AxLegend;
if ( temp !== undefined if (temp !== undefined
&& temp !== null && temp !== null
&& axShape.assetData.Name !== '图例') { && axShape.assetData.Name !== '图例') {
const itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1); const itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1);
@ -249,7 +253,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
} else if (window.console) { } else if (window.console) {
window.console.log('\n %c 版本号 - ' + this.VERSION + '\n'); window.console.log('\n %c 版本号 - ' + this.VERSION + '\n');
} }
} }
/** /**
* *
*/ */
@ -384,7 +388,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.rectToolGraphics.visible = false; this.rectToolGraphics.visible = false;
const shapes: AxShape[] = []; const shapes: AxShape[] = [];
this.backgroundImage.children.forEach(item => { this.backgroundImage.children.forEach(item => {
if ( item instanceof AxShape if (item instanceof AxShape
&& item instanceof AxPreviewImageShape === false) { && item instanceof AxPreviewImageShape === false) {
// 判断2个矩形是否相交 // 判断2个矩形是否相交
const rect1 = this.rectToolGraphics.getBounds(); const rect1 = this.rectToolGraphics.getBounds();
@ -403,7 +407,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.rectToolGraphics.visible = false; this.rectToolGraphics.visible = false;
const shapes: AxShape[] = []; const shapes: AxShape[] = [];
this.backgroundImage.children.forEach(item => { this.backgroundImage.children.forEach(item => {
if ( item instanceof AxShape if (item instanceof AxShape
&& item instanceof AxPreviewImageShape === false) { && item instanceof AxPreviewImageShape === false) {
// 判断2个矩形是否相交 // 判断2个矩形是否相交
const rect1 = this.rectToolGraphics.getBounds(); const rect1 = this.rectToolGraphics.getBounds();
@ -468,8 +472,8 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
* *
*/ */
public zoomFit() { public zoomFit() {
const imageWidth = this.backgroundImage.texture.width; const imageWidth = this.backgroundImage.width;
const imageHeight = this.backgroundImage.texture.height; const imageHeight = this.backgroundImage.height;
const appWidth = this.app.view.width - 470; const appWidth = this.app.view.width - 470;
const appHeight = this.app.view.height; const appHeight = this.app.view.height;
const wScale = appWidth / imageWidth; const wScale = appWidth / imageWidth;
@ -561,7 +565,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
} }
} }
const temp = this.backgroundImage.getChildByName('图例') as AxLegend; const temp = this.backgroundImage.getChildByName('图例') as AxLegend;
if ( temp !== undefined if (temp !== undefined
&& temp !== null && temp !== null
&& axShape.assetData.Name !== '图例') { && axShape.assetData.Name !== '图例') {
const itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1); const itemLegend = new Legend(axShape.assetData.Name, axShape.assetData.ImageUrl, 1);
@ -748,19 +752,19 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
FillMode: this.canvasData.selectTemplateData.fillMode, FillMode: this.canvasData.selectTemplateData.fillMode,
FireElementId: this.canvasData.selectTemplateData.fireElementId, FireElementId: this.canvasData.selectTemplateData.fireElementId,
FixedSize: this.canvasData.selectTemplateData.fixedSize, FixedSize: this.canvasData.selectTemplateData.fixedSize,
Height : 32, Height: 32,
Width : 32, Width: 32,
Id: ObjectID.default.generate(), Id: ObjectID.default.generate(),
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.previewImage.x, this.previewImage.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,
DrawMode : this.canvasData.selectTemplateData.drawMode, DrawMode: this.canvasData.selectTemplateData.drawMode,
Thickness : this.canvasData.selectTemplateData.thickness, Thickness: this.canvasData.selectTemplateData.thickness,
IsFromBuilding : this.canvasData.selectTemplateData.isFromBuilding, IsFromBuilding: this.canvasData.selectTemplateData.isFromBuilding,
GameMode: this.canvasData.gameMode, GameMode: this.canvasData.gameMode,
Tag: this.canvasData.selectTemplateData.tag Tag: this.canvasData.selectTemplateData.tag
}; };
@ -905,7 +909,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.paintingShape = new AxArrowConnector(assetData2, this, true, true); this.paintingShape = new AxArrowConnector(assetData2, this, true, true);
} else if (this.canvasData.selectTemplateData.name === '普通墙' || this.canvasData.selectTemplateData.name === '承重墙') { } else if (this.canvasData.selectTemplateData.name === '普通墙' || this.canvasData.selectTemplateData.name === '承重墙') {
this.paintingShape = new AxArrowConnector(assetData2, this, false, false); this.paintingShape = new AxArrowConnector(assetData2, this, false, false);
} else if (this.canvasData.selectTemplateData.name === '水带' ) { } else if (this.canvasData.selectTemplateData.name === '水带') {
this.paintingShape = new AxArrowConnector(assetData2, this, false, true); this.paintingShape = new AxArrowConnector(assetData2, this, false, true);
} }
} else { } else {
@ -974,26 +978,60 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
/** /**
* *
*/ */
public async refreshBackgroundImage(imageUrl: string = this.canvasData.selectStorey.imageUrl, imageAngle: number = this.canvasData.selectStorey.imageAngle): Promise<void> { public async refreshBackgroundImage(
imageUrl: string = this.canvasData.selectStorey.imageUrl,
imageAngle: number = this.canvasData.selectStorey.imageAngle,
imageWidth: number = this.canvasData.selectStorey.imageWidth,
imageHeight: number = this.canvasData.selectStorey.imageHeight,
): Promise<void> {
if (imageAngle === undefined || imageAngle === null) { if (imageAngle === undefined || imageAngle === null) {
imageAngle = 0; imageAngle = 0;
} }
this.backgroundImage.scale.set(1); this.backgroundImage.scale.set(1);
// this.backgroundImage.pivot.set(0);
if (imageUrl === undefined || imageUrl === null || imageUrl === '') { if (imageUrl === undefined || imageUrl === null || imageUrl === '') {
this.backgroundImage.texture = this.backgroundTexture; this.backgroundImage.texture = this.backgroundTexture;
} else { } else {
this.backgroundImage.texture = await PIXI.Texture.fromURL(imageUrl); // this.backgroundImage.texture = await PIXI.Texture.fromURL(imageUrl);
if (imageWidth !== undefined
&& imageWidth !== null
&& imageWidth !== 0
&& imageHeight !== undefined
&& imageHeight !== null
&& imageHeight !== 0) {
// console.log(imageWidth, imageHeight);
// this.backgroundImage.width = imageWidth;
// this.backgroundImage.height = imageHeight;
this.backgroundImage.texture =
await PIXI.Texture.fromURL(imageUrl + '?x-oss-process=image/resize,m_fixed,h_' + imageHeight + ',w_' + imageWidth); // 图片处理
} else {
// this.backgroundImage.width = this.backgroundImage.texture.width;
// this.backgroundImage.height = this.backgroundImage.texture.height;
this.backgroundImage.texture =
await PIXI.Texture.fromURL(imageUrl); // 请求原图
}
} }
this.backgroundImage.angle = imageAngle;
// if (imageWidth !== undefined
// && imageWidth !== null
// && imageWidth !== 0
// && imageHeight !== undefined
// && imageHeight !== null
// && imageHeight !== 0) {
// console.log(imageWidth, imageHeight);
// this.backgroundImage.width = imageWidth;
// this.backgroundImage.height = imageHeight;
// } else {
// this.backgroundImage.width = this.backgroundImage.texture.width;
// this.backgroundImage.height = this.backgroundImage.texture.height;
// }
this.backgroundImage.x = this.backgroundImage.width / 2; this.backgroundImage.x = this.backgroundImage.width / 2;
this.backgroundImage.y = this.backgroundImage.height / 2; this.backgroundImage.y = this.backgroundImage.height / 2;
this.backgroundImage.angle = imageAngle;
this.resetCamera2D(); this.resetCamera2D();
// this.backgroundImage.children.forEach((item) => {
// if (item instanceof AxShape) {
// item.refresh();
// }
// });
} }
/** /**
* *
@ -1077,17 +1115,17 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
GameMode: this.canvasData.gameMode, GameMode: this.canvasData.gameMode,
PropertyInfos: [ PropertyInfos: [
{ {
Tag : '', Tag: '',
Order : 0, Order: 0,
Enabled : true, Enabled: true,
Visible : true, Visible: true,
Required : false, Required: false,
RuleName : '', RuleName: '',
RuleValue : '', RuleValue: '',
PhysicalUnit : '', PhysicalUnit: '',
PropertyName : '列', PropertyName: '列',
PropertyType : 2, PropertyType: 2,
PropertyValue : 2, PropertyValue: 2,
}, },
], ],
Scale: 1, Scale: 1,
@ -1172,7 +1210,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.previewLineSegment.clear(); this.previewLineSegment.clear();
this.previewLineSegment.lineStyle(1 / this.backgroundImage.scale.x, 0x00ff00, 1); this.previewLineSegment.lineStyle(1 / this.backgroundImage.scale.x, 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);
} }
/** /**
* *
@ -1249,7 +1287,7 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
this.previewImage.visible = false; this.previewImage.visible = false;
} }
// 重置组件状态 // 重置组件状态
if ( this.paintingIcon !== undefined if (this.paintingIcon !== undefined
&& this.paintingIcon !== null) { && this.paintingIcon !== null) {
this.backgroundImage.removeChild(this.paintingIcon); this.backgroundImage.removeChild(this.paintingIcon);
} }

Loading…
Cancel
Save