SPlanZone.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /*
  2. * *********************************************************************************************************************
  3. *
  4. * !!
  5. * .F88X
  6. * X8888Y
  7. * .}888888N;
  8. * i888888N; .:! .I$WI:
  9. * R888888I .'N88~ i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
  10. * .R888888I .;N8888~ .X8' "8I.!,/8" !%NY8`"8I8~~8>,88I
  11. * +888888N; .8888888Y "&&8Y.}8,
  12. * ./888888N; .R888888Y .'}~ .>}'.`+> i}! "i' +/' .'i~ !11,.:">, .~]! .i}i
  13. * ~888888%: .I888888l .]88~`1/iY88Ii+1'.R$8$8]"888888888> Y8$ W8E X8E W8888'188Il}Y88$*
  14. * 18888888 E8888881 .]W%8$`R8X'&8%++N8i,8N%N8+l8%` .}8N:.R$RE%N88N%N$K$R 188,FE$8%~Y88I
  15. * .E888888I .i8888888' .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
  16. * 8888888I .,N888888~ ~88i"8W,!N8*.I88.}888%F,i$88"F88" 888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
  17. * i888888N' I888Y ]88;/EX*IFKFK88X K8R .l8W 88Y ~88}'88E&%8W.X8N``]88!.$8K .:W8I
  18. * .i888888N; I8Y .&8$ .X88! i881.:%888>I88 ;88] +88+.';;;;:.Y88X 18N.,88l .+88/
  19. * .:R888888I
  20. * .&888888I Copyright (c) 2016-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import { SGraphItem, STextItem, SLineStyle, STextOrigin, Point } from "@persagy-web/graph";
  27. import { SColor, SFont, SPainter, SLineCapStyle, SPoint, SPath, SPolygonUtil, SRect } from "@persagy-web/draw";
  28. import { Example } from "../index";
  29. import { SGraphEdit, SBaseTextEdit } from "@persagy-web/edit";
  30. /**
  31. * 编辑基础空间类
  32. *
  33. * @author 张宇 <taohuzy@163.com>
  34. */
  35. export class SPlanZone extends SGraphEdit {
  36. /** X 坐标最小值 */
  37. private minX = Number.MAX_SAFE_INTEGER;
  38. /** X 坐标最大值 */
  39. private maxX = Number.MIN_SAFE_INTEGER;
  40. /** Y 坐标最小值 */
  41. private minY = Number.MAX_SAFE_INTEGER;
  42. /** Y 坐标最大值 */
  43. private maxY = Number.MIN_SAFE_INTEGER;
  44. /** 墙轮廓线坐标 list */
  45. private pointList: SPoint[][][] = [];
  46. /** path 对象 */
  47. private pathList: SPath[] = [];
  48. /** text item */
  49. textItem: SBaseTextEdit = new SBaseTextEdit(this, null);
  50. /** 是否可移动 */
  51. set moveable(val: boolean) {
  52. return;
  53. }
  54. /** 设备图例 */
  55. private _legendData: Example | null = null;
  56. set legendData(val) {
  57. this._legendData = val;
  58. this.initData();
  59. } // set legendData()
  60. get legendData(): Example | null {
  61. return this._legendData;
  62. } // get legendData()
  63. /** 边框颜色 */
  64. _strokeColor: SColor = SColor.Black;
  65. get strokeColor(): SColor {
  66. return this._strokeColor;
  67. } // Get strokeColor
  68. set strokeColor(v: SColor) {
  69. this._strokeColor = new SColor(v);
  70. this.update();
  71. } // Set strokeColor
  72. /** 填充颜色 */
  73. _fillColor: SColor = SColor.Black;
  74. get fillColor(): SColor {
  75. return this._fillColor;
  76. } // Get fillColor
  77. set fillColor(v: SColor) {
  78. this._fillColor = new SColor(v);
  79. this.update();
  80. } // Set fillColor
  81. /** 线条样式 */
  82. _lineStyle: SLineStyle = SLineStyle.Solid;
  83. get lineStyle(): SLineStyle {
  84. return this._lineStyle;
  85. } // Get lineStyle
  86. set lineStyle(v: SLineStyle) {
  87. this._lineStyle = v;
  88. this.update();
  89. } // Set lineStyle
  90. /** 线条宽度 */
  91. _lineWidth: number = 1;
  92. get lineWidth(): number {
  93. return this._lineWidth;
  94. } // Get lineWidth
  95. set lineWidth(v: number) {
  96. this._lineWidth = v;
  97. this.update();
  98. } // Set lineWidth
  99. /** 宽度是否像素 */
  100. widthIsPx: boolean = false;
  101. /**文本内容 */
  102. get text(): string {
  103. return this.textItem.text;
  104. } // Get text
  105. set text(v: string) {
  106. this.textItem.text = v;
  107. this.update();
  108. } // Set text
  109. /**文本颜色 */
  110. get color(): SColor {
  111. return this.textItem.color;
  112. } // Get color
  113. set color(v: SColor) {
  114. this.textItem.color = v;
  115. } // Set color
  116. /**文本样式 */
  117. get font(): SFont {
  118. return this.textItem.font;
  119. } // Get font
  120. set font(v: SFont) {
  121. this.textItem.font = v;
  122. } // Set font
  123. /** 是否显示文字 */
  124. _showText: boolean = true;
  125. get showText(): boolean {
  126. return this._showText;
  127. }
  128. set showText(v: boolean) {
  129. if (v === this._showText) {
  130. return;
  131. }
  132. this._showText = v;
  133. if (v) {
  134. this.textItem.show();
  135. } else {
  136. this.textItem.hide();
  137. }
  138. }
  139. /** 公式 */
  140. private _formula: string = "";
  141. set formula(val) {
  142. this._formula = val;
  143. } // set formula()
  144. get formula(): string {
  145. return this._formula;
  146. } // get formula()
  147. // 设备附加数据
  148. anotherMsg: string = "";
  149. /**
  150. * 构造函数
  151. *
  152. * @param parent 指向父对象
  153. * @param data 数据
  154. */
  155. constructor(parent: SGraphItem | null, data: Example) {
  156. super(parent);
  157. this.textItem.originPosition = STextOrigin.Center;
  158. this.textItem.isTransform = false;
  159. this.zOrder = 9700;
  160. this.selectable = true;
  161. this.showSelect = false;
  162. this.legendData = data;
  163. } // Constructor
  164. /**
  165. * 设置 legendData 时对 item 做设置
  166. */
  167. initData() {
  168. if (!this.legendData) return;
  169. this.id = this.legendData.id ? this.legendData.id : "";
  170. this.anotherMsg = this.legendData?.anotherMsg ? this.legendData.anotherMsg : "";
  171. this.textItem.text = this.legendData.localName ? this.legendData.localName : "";
  172. if (this.legendData?.outline?.length && this.legendData.outline[0] && this.legendData.outline[0]?.length) {
  173. let tempArr = this.legendData.outline.map((t): Point[][] => {
  174. return t.map((it): Point[] => {
  175. return it.map(
  176. (item): Point => {
  177. return { x: item.X, y: -item.Y };
  178. }
  179. );
  180. });
  181. })
  182. this.minX = tempArr[0][0][0].x;
  183. this.maxX = this.minX;
  184. this.minY = tempArr[0][0][0].y;
  185. this.maxY = this.minY;
  186. this.textItem.moveTo(this.minX, this.minY);
  187. // 处理轮廓点数组,同时计算最大最小值
  188. this.pointList = tempArr.map((t): SPoint[][] => {
  189. let sPath = new SPath();
  190. let tempArr = t.map((it): SPoint[] => {
  191. let array = it.map(
  192. (item): SPoint => {
  193. let x = item.x,
  194. y = item.y;
  195. if (x < this.minX) {
  196. this.minX = x;
  197. }
  198. if (y < this.minY) {
  199. this.minY = y;
  200. }
  201. if (x > this.maxX) {
  202. this.maxX = x;
  203. }
  204. if (y > this.maxY) {
  205. this.maxY = y;
  206. }
  207. return new SPoint(x, y);
  208. }
  209. );
  210. sPath.polygon(array);
  211. return array;
  212. });
  213. this.pathList.push(sPath);
  214. return tempArr;
  215. });
  216. }
  217. if (this.legendData.textPos?.x && this.legendData.textPos?.y) {
  218. this.textItem.moveTo(this.legendData.textPos.x, this.legendData.textPos.y);
  219. }
  220. }
  221. /**
  222. * Item 对象边界区域
  223. *
  224. * @return 对象边界区域
  225. */
  226. boundingRect(): SRect {
  227. return new SRect(this.minX, this.minY, this.maxX - this.minX, this.maxY - this.minY);
  228. }
  229. /**
  230. * 判断点是否在区域内
  231. *
  232. * @param x 点 x 坐标
  233. * @param y 点 y 坐标
  234. * @return 是否在区域内
  235. */
  236. contains(x: number, y: number): boolean {
  237. for (let j = 0; j < this.pointList.length; j++) {
  238. let arr = this.pointList[j];
  239. if (arr.length < 1 || !SPolygonUtil.pointIn(x, y, arr[0])) {
  240. continue;
  241. }
  242. if (arr.length == 1) {
  243. return true;
  244. }
  245. let flag = false;
  246. for (let i = 1; i < arr.length; i++) {
  247. if (SPolygonUtil.pointIn(x, y, arr[i])) {
  248. flag = true;
  249. break;
  250. }
  251. }
  252. if (flag) {
  253. continue;
  254. }
  255. return true;
  256. }
  257. return false;
  258. }
  259. /**
  260. * 返回对象储存的相关数据
  261. *
  262. * @return 对象储存的相关数据
  263. */
  264. toData(): any {
  265. if (this.legendData) {
  266. // 位置
  267. const objExtInfo = {
  268. id: this.id,
  269. textPos: {x: this.textItem.x, y: this.textItem.y},
  270. anotherMsg: this.anotherMsg,
  271. };
  272. return objExtInfo;
  273. }
  274. return new Object();
  275. }
  276. /**
  277. * Item 绘制操作
  278. *
  279. * @param painter 绘制对象
  280. */
  281. onDraw(painter: SPainter) {
  282. painter.pen.lineCapStyle = SLineCapStyle.Square;
  283. painter.pen.color = this.strokeColor;
  284. painter.brush.color = this.fillColor;
  285. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  286. if (this.lineStyle == SLineStyle.Dashed) {
  287. painter.pen.lineDash = [
  288. painter.toPx(this.lineWidth * 3),
  289. painter.toPx(this.lineWidth * 7)
  290. ];
  291. } else if (this.lineStyle == SLineStyle.Dotted) {
  292. painter.pen.lineDash = [
  293. painter.toPx(this.lineWidth),
  294. painter.toPx(this.lineWidth)
  295. ];
  296. }
  297. // 是否选中
  298. if (this.selected) {
  299. painter.shadow.shadowBlur = 10;
  300. painter.shadow.shadowColor = new SColor(`#00000033`);
  301. painter.shadow.shadowOffsetX = 5;
  302. painter.shadow.shadowOffsetY = 5;
  303. } else {
  304. painter.shadow.shadowColor = SColor.Transparent;
  305. }
  306. this.pathList.forEach((t): void => {
  307. painter.drawPath(t);
  308. });
  309. }
  310. }