SBasePolylineEdit.ts 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  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 { SColor, SLine, SPainter, SPoint, SRect } from "@persagy-web/draw";
  27. import { SKeyCode, SMouseEvent, SUndoStack } from "@persagy-web/base";
  28. import { SItemStatus } from "@persagy-web/big";;
  29. import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";;
  30. import {
  31. SGraphPointListDelete,
  32. SGraphPointListInsert,
  33. SGraphPointListUpdate,
  34. SLineStyle,
  35. SGraphItem
  36. } from "@persagy-web/graph/";
  37. import { SGraphEdit } from ".."
  38. import { Marker } from "../type/Marker";
  39. /**
  40. * 折线编辑类
  41. *
  42. * @author 韩耀龙 <han_yao_long@163.com>
  43. */
  44. export class SBasePolylineEdit extends SGraphEdit {
  45. /** 传入数据 */
  46. _data: Marker | null = null;
  47. get data(): Marker | null {
  48. return this._data;
  49. } // Get data
  50. set data(v: Marker | null) {
  51. this._data = v;
  52. this.initData()
  53. this.update();
  54. } // Set data
  55. /** X 坐标最小值 */
  56. private minX = Number.MAX_SAFE_INTEGER;
  57. /** X 坐标最大值 */
  58. private maxX = Number.MIN_SAFE_INTEGER;
  59. /** Y 坐标最小值 */
  60. private minY = Number.MAX_SAFE_INTEGER;
  61. /** Y 坐标最大值 */
  62. private maxY = Number.MIN_SAFE_INTEGER;
  63. /** 折点信息 */
  64. pointList: SPoint[] = [];
  65. /** 是否绘制完成 */
  66. _status: SItemStatus = SItemStatus.Normal;
  67. get status(): SItemStatus {
  68. return this._status;
  69. } // Get status
  70. set status(v: SItemStatus) {
  71. this._status = v;
  72. this.undoStack.clear();
  73. this.update();
  74. } // Set status
  75. /** 鼠标移动时的点 */
  76. private lastPoint: SPoint | null = null;
  77. /** 线条颜色 */
  78. _strokeColor: SColor = SColor.Black;
  79. get strokeColor(): SColor {
  80. return this._strokeColor;
  81. } // Get strokeColor
  82. set strokeColor(v: SColor) {
  83. this._strokeColor = v;
  84. this.update();
  85. } // Set strokeColor
  86. /** 填充色 */
  87. _fillColor: SColor = new SColor("#2196f3");
  88. get fillColor(): SColor {
  89. return this._fillColor;
  90. } // Get fillColor
  91. set fillColor(v: SColor) {
  92. this._fillColor = v;
  93. this.update();
  94. } // Set fillColor
  95. /** 边框样式 */
  96. _lineStyle: SLineStyle = SLineStyle.Solid;
  97. get lineStyle(): SLineStyle {
  98. return this._lineStyle;
  99. } // Get lineStyle
  100. set lineStyle(v: SLineStyle) {
  101. this._lineStyle = v;
  102. this.update();
  103. } // Set lineStyle
  104. /** 线条宽度 */
  105. _lineWidth: number = 1;
  106. get lineWidth(): number {
  107. return this._lineWidth;
  108. } // Get lineWidth
  109. set lineWidth(v: number) {
  110. this._lineWidth = v;
  111. this.update();
  112. } // Set lineWidth
  113. /** 是否垂直水平绘制 */
  114. private _verAndLeve: Boolean = false;
  115. get verAndLeve(): Boolean {
  116. return this._verAndLeve;
  117. } // Get verAndLeve
  118. set verAndLeve(bool: Boolean) {
  119. this._verAndLeve = bool;
  120. this.update();
  121. } // Set verAndLeve
  122. /** 全局灵敏度 */
  123. dis: number = 10;
  124. /** 灵敏度转换为场景长度 */
  125. private sceneDis: number = 10;
  126. /** 当前点索引 */
  127. private curIndex: number = -1;
  128. /** 当前点 */
  129. private curPoint: SPoint | null = null;
  130. /** undo / redo 堆栈 */
  131. private undoStack: SUndoStack = new SUndoStack();
  132. /**
  133. * 构造函数
  134. *
  135. * @param parent 父级
  136. * @param data 折线数据
  137. */
  138. constructor(parent: null | SGraphItem, data: Marker | null = null) {
  139. super(parent);
  140. if (data) {
  141. this.data = data;
  142. }
  143. } // Constructor
  144. /**
  145. * 初始化 data 数据
  146. */
  147. initData() {
  148. const data = this.data;
  149. if (!data) return;
  150. this.name = data.name;
  151. this.moveTo(data.pos.x, data.pos.y);
  152. this.showSelect = false;
  153. if (data && data.style) {
  154. if (data.style.outLine) {
  155. let setPointList: SPoint[];
  156. setPointList = data.style.outLine.map(i => {
  157. return new SPoint(i.x, i.y)
  158. });
  159. this.pointList = setPointList;
  160. }
  161. this.moveable = data.style.isMove ? data.style.isMove : false;
  162. if (data.style && data.style.default) {
  163. // 颜色
  164. if (data.style.default.strokeColor) {
  165. this.strokeColor = new SColor(data.style.default.strokeColor)
  166. }
  167. // 线宽
  168. if (data.style.default.lineWidth) {
  169. this.lineWidth = data.style.default.lineWidth
  170. }
  171. // 线样式
  172. if (data.style.default.lineStyle) {
  173. this.lineStyle = data.style.default.lineStyle
  174. }
  175. }
  176. }
  177. }// Function initData()
  178. /**
  179. * 添加点至数组中
  180. *
  181. * @param p 添加的点
  182. * @param index 添加到的索引
  183. */
  184. private addPoint(p: SPoint, index?: number): void {
  185. if (index && this.canHandle(index)) {
  186. this.pointList.splice(index, 0, p);
  187. this.recordAction(SGraphPointListInsert, [
  188. this.pointList,
  189. p,
  190. index
  191. ]);
  192. } else {
  193. this.pointList.push(p);
  194. this.recordAction(SGraphPointListInsert, [this.pointList, p]);
  195. }
  196. this.update();
  197. } // Function addPoint()
  198. /**
  199. * 是否可以添加点到数组中
  200. *
  201. * @param index 要添加到的索引
  202. * @return 是否可添加
  203. */
  204. private canHandle(index: number): boolean {
  205. return index >= 0 && index <= this.pointList.length;
  206. } // Function canHandle()
  207. /**
  208. * 根据索引删除点
  209. *
  210. * @param index 删除点
  211. */
  212. deletePoint(index: number): void {
  213. if (this.canHandle(index) && this.pointList.length > 2) {
  214. const p = new SPoint(
  215. this.pointList[this.curIndex].x,
  216. this.pointList[this.curIndex].y
  217. );
  218. this.pointList.splice(index, 1);
  219. this.recordAction(SGraphPointListDelete, [
  220. this.pointList,
  221. p,
  222. index
  223. ]);
  224. this.curIndex = -1;
  225. this.curPoint = null;
  226. this.update();
  227. }
  228. } // Function deletePoint
  229. /**
  230. * 鼠标按下事件
  231. *
  232. * @param event 鼠标事件
  233. * @return 是否处理事件
  234. */
  235. onMouseDown(event: SMouseEvent): boolean {
  236. this.curIndex = -1;
  237. this.curPoint = null;
  238. if (event.shiftKey || this.verAndLeve) {
  239. event = this.compare(event);
  240. }
  241. if (event.buttons == 1) {
  242. if (this.status == SItemStatus.Create) {
  243. this.addPoint(new SPoint(event.x, event.y));
  244. return true;
  245. } else if (this.status == SItemStatus.Edit) {
  246. // 查询鼠标最近的索引
  247. this.findNearestPoint(new SPoint(event.x, event.y));
  248. // 增加点
  249. if (this.curIndex < 0) {
  250. this.findAddPos(new SPoint(event.x, event.y));
  251. }
  252. // 删除点
  253. if (event.altKey && this.canHandle(this.curIndex)) {
  254. this.deletePoint(this.curIndex);
  255. }
  256. this.update();
  257. return true;
  258. } else {
  259. return super.onMouseDown(event);
  260. }
  261. }
  262. return super.onMouseDown(event);
  263. } // Function onMouseDown()
  264. /**
  265. * 鼠标移动事件
  266. *
  267. * @param event 鼠标事件
  268. * @return 是否处理事件
  269. */
  270. onMouseMove(event: SMouseEvent): boolean {
  271. if (event.shiftKey || this.verAndLeve) {
  272. event = this.compare(event);
  273. }
  274. if (this.status == SItemStatus.Create) {
  275. if (this.lastPoint) {
  276. this.lastPoint.x = event.x;
  277. this.lastPoint.y = event.y;
  278. } else {
  279. this.lastPoint = new SPoint(event.x, event.y);
  280. }
  281. this.update();
  282. return true;
  283. } else if (this.status == SItemStatus.Edit) {
  284. if (event.buttons == 1) {
  285. if (this.canHandle(this.curIndex)) {
  286. this.pointList[this.curIndex].x = event.x;
  287. this.pointList[this.curIndex].y = event.y;
  288. }
  289. }
  290. this.update();
  291. return true;
  292. } else {
  293. return super.onMouseMove(event);
  294. }
  295. } // Function onMouseMove()
  296. /**
  297. * 鼠标移动事件
  298. *
  299. * @param event 鼠标事件
  300. * @return 是否处理事件
  301. */
  302. onMouseUp(event: SMouseEvent): boolean {
  303. if (this.status == SItemStatus.Edit) {
  304. if (this.curIndex > -1) {
  305. const p = new SPoint(
  306. this.pointList[this.curIndex].x,
  307. this.pointList[this.curIndex].y
  308. );
  309. this.recordAction(SGraphPointListUpdate, [
  310. this.pointList,
  311. this.curPoint,
  312. p,
  313. this.curIndex
  314. ]);
  315. }
  316. } else if (this.status == SItemStatus.Normal) {
  317. super.onMouseUp(event)
  318. return true;
  319. }
  320. return true;
  321. } // Function onMouseUp()
  322. /**
  323. * 鼠标双击事件
  324. *
  325. * @param event 事件参数
  326. * @return 是否处理事件
  327. */
  328. onDoubleClick(event: SMouseEvent): boolean {
  329. if (this.status == SItemStatus.Normal) {
  330. this.status = SItemStatus.Edit;
  331. this.grabItem(this);
  332. } else if (this.status == SItemStatus.Edit) {
  333. this.status = SItemStatus.Normal;
  334. this.releaseItem();
  335. } else if (this.status == SItemStatus.Create) {
  336. if (this.pointList.length > 1) {
  337. this.status = SItemStatus.Normal;
  338. this.releaseItem();
  339. this.$emit("finishCreated");
  340. }
  341. }
  342. this.$emit("onDoubleClick", event);
  343. return true;
  344. } // Function onDoubleClick()
  345. /**
  346. * 键盘按键弹起事件
  347. *
  348. * @param event 事件参数
  349. */
  350. onKeyUp(event: KeyboardEvent): void {
  351. if (event.keyCode == SKeyCode.Enter) {
  352. if (this.pointList.length > 1) {
  353. if (this.status == SItemStatus.Create) {
  354. this.$emit("finishCreated");
  355. }
  356. this.status = SItemStatus.Normal;
  357. this.releaseItem();
  358. }
  359. }
  360. // delete删除点
  361. if (
  362. event.keyCode == SKeyCode.Delete &&
  363. this.status == SItemStatus.Edit
  364. ) {
  365. this.deletePoint(this.curIndex);
  366. }
  367. } // Function onKeyUp()
  368. /**
  369. * 移动后处理所有坐标,并肩原点置为场景原点
  370. */
  371. moveToOrigin(): void {
  372. this.pointList = this.pointList.map(t => {
  373. t.x = t.x + this.x;
  374. t.y = t.y + this.y;
  375. return t;
  376. });
  377. this.x = 0;
  378. this.y = 0;
  379. } // Function moveToOrigin()
  380. /**
  381. * 获取点击点与点集中距离最近点
  382. *
  383. * @param p 鼠标点击点
  384. */
  385. findNearestPoint(p: SPoint): void {
  386. let len = this.sceneDis;
  387. for (let i = 0; i < this.pointList.length; i++) {
  388. let dis = SMathUtil.pointDistance(
  389. p.x,
  390. p.y,
  391. this.pointList[i].x,
  392. this.pointList[i].y
  393. );
  394. if (dis < len) {
  395. len = dis;
  396. this.curIndex = i;
  397. this.curPoint = new SPoint(
  398. this.pointList[this.curIndex].x,
  399. this.pointList[this.curIndex].y
  400. );
  401. }
  402. }
  403. } // Function findNearestPoint()
  404. /**
  405. * 计算增加点的位置
  406. *
  407. * @param p 鼠标点击点
  408. */
  409. findAddPos(p: SPoint): void {
  410. let len = SMathUtil.pointToLine(
  411. p,
  412. new SLine(this.pointList[0], this.pointList[1])
  413. ),
  414. index = 0;
  415. if (this.pointList.length > 2) {
  416. for (let i = 1; i < this.pointList.length - 1; i++) {
  417. let dis = SMathUtil.pointToLine(
  418. p,
  419. new SLine(this.pointList[i], this.pointList[i + 1])
  420. );
  421. if (dis.MinDis < len.MinDis) {
  422. len = dis;
  423. index = i;
  424. }
  425. }
  426. }
  427. if (len.MinDis < this.sceneDis) {
  428. if (len.Point) {
  429. this.addPoint(len.Point, index + 1);
  430. }
  431. }
  432. } // Function findAddPos()
  433. /**
  434. * shift 垂直水平创建或编辑
  435. *
  436. * @param event 事件
  437. * @return 处理后的鼠标事件
  438. */
  439. compare(event: SMouseEvent): SMouseEvent {
  440. if (this.pointList.length) {
  441. let last = new SPoint(event.x, event.y);
  442. if (this.status == SItemStatus.Create) {
  443. last = this.pointList[this.pointList.length - 1];
  444. } else if (this.status == SItemStatus.Edit) {
  445. if (this.curIndex > 1) {
  446. last = this.pointList[this.curIndex - 1];
  447. }
  448. }
  449. const dx = Math.abs(event.x - last.x);
  450. const dy = Math.abs(event.y - last.y);
  451. if (dy > dx) {
  452. event.x = last.x;
  453. } else {
  454. event.y = last.y;
  455. }
  456. }
  457. return event;
  458. } // Function compare()
  459. /**
  460. * 记录相关动作并推入栈中
  461. *
  462. * @param SGraphCommand 相关命令类
  463. * @param any 对应传入参数
  464. */
  465. protected recordAction(SGraphCommand: any, any: any[]): void {
  466. // 记录相关命令并推入堆栈中
  467. const command = new SGraphCommand(this.scene, this, ...any);
  468. this.undoStack.push(command);
  469. } // Function recordAction()
  470. /**
  471. * Item 对象边界区域
  472. *
  473. * @return 对象边界区域
  474. */
  475. boundingRect(): SRect {
  476. if (this.pointList.length) {
  477. this.minX = this.pointList[0].x;
  478. this.maxX = this.pointList[0].x;
  479. this.minY = this.pointList[0].y;
  480. this.maxY = this.pointList[0].y;
  481. this.pointList.forEach(it => {
  482. let x = it.x,
  483. y = it.y;
  484. if (x < this.minX) {
  485. this.minX = x;
  486. }
  487. if (y < this.minY) {
  488. this.minY = y;
  489. }
  490. if (x > this.maxX) {
  491. this.maxX = x;
  492. }
  493. if (y > this.maxY) {
  494. this.maxY = y;
  495. }
  496. });
  497. }
  498. return new SRect(
  499. this.minX,
  500. this.minY,
  501. this.maxX - this.minX,
  502. this.maxY - this.minY
  503. );
  504. } // Function boundingRect()
  505. /**
  506. * 判断点是否在区域内
  507. *
  508. * @param x x 坐标
  509. * @param y y 坐标
  510. * @return 是否在区域内
  511. */
  512. contains(x: number, y: number): boolean {
  513. let p = new SPoint(x, y);
  514. for (let i = 1; i < this.pointList.length; i++) {
  515. let PTL = SMathUtil.pointToLine(
  516. p,
  517. new SLine(
  518. this.pointList[i - 1].x,
  519. this.pointList[i - 1].y,
  520. this.pointList[i].x,
  521. this.pointList[i].y
  522. )
  523. );
  524. if (PTL.MinDis < this.sceneDis) {
  525. return true;
  526. }
  527. }
  528. return false;
  529. } // Function contains()
  530. /**
  531. * 撤销操作
  532. */
  533. undo(): void {
  534. if (this._status != SItemStatus.Normal) {
  535. this.undoStack.undo();
  536. }
  537. } // Function undo()
  538. /**
  539. * 重做操作
  540. */
  541. redo(): void {
  542. if (this._status != SItemStatus.Normal) {
  543. this.undoStack.redo();
  544. }
  545. } // Function redo()
  546. /**
  547. * 取消操作执行
  548. */
  549. cancelOperate(): void {
  550. if (this.status == SItemStatus.Create) {
  551. this.parent = null;
  552. this.releaseItem();
  553. } else if (this.status == SItemStatus.Edit) {
  554. this.status = SItemStatus.Normal;
  555. this.releaseItem();
  556. }
  557. } // Function cancelOperate()
  558. /**
  559. * 绘制基本图形
  560. *
  561. * @param painter 绘制对象
  562. */
  563. drawBaseLine(painter: SPainter): void {
  564. // 绘制基本图形
  565. painter.pen.color = this.strokeColor;
  566. if (this.lineStyle == SLineStyle.Dashed) {
  567. painter.pen.lineDash = [
  568. painter.toPx(this.lineWidth * 3),
  569. painter.toPx(this.lineWidth * 7)
  570. ];
  571. } else if (this.lineStyle == SLineStyle.Dotted) {
  572. painter.pen.lineDash = [
  573. painter.toPx(this.lineWidth),
  574. painter.toPx(this.lineWidth)
  575. ];
  576. }
  577. painter.drawPolyline(this.pointList);
  578. } // Function drawBaseLine()
  579. /**
  580. * 返回对象储存的相关数据
  581. *
  582. * @return 对象储存的相关数据
  583. */
  584. toData(): any {
  585. this.moveToOrigin();
  586. if (!this.data) return;
  587. const Line = this.pointList.map(pos => {
  588. return {
  589. x: pos.x,
  590. y: pos.y
  591. }
  592. });
  593. this.data.style.outLine = Line;
  594. this.data.style.default.lineWidth = this.lineWidth;
  595. this.data.style.default.lineStyle = this.lineStyle;
  596. this.data.style.default.strokeColor = this.strokeColor.value;
  597. return this.data
  598. } // Function toData()
  599. /**
  600. * Item 绘制操作
  601. *
  602. * @param painter 绘制对象
  603. */
  604. onDraw(painter: SPainter): void {
  605. // 缓存场景长度
  606. this.sceneDis = painter.toPx(this.dis);
  607. // 创建状态
  608. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  609. if (this.status == SItemStatus.Create && this.lastPoint) {
  610. // 绘制基本图形
  611. this.drawBaseLine(painter);
  612. painter.drawLine(
  613. this.pointList[this.pointList.length - 1],
  614. this.lastPoint
  615. );
  616. // 编辑状态
  617. this.pointList.forEach((t, i): void => {
  618. painter.brush.color = SColor.White;
  619. if (i == this.curIndex) {
  620. painter.brush.color = this.fillColor;
  621. }
  622. painter.drawCircle(t.x, t.y, painter.toPx(5));
  623. });
  624. } else if (this.status == SItemStatus.Edit) {
  625. // 绘制基本图形
  626. this.drawBaseLine(painter);
  627. // 编辑状态
  628. this.pointList.forEach((t, i): void => {
  629. painter.brush.color = SColor.White;
  630. if (i == this.curIndex) {
  631. painter.brush.color = this.fillColor;
  632. }
  633. painter.drawCircle(t.x, t.y, painter.toPx(5));
  634. });
  635. } else {
  636. // 查看状态
  637. if (this.selected) {
  638. painter.pen.lineWidth = painter.toPx(this.lineWidth * 2);
  639. painter.shadow.shadowBlur = 10;
  640. painter.shadow.shadowColor = new SColor(`#00000033`);
  641. painter.shadow.shadowOffsetX = 5;
  642. painter.shadow.shadowOffsetY = 5;
  643. }
  644. // 绘制基本图形
  645. this.drawBaseLine(painter);
  646. }
  647. } // Function onDraw()
  648. } // Class SBasePolylineEdit