SBasePolylineEdit.ts 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  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. this.data = data;
  141. } // Constructor
  142. /**
  143. * 初始化 data 数据
  144. */
  145. initData() {
  146. const data = this.data;
  147. if (!data) return;
  148. this.name = data.name;
  149. this.moveTo(data.pos.x, data.pos.y);
  150. this.showSelect = false;
  151. if (data && data.style) {
  152. if (data.style.outLine) {
  153. let setPointList: SPoint[];
  154. setPointList = data.style.outLine.map(i => {
  155. return new SPoint(i.x, i.y)
  156. });
  157. this.pointList = setPointList;
  158. }
  159. this.moveable = data.style.isMove ? data.style.isMove : false;
  160. if (data.style && data.style.default) {
  161. // 颜色
  162. if (data.style.default.strokeColor) {
  163. this.strokeColor = new SColor(data.style.default.strokeColor)
  164. }
  165. // 线宽
  166. if (data.style.default.lineWidth) {
  167. this.lineWidth = data.style.default.lineWidth
  168. }
  169. // 线样式
  170. if (data.style.default.lineStyle) {
  171. this.lineStyle = data.style.default.lineStyle
  172. }
  173. }
  174. }
  175. }// Function initData()
  176. /**
  177. * 添加点至数组中
  178. *
  179. * @param p 添加的点
  180. * @param index 添加到的索引
  181. */
  182. private addPoint(p: SPoint, index?: number): void {
  183. if (index && this.canHandle(index)) {
  184. this.pointList.splice(index, 0, p);
  185. this.recordAction(SGraphPointListInsert, [
  186. this.pointList,
  187. p,
  188. index
  189. ]);
  190. } else {
  191. this.pointList.push(p);
  192. this.recordAction(SGraphPointListInsert, [this.pointList, p]);
  193. }
  194. this.update();
  195. } // Function addPoint()
  196. /**
  197. * 是否可以添加点到数组中
  198. *
  199. * @param index 要添加到的索引
  200. * @return 是否可添加
  201. */
  202. private canHandle(index: number): boolean {
  203. return index >= 0 && index <= this.pointList.length;
  204. } // Function canHandle()
  205. /**
  206. * 根据索引删除点
  207. *
  208. * @param index 删除点
  209. */
  210. deletePoint(index: number): void {
  211. if (this.canHandle(index) && this.pointList.length > 2) {
  212. const p = new SPoint(
  213. this.pointList[this.curIndex].x,
  214. this.pointList[this.curIndex].y
  215. );
  216. this.pointList.splice(index, 1);
  217. this.recordAction(SGraphPointListDelete, [
  218. this.pointList,
  219. p,
  220. index
  221. ]);
  222. this.curIndex = -1;
  223. this.curPoint = null;
  224. this.update();
  225. }
  226. } // Function deletePoint
  227. /**
  228. * 鼠标按下事件
  229. *
  230. * @param event 鼠标事件
  231. * @return 是否处理事件
  232. */
  233. onMouseDown(event: SMouseEvent): boolean {
  234. this.curIndex = -1;
  235. this.curPoint = null;
  236. if (event.shiftKey || this.verAndLeve) {
  237. event = this.compare(event);
  238. }
  239. if (event.buttons == 1) {
  240. if (this.status == SItemStatus.Create) {
  241. this.addPoint(new SPoint(event.x, event.y));
  242. return true;
  243. } else if (this.status == SItemStatus.Edit) {
  244. // 查询鼠标最近的索引
  245. this.findNearestPoint(new SPoint(event.x, event.y));
  246. // 增加点
  247. if (this.curIndex < 0) {
  248. this.findAddPos(new SPoint(event.x, event.y));
  249. }
  250. // 删除点
  251. if (event.altKey && this.canHandle(this.curIndex)) {
  252. this.deletePoint(this.curIndex);
  253. }
  254. this.update();
  255. return true;
  256. } else {
  257. return super.onMouseDown(event);
  258. }
  259. }
  260. return super.onMouseDown(event);
  261. } // Function onMouseDown()
  262. /**
  263. * 鼠标移动事件
  264. *
  265. * @param event 鼠标事件
  266. * @return 是否处理事件
  267. */
  268. onMouseMove(event: SMouseEvent): boolean {
  269. if (event.shiftKey || this.verAndLeve) {
  270. event = this.compare(event);
  271. }
  272. if (this.status == SItemStatus.Create) {
  273. if (this.lastPoint) {
  274. this.lastPoint.x = event.x;
  275. this.lastPoint.y = event.y;
  276. } else {
  277. this.lastPoint = new SPoint(event.x, event.y);
  278. }
  279. this.update();
  280. return true;
  281. } else if (this.status == SItemStatus.Edit) {
  282. if (event.buttons == 1) {
  283. if (this.canHandle(this.curIndex)) {
  284. this.pointList[this.curIndex].x = event.x;
  285. this.pointList[this.curIndex].y = event.y;
  286. }
  287. }
  288. this.update();
  289. return true;
  290. } else {
  291. return super.onMouseMove(event);
  292. }
  293. } // Function onMouseMove()
  294. /**
  295. * 鼠标移动事件
  296. *
  297. * @param event 鼠标事件
  298. * @return 是否处理事件
  299. */
  300. onMouseUp(event: SMouseEvent): boolean {
  301. if (this.status == SItemStatus.Edit) {
  302. if (this.curIndex > -1) {
  303. const p = new SPoint(
  304. this.pointList[this.curIndex].x,
  305. this.pointList[this.curIndex].y
  306. );
  307. this.recordAction(SGraphPointListUpdate, [
  308. this.pointList,
  309. this.curPoint,
  310. p,
  311. this.curIndex
  312. ]);
  313. }
  314. } else if (this.status == SItemStatus.Normal) {
  315. this.moveToOrigin(this.x, this.y);
  316. return super.onMouseUp(event);
  317. }
  318. return true;
  319. } // Function onMouseUp()
  320. /**
  321. * 鼠标双击事件
  322. *
  323. * @param event 事件参数
  324. * @return 是否处理事件
  325. */
  326. onDoubleClick(event: SMouseEvent): boolean {
  327. if (this.status == SItemStatus.Normal) {
  328. this.status = SItemStatus.Edit;
  329. this.grabItem(this);
  330. } else if (this.status == SItemStatus.Edit) {
  331. this.status = SItemStatus.Normal;
  332. this.releaseItem();
  333. } else if (this.status == SItemStatus.Create) {
  334. if (this.pointList.length > 1) {
  335. this.status = SItemStatus.Normal;
  336. this.releaseItem();
  337. this.$emit("finishCreated");
  338. }
  339. }
  340. this.$emit("onDoubleClick", event);
  341. return true;
  342. } // Function onDoubleClick()
  343. /**
  344. * 键盘按键弹起事件
  345. *
  346. * @param event 事件参数
  347. */
  348. onKeyUp(event: KeyboardEvent): void {
  349. if (event.keyCode == SKeyCode.Enter) {
  350. if (this.pointList.length > 1) {
  351. if (this.status == SItemStatus.Create) {
  352. this.$emit("finishCreated");
  353. }
  354. this.status = SItemStatus.Normal;
  355. this.releaseItem();
  356. }
  357. }
  358. // delete删除点
  359. if (
  360. event.keyCode == SKeyCode.Delete &&
  361. this.status == SItemStatus.Edit
  362. ) {
  363. this.deletePoint(this.curIndex);
  364. }
  365. } // Function onKeyUp()
  366. /**
  367. * 移动后处理所有坐标,并肩原点置为场景原点
  368. *
  369. * @param x x 坐标
  370. * @param y y 坐标
  371. */
  372. moveToOrigin(x: number, y: number): void {
  373. super.moveToOrigin(x, y);
  374. this.pointList = this.pointList.map(t => {
  375. t.x = t.x + x;
  376. t.y = t.y + y;
  377. return t;
  378. });
  379. this.x = 0;
  380. this.y = 0;
  381. } // Function moveToOrigin()
  382. /**
  383. * 获取点击点与点集中距离最近点
  384. *
  385. * @param p 鼠标点击点
  386. */
  387. findNearestPoint(p: SPoint): void {
  388. let len = this.sceneDis;
  389. for (let i = 0; i < this.pointList.length; i++) {
  390. let dis = SMathUtil.pointDistance(
  391. p.x,
  392. p.y,
  393. this.pointList[i].x,
  394. this.pointList[i].y
  395. );
  396. if (dis < len) {
  397. len = dis;
  398. this.curIndex = i;
  399. this.curPoint = new SPoint(
  400. this.pointList[this.curIndex].x,
  401. this.pointList[this.curIndex].y
  402. );
  403. }
  404. }
  405. } // Function findNearestPoint()
  406. /**
  407. * 计算增加点的位置
  408. *
  409. * @param p 鼠标点击点
  410. */
  411. findAddPos(p: SPoint): void {
  412. let len = SMathUtil.pointToLine(
  413. p,
  414. new SLine(this.pointList[0], this.pointList[1])
  415. ),
  416. index = 0;
  417. if (this.pointList.length > 2) {
  418. for (let i = 1; i < this.pointList.length - 1; i++) {
  419. let dis = SMathUtil.pointToLine(
  420. p,
  421. new SLine(this.pointList[i], this.pointList[i + 1])
  422. );
  423. if (dis.MinDis < len.MinDis) {
  424. len = dis;
  425. index = i;
  426. }
  427. }
  428. }
  429. if (len.MinDis < this.sceneDis) {
  430. if (len.Point) {
  431. this.addPoint(len.Point, index + 1);
  432. }
  433. }
  434. } // Function findAddPos()
  435. /**
  436. * shift 垂直水平创建或编辑
  437. *
  438. * @param event 事件
  439. * @return 处理后的鼠标事件
  440. */
  441. compare(event: SMouseEvent): SMouseEvent {
  442. if (this.pointList.length) {
  443. let last = new SPoint(event.x, event.y);
  444. if (this.status == SItemStatus.Create) {
  445. last = this.pointList[this.pointList.length - 1];
  446. } else if (this.status == SItemStatus.Edit) {
  447. if (this.curIndex > 1) {
  448. last = this.pointList[this.curIndex - 1];
  449. }
  450. }
  451. const dx = Math.abs(event.x - last.x);
  452. const dy = Math.abs(event.y - last.y);
  453. if (dy > dx) {
  454. event.x = last.x;
  455. } else {
  456. event.y = last.y;
  457. }
  458. }
  459. return event;
  460. } // Function compare()
  461. /**
  462. * 记录相关动作并推入栈中
  463. *
  464. * @param SGraphCommand 相关命令类
  465. * @param any 对应传入参数
  466. */
  467. protected recordAction(SGraphCommand: any, any: any[]): void {
  468. // 记录相关命令并推入堆栈中
  469. const command = new SGraphCommand(this.scene, this, ...any);
  470. this.undoStack.push(command);
  471. } // Function recordAction()
  472. /**
  473. * Item 对象边界区域
  474. *
  475. * @return 对象边界区域
  476. */
  477. boundingRect(): SRect {
  478. if (this.pointList.length) {
  479. this.minX = this.pointList[0].x;
  480. this.maxX = this.pointList[0].x;
  481. this.minY = this.pointList[0].y;
  482. this.maxY = this.pointList[0].y;
  483. this.pointList.forEach(it => {
  484. let x = it.x,
  485. y = it.y;
  486. if (x < this.minX) {
  487. this.minX = x;
  488. }
  489. if (y < this.minY) {
  490. this.minY = y;
  491. }
  492. if (x > this.maxX) {
  493. this.maxX = x;
  494. }
  495. if (y > this.maxY) {
  496. this.maxY = y;
  497. }
  498. });
  499. }
  500. return new SRect(
  501. this.minX,
  502. this.minY,
  503. this.maxX - this.minX,
  504. this.maxY - this.minY
  505. );
  506. } // Function boundingRect()
  507. /**
  508. * 判断点是否在区域内
  509. *
  510. * @param x x 坐标
  511. * @param y y 坐标
  512. * @return 是否在区域内
  513. */
  514. contains(x: number, y: number): boolean {
  515. let p = new SPoint(x, y);
  516. for (let i = 1; i < this.pointList.length; i++) {
  517. let PTL = SMathUtil.pointToLine(
  518. p,
  519. new SLine(
  520. this.pointList[i - 1].x,
  521. this.pointList[i - 1].y,
  522. this.pointList[i].x,
  523. this.pointList[i].y
  524. )
  525. );
  526. if (PTL.MinDis < this.sceneDis) {
  527. return true;
  528. }
  529. }
  530. return false;
  531. } // Function contains()
  532. /**
  533. * 撤销操作
  534. */
  535. undo(): void {
  536. if (this._status != SItemStatus.Normal) {
  537. this.undoStack.undo();
  538. }
  539. } // Function undo()
  540. /**
  541. * 重做操作
  542. */
  543. redo(): void {
  544. if (this._status != SItemStatus.Normal) {
  545. this.undoStack.redo();
  546. }
  547. } // Function redo()
  548. /**
  549. * 取消操作执行
  550. */
  551. cancelOperate(): void {
  552. if (this.status == SItemStatus.Create) {
  553. this.parent = null;
  554. this.releaseItem();
  555. } else if (this.status == SItemStatus.Edit) {
  556. this.status = SItemStatus.Normal;
  557. this.releaseItem();
  558. }
  559. } // Function cancelOperate()
  560. /**
  561. * 绘制基本图形
  562. *
  563. * @param painter 绘制对象
  564. */
  565. drawBaseLine(painter: SPainter): void {
  566. // 绘制基本图形
  567. painter.pen.color = this.strokeColor;
  568. if (this.lineStyle == SLineStyle.Dashed) {
  569. painter.pen.lineDash = [
  570. painter.toPx(this.lineWidth * 3),
  571. painter.toPx(this.lineWidth * 7)
  572. ];
  573. } else if (this.lineStyle == SLineStyle.Dotted) {
  574. painter.pen.lineDash = [
  575. painter.toPx(this.lineWidth),
  576. painter.toPx(this.lineWidth)
  577. ];
  578. }
  579. painter.drawPolyline(this.pointList);
  580. } // Function drawBaseLine()
  581. /**
  582. * 返回对象储存的相关数据
  583. *
  584. * @return 对象储存的相关数据
  585. */
  586. toData(): any {
  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