SBasePolygonEdit.ts 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897
  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) 2009-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import {
  27. SGraphItem,
  28. SGraphPointListDelete,
  29. SGraphPointListInsert,
  30. SGraphPointListUpdate,
  31. SLineStyle
  32. } from "@persagy-web/graph";
  33. import { SKeyCode, SMouseEvent, SUndoStack } from "@persagy-web/base/";
  34. import {
  35. SColor,
  36. SLine,
  37. SLineCapStyle,
  38. SPainter,
  39. SPoint,
  40. SPolygonUtil,
  41. SRect
  42. } from "@persagy-web/draw";
  43. import { SItemStatus, ItemOrder } from "@persagy-web/big";
  44. import { Marker } from "../type/Marker";
  45. import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
  46. import { SGraphEdit } from ".."
  47. /**
  48. * 编辑多边形
  49. *
  50. * @author 韩耀龙
  51. */
  52. export class SBasePolygonEdit extends SGraphEdit {
  53. /** X坐标最小值 */
  54. private minX = Number.MAX_SAFE_INTEGER;
  55. /** X坐标最大值 */
  56. private maxX = Number.MIN_SAFE_INTEGER;
  57. /** Y坐标最小值 */
  58. private minY = Number.MAX_SAFE_INTEGER;
  59. /** Y坐标最大值 */
  60. private maxY = Number.MIN_SAFE_INTEGER;
  61. /** 图例节点对象数据 */
  62. data: Marker;
  63. /** 轮廓线坐标 */
  64. private pointList: SPoint[] = [];
  65. // 获取当前状态
  66. get getPointList(): SPoint[] {
  67. return this.pointList;
  68. }
  69. // 编辑当前状态
  70. set setPointList(arr: SPoint[]) {
  71. this.pointList = arr;
  72. this.update();
  73. }
  74. /** 当前状态 */
  75. protected _status: number = SItemStatus.Normal;
  76. get status(): SItemStatus {
  77. return this._status;
  78. }
  79. set status(value: SItemStatus) {
  80. this._status = value;
  81. this.undoStack.clear();
  82. this.update();
  83. }
  84. /** 边框颜色 */
  85. _strokeColor: SColor = SColor.Black;
  86. /** 画笔颜色 */
  87. get strokeColor(): SColor {
  88. return this._strokeColor;
  89. } // Get strokeColor
  90. set strokeColor(v: SColor) {
  91. this._strokeColor = v;
  92. this.update();
  93. } // Set strokeColor
  94. /** 填充颜色 */
  95. _fillColor: SColor = new SColor("#2196f3");
  96. get fillColor(): SColor {
  97. return this._fillColor;
  98. } // Get fillColor
  99. set fillColor(v: SColor) {
  100. this._fillColor = v;
  101. this.update();
  102. } // Set fillColor
  103. /** 边框样式 */
  104. _lineStyle: SLineStyle = SLineStyle.Solid;
  105. get lineStyle(): SLineStyle {
  106. return this._lineStyle;
  107. } // Get lineStyle
  108. set lineStyle(v: SLineStyle) {
  109. this._lineStyle = v;
  110. this.update();
  111. } // Set lineStyle
  112. /** 边框的宽 只可输入像素宽 */
  113. _lineWidth: number = 1;
  114. get lineWidth(): number {
  115. return this._lineWidth;
  116. } // Get lineWidth
  117. set lineWidth(v: number) {
  118. this._lineWidth = v;
  119. this.update();
  120. } // Set lineWidth
  121. /** 是否闭合 */
  122. closeFlag: boolean = false;
  123. /** 鼠标移动点 */
  124. private lastPoint: SPoint | null = null;
  125. /** 当前鼠标获取顶点对应索引 */
  126. private curIndex: number = -1;
  127. /** 当前鼠标获取顶点对应坐标 */
  128. private curPoint: null | SPoint = null;
  129. /** 灵敏像素 */
  130. private len: number = 10;
  131. /** 场景像素 内部将灵敏像素换算为场景实际距离 */
  132. private scenceLen: number = 15;
  133. /** 场景像素 */
  134. private isAlt: boolean = false;
  135. /** undo/redo堆栈 */
  136. protected undoStack: SUndoStack = new SUndoStack();
  137. /**
  138. * 构造函数
  139. *
  140. * @param parent 指向父对象
  141. * @param data 图例节点对象数据
  142. */
  143. constructor(parent: SGraphItem | null, data: Marker) {
  144. super(parent);
  145. // this.textItem.originPosition = STextOrigin.Centrum;
  146. // this.textItem.isTransform = false;
  147. this.zOrder = ItemOrder.polygonOrder;
  148. this.data = data;
  149. this.name = data.name;
  150. // this.text = data.Name;
  151. if (data.style) {
  152. this.setPointList = [];
  153. let setPointList: SPoint[];
  154. if (data.style.outLine) {
  155. if (data.style.outLine[0] instanceof SPoint) {
  156. // @ts-ignore
  157. this.setPointList = data.style.outLine;
  158. } else {
  159. setPointList = data.style.outLine.map(i => {
  160. return (new SPoint(i.x, i.y))
  161. })
  162. this.setPointList = setPointList;
  163. }
  164. }
  165. // 样式相关
  166. if (data.style.default) {
  167. // 颜色
  168. if (data.style.default.strokeColor) {
  169. this.strokeColor = new SColor(data.style.default.strokeColor)
  170. }
  171. // 线宽
  172. if (data.style.default.lineWidth) {
  173. this.lineWidth = data.style.default.lineWidth
  174. }
  175. // 线样式
  176. if (data.style.default.lineStyle) {
  177. this.lineStyle = data.style.default.lineStyle
  178. }
  179. // 填充色
  180. if (data.style.default.fillColor) {
  181. this.fillColor = new SColor(data.style.default.fillColor)
  182. }
  183. }
  184. }
  185. // if (data) {
  186. // if (data.Properties.Zorder) {
  187. // this.zOrder = data.Properties.Zorder;
  188. // }
  189. // // 设置线宽
  190. // if (data.Properties.TextPos) {
  191. // this.textItem.moveTo(data.Properties.TextPos.X, data.Properties.TextPos.Y);
  192. // }
  193. // if (data.Properties.color) {
  194. // this.color = new SColor(data.Properties.color);
  195. // }
  196. // if (data.Properties.font) {
  197. // this.font = new SFont("sans-serif", data.Properties.font);
  198. // }
  199. // if (data.Properties && data.Properties.IsActive) {
  200. // this.isActive = data.Properties.IsActive;
  201. // }
  202. // }
  203. // 监听多边形创建完成事件,并动态计算文本位置
  204. // this.connect("finishCreated", this, () => {
  205. // // 计算文本位置
  206. // let x: number = this.getPointList.reduce((pre, cur, index, arr) => {
  207. // return pre + (cur.x / arr.length)
  208. // }, 0),
  209. // y: number = this.getPointList.reduce((pre, cur, index, arr) => {
  210. // return pre + (cur.y / arr.length)
  211. // }, 0);
  212. // this.textItem.moveTo(x, y);
  213. // })
  214. }
  215. //////////////////
  216. // 以下为对pointList 数组的操作方法
  217. /**
  218. * 储存新的多边形顶点
  219. *
  220. * @param x 点位得x坐标
  221. * @param y 点位得y坐标
  222. * @param i 储存所在索引
  223. * @return SPoint。添加的顶点
  224. */
  225. insertPoint(x: number, y: number, i: number | null = null): SPoint {
  226. const point = new SPoint(x, y);
  227. if (i == null) {
  228. this.pointList.push(point);
  229. } else {
  230. this.pointList.splice(i, 0, point);
  231. }
  232. this.update();
  233. return point;
  234. } // Function insertPoint()
  235. /**
  236. * 删除点位
  237. *
  238. * @param i 删除点所在的索引
  239. * @return SPoint|null。索引不在数组范围则返回null
  240. */
  241. deletePoint(i: number | null = null): SPoint | null {
  242. let point = null;
  243. if (i != null) {
  244. if (i >= this.pointList.length || i < 0) {
  245. point = null;
  246. } else {
  247. point = new SPoint(this.pointList[i].x, this.pointList[i].y);
  248. this.pointList.splice(i, 1);
  249. }
  250. } else {
  251. if (this.pointList.length) {
  252. point = this.pointList[this.pointList.length - 1];
  253. this.pointList.pop();
  254. } else {
  255. point = null;
  256. }
  257. }
  258. this.curIndex = -1;
  259. this.curPoint = null;
  260. this.update();
  261. return point;
  262. } // Function deletePoint()
  263. /**
  264. * 多边形顶点的移动位置
  265. *
  266. * @param x 点位得x坐标
  267. * @param y 点位得y坐标
  268. * @param i 点位得i坐标
  269. * @return 移动对应得点。如果索引无法找到移动顶点,则返回null
  270. */
  271. movePoint(x: number, y: number, i: number): SPoint | null {
  272. let point = null;
  273. if (i >= this.pointList.length || i < 0) {
  274. return null;
  275. }
  276. if (this.pointList.length) {
  277. this.pointList[i].x = x;
  278. this.pointList[i].y = y;
  279. }
  280. point = this.pointList[i];
  281. return point;
  282. } // Function movePoint()
  283. ////////////
  284. // 以下为三种状态下的绘制多边形方法
  285. /**
  286. * 展示状态 --绘制多边形数组
  287. *
  288. * @param painter 绘制类
  289. * @param pointList 绘制多边形数组
  290. */
  291. protected drawShowPolygon(painter: SPainter, pointList: SPoint[]): void {
  292. painter.save();
  293. painter.pen.lineCapStyle = SLineCapStyle.Square;
  294. painter.pen.color = this.strokeColor;
  295. painter.brush.color = this.fillColor;
  296. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  297. if (this.lineStyle == SLineStyle.Dashed) {
  298. painter.pen.lineDash = [
  299. painter.toPx(this.lineWidth * 3),
  300. painter.toPx(this.lineWidth * 7)
  301. ];
  302. } else if (this.lineStyle == SLineStyle.Dotted) {
  303. painter.pen.lineDash = [
  304. painter.toPx(this.lineWidth),
  305. painter.toPx(this.lineWidth)
  306. ];
  307. }
  308. if (this.selected) {
  309. painter.shadow.shadowBlur = 10;
  310. painter.shadow.shadowColor = new SColor(`#00000033`);
  311. painter.shadow.shadowOffsetX = 5;
  312. painter.shadow.shadowOffsetY = 5;
  313. } else {
  314. painter.shadow.shadowColor = SColor.Transparent;
  315. }
  316. painter.drawPolygon([...pointList]);
  317. painter.restore();
  318. } // Function drawShowPolygon()
  319. /**
  320. * 创建状态 --绘制多边形数组
  321. *
  322. * @param painter 绘制类
  323. * @param pointList 绘制多边形数组
  324. */
  325. protected drawCreatePolygon(painter: SPainter, pointList: SPoint[]): void {
  326. painter.pen.lineCapStyle = SLineCapStyle.Square;
  327. painter.pen.color = this.strokeColor;
  328. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  329. if (this.lastPoint && pointList.length) {
  330. painter.drawLine(
  331. pointList[pointList.length - 1].x,
  332. pointList[pointList.length - 1].y,
  333. this.lastPoint.x,
  334. this.lastPoint.y
  335. );
  336. }
  337. painter.drawPolyline(pointList);
  338. painter.pen.color = SColor.Transparent;
  339. painter.brush.color = new SColor(this.fillColor.value);
  340. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  341. if (this.lastPoint) {
  342. painter.drawPolygon([...pointList, this.lastPoint]);
  343. // 绘制顶点块
  344. painter.pen.color = SColor.Black;
  345. painter.brush.color = SColor.White;
  346. pointList.forEach(item => {
  347. painter.drawCircle(item.x, item.y, painter.toPx(this.len / 2));
  348. });
  349. // 如果最后一个点在第一个点的灵敏度范围内,第一个点填充变红
  350. if (this.pointList.length) {
  351. if (
  352. SMathUtil.pointDistance(
  353. this.lastPoint.x,
  354. this.lastPoint.y,
  355. this.pointList[0].x,
  356. this.pointList[0].y
  357. ) < this.scenceLen
  358. ) {
  359. // 绘制第一个点的顶点块
  360. painter.pen.color = SColor.Black;
  361. painter.brush.color = SColor.Red;
  362. painter.drawCircle(
  363. this.pointList[0].x,
  364. this.pointList[0].y,
  365. painter.toPx(this.len / 2)
  366. );
  367. }
  368. }
  369. } else {
  370. painter.drawPolygon(pointList);
  371. }
  372. } // Function drawCreatePolygon()
  373. /**
  374. *
  375. * 编辑状态 --绘制多边形数组
  376. *
  377. * @param painter 绘制类
  378. * @param pointList 绘制多边形数组
  379. */
  380. protected drawEditPolygon(painter: SPainter, pointList: SPoint[]): void {
  381. // 展示多边形
  382. painter.pen.lineCapStyle = SLineCapStyle.Square;
  383. painter.pen.color = this.strokeColor;
  384. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  385. painter.brush.color = new SColor(this.fillColor.value);
  386. painter.drawPolygon([...pointList]);
  387. // 绘制顶点块
  388. painter.pen.color = SColor.Black;
  389. painter.brush.color = SColor.White;
  390. pointList.forEach((item, index) => {
  391. painter.brush.color = SColor.White;
  392. if (index == this.curIndex) {
  393. painter.brush.color = new SColor("#2196f3");
  394. }
  395. painter.drawCircle(item.x, item.y, painter.toPx(this.len / 2));
  396. });
  397. } // Function drawCreatePolygon()
  398. /**
  399. * 编辑状态操作多边形数组
  400. *
  401. * @param event 鼠标事件
  402. *
  403. *
  404. */
  405. protected editPolygonPoint(event: SMouseEvent): void {
  406. // 判断是否为删除状态 isAlt = true为删除状态
  407. if (this.isAlt) {
  408. // 1 判断是否点击在多边形顶点
  409. let lenIndex = -1; // 当前点击到的点位索引;
  410. let curenLen = this.scenceLen; // 当前的灵敏度
  411. this.pointList.forEach((item, index) => {
  412. let dis = SMathUtil.pointDistance(
  413. event.x,
  414. event.y,
  415. item.x,
  416. item.y
  417. );
  418. if (dis < curenLen) {
  419. curenLen = dis;
  420. lenIndex = index;
  421. }
  422. });
  423. // 若点击到,对该索引对应的点做删除
  424. if (lenIndex != -1) {
  425. if (this.pointList.length <= 3) {
  426. return;
  427. }
  428. const delePoint = new SPoint(
  429. this.pointList[lenIndex].x,
  430. this.pointList[lenIndex].y
  431. );
  432. this.deletePoint(lenIndex);
  433. // 记录顶点操作记录压入堆栈
  434. this.recordAction(SGraphPointListDelete, [
  435. this.pointList,
  436. delePoint,
  437. lenIndex
  438. ]);
  439. }
  440. } else {
  441. // 1 判断是否点击在多边形顶点
  442. this.curIndex = -1;
  443. this.curPoint = null;
  444. let lenIndex = -1; // 当前点击到的点位索引;
  445. let curenLen = this.scenceLen; // 当前的灵敏度
  446. this.pointList.forEach((item, index) => {
  447. let dis = SMathUtil.pointDistance(
  448. event.x,
  449. event.y,
  450. item.x,
  451. item.y
  452. );
  453. if (dis < curenLen) {
  454. curenLen = dis;
  455. lenIndex = index;
  456. }
  457. });
  458. this.curIndex = lenIndex;
  459. // 2判断是否点击在多边形得边上
  460. if (-1 == lenIndex) {
  461. let len = SMathUtil.pointToLine(
  462. new SPoint(event.x, event.y),
  463. new SLine(this.pointList[0], this.pointList[1])
  464. ),
  465. index = 0;
  466. if (this.pointList.length > 2) {
  467. for (let i = 1; i < this.pointList.length; i++) {
  468. let dis = SMathUtil.pointToLine(
  469. new SPoint(event.x, event.y),
  470. new SLine(this.pointList[i], this.pointList[i + 1])
  471. );
  472. if (i + 1 == this.pointList.length) {
  473. dis = SMathUtil.pointToLine(
  474. new SPoint(event.x, event.y),
  475. new SLine(this.pointList[i], this.pointList[0])
  476. );
  477. }
  478. if (dis.MinDis < len.MinDis) {
  479. len = dis;
  480. index = i;
  481. }
  482. }
  483. }
  484. // 判断是否有点
  485. if (len.Point) {
  486. // 点在了多边形的边上
  487. if (len.MinDis <= this.scenceLen) {
  488. this.pointList.splice(index + 1, 0, len.Point);
  489. // 记录新增顶点操作记录压入堆栈
  490. this.recordAction(SGraphPointListInsert, [
  491. this.pointList,
  492. len.Point,
  493. index + 1
  494. ]);
  495. } else {
  496. //没点在多边形边上也没点在多边形顶点上
  497. super.onMouseDown(event);
  498. }
  499. }
  500. } else {
  501. // 当捕捉到顶点后 ,记录当前点的xy坐标,用于undo、redo操作
  502. this.curPoint = new SPoint(
  503. this.pointList[this.curIndex].x,
  504. this.pointList[this.curIndex].y
  505. );
  506. }
  507. // 刷新视图
  508. this.update();
  509. }
  510. } // Function editPolygonPoint()
  511. /////////////////////
  512. // undo、redo相关操作
  513. /**
  514. * 记录相关动作并推入栈中
  515. * @param SGraphCommand 相关命令类
  516. * @param any 对应传入参数
  517. */
  518. protected recordAction(SGraphCommand: any, any: any[]): void {
  519. // 记录相关命令并推入堆栈中
  520. const sgraphcommand = new SGraphCommand(this.scene, this, ...any);
  521. this.undoStack.push(sgraphcommand);
  522. } // Function recordAction()
  523. /**
  524. * 执行取消操作执行
  525. */
  526. undo(): void {
  527. if (this.status == SItemStatus.Normal) {
  528. return;
  529. }
  530. this.undoStack.undo();
  531. } // Function undo()
  532. /**
  533. * 执行重做操作执行
  534. */
  535. redo(): void {
  536. if (this.status == SItemStatus.Normal) {
  537. return;
  538. }
  539. this.undoStack.redo();
  540. } // Function redo()
  541. ///////////////////////////////
  542. // 以下为鼠标事件
  543. /**
  544. * 鼠标双击事件
  545. *
  546. * @param event 事件参数
  547. * @return boolean
  548. */
  549. onDoubleClick(event: SMouseEvent): boolean {
  550. // 如果位show状态 双击改对象则需改为编辑状态
  551. if (SItemStatus.Normal == this.status) {
  552. this.status = SItemStatus.Edit;
  553. this.grabItem(this);
  554. } else if (SItemStatus.Edit == this.status) {
  555. this.status = SItemStatus.Normal;
  556. this.releaseItem();
  557. }
  558. this.update();
  559. return true;
  560. } // Function onDoubleClick()
  561. /**
  562. * 键盘事件
  563. *
  564. * @param event 事件参数
  565. * @return boolean
  566. */
  567. onKeyDown(event: KeyboardEvent): boolean {
  568. if (this.status == SItemStatus.Normal) {
  569. return false;
  570. } else if (this.status == SItemStatus.Create) {
  571. if (event.code == "Enter") {
  572. // 当顶点大于二个时才又条件执行闭合操作并清空堆栈
  573. if (this.pointList.length > 2) {
  574. this.status = SItemStatus.Normal;
  575. //3 传递完成事件状态
  576. this.$emit("finishCreated");
  577. //1 grabItem 置为null
  578. this.releaseItem();
  579. }
  580. }
  581. } else if (this.status == SItemStatus.Edit) {
  582. if (event.key == "Alt") {
  583. this.isAlt = true;
  584. }
  585. }
  586. this.update();
  587. return true;
  588. } // Function onKeyDown()
  589. /**
  590. * 键盘键抬起事件
  591. *
  592. * @param event 事件参数
  593. * @return boolean
  594. */
  595. onKeyUp(event: KeyboardEvent): void {
  596. if (this.status == SItemStatus.Edit) {
  597. if (event.key == "Alt") {
  598. this.isAlt = false;
  599. } else if (event.keyCode == SKeyCode.Delete) {
  600. // 当多边形的顶点大于三个允许删除点
  601. if (this.pointList.length > 3) {
  602. this.deletePoint(this.curIndex);
  603. }
  604. }
  605. }
  606. this.update();
  607. } // Function onKeyUp()
  608. /**
  609. * 鼠标按下事件
  610. *
  611. * @param event 事件参数
  612. * @return boolean
  613. */
  614. onMouseDown(event: SMouseEvent): boolean {
  615. if (event.shiftKey) {
  616. event = this.compare(event);
  617. }
  618. // 如果状态为编辑状态则添加点
  619. if (this.status == SItemStatus.Create) {
  620. // 新增顶点
  621. let len = -1;
  622. if (this.pointList.length) {
  623. len = SMathUtil.pointDistance(
  624. event.x,
  625. event.y,
  626. this.pointList[0].x,
  627. this.pointList[0].y
  628. );
  629. }
  630. if (this.pointList.length > 2 && len > 0 && len < this.scenceLen) {
  631. this.status = SItemStatus.Normal;
  632. //3 传递完成事件状态
  633. this.$emit("finishCreated");
  634. //1 grabItem 置为null
  635. this.releaseItem();
  636. } else {
  637. this.insertPoint(event.x, event.y);
  638. // 记录新增顶点操作记录压入堆栈
  639. let pos = new SPoint(event.x, event.y);
  640. this.recordAction(SGraphPointListInsert, [this.pointList, pos]);
  641. }
  642. } else if (this.status == SItemStatus.Edit) {
  643. // 对多边形数组做编辑操作
  644. this.editPolygonPoint(event);
  645. } else {
  646. return super.onMouseDown(event);
  647. }
  648. return true;
  649. } // Function onMouseDown()
  650. /**
  651. * 鼠标移入事件
  652. *
  653. * @param event 事件参数
  654. * @return boolean
  655. */
  656. onMouseEnter(event: SMouseEvent): boolean {
  657. return true;
  658. } // Function onMouseEnter()
  659. /**
  660. * 鼠标移出事件
  661. *
  662. * @param event 事件参数
  663. * @return boolean
  664. */
  665. onMouseLeave(event: SMouseEvent): boolean {
  666. return true;
  667. } // Function onMouseLeave()
  668. /**
  669. * 鼠标移动事件
  670. *
  671. * @param event 事件参数
  672. * @return boolean
  673. */
  674. onMouseMove(event: SMouseEvent): boolean {
  675. if (event.shiftKey) {
  676. event = this.compare(event);
  677. }
  678. if (this.status == SItemStatus.Create) {
  679. this.lastPoint = new SPoint();
  680. this.lastPoint.x = event.x;
  681. this.lastPoint.y = event.y;
  682. this.update();
  683. } else if (this.status == SItemStatus.Edit) {
  684. if (event.buttons == 1) {
  685. if (-1 != this.curIndex) {
  686. this.pointList[this.curIndex].x = event.x;
  687. this.pointList[this.curIndex].y = event.y;
  688. }
  689. }
  690. this.update();
  691. } else {
  692. return super.onMouseMove(event);
  693. }
  694. return true;
  695. } // Function onMouseMove()
  696. /**
  697. * shift垂直水平创建或编辑
  698. *
  699. * @param event 事件
  700. * */
  701. compare(event: SMouseEvent): SMouseEvent {
  702. if (this.pointList.length) {
  703. let last = new SPoint(event.x, event.y);
  704. if (this.status == SItemStatus.Create) {
  705. last = this.pointList[this.pointList.length - 1];
  706. } else if (this.status == SItemStatus.Edit) {
  707. if (this.curIndex > 0) {
  708. last = this.pointList[this.curIndex - 1];
  709. }
  710. }
  711. const dx = Math.abs(event.x - last.x);
  712. const dy = Math.abs(event.y - last.y);
  713. if (dy > dx) {
  714. event.x = last.x;
  715. } else {
  716. event.y = last.y;
  717. }
  718. }
  719. return event;
  720. } // Function compare()
  721. /**
  722. * 鼠标抬起事件
  723. *
  724. * @param event 事件参数
  725. * @return boolean
  726. */
  727. onMouseUp(event: SMouseEvent): boolean {
  728. if (this.status == SItemStatus.Edit) {
  729. if (-1 != this.curIndex) {
  730. const pos = new SPoint(
  731. this.pointList[this.curIndex].x,
  732. this.pointList[this.curIndex].y
  733. );
  734. this.recordAction(SGraphPointListUpdate, [
  735. this.pointList,
  736. this.curPoint,
  737. pos,
  738. this.curIndex
  739. ]);
  740. }
  741. } else if (this.status == SItemStatus.Normal) {
  742. this.moveToOrigin(this.x, this.y);
  743. return super.onMouseUp(event);
  744. }
  745. return true;
  746. } // Function onMouseUp()
  747. /**
  748. * 移动后处理所有坐标,并肩原点置为场景原点
  749. *
  750. * @param x x坐标
  751. * @param y y坐标
  752. * */
  753. moveToOrigin(x: number, y: number): void {
  754. super.moveToOrigin(x, y);
  755. this.pointList = this.pointList.map(t => {
  756. t.x = t.x + x;
  757. t.y = t.y + y;
  758. return t;
  759. });
  760. this.x = 0;
  761. this.y = 0;
  762. } // Function moveToOrigin()
  763. /**
  764. * 适配事件
  765. *
  766. * @param event 事件参数
  767. * @return boolean
  768. */
  769. onResize(event: SMouseEvent): boolean {
  770. return true;
  771. } // Function onResize()
  772. /**
  773. * 取消操作
  774. *
  775. */
  776. cancelOperate(): void {
  777. // 当状态为展示状态
  778. if (this.status == SItemStatus.Create) {
  779. // 闭合多边形
  780. this.parent = null;
  781. } else if (this.status == SItemStatus.Edit) {
  782. // 编辑状态
  783. this.status = SItemStatus.Normal;
  784. }
  785. this.update();
  786. } // Function cancelOperate()
  787. /**
  788. * Item对象边界区域
  789. *
  790. * @return SRect
  791. */
  792. boundingRect(): SRect {
  793. if (this.pointList.length) {
  794. this.minX = this.pointList[0].x;
  795. this.maxX = this.pointList[0].x;
  796. this.minY = this.pointList[0].y;
  797. this.maxY = this.pointList[0].y;
  798. this.pointList.forEach(it => {
  799. let x = it.x,
  800. y = it.y;
  801. if (x < this.minX) {
  802. this.minX = x;
  803. }
  804. if (y < this.minY) {
  805. this.minY = y;
  806. }
  807. if (x > this.maxX) {
  808. this.maxX = x;
  809. }
  810. if (y > this.maxY) {
  811. this.maxY = y;
  812. }
  813. });
  814. }
  815. return new SRect(
  816. this.minX,
  817. this.minY,
  818. this.maxX - this.minX,
  819. this.maxY - this.minY
  820. );
  821. } // Function boundingRect()
  822. /**
  823. * 判断点是否在区域内
  824. *
  825. * @param x
  826. * @param y
  827. */
  828. contains(x: number, y: number): boolean {
  829. let arr = this.pointList;
  830. if (arr.length < 3 || !SPolygonUtil.pointIn(x, y, arr)) {
  831. return false;
  832. }
  833. return true;
  834. } // Function contains()
  835. /**
  836. * Item绘制操作
  837. *
  838. * @param painter painter对象
  839. */
  840. onDraw(painter: SPainter): void {
  841. this.scenceLen = painter.toPx(this.len);
  842. // 当状态为展示状态
  843. if (this.status == SItemStatus.Normal) {
  844. // 闭合多边形
  845. this.drawShowPolygon(painter, this.pointList);
  846. } else if (this.status == SItemStatus.Create) {
  847. // 创建状态
  848. this.drawCreatePolygon(painter, this.pointList);
  849. } else {
  850. // 编辑状态
  851. this.drawEditPolygon(painter, this.pointList);
  852. }
  853. } // Function onDraw()
  854. } // Class SPolygonItem