|
@@ -101,56 +101,75 @@ export class SPlanScene extends SBaseEditScene {
|
|
|
|
|
|
return this.grabItem.onMouseDown(event);
|
|
|
}
|
|
|
-
|
|
|
+ let item: any = null;
|
|
|
+ // 线条
|
|
|
if (this.editCmd == "EditBaseLine") {
|
|
|
- this.addPolyLineArrow(event);
|
|
|
+ item = this.addPolyLineArrow(event);
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "EditBasePolyLine") {
|
|
|
- this.addPolyLine(event);
|
|
|
+ item = this.addPolyLine(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBasetext") {
|
|
|
- this.addTextItem(event);
|
|
|
+ } else if (this.editCmd == "EditBasetext") { // 文字
|
|
|
+ item = this.addTextItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "BaseExplain") {
|
|
|
- this.addExplainItem(event);
|
|
|
+ } else if (this.editCmd == "BaseExplain") { // 批注
|
|
|
+ item = this.addExplainItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBaseImage") {
|
|
|
- this.addImageItem(event);
|
|
|
+ } else if (this.editCmd == "EditBaseImage") { // 图片
|
|
|
+ item = this.addImageItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBgImage") {
|
|
|
- this.addBgImageItem(event);
|
|
|
+ } else if (this.editCmd == "EditBgImage") { // 背景图片
|
|
|
+ item = this.addBgImageItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBasePolygon") {
|
|
|
- this.addPolygonItem(event);
|
|
|
+ } else if (this.editCmd == "EditBasePolygon") { // 多边形
|
|
|
+ item = this.addPolygonItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBaseRect") {
|
|
|
- this.addRectItem(event);
|
|
|
+ } else if (this.editCmd == "EditBaseRect") { // 矩形
|
|
|
+ item = this.addRectItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "EditBaseTriangle") {
|
|
|
- this.addTriangleItem(event);
|
|
|
+ item = this.addTriangleItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBaseCircle") {
|
|
|
- this.addCircleItem(event);
|
|
|
+ } else if (this.editCmd == "EditBaseCircle") { // 圆
|
|
|
+ item = this.addCircleItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
- } else if (this.editCmd == "EditBaseArrows") {
|
|
|
- this.addPolygonArrow(event);
|
|
|
+ } else if (this.editCmd == "EditBaseArrows") { // 箭头
|
|
|
+ item = this.addPolygonArrow(event);
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
|
|
|
- this.addPipeUninTool(event, this.editCmd);
|
|
|
+ item = this.addPipeUninTool(event, this.editCmd);
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "EditBasePipe") {
|
|
|
- this.addBasePipe(event, this.legendObj);
|
|
|
+ item = this.addBasePipe(event, this.legendObj);
|
|
|
+ item.zOrder = 9600;
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "") {
|
|
|
super.onMouseDown(event);
|
|
|
}
|
|
|
+ // 创建通用元素时,层级设置为 9800 (设备 9700 ,设备关系 9600 ,空间 9500,背景图片3000 )
|
|
|
+ if (this.editCmd &&
|
|
|
+ [
|
|
|
+ "EditBaseLine",
|
|
|
+ "EditBasetext",
|
|
|
+ "EditBaseImage",
|
|
|
+ "BaseExplain",
|
|
|
+ "EditBaseRect",
|
|
|
+ "EditBaseArrows",
|
|
|
+ "EditBasePolyLine",
|
|
|
+ "EditBasePolygon",
|
|
|
+ "EditBaseCircle",
|
|
|
+ "EditBaseTriangle",
|
|
|
+ ].includes(this.editCmd)
|
|
|
+ ) {
|
|
|
+ item.zOrder = 9800;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 重载添加图片-可以根据底图缩放的图片
|
|
|
* @param event
|
|
|
*/
|
|
|
- addImageItem(event: SMouseEvent): void {
|
|
|
+ addImageItem(event: SMouseEvent): SBaseImageEdit {
|
|
|
const data = {
|
|
|
name: "基础图片",
|
|
|
num: 1,
|
|
@@ -172,8 +191,10 @@ export class SPlanScene extends SBaseEditScene {
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
+ this.grabItem = item;
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
this.finishCreated(item);
|
|
|
+ return item;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -378,8 +399,10 @@ export class SPlanScene extends SBaseEditScene {
|
|
|
if (item instanceof SGraphEdit && !(item instanceof SGraphSelectContainer)) {
|
|
|
// 添加节点数据
|
|
|
if (item.data && Marktype.includes(item.data.properties.type)) {
|
|
|
- console.log(item.toData());
|
|
|
- markers.push(item.toData());
|
|
|
+ const itemData = item.toData()
|
|
|
+ // 保存通用元素的 层级
|
|
|
+ itemData.style.default.zOrder = item.zOrder
|
|
|
+ markers.push(itemData);
|
|
|
}
|
|
|
|
|
|
if (item.legendData && ObjExtInfoType.includes(item.legendData.properties.type)) {
|
|
@@ -405,8 +428,6 @@ export class SPlanScene extends SBaseEditScene {
|
|
|
* @return boolean
|
|
|
*/
|
|
|
onKeyDown(event: KeyboardEvent): any {
|
|
|
- console.log("onKeyDown:", event);
|
|
|
- console.log(this);
|
|
|
// if (!this.isEditStatus) {
|
|
|
// return true;
|
|
|
// }
|
|
@@ -511,7 +532,6 @@ export class SPlanScene extends SBaseEditScene {
|
|
|
* 粘贴
|
|
|
*/
|
|
|
paste(): void {
|
|
|
- debugger;
|
|
|
const copyList = JSON.parse(JSON.stringify(this.copyString));
|
|
|
const parserData = new SPlanParser();
|
|
|
const graphItemList: SGraphEdit[] = [];
|