Browse Source

添加空间

zhangyu 4 years ago
parent
commit
d94bfad631

+ 2 - 0
package.json

@@ -21,6 +21,8 @@
     "@persagy-web/big": "2.2.33",
     "@persagy-web/draw": "2.2.8",
     "@persagy-web/graph": "2.2.34",
+    "@persagy-web/big-edit": "2.2.5",
+    "@persagy-web/edit": "2.2.4",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 17 - 21
src/components/editview/basePlanEditer.vue

@@ -21,7 +21,7 @@ import base64ToFile from "@/utils/base64ToFile";
 import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
 import { planerSave, planerRead, planerPublish } from "@/api/labsl";
-import { equipQuery } from "@/api/equipcomponent";
+import { equipQuery, spaceQuery } from "@/api/equipcomponent";
 import { imgBaseUrl } from "@/api/imageservice";
 export default {
     components: { topoTooltip },
@@ -57,6 +57,7 @@ export default {
             "projectId",
             "floorMap",
             "equipItemMap",
+            "zoneIteMap",
             "buildingId",
             "floorId",
             "folderId",
@@ -309,6 +310,11 @@ export default {
             bus.$on("addEquipment", (equipList) => {
                 this.mergeEquipData(equipList);
             });
+            // 手动添加空间实例
+            bus.$off("addZone");
+            bus.$on("addZone", (zoneList) => {
+                this.mergeZoneData(zoneList);
+            });
             // 更改设备信息点
             bus.$off("changeEquipMsgPoint");
             bus.$on("changeEquipMsgPoint", (val) => {
@@ -365,7 +371,7 @@ export default {
                             const res = await equipQuery(params);
                             if (res.result === "success") this.mergeEquipData(res.content);
                         } else if (rule?.returnType === "zone") {
-                            const res = await equipQuery(params);
+                            const res = await spaceQuery(params);
                             if (res.result === "success") this.mergeZoneData(res.content);
                         } else if (rule?.returnType === "equipGroup") {
                             setTimeout(() => {
@@ -409,9 +415,8 @@ export default {
                     // 添加设备对象类型
                     equip.properties = { type: "BaseEquipment" };
                     const equipItem = new SPlanEquipment(null, equip);
-                    equipItem.selectable = true;
-                    equipItem.moveable = true;
-                    equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
+                    equipItem.visible = Boolean(equipItem.legendData.bimLocation);
+                    // equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
                     equipItem.connect("onContextMenu", this, this.scene.getItem);
                     if (this.styleMap[equip.id]) {
                         SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.id]);
@@ -430,35 +435,25 @@ export default {
         // 解析空间数据
         mergeZoneData(zoneList) {
             zoneList.forEach((zone) => {
-                if (!this.zoneItemMap[zone.id]) {
+                if (!this.zoneIteMap[zone.id]) {
                     if (this.objExtInfo[zone.id]) {
                         zone = { ...this.objExtInfo[zone.id], ...zone };
                     }
-                    if (!zone.pos) {
-                        //如果未维护设备在图中的坐标
-                        if (zone.locationJson) {
-                            // 判断设备是否维护BIM坐标
-                            const { x, y, z } = zone.locationJson;
-                            zone.pos = { x, y: -y, z };
-                        } else {
-                            // 否则显示默认坐标位置
-                            zone.pos = { x: 0, y: 0, z: 0 };
-                        }
-                    }
                     // 添加设备对象类型
                     zone.properties = { type: "BaseZone" };
                     const zoneItem = new SPlanZone(null, zone);
-                    zoneItem.selectable = true;
-                    zoneItem.moveable = true;
-                    zoneItem.connect("finishCreated", this.scene, this.scene.finishCreated);
+                    zoneItem.visible = Boolean(zoneItem.legendData.outline);
+                    // zoneItem.connect("finishCreated", this.scene, this.scene.finishCreated);
                     zoneItem.connect("onContextMenu", this, this.scene.getItem);
+                    console.log(this.styleMap)
                     if (this.styleMap[zone.id]) {
                         SPlanDecorator.zoneDecorator(zoneItem, this.styleMap[zone.id]);
                     } else if (this.styleMap[zone.classCode]) {
                         SPlanDecorator.zoneDecorator(zoneItem, this.styleMap[zone.classCode]);
                     } else {
-                        SPlanDecorator.zoneDecorator(zoneItem, this.styleMap["defaultEquipStyle"]);
+                        SPlanDecorator.zoneDecorator(zoneItem, this.styleMap["defaultZoneStyle"]);
                     }
+                    window.zone = zoneItem
                     this.scene.addItem(zoneItem);
                     this.ADDZONE(zoneItem);
                 }
@@ -517,6 +512,7 @@ export default {
                         t.endAnchor = endAnc || null;
                     }
                 }
+                t.showSelect = false;
                 t.connect("finishCreated", this.scene, this.scene.finishCreated);
                 t.connect("onContextMenu", this, this.scene.getItem);
                 this.scene.addItem(t);

+ 10 - 2
src/lib/SPlanDecorator.ts

@@ -64,10 +64,18 @@ export class SPlanDecorator {
      * @param style 样式数据
      */
     static zoneDecorator(zoneItem: SPlanZone, style: Style): void {
-        // 设置设备字体颜色
+        // 设置空间字体颜色
         if (style.color) zoneItem.color = new SColor(style.color);
-        // 设置设备字体大小
+        // 设置空间字体大小
         if (style.size) zoneItem.font = new SFont("sans-serif", style.size);
+        // 设置空间填充色
+        if (style.fillColor) zoneItem.fillColor = new SColor(style.fillColor);
+        // 设置空间边框颜色
+        if (style.strokeColor) zoneItem.strokeColor = new SColor(style.strokeColor);
+        // 设置空间边框线宽
+        if (style.lineWidth) zoneItem.lineWidth = style.lineWidth;
+        // 设置空间边框线型
+        if (style?.lineStyle && style.lineStyle >= 0) zoneItem.lineStyle = style.lineStyle;
         // 设置设备公式
         if (style.formula) zoneItem.formula = style.formula;
     }

+ 7 - 4
src/lib/item/SPlanEquipment.ts

@@ -86,6 +86,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         // 偏移二分之一文本高度
         textItem.moveTo(this.img.width * 0.5, -(this.font.size * 1.25 * 0.5));
         this.textItemList.push(textItem);
+        this.moveable = true;
+        this.selectable = true;
         this.legendData = data;
     } // Constructor
 
@@ -125,10 +127,10 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         // this.textItemList[0].text = this.legendData.codeName ? this.legendData.codeName : "";
         this.showAnchor = false;
         this.anotherMsg = this.legendData?.anotherMsg ? this.legendData.anotherMsg : "";
-        this.x = this.legendData.pos.x;
-        this.y = this.legendData.pos.y;
-        this.moveable = true;
-        this.selectable = true;
+        if (this.legendData.pos?.x && this.legendData.pos?.y) {
+            this.x = this.legendData.pos.x;
+            this.y = this.legendData.pos.y;
+        }
     }
 
     initUrl() {
@@ -156,5 +158,6 @@ export class SPlanEquipment extends SBaseIconTextEdit {
             };
             return objExtInfo;
         }
+        return new Object();
     }
 }

+ 238 - 8
src/lib/item/SPlanZone.ts

@@ -24,15 +24,35 @@
  * *********************************************************************************************************************
  */
 
-import { SGraphItem } from "@persagy-web/graph/lib";
+import { SGraphItem, STextItem, SLineStyle, STextOrigin, Point } from "@persagy-web/graph";
+import { SColor, SFont, SPainter, SLineCapStyle, SPoint, SPath, SPolygonUtil, SRect } from "@persagy-web/draw";
 import { Example } from "../index";
-import { SBasePolygonEdit } from "@persagy-web/edit";
+import { SGraphEdit, SBaseTextEdit } from "@persagy-web/edit";
 /**
  * 编辑基础空间类
  *
  * @author 张宇 <taohuzy@163.com>
  */
-export class SPlanZone extends SBasePolygonEdit {
+export class SPlanZone extends SGraphEdit {
+    /** X 坐标最小值 */
+    private minX = Number.MAX_SAFE_INTEGER;
+    /** X 坐标最大值 */
+    private maxX = Number.MIN_SAFE_INTEGER;
+    /** Y 坐标最小值 */
+    private minY = Number.MAX_SAFE_INTEGER;
+    /** Y 坐标最大值 */
+    private maxY = Number.MIN_SAFE_INTEGER;
+    /** 墙轮廓线坐标 list */
+    private pointList: SPoint[][][] = [];
+    /** path 对象 */
+    private pathList: SPath[] = [];
+    /** text item   */
+    textItem: SBaseTextEdit = new SBaseTextEdit(this, null);
+
+    /** 是否可移动 */
+    set moveable(val: boolean) {
+        return;
+    }
     /** 设备图例 */
     private _legendData: Example | null = null;
     set legendData(val) {
@@ -43,6 +63,89 @@ export class SPlanZone extends SBasePolygonEdit {
         return this._legendData;
     } // get legendData()
 
+    /** 边框颜色 */
+    _strokeColor: SColor = SColor.Black;
+    get strokeColor(): SColor {
+        return this._strokeColor;
+    } // Get strokeColor
+    set strokeColor(v: SColor) {
+        this._strokeColor = new SColor(v);
+        this.update();
+    } // Set strokeColor
+
+    /** 填充颜色 */
+    _fillColor: SColor = SColor.Black;
+    get fillColor(): SColor {
+        return this._fillColor;
+    } // Get fillColor
+    set fillColor(v: SColor) {
+        this._fillColor = new SColor(v);
+        this.update();
+    } // Set fillColor
+
+    /** 线条样式 */
+    _lineStyle: SLineStyle = SLineStyle.Solid;
+    get lineStyle(): SLineStyle {
+        return this._lineStyle;
+    } // Get lineStyle
+    set lineStyle(v: SLineStyle) {
+        this._lineStyle = v;
+        this.update();
+    } // Set lineStyle
+
+    /** 线条宽度 */
+    _lineWidth: number = 1;
+    get lineWidth(): number {
+        return this._lineWidth;
+    } // Get lineWidth
+    set lineWidth(v: number) {
+        this._lineWidth = v;
+        this.update();
+    } // Set lineWidth
+
+    /** 宽度是否像素 */
+    widthIsPx: boolean = false;
+
+    /**文本内容 */
+    get text(): string {
+        return this.textItem.text;
+    } // Get text
+    set text(v: string) {
+        this.textItem.text = v;
+        this.update();
+    } // Set text
+    /**文本颜色 */
+    get color(): SColor {
+        return this.textItem.color;
+    } // Get color
+    set color(v: SColor) {
+        this.textItem.color = v;
+    } // Set color
+    /**文本样式 */
+    get font(): SFont {
+        return this.textItem.font;
+    } // Get font
+    set font(v: SFont) {
+        this.textItem.font = v;
+    } // Set font
+
+    /** 是否显示文字  */
+    _showText: boolean = true;
+    get showText(): boolean {
+        return this._showText;
+    }
+    set showText(v: boolean) {
+        if (v === this._showText) {
+            return;
+        }
+        this._showText = v;
+        if (v) {
+            this.textItem.show();
+        } else {
+            this.textItem.hide();
+        }
+    }
+
     /** 公式 */
     private _formula: string = "";
     set formula(val) {
@@ -63,9 +166,11 @@ export class SPlanZone extends SBasePolygonEdit {
      */
     constructor(parent: SGraphItem | null, data: Example) {
         super(parent);
-        this.moveable = true;
+        this.textItem.originPosition = STextOrigin.Center;
+        this.textItem.isTransform = false;
+        this.zOrder = 9700;
         this.selectable = true;
-        this.zOrder = 9750;
+        this.showSelect = false;
         this.legendData = data;
     } // Constructor
 
@@ -76,8 +181,95 @@ export class SPlanZone extends SBasePolygonEdit {
         if (!this.legendData) return;
         this.id = this.legendData.id ? this.legendData.id : "";
         this.anotherMsg = this.legendData?.anotherMsg ? this.legendData.anotherMsg : "";
-        this.x = this.legendData.pos.x;
-        this.y = this.legendData.pos.y;
+        this.textItem.text = this.legendData.localName ? this.legendData.localName : "";
+        if (this.legendData?.outline?.length && this.legendData.outline[0] && this.legendData.outline[0]?.length) {
+            let tempArr = this.legendData.outline.map((t): Point[][] => {
+                return t.map((it): Point[] => {
+                    return it.map(
+                        (item): Point => {
+                            return { x: item.X, y: -item.Y };
+                        }
+                    );
+                });
+            })
+            this.minX = tempArr[0][0][0].x;
+            this.maxX = this.minX;
+            this.minY = tempArr[0][0][0].y;
+            this.maxY = this.minY;
+            this.textItem.moveTo(this.minX, this.minY);
+            // 处理轮廓点数组,同时计算最大最小值
+            this.pointList = tempArr.map((t): SPoint[][] => {
+                let sPath = new SPath();
+                let tempArr = t.map((it): SPoint[] => {
+                    let array = it.map(
+                        (item): SPoint => {
+                            let x = item.x,
+                                y = item.y;
+                            if (x < this.minX) {
+                                this.minX = x;
+                            }
+                            if (y < this.minY) {
+                                this.minY = y;
+                            }
+                            if (x > this.maxX) {
+                                this.maxX = x;
+                            }
+                            if (y > this.maxY) {
+                                this.maxY = y;
+                            }
+                            return new SPoint(x, y);
+                        }
+                    );
+                    sPath.polygon(array);
+                    return array;
+                });
+                this.pathList.push(sPath);
+                return tempArr;
+            });
+        }
+        if (this.legendData.textPos?.x && this.legendData.textPos?.y) {
+            this.textItem.moveTo(this.legendData.textPos.x, this.legendData.textPos.y);
+        }
+    }
+
+    /**
+     * Item 对象边界区域
+     *
+     * @return 对象边界区域
+     */
+    boundingRect(): SRect {
+        return new SRect(this.minX, this.minY, this.maxX - this.minX, this.maxY - this.minY);
+    }
+
+    /**
+     * 判断点是否在区域内
+     *
+     * @param x 点 x 坐标
+     * @param y 点 y 坐标
+     * @return 是否在区域内
+     */
+    contains(x: number, y: number): boolean {
+        for (let j = 0; j < this.pointList.length; j++) {
+            let arr = this.pointList[j];
+            if (arr.length < 1 || !SPolygonUtil.pointIn(x, y, arr[0])) {
+                continue;
+            }
+            if (arr.length == 1) {
+                return true;
+            }
+            let flag = false;
+            for (let i = 1; i < arr.length; i++) {
+                if (SPolygonUtil.pointIn(x, y, arr[i])) {
+                    flag = true;
+                    break;
+                }
+            }
+            if (flag) {
+                continue;
+            }
+            return true;
+        }
+        return false;
     }
 
     /**
@@ -90,10 +282,48 @@ export class SPlanZone extends SBasePolygonEdit {
             // 位置
             const objExtInfo = {
                 id: this.id,
-                pos: this.pos,
+                textPos: {x: this.textItem.x, y: this.textItem.y},
                 anotherMsg: this.anotherMsg,
             };
             return objExtInfo;
         }
+        return new Object();
+    }
+
+    /**
+     * Item 绘制操作
+     *
+     * @param painter    绘制对象
+     */
+    onDraw(painter: SPainter) {
+        painter.pen.lineCapStyle = SLineCapStyle.Square;
+        painter.pen.color = this.strokeColor;
+        painter.brush.color = this.fillColor;
+        painter.pen.lineWidth = painter.toPx(this.lineWidth);
+        if (this.lineStyle == SLineStyle.Dashed) {
+            painter.pen.lineDash = [
+                painter.toPx(this.lineWidth * 3),
+                painter.toPx(this.lineWidth * 7)
+            ];
+        } else if (this.lineStyle == SLineStyle.Dotted) {
+            painter.pen.lineDash = [
+                painter.toPx(this.lineWidth),
+                painter.toPx(this.lineWidth)
+            ];
+        }
+
+        // 是否选中
+        if (this.selected) {
+            painter.shadow.shadowBlur = 10;
+            painter.shadow.shadowColor = new SColor(`#00000033`);
+            painter.shadow.shadowOffsetX = 5;
+            painter.shadow.shadowOffsetY = 5;
+        } else {
+            painter.shadow.shadowColor = SColor.Transparent;
+        }
+
+        this.pathList.forEach((t): void => {
+            painter.drawPath(t);
+        });
     }
 }

+ 4 - 2
src/lib/style/Example.ts

@@ -27,7 +27,7 @@
 import { Anchor } from "@persagy-web/big-edit";
 import { Point } from "@persagy-web/edit/lib/type/Point";
 import { Size } from "@persagy-web/big/lib/types/Size";
-import { SPoint } from '@persagy-web/draw/';
+import { BigPoint } from "@persagy-web/big/lib/types/BigPoint";
 
 /**
  * 实例接口
@@ -41,6 +41,8 @@ export interface Example {
     name: string;
     /** 位置 */
     pos: Point;
+    /** 文本位置 */
+    textPos: Point;
     /** 实例类型 */
     classCode: string;
     /** 实例名称 */
@@ -76,7 +78,7 @@ export interface Example {
     /** 锚点 List */
     anchorList?: Anchor[];
     /** 轮廓线 */
-    outLine?: Point[] | SPoint[];
+    outline?: BigPoint[][][];
     /** 由应用自己定义 */
     properties?: any;
 }

+ 11 - 0
src/lib/style/Style.ts

@@ -24,6 +24,8 @@
  * *********************************************************************************************************************
  */
 
+import { SLineStyle } from "@persagy-web/graph";
+
 /**
  * 样式接口
  *
@@ -42,4 +44,13 @@ export interface Style {
     width?: number;
     /** 高 */
     height?: number;
+    /** 填充色 */
+    fillColor?: string;
+    /** 边框颜色 */
+    strokeColor?: string;
+    /** 线宽 */
+    lineWidth?: number;
+    /** 线型 */
+    lineStyle?: SLineStyle;
+
 }

+ 10 - 0
src/store/index.ts

@@ -84,6 +84,16 @@ export default new Vuex.Store({
                 url: "tognyong2020102700.svg",
                 formula: JSON.stringify(["设备实例"]),
             };
+            // 空间默认样式
+            data.defaultZoneStyle = {
+                color: "#1F2429",
+                size: 12,
+                lineWidth: 1,
+                lineStyle: 0,
+                fillColor: "#007cc880",
+                strokeColor: "#007CC8ff",
+                formula: JSON.stringify(["空间实例"]),
+            }
             state.styleMap = data;
         },
         // 初始化 equipItemMap, equipItemNum