浏览代码

modify canvas render

haojianlong 5 年之前
父节点
当前提交
a024a8ca0e

+ 28 - 15
src/assets/graphy/SGraphy/dataType.ts

@@ -31,7 +31,8 @@ interface dataSpaceItem {
     LocationPoint: dataItemPath,
     Name: string,
     Paths: dataItemPath[][],
-    id:string
+    id: string,
+    isBusiness: number
 }
 // 传入的data 的接口类型 
 interface dataInterface {
@@ -40,24 +41,36 @@ interface dataInterface {
     SpaceList: dataSpaceItem[], //空间
     VirtualWallList: dataItem[], //虚拟墙
     WallList: dataItem[],    //墙
+    images: ImgItemInterface[] //图片
 }
 //获取绑定空间的接口
 interface businessDataInterface {
-    id:string,
-    name:string,
-    children:string[],
-    isAdjacent:boolean,
-    isAbut:boolean
+    id: string,
+    name: string,
+    children: string[],
+    isAdjacent: boolean,
+    isAbut: boolean
 }
 // 多边形传入的参数接口
 interface PolygonItemInterface {
-    parent:SGraphyPolygonItem|null //父类
-    space:dataSpaceItem,       //传入的item 参数
-    businessId?:string | null,  //绑定的业务id
-    isBusiness?:number,        //业务类型
-    fillColor?:SColor,         //填充颜色
-    color?:SColor,             //边框颜色
-    businessName?:string|null,  //业务名称
-    width?:number
+    parent: SGraphyPolygonItem | null //父类
+    space: dataSpaceItem,       //传入的item 参数
+    businessId?: string | null,  //绑定的业务id
+    isBusiness?: number,        //业务类型
+    fillColor?: SColor,         //填充颜色
+    color?: SColor,             //边框颜色
+    businessName?: string | null,  //业务名称
+    width?: number
 }
-export {dataItemPath,dataItem,dataSpaceItem,dataInterface,businessDataInterface,PolygonItemInterface}
+// 图片传入的参数接口
+interface ImgItemInterface {
+    parent: SGraphyPolygonItem | null //父类
+    X: number;
+    Y: number;
+    width: number;
+    height: number;
+    url: string;
+    id: string;
+    downUrl?: string;
+}
+export { dataItemPath, dataItem, dataSpaceItem, dataInterface, businessDataInterface, PolygonItemInterface, ImgItemInterface }

+ 14 - 2
src/assets/graphy/SGraphy/mainScene.js

@@ -14,6 +14,7 @@ var __extends = (this && this.__extends) || (function () {
 import { SPoint } from "@sybotan-web/base";
 import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js';
 import { SGraphyWallItem } from './newItems/SGraphyWallItem.js';
+import { SGraphyImgItem } from './newItems/SGraphyImgItem.js';
 import { SGraphyScene } from "@sybotan-web/graphy";
 /**
  * @name mainScene
@@ -89,6 +90,8 @@ var mainScene = /** @class */ (function (_super) {
         this.addSpaceList(space); //绘制空间
         var wall = data.WallList;
         this.addWallList(wall);
+        var images = data.images;
+        this.addImgList(images);
     };
     /**
      * 添加所有空间到scene 中
@@ -98,14 +101,14 @@ var mainScene = /** @class */ (function (_super) {
         if (space && space.length) {
             for (var i = 0; i < space.length; i++) {
                 if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
+                    space[i].isBusiness = 2;
                     this.addItem(this.constructeItem({
                         parent: null,
                         space: space[i]
                     }));
                 }
-            }
-            for (var i = 0; i < space.length; i++) {
                 if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
+                    space[i].isBusiness = 2;
                     this.addItem(this.constructeItem({
                         parent: null,
                         space: space[i]
@@ -135,6 +138,15 @@ var mainScene = /** @class */ (function (_super) {
     // 绘制虚拟墙
     mainScene.prototype.addVrtualWallList = function () {
     };
+    // 绘制图片 -- todo
+    mainScene.prototype.addImgList = function (images) {
+        var _this_1 = this;
+        if (images && images.length) {
+            images.map(function (t) {
+                _this_1.addItem(new SGraphyImgItem(null, t.X, t.Y, 2000, 2000, '', ''));
+            });
+        }
+    };
     /**
      * 产生item实例
      */

+ 15 - 4
src/assets/graphy/SGraphy/mainScene.ts

@@ -2,9 +2,10 @@
 import { SRect, SSize, SPoint } from "@sybotan-web/base";
 import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js'
 import { SGraphyWallItem } from './newItems/SGraphyWallItem.js'
+import { SGraphyImgItem } from './newItems/SGraphyImgItem.js'
 import { SGraphyScene, SMouseEvent } from "@sybotan-web/graphy";
 import { SPen, SPainter, SColor } from "@sybotan-web/draw";
-import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface } from './dataType.js'   //传入参数的参数接口类型
+import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface, ImgItemInterface } from './dataType.js'   //传入参数的参数接口类型
 
 /**
  * @name mainScene
@@ -76,6 +77,8 @@ export default class mainScene extends SGraphyScene {
         this.addSpaceList(space) //绘制空间
         let wall: dataItem[] = data.WallList;
         this.addWallList(wall)
+        let images: ImgItemInterface[] = data.images;
+        this.addImgList(images)
     }
 
     /**
@@ -86,15 +89,15 @@ export default class mainScene extends SGraphyScene {
         if (space && space.length) {
             for (let i = 0; i < space.length; i++) {
                 if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
+                    space[i].isBusiness = 2
                     this.addItem(this.constructeItem(
                         {
                             parent: null,
                             space: space[i]
                         }));
                 }
-            }
-            for (let i = 0; i < space.length; i++) {
                 if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
+                    space[i].isBusiness = 2
                     this.addItem(this.constructeItem(
                         {
                             parent: null,
@@ -116,7 +119,7 @@ export default class mainScene extends SGraphyScene {
         }
     }
     // 绘制设备
-    addEquipmentList() {
+    addEquipmentList(): void {
     }
     // 绘制柱体
     addColumnListList(): void {
@@ -124,6 +127,14 @@ export default class mainScene extends SGraphyScene {
     // 绘制虚拟墙
     addVrtualWallList(): void {
     }
+    // 绘制图片 -- todo
+    addImgList(images: ImgItemInterface[]): void {
+        if (images && images.length) {
+            images.map(t => {
+                this.addItem(new SGraphyImgItem(null, t.X, t.Y, 2000, 2000, '', ''))
+            })
+        }
+    }
     /**
      * 产生item实例
      */

+ 116 - 0
src/assets/graphy/SGraphy/newItems/SGraphyImgItem.js

@@ -0,0 +1,116 @@
+var __extends = (this && this.__extends) || (function () {
+    var extendStatics = function (d, b) {
+        extendStatics = Object.setPrototypeOf ||
+            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
+            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
+        return extendStatics(d, b);
+    };
+    return function (d, b) {
+        extendStatics(d, b);
+        function __() { this.constructor = d; }
+        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
+    };
+})();
+import { SGraphyItem } from '@sybotan-web/graphy';
+import { SRect } from "@sybotan-web/base";
+import { SColor } from "@sybotan-web/draw";
+/**
+ * 图形Item类  todo
+ *
+ */
+var SGraphyImgItem = /** @class */ (function (_super) {
+    __extends(SGraphyImgItem, _super);
+    /**
+     * 构造函数
+     *
+     * @param width    图片宽度
+     * @param height   图片高度
+     * @param url      图片url
+     * @param id       point的Id
+     * @param X        图片向x轴的偏移量
+     * @param Y        图片向y轴的偏移量
+     * @param downUrl  图片按下时的url
+     * @param parent   指向父元素
+     */
+    function SGraphyImgItem(parent, X, Y, width, height, url, id, downUrl) {
+        if (downUrl === void 0) { downUrl = ''; }
+        var _this = _super.call(this, parent) || this;
+        _this.width = 0;
+        _this.height = 0;
+        _this.url = '';
+        _this.width = width;
+        _this.height = height;
+        _this.url = url;
+        _this.id = id;
+        _this.X = X;
+        _this.Y = Y;
+        _this.downUrl = downUrl;
+        return _this;
+    } // Constructor()
+    /**
+     * Item对象边界区域
+     *
+     * @return SRect
+     */
+    SGraphyImgItem.prototype.boundingRect = function () {
+        return new SRect(this.X, this.Y, this.width, this.height);
+    }; // Function boundingRect()
+    SGraphyImgItem.prototype.onClick = function (event) {
+        this.$emit('click', { item: this, event: event });
+        return true;
+    }; // Function onClick()
+    /**
+  * 鼠标双击事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+    SGraphyImgItem.prototype.onDoubleClick = function (event) {
+        this.$emit('doubleClick', { item: this, event: event });
+        return true;
+    };
+    /**
+  * 鼠标按下事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+    SGraphyImgItem.prototype.onMouseDown = function (event) {
+        this.$emit('mouseDown', { item: this, event: event });
+        return true;
+    }; // Function onMouseDown()
+    /**
+     * 鼠标移动事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    SGraphyImgItem.prototype.onMouseMove = function (event) {
+        this.$emit('mouseMove', { item: this, event: event });
+        return true;
+    }; // Function onMouseMove()
+    /**
+     * 释放鼠标事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    SGraphyImgItem.prototype.onMouseUp = function (event) {
+        this.$emit('mouseUp', { item: this, event: event });
+        return true;
+    };
+    /**
+     * Item绘制操作
+     *
+     * @param   painter       painter对象
+     * @param   rect          绘制区域
+     */
+    SGraphyImgItem.prototype.onDraw = function (painter, rect) {
+        painter.pen.color = new SColor('#409EFF');
+        painter.brush.color = new SColor('#409EFF');
+        painter.pen.lineWidth = 100;
+        painter.drawCircle(this.X + this.width / 2, this.Y + this.height / 2, this.width / 2);
+    };
+    return SGraphyImgItem;
+}(SGraphyItem)); // Class SGraphyImgItem
+export { SGraphyImgItem };

+ 121 - 0
src/assets/graphy/SGraphy/newItems/SGraphyImgItem.ts

@@ -0,0 +1,121 @@
+import { SGraphyItem, SMouseEvent } from '@sybotan-web/graphy'
+import { SRect, SSize } from "@sybotan-web/base";
+import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+
+/**
+ * 图形Item类  todo
+ *
+ */
+export class SGraphyImgItem extends SGraphyItem {
+	width: number = 0;
+	height: number = 0;
+	url: string = '';
+	id: string;
+	X: number;
+	Y: number;
+	downUrl: string;
+
+	/**
+	 * 构造函数
+	 * 
+	 * @param width    图片宽度
+	 * @param height   图片高度
+	 * @param url      图片url
+	 * @param id       point的Id
+	 * @param X        图片向x轴的偏移量
+	 * @param Y        图片向y轴的偏移量
+	 * @param downUrl  图片按下时的url
+	 * @param parent   指向父元素
+	 */
+	constructor(
+		parent: SGraphyItem | null,
+		X: number,
+		Y: number,
+		width: number,
+		height: number,
+		url: string,
+		id: string,
+		downUrl: string = ''
+	) {
+		super(parent);
+		this.width = width;
+		this.height = height;
+		this.url = url;
+		this.id = id;
+		this.X = X;
+		this.Y = Y;
+		this.downUrl = downUrl;
+	} // Constructor()
+
+	/**
+	 * Item对象边界区域
+	 * 
+	 * @return SRect
+	 */
+	boundingRect(): SRect {
+		return new SRect(
+			this.X,
+			this.Y,
+			this.width,
+			this.height
+		);
+	} // Function boundingRect()
+	onClick(event: SMouseEvent): boolean {
+		this.$emit('click', { item: this, event: event });
+		return true;
+	} // Function onClick()
+	/**
+  * 鼠标双击事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+	onDoubleClick(event: SMouseEvent): boolean {
+		this.$emit('doubleClick', { item: this, event: event });
+		return true;
+	}
+	/**
+  * 鼠标按下事件
+  *
+  * @param   event   保存事件参数
+  * @return  boolean
+  */
+	onMouseDown(event: SMouseEvent): boolean {
+		this.$emit('mouseDown', { item: this, event: event });
+		return true;
+	} // Function onMouseDown()
+
+	/**
+	 * 鼠标移动事件
+	 *
+	 * @param   event   保存事件参数
+	 * @return  boolean
+	 */
+	onMouseMove(event: SMouseEvent): boolean {
+		this.$emit('mouseMove', { item: this, event: event });
+		return true;
+	} // Function onMouseMove()
+
+	/**
+	 * 释放鼠标事件
+	 *
+	 * @param   event   保存事件参数
+	 * @return  boolean
+	 */
+	onMouseUp(event: SMouseEvent): boolean {
+		this.$emit('mouseUp', { item: this, event: event });
+		return true;
+	}
+	/**
+	 * Item绘制操作
+	 *
+	 * @param   painter       painter对象
+	 * @param   rect          绘制区域
+	 */
+	onDraw(painter: SPainter, rect?: SRect): void {
+		painter.pen.color = new SColor('#409EFF');
+		painter.brush.color = new SColor('#409EFF');
+		painter.pen.lineWidth = 100;
+		painter.drawCircle(this.X + this.width / 2, this.Y + this.height / 2, this.width / 2);
+	}
+} // Class SGraphyImgItem

+ 3 - 3
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.js

@@ -30,8 +30,8 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
      * @param fillColor   							多边形填充的颜色
      * @param businessId								空间id
      * @param businessName							空间名称
-     * @param centerOfGravityPoint			 中心点
-     * @param isBusiness						状态
+     * @param centerOfGravityPoint			中心点
+     * @param isBusiness						    状态
      * @param parent
      */
     function SGraphyPolygonItem(PolygonItemData) {
@@ -61,7 +61,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
             y: PolygonItemData.space.LocationPoint.Y * (-1)
         };
         //业务空间类型
-        PolygonItemData.isBusiness ? _this.isBusiness = PolygonItemData.isBusiness : _this.isBusiness = 1;
+        _this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : _this.isBusiness = 1;
         //业务空间id
         PolygonItemData.businessId ? _this.businessId = PolygonItemData.businessId : _this.businessId = null;
         //业务空间名称

+ 3 - 3
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.ts

@@ -32,8 +32,8 @@ export class SGraphyPolygonItem extends SGraphyItem {
 	 * @param fillColor   							多边形填充的颜色 
 	 * @param businessId								空间id
 	 * @param businessName							空间名称
-	 * @param centerOfGravityPoint			 中心点
-	 * @param isBusiness						状态
+	 * @param centerOfGravityPoint			中心点
+	 * @param isBusiness						    状态
 	 * @param parent    
 	 */
 	constructor(PolygonItemData: PolygonItemInterface) {
@@ -55,7 +55,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 			y: PolygonItemData.space.LocationPoint.Y * (-1)
 		};
 		//业务空间类型
-		PolygonItemData.isBusiness ? this.isBusiness = PolygonItemData.isBusiness : this.isBusiness = 1;
+		this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : this.isBusiness = 1;
 		//业务空间id
 		PolygonItemData.businessId ? this.businessId = PolygonItemData.businessId : this.businessId = null;
 		//业务空间名称

+ 42 - 90
src/views/data_admin/buildGraphy/graphyCanvas-copy.vue

@@ -47,9 +47,8 @@ import {
 import { mapGetters, mapActions } from "vuex";
 import { SPoint } from '@sybotan-web/base/lib';
 let colorArr = [
-  "#F9C3C3", "#FFD1BF", "#FFF3BF", "#D8F7C6",
-  "#C6F2F6", "#DCE3C0", "#FAE6C9", "#E3D7F7",
-  "#C4CBF8", "#DEC3F6"
+  '#00f5ff0d', '#ffdab90d', '#8470ff0d', '#7fff000d', '#ee5c420d',
+  '#ffffe00d', '#eee9e90d', '#9c9c9c0d', '#90ee900d', '#b4cdcd0d'
 ];
 export default {
   props: {
@@ -78,7 +77,8 @@ export default {
       data: {},
       list: "",
       buildMess: {},
-      imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png"
+      imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png",
+      setFlag: false, //插旗标志
     };
   },
   computed: {
@@ -275,80 +275,20 @@ export default {
     },
     //画点位坐标
     doPoint(list) {
-      this.list = list;
+      this.list = list.map(t => {
+        if (t.X == 0 && t.Y == 0) {
+          return undefined;
+        } else {
+          return {
+            id: t.Id,
+            X: t.X,
+            Y: t.Y * -1,
+            Name: t.Name
+          };
+        }
+      }).filter(item => item);
       this.getJson(this.buildMess.map)
     },
-    //排序函数
-    compare(property) {
-      return function (a, b) {
-        let value1 = a[property];
-        let value2 = b[property];
-        return value1 - value2;
-      };
-    },
-    //删除虚拟墙
-    detaleWall() {
-      let arr = this.view.scene.root.children;
-      let index = arr.indexOf(this.detaleLine);
-      if (index > -1) {
-        arr.splice(index, 1);
-        this.detaleLine = null;
-      }
-    },
-    //获取点到线的最短距离
-    getMinDistance(arr, dot) {
-      let len;
-      //如果arr[0].x==arr[1].x 说明是条竖着的线
-      if (arr[0].x - arr[1].x == 0) {
-        len = Math.abs(dot.X - arr[0].x);
-      } else {
-        let A = (arr[0].y - arr[1].y) / (arr[0].x - arr[1].x);
-        let B = arr[0].y - A * arr[0].x;
-        len = Math.abs((A * dot.X + B - dot.Y) / Math.sqrt(A * A + 1));
-      }
-      return {
-        min: len,
-        line: arr
-      };
-    },
-    //获取最近的交点
-    getIntersection(arr, point) {
-      let P = {};
-      // 斜率为:k = ( pt2.y - pt1. y ) / (pt2.x - pt1.x );
-      // 该直线方程为:y = k* ( x - pt1.x) + pt1.y。
-      //其垂线的斜率为 - 1 / k,垂线方程为:y = (-1/k) * (x - point.x) + point.y 。
-      //联立两直线方程解得:x = ( k^2 * pt1.x + k * (point.y - pt1.y ) + point.x ) / ( k^2 + 1) ,y = k * ( x - pt1.x) + pt1.y;
-      //如果arr[0].x==arr[1].x 说明是条竖着的线
-      if (arr[0].x == arr[1].x) {
-        P.x = arr[0].x;
-        P.y = point.Y;
-      } else {
-        let k = (arr[1].y - arr[0].y) / (arr[1].x - arr[0].x);
-        // let y = k * (x - arr[0].x) + arr[0].y;
-        // let y1 = (-1/k) * (x - point.X) + point.Y
-        // let x =
-        //     (k * k * arr[0].x + k * (point.Y - arr[0].y) + point.X) /
-        //     (k * k * k),
-        //   y = k * (x - arr[0].x) + arr[0].y;
-        // if(x > arr[0].x && x > arr[1].x){
-        //   if(arr[0].x > arr[1].x){
-        //     x = arr[0].x
-        //     y = arr[0].y
-        //   }else{
-        //     x = arr[1].x
-        //     y = arr[1].y
-        //   }
-        // }
-        // P.x = x
-        // P.y = y
-        let A = (arr[0].y - arr[1].y) / (arr[0].x - arr[1].x);
-        let B = arr[0].y - A * arr[0].x;
-        let m = point.X + A * point.Y;
-        P.x = (m - A * B) / (A * A + 1);
-        P.y = A * P.x + B;
-      }
-      return P;
-    },
     //右键菜单的查看详情
     getDatails() {
       let arr = this.view.scene.root.children;
@@ -422,13 +362,15 @@ export default {
     initGraphy(data) {
       this.resetSize();
       this.$nextTick(() => {
+        data.images = this.list;
         this.mainScene = new mainScene(data);
         this.view.scene = this.mainScene;
         this.view.fitSceneToView();
-        this.mainScene.click(this, this.checkSpace)
+        this.mainScene.click(this, this.setNewFlag)
         let items = this.mainScene.root.children;
-        items.map(t => {
+        items.map((t, i) => {
           this.drawText(t)
+          this.applyColor(t, i)
         })
       })
     },
@@ -461,18 +403,26 @@ export default {
         item.viewText = "⬇️   " + item.initName;
       }
     },
+    //分配随机颜色
+    applyColor(t, i) {
+      if (t.isBusiness == 2) {
+        t.fillColor = new SColor(colorArr[i % 10]);
+      }
+    },
     // 定位
     locationGraphy(point) {
-      // 65886.9,101198
-      // this.view.origin = new SPoint((this.view.width / 2) - (65886.9 * this.view.scale),(this.view.height / 2) - (101198 * this.view.scale))
+      let centerX = (this.view.width / 2) - point.X * this.view.scale;
+      let centerY = (this.view.height / 2) - point.Y * this.view.scale;
+      this.view.origin = new SPoint(centerX, centerY)
     },
     //点击按钮
     addPoint(item) {
-      let bbox = this.view.canvasView.getBoundingClientRect();
-      this.id = item.Id;
-      this.view.canvasView.style.cursor =
-        "url(http://prod.dp.sagacloud.cn:28888/image-service/common/image_get?systemId=dev&key=graphy.png),auto";
-      this.view.canvasView.addEventListener("click", this.getPoint);
+      // let bbox = this.view.canvasView.getBoundingClientRect();
+      // this.id = item.Id;
+      // this.view.canvasView.style.cursor =
+      //   "url(http://prod.dp.sagacloud.cn:28888/image-service/common/image_get?systemId=dev&key=graphy.png),auto";
+      // this.view.canvasView.addEventListener("click", this.getPoint);
+      this.setFlag = true
     },
     //获取鼠标相对canvas的位置
     getMouseCanvas(e) {
@@ -637,11 +587,6 @@ export default {
         }
       })
     },
-    /**
-     *
-     * @param {*} view graphy class
-     * @param {*} e    mouse元素e
-     */
     mouseInElement(view, e) {
       let mouse = this.getMouseCanvas(e),
         falg = false,
@@ -675,6 +620,13 @@ export default {
       let centerX = this.view.width / 2
       let centerY = this.view.height / 2
       this.view.scaleByPoint(1.1, centerX, centerY)
+    },
+    //插旗 item - 点击的空间item
+    setNewFlag(item) {
+      if (this.setFlag) {
+
+      }
+      this.setFlag = false
     }
   },
   watch: {