Browse Source

移动命令 可撤销重做

haojianlong 4 years ago
parent
commit
b0c75016a9
1 changed files with 32 additions and 19 deletions
  1. 32 19
      src/components/editClass/persagy-edit/PTopoScene.ts

+ 32 - 19
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -26,10 +26,10 @@
 import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
 import { SGraphEdit } from "@persagy-web/edit";
 import { SMouseEvent } from "@persagy-web/base/lib";
-import { SGraphAddCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
+import { SGraphAddCommand, SGraphItem, SGraphMoveCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 // 引入命令
-import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
+import { SColor, SFont, SArrowStyleType, SPoint } from '@persagy-web/draw/lib';
 import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint, SBaseBtns } from "./"
 import { ItemOrder, SItemStatus } from '@persagy-web/big/lib';
 
@@ -117,7 +117,7 @@ export class PTopoScene extends SBaseEditScene {
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {
-            this.addPolyLineArrow(event);
+            const item = this.addPolyLineArrow(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBasePolyLine") {
             this.addPolyLine(event);
@@ -125,15 +125,13 @@ export class PTopoScene extends SBaseEditScene {
         } else if (this.editCmd == "EditBasetext") {
             this.addTextItem(event);
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "BaseExplain") {
+        } else if (this.editCmd == "BaseExplain") {
             this.addExplainItem(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseImage") {
             this.addImageItem(event)
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBasePolygon") { //
+        } else if (this.editCmd == "EditBasePolygon") { //
             this.addPolygonItem(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditBaseRect") { // 设置层级与多边形一致
@@ -147,21 +145,17 @@ export class PTopoScene extends SBaseEditScene {
             const item = this.addCircleItem(event)
             item.zOrder = ItemOrder.polygonOrder
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBaseArrows") { // 设置层级与多边形一致
+        } else if (this.editCmd == "EditBaseArrows") { // 设置层级与多边形一致
             const item = this.addPolygonArrow(event)
             item.zOrder = ItemOrder.polygonOrder
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
+        } else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
             this.addPipeUninTool(event, this.editCmd)
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "EditBasePipe") {
+        } else if (this.editCmd == "EditBasePipe") {
             this.addBasePipe(event, this.legendObj);
             this.clearCmdStatus();
-        }
-        else if (this.editCmd == "equation") {
+        } else if (this.editCmd == "equation") {
             // 添加公式
             this.addEquation(event, this.editCmd);
             this.clearCmdStatus();
@@ -203,7 +197,7 @@ export class PTopoScene extends SBaseEditScene {
      * @param event     鼠标事件
      * @param cmd       命令
      */
-    addPipeUninTool(event: SMouseEvent, cmd: string): void {
+    addPipeUninTool(event: SMouseEvent, cmd: string): SBasePipeUninTool {
         const data = {
             /** 名称 */
             name: '基础管道接头',
@@ -236,13 +230,14 @@ export class PTopoScene extends SBaseEditScene {
         if (this.view) {
             this.view.update();
         }
+        return item;
     }
 
     /**
      * 添加公式
      * @param event
      */
-    addEquation(event: SMouseEvent, cmd: string) {
+    addEquation(event: SMouseEvent, cmd: string): SBaseEquation {
         const data = {
             /** 名称 */
             name: '公式',
@@ -271,13 +266,14 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
     /**
      * 添加信息点
      * @param event
      */
-    addInfoPoint(event: SMouseEvent, cmd: string) {
+    addInfoPoint(event: SMouseEvent, cmd: string): SBaseInfoPoint {
         const data = {
             /** 名称 */
             name: '信息点',
@@ -306,13 +302,14 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
     /**
      * 添加按钮
      * @param event
      */
-    SBaseBtn(event: SMouseEvent) {
+    SBaseBtn(event: SMouseEvent): SBaseBtns {
         const data = {
             /** 名称 */
             name: '按钮',
@@ -344,6 +341,7 @@ export class PTopoScene extends SBaseEditScene {
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
+        return item;
     }
 
 
@@ -553,4 +551,19 @@ export class PTopoScene extends SBaseEditScene {
         this.addListCommand(graphItemList);
         this.view ? this.view.update() : '';
     }
+
+    /**
+     * 覆盖底层添加 item 方法,增加绑定移动事件
+    */
+    addItem(item: SGraphItem): void {
+        super.addItem(item);
+        item.connect('onMove', this, this.onItemMove.bind(this));
+    }
+
+    /**
+     * 添加移动命令到命令栈
+    */
+    onItemMove(item: SGraphItem, arg: SPoint[]) {
+        this.undoStack.push(new SGraphMoveCommand(this, item, arg[0], arg[1]));
+    }
 }