yunxing 4 years ago
parent
commit
c3bf15684d

+ 22 - 30
src/components/baseEditer.vue

@@ -248,36 +248,35 @@ export default {
                 //  ece9f93ffc754035bcec2e8f27d66a59 //冷却塔2
                 let Nodes = [
                     {
-                        ID: "", // ID
-                        id2: "",
+                        ID: "123123", // ID
                         Name: "1#冷冻泵", // 名称
                         AttachObjectIds: ["Eq001", "Eq002"], // 返回工程信息化对象 ID 列表
-                        Pos: { X: 1770, Y: 1288 }, // 位置
-                        Size: { Width: 0, Height: 0 }, // 大小
+                        Pos: { X: 170, Y: 188 }, // 位置
+                        Size: { Width: 80, Height: 80 }, // 大小
                         InfoList: [
                             {
                                 Code: "", // 对应设备的信息点
                                 Name: "温度", //信息点名称
-                                X: 770,
-                                Y: 288,
+                                X: 30,
+                                Y: 20,
                                 Width: 100,
                                 Height: 25,
                                 FontSize: 12,
-                                Background: "#000000",
+                                Background: "#ffffff",
                                 TextAlign: "",
-                                Color: "#FFFFFF"
+                                Color: "#000000"
                             },
                             {
                                 Code: "", // 对应设备的信息点
                                 Name: "湿度", //信息点名称
-                                X: 770,
-                                Y: 288,
+                                X: 40,
+                                Y: 28,
                                 Width: 100,
                                 Height: 25,
                                 FontSize: 12,
-                                Background: "#000000",
+                                Background: "#ffffff",
                                 TextAlign: "",
-                                Color: "#FFFFFF"
+                                Color: "#000000"
                             }
                         ],
                         Properties: {
@@ -288,11 +287,11 @@ export default {
                                 },
                                 {
                                     Status: "Stop", // 停止
-                                    ImageKey: ""
+                                    ImageKey: "4aa6051e025d4193a776a5b2d2604ed8"
                                 },
                                 {
                                     Status: "Selected", // 选择
-                                    ImageKey: ""
+                                    ImageKey: "ece9f93ffc754035bcec2e8f27d66a59"
                                 },
                                 {
                                     Status: "Warning", // 报警
@@ -302,27 +301,17 @@ export default {
                         } // 由应用自己定义
                     },
                     {
-                        ID: "", // ID
+                        ID: "34535345", // ID
                         Name: "2#冷冻泵", // 名称
                         AttachObjectIds: ["Eq001", "Eq002"], // 返回工程信息化对象 ID 列表
-                        Pos: { X: 2770, Y: 2288 },
-                        Size: { Width: 0, Height: 0 }, // 大小
-                        AnchorList: [
-                            {
-                                ID: "", // 锚点ID
-                                Pos: "" // 锚点的坐标
-                            }
-                        ],
-                        OutLine: [
-                            [{ X: 0, Y: 0, Z: 0 }] // 外轮廓
-                            // 内轮廓
-                        ], // 轮廓线
+                        Pos: { X: 177, Y: 288 },
+                        Size: { Width: 80, Height: 80 }, // 大小
                         InfoList: [
                             {
                                 Code: "", // 对应设备的信息点
-                                Name: "2#冷冻泵", //信息点名称
-                                X: 516,
-                                Y: 347,
+                                Name: "温度", //信息点名称
+                                X: 50,
+                                Y: 50,
                                 Width: 100,
                                 Height: 25,
                                 FontSize: 12,
@@ -343,8 +332,11 @@ export default {
                 ];
                 parserData.parseData(Nodes);
                 parserData.equipmentItem.map(item => {
+                    item.selectable = true;
                     this.scene.addItem(item);
+                    this.scene.equipmentItem.push(item);
                 });
+                window.vm = this;
                 // this.scene.addEquipment(event);
             });
             // TODO: 修改底图

+ 20 - 7
src/components/mapClass/EditScence.ts

@@ -66,7 +66,7 @@ export class EditScence extends SGraphScene {
     /** 背景图像是否加载完成 */
     private bgImg: boolean = false;
     /** 设备对象 */
-    private equipmentItem: SEquipmentItem | null = null;
+    equipmentItem: any = [];
 
     /** 绘制区域时 是否为点选   */
     isSelecting: boolean = false;
@@ -85,7 +85,7 @@ export class EditScence extends SGraphScene {
     /**  管线对象 */
     Relations: any = [];
     _isEditStatus: Boolean = true; // 是否可编辑
-    set isEditStatus(bol: Boolean): void {
+    set isEditStatus(bol: Boolean) {
         this._isEditStatus = bol;
     }
     get isEditStatus(): Boolean {
@@ -118,7 +118,9 @@ export class EditScence extends SGraphScene {
      * 监听变化
      * @param obj 变化后的对象
      */
+    // TODO:
     listChange(obj: any) {
+        console.log("adfasfas", obj);
         let itemType: string = "equipment";
         if (obj.itemList[0] instanceof STextMarkerItem) {
             itemType = "baseText";
@@ -692,6 +694,8 @@ export class EditScence extends SGraphScene {
      * 删除指定item
      */
     deleiteItem(): void {
+        console.log("deleiteItem");
+
         if (this.focusItem) {
             if (
                 (this.focusItem instanceof SZoneLegendItem ||
@@ -730,6 +734,8 @@ export class EditScence extends SGraphScene {
                 if (c > -1) {
                     this.Relations.splice(c, 1);
                 }
+                // HACK: 删除设备对象
+                this.equipmentItem = this.equipmentItem.filter((item: any) => item.id !== this.focusItem?.id);
                 this.focusItem = null;
                 if (this.view) {
                     this.view.update();
@@ -756,7 +762,7 @@ export class EditScence extends SGraphScene {
     }
 
     /**
-     * 保存数据
+     * TODO: 保存数据
      */
     saveMsgItem(): any {
         const Nodes: any = [];
@@ -771,6 +777,10 @@ export class EditScence extends SGraphScene {
         this.Relations.forEach((e) => {
             Relations.push(e.toData());
         });
+        // TODO: 保存equipmentItem
+        this.equipmentItem.map((item: any) => {
+            Nodes.push(item.toData());
+        });
         let element = {
             Nodes,
             Markers,
@@ -800,6 +810,7 @@ export class EditScence extends SGraphScene {
      * 完成事件创建的回调函数
      */
     finishCreated(item: any) {
+        console.log("finishCreated");
         this.setCmd = "choice";
         this.focusItem = item;
         this.selectContainer.toggleItem(item);
@@ -807,7 +818,8 @@ export class EditScence extends SGraphScene {
     ////////////////////////
     //  以下为鼠标键盘操作事件
     onMouseDown(event: SMouseEvent): any {
-        console.log("onMouseDown");
+        console.log("onMouseDown", this.cmd);
+        console.log(this.grabItem);
         // 判断是否开启吸附,并且有吸附的点
         if (this.isAbsorbing && this.highLight && this.highLight.visible) {
             event.x = this.highLight.point.x;
@@ -1096,7 +1108,7 @@ export class EditScence extends SGraphScene {
      */
     setBackgroundImgItem(url: string): void {
         let imgItem = new SImageItem(null);
-        imgItem.connect("imgLoadOver", this, ()=>{
+        imgItem.connect("imgLoadOver", this, () => {
             this.bgImg = true;
         });
         if (this.backgroundImgItem) {
@@ -1129,9 +1141,10 @@ export class EditScence extends SGraphScene {
         console.log(event.x, event.y);
         equipmentItem.moveTo(event.x, event.y);
         equipmentItem.imgKey = "4aa6051e025d4193a776a5b2d2604ed8";
+        this.equipmentItem.push(equipmentItem);
         this.addItem(equipmentItem);
-        this.grabItem = equipmentItem;
-        this.focusItem = equipmentItem;
+        // this.grabItem = equipmentItem;
+        // this.focusItem = equipmentItem;
         this.cmd = "choice";
     }
 }

+ 101 - 18
src/lib/items/SEquipmentItem.ts

@@ -9,51 +9,119 @@ export class SEquipmentItem extends SObjectItem {
     textArr: STextItem[] = [];
     /** imgkey值 */
     _imgKey: string = "";
+    /** 设备状态值 */
+    _status: string = "Running";
+    /**保存设备数据 */
+    _epData: EquipmentData | any = {};
     get imgKey(): string {
         return this._imgKey;
     }
     set imgKey(v: string) {
         this._imgKey = v;
         this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${v}`;
-        this.update();
+        this.img.connect("imgLoadOver", this, () => {
+            this.update();
+        });
+    }
+    get status(): string {
+        return this._status;
+    }
+    set status(v: string) {
+        this._status = v;
+        this.updateStatus();
+    }
+    // 将EquipmentData保存起来,以便修改status时,可以找到StatusImage
+    get epData(): EquipmentData {
+        return this._epData;
+    }
+    set epData(v: EquipmentData) {
+        this._epData = v;
     }
     /**
      *
      * @param parent 父类
-     * @param textInfo  需要展示的节点信息
+     * @param epData  需要展示的节点信息
      */
-    constructor(parent: SGraphItem | null, textInfo?: EquipmentData) {
+    constructor(parent: SGraphItem | null, epData: EquipmentData) {
         super(parent);
-        console.log(textInfo);
-        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
-        this.img.width = 24;
-        this.img.height = 24;
+        console.log(epData);
+        epData && (this.epData = epData);
         this.moveable = true;
+        this.id = epData.ID;
         this.zOrder = ItemOrder.textOrder;
         this.textArr = [];
-        /*  if (textInfo) {
-            let x = textInfo.Pos.X;
-            let y = textInfo.Pos.Y;
-            this.x = x;
-            this.y = y;
-        } */
         // 有信息点信息时,绘制信息点信息
-        if (textInfo) {
+        // 加载设备
+        if (epData && epData?.Pos) {
+            this.loadEquipment(epData);
+        } else if (epData) {
+            //绘制设备
+            this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
+            this.img.width = 24;
+            this.img.height = 24;
+            //添加设备
             let index = 0;
-            for (let key in textInfo) {
+            for (let key in epData) {
                 let textItem = new STextItem(this);
                 textItem.moveable = true;
                 textItem.backgroundColor = SColor.White;
                 textItem.font.size = 14;
                 textItem.moveTo(17, index * 20 - 10);
                 // @ts-ignore
-                textItem.text = `${key} : ${textInfo[key]}`;
+                textItem.text = `${key} : ${epData[key]}`;
                 this.textArr.push(textItem);
                 index++;
             }
         }
     }
-
+    /**
+     * 加载设备
+     * @param epData 设备信息
+     */
+    loadEquipment(epData: EquipmentData): void {
+        // 位置
+        this.x = epData.Pos.X;
+        this.y = epData.Pos.Y;
+        let url = epData.Properties?.StatusImage![0].ImageKey;
+        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${url}`;
+        // 图片宽高
+        this.img.width = epData.Size.Width;
+        this.img.height = epData.Size.Height;
+        // 名称
+        let nameItem = new STextItem(this);
+        nameItem.moveable = true;
+        nameItem.backgroundColor = SColor.Transparent;
+        nameItem.font.size = 14;
+        nameItem.text = epData.Name;
+        nameItem.moveTo(-epData.Size.Width / 2, epData.Size.Height / 2 + 7);
+        this.textArr.push(nameItem);
+        // 信息点
+        let { InfoList } = epData;
+        InfoList.map(({ Name, X, Y, Width, Height, FontSize, Background, Color, TextAlign }) => {
+            let textItem = new STextItem(this);
+            textItem.moveable = true;
+            // textItem.backgroundColor = SColor.Transparent;
+            textItem.backgroundColor = new SColor(Background);
+            textItem.width = Width;
+            textItem.height = Height;
+            textItem.text = Name;
+            textItem.font.size = FontSize;
+            textItem.color = new SColor(Color);
+            textItem.pos.x = X;
+            textItem.pos.y = Y;
+            this.textArr.push(textItem);
+        });
+    }
+    /**
+     * 状态变化后,更新状态切换图片
+     * 如果切换后的状态无ImageKey,使用Running状态的ImageKey
+     */
+    updateStatus() {
+        let StatusImage = this.epData.Properties.StatusImage,
+            currentSts = StatusImage.filter((v) => v.Status === this._status)[0],
+            runingSts = StatusImage.filter((v) => v.Status === "Running")[0];
+        this.imgKey = currentSts.ImageKey || runingSts.ImageKey;
+    }
     /**
      * 宽高发生变化
      *
@@ -69,6 +137,21 @@ export class SEquipmentItem extends SObjectItem {
         }
         return rect.adjusted(-5, -5, 10, 10);
     } // Function boundingRect()
+    toData(): EquipmentData {
+        //  更新相关数据
+        let data = this.epData;
+        data.Pos.X = this.x;
+        data.Pos.Y = this.y;
+        data.Size.Width = this.width;
+        data.Size.Height = this.height;
+        // @ts-ignore
+        // infoList中坐标处理
+        data.InfoList.map((item, index, arr) => {
+            arr[index].X = this.textArr[index + 1].pos.x;
+            arr[index].Y = this.textArr[index + 1].pos.y;
+        });
+        return data;
+    }
 
     /**
      * Item绘制操作
@@ -78,7 +161,7 @@ export class SEquipmentItem extends SObjectItem {
     onDraw(painter: SPainter): void {
         painter.pen.lineWidth = painter.toPx(1);
         painter.pen.color = SColor.Black;
-        painter.brush.color = SColor.White;
+        painter.brush.color = SColor.Transparent;
         painter.drawRect(this.boundingRect());
     } // Function onDraw()
 }

+ 4 - 4
src/lib/types/EquipmentData.ts

@@ -12,8 +12,8 @@ interface Size {
 interface Info {
     Code: string; // 对应设备的信息点
     Name: string; //信息点名称
-    X: string;
-    Y: string;
+    X: number;
+    Y: number;
     Width: number;
     Height: number;
     FontSize: number;
@@ -37,7 +37,7 @@ export interface EquipmentData {
     };
     Size: Size; // 大小
     InfoList: Info[];
-    Properties?: {
-        StatusImage?: StatusImage[];
+    Properties: {
+        StatusImage: StatusImage[];
     };
 } // Interface ElementData