SBaseLineEdit.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  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 { SMouseButton, SMouseEvent, SUndoStack } from "@persagy-web/base";
  28. import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
  29. import { SItemStatus } from "@persagy-web/big";
  30. import {
  31. SGraphPointListInsert,
  32. SGraphPointListUpdate,
  33. SLineStyle,
  34. SGraphItem
  35. } from "@persagy-web/graph/";
  36. import { SGraphEdit } from ".."
  37. import { Marker } from "../type/Marker";
  38. /**
  39. * 直线编辑类
  40. *
  41. * @author 韩耀龙 <han_yao_long@163.com>
  42. */
  43. export class SBaseLineEdit extends SGraphEdit {
  44. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  45. //属性
  46. /** 编辑相关操作的数据 */
  47. data: Marker
  48. /** 起始锚点 */
  49. startItem: SGraphItem | null = null;
  50. /** 结束锚点 */
  51. endItem: SGraphItem | null = null;
  52. /** X 坐标最小值 */
  53. private minX = Number.MAX_SAFE_INTEGER;
  54. /** X 坐标最大值 */
  55. private maxX = Number.MIN_SAFE_INTEGER;
  56. /** Y 坐标最小值 */
  57. private minY = Number.MAX_SAFE_INTEGER;
  58. /** Y 坐标最大值 */
  59. private maxY = Number.MIN_SAFE_INTEGER;
  60. /** 线段 */
  61. private _line: SPoint[] = [];
  62. get line(): SPoint[] {
  63. return this._line;
  64. } // Get line
  65. set line(arr: SPoint[]) {
  66. this._line = arr;
  67. this.update();
  68. } // Set line
  69. /** 是否垂直水平绘制 */
  70. private _verAndLeve: Boolean = false;
  71. get verAndLeve(): Boolean {
  72. return this._verAndLeve;
  73. } // Get verAndLeve
  74. set verAndLeve(bool: Boolean) {
  75. this._verAndLeve = bool;
  76. this.update();
  77. } // Set verAndLeve
  78. /** 是否完成绘制 */
  79. protected _status: SItemStatus = SItemStatus.Normal;
  80. get status(): SItemStatus {
  81. return this._status;
  82. } // Get status
  83. set status(v: SItemStatus) {
  84. this._status = v;
  85. this.undoStack.clear();
  86. this.update();
  87. } // Set status
  88. /** 线条颜色 */
  89. private _strokeColor: SColor = SColor.Black;
  90. get strokeColor(): SColor {
  91. return this._strokeColor;
  92. } // Get strokeColor
  93. set strokeColor(v: SColor) {
  94. this._strokeColor = v;
  95. this.update();
  96. }// Get strokeColor
  97. /** 线条样式 */
  98. private _lineStyle: SLineStyle = SLineStyle.Solid;
  99. get lineStyle(): SLineStyle {
  100. return this._lineStyle;
  101. } // Get lineStyle
  102. set lineStyle(v: SLineStyle) {
  103. this._lineStyle = v;
  104. this.update();
  105. } // Set lineStyle
  106. /** 端点填充色 */
  107. private _fillColor: SColor = SColor.White;
  108. get fillColor(): SColor {
  109. return this._fillColor;
  110. } // Get fillColor
  111. set fillColor(v: SColor) {
  112. this._fillColor = v;
  113. this.update();
  114. } //Set fillColor
  115. /** 选中端点填充色 */
  116. private _activeFillColor: SColor = new SColor("#2196f3");
  117. get activeFillColor(): SColor {
  118. return this._activeFillColor;
  119. } //Get activeFillColor
  120. set activeFillColor(v: SColor) {
  121. this._activeFillColor = v;
  122. this.update();
  123. } //Set activeFillColor
  124. /** 线条宽度 */
  125. private _lineWidth: number = 1;
  126. get lineWidth(): number {
  127. return this._lineWidth;
  128. } //Get lineWidth
  129. set lineWidth(v: number) {
  130. this._lineWidth = v;
  131. this.update();
  132. } //Set lineWidth
  133. /** 拖动灵敏度 */
  134. dis: number = 5;
  135. /** 拖动灵敏度 */
  136. protected sceneDis: number = 5;
  137. /** 当前点索引 */
  138. curIndex: number = -1;
  139. /** 当前点坐标 */
  140. private curPoint: SPoint | null = null;
  141. /** undo/redo 堆栈 */
  142. private undoStack: SUndoStack = new SUndoStack();
  143. /**
  144. * 构造函数
  145. *
  146. * @param parent 父级
  147. * @param data 坐标集合|第一个点坐标
  148. */
  149. constructor(parent: SGraphItem | null, data: Marker) {
  150. super(parent);
  151. this.showSelect = false;
  152. this.data = data;
  153. if (data.style) {
  154. // 关于顶点
  155. if (data.style.line) {
  156. let setPointList: SPoint[];
  157. setPointList = data.style.line.map((i: { x: number; y: number; }) => {
  158. return new SPoint(i.x, i.y)
  159. });
  160. this.line = setPointList;
  161. }
  162. if (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.fillColor) {
  169. this.fillColor = new SColor(data.style.default.fillColor)
  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. }
  181. }
  182. /**
  183. * 添加点至数组中
  184. *
  185. * @param p 添加的点
  186. */
  187. private addPoint(p: SPoint): void {
  188. if (this.line.length < 2) {
  189. this.line.push(p);
  190. this.recordAction(SGraphPointListInsert, [this.line, p]);
  191. } else {
  192. this.line[1] = p;
  193. this.recordAction(SGraphPointListInsert, [this.line, p, 1]);
  194. this.status = SItemStatus.Normal;
  195. this.releaseItem();
  196. this.$emit("finishCreated");
  197. this.pointChange();
  198. }
  199. this.update();
  200. } // Function addPoint()
  201. /**
  202. * 鼠标双击事件
  203. *
  204. * @param event 事件参数
  205. * @return 该事件是否被处理
  206. */
  207. onDoubleClick(event: SMouseEvent): boolean {
  208. if (this.status == SItemStatus.Normal) {
  209. this.status = SItemStatus.Edit;
  210. this.grabItem(this);
  211. } else if (this.status == SItemStatus.Edit) {
  212. this.status = SItemStatus.Normal;
  213. this.releaseItem();
  214. }
  215. this.update();
  216. return true;
  217. } // Function onDoubleClick()
  218. /**
  219. * 鼠标按下事件
  220. *
  221. * @param event 鼠标事件
  222. * @return 是否处理事件
  223. */
  224. onMouseDown(event: SMouseEvent): boolean {
  225. this.curIndex = -1;
  226. this.curPoint = null;
  227. if (event.shiftKey || this._verAndLeve) {
  228. event = this.compare(event);
  229. }
  230. if (event.buttons == SMouseButton.LeftButton) {
  231. if (this.status == SItemStatus.Normal) {
  232. // return super.onMouseDown(event);
  233. super.onMouseDown(event);
  234. return true;
  235. } else if (this.status == SItemStatus.Edit) {
  236. // 判断是否点击到端点上(获取端点索引值)
  237. this.findNearestPoint(new SPoint(event.x, event.y));
  238. } else if (this.status == SItemStatus.Create) {
  239. this.addPoint(new SPoint(event.x, event.y));
  240. return true;
  241. }
  242. }
  243. return true;
  244. } // Function onMouseDown()
  245. /**
  246. * 鼠标抬起事件
  247. *
  248. * @param event 事件参数
  249. * @return 是否处理该事件
  250. */
  251. onMouseUp(event: SMouseEvent): boolean {
  252. if (this.status == SItemStatus.Edit) {
  253. if (this.curIndex > -1) {
  254. const p = new SPoint(
  255. this.line[this.curIndex].x,
  256. this.line[this.curIndex].y
  257. );
  258. this.recordAction(SGraphPointListUpdate, [
  259. this.line,
  260. this.curPoint,
  261. p,
  262. this.curIndex
  263. ]);
  264. }
  265. } else if (this.status == SItemStatus.Normal) {
  266. super.onMouseUp(event);
  267. return true
  268. }
  269. this.curIndex = -1;
  270. this.curPoint = null;
  271. return true;
  272. } // Function onMouseUp()
  273. /**
  274. * 鼠标抬起事件
  275. *
  276. * @param event 事件参数
  277. * @return 是否处理该事件
  278. */
  279. onKeyUp(event: KeyboardEvent): void {
  280. // 当 ESC 时
  281. if (27 == event.keyCode) {
  282. if (this.status == SItemStatus.Edit) {
  283. this.status = SItemStatus.Normal;
  284. this.releaseItem();
  285. } else if (this.status == SItemStatus.Create) {
  286. this.update()
  287. this.releaseItem();
  288. this.parent = null;
  289. }
  290. }
  291. } // Function onKeyUp()
  292. /**
  293. * 鼠标移动事件
  294. *
  295. * @param event 鼠标事件
  296. * @return 是否处理事件
  297. */
  298. onMouseMove(event: SMouseEvent): boolean {
  299. if (event.shiftKey || this._verAndLeve) {
  300. event = this.compare(event);
  301. }
  302. if (this.status == SItemStatus.Create) {
  303. if (this.line[0] instanceof SPoint) {
  304. this.line[1] = new SPoint(event.x, event.y);
  305. this.pointChange();
  306. }
  307. } else if (this.status == SItemStatus.Edit) {
  308. if (-1 != this.curIndex) {
  309. this.line[this.curIndex].x = event.x;
  310. this.line[this.curIndex].y = event.y;
  311. this.pointChange();
  312. }
  313. } else {
  314. return super.onMouseMove(event);
  315. }
  316. this.update();
  317. return true;
  318. } // Function onMouseMove()
  319. /**
  320. * 点发生变化
  321. */
  322. protected pointChange(): void {
  323. // do nothing
  324. } // Function pointChange()
  325. /**
  326. * 获取点击点与 Point[] 中的点距离最近点
  327. *
  328. * @param p 鼠标点击点
  329. */
  330. findNearestPoint(p: SPoint): void {
  331. let len = this.sceneDis;
  332. for (let i = 0; i < this.line.length; i++) {
  333. let dis = SMathUtil.pointDistance(
  334. p.x,
  335. p.y,
  336. this.line[i].x + this.x,
  337. this.line[i].y + this.y
  338. );
  339. if (dis < len) {
  340. len = dis;
  341. this.curIndex = i;
  342. this.curPoint = new SPoint(this.line[this.curIndex]);
  343. }
  344. }
  345. } // Function findNearestPoint()
  346. /**
  347. * 记录相关动作并推入栈中
  348. *
  349. * @param SGraphCommand 相关命令类
  350. * @param any 对应传入参数
  351. */
  352. protected recordAction(SGraphCommand: any, any: any[]): void {
  353. // 记录相关命令并推入堆栈中
  354. const command = new SGraphCommand(this.scene, this, ...any);
  355. this.undoStack.push(command);
  356. } // Function recordAction()
  357. /**
  358. * 移动后处理所有坐标,并肩原点置为场景原点
  359. *
  360. * @param x x 坐标
  361. * @param y y 坐标
  362. */
  363. moveToOrigin(): void {
  364. this.line = this.line.map(t => {
  365. t.x = t.x + this.x;
  366. t.y = t.y + this.y;
  367. return t;
  368. });
  369. this.x = 0;
  370. this.y = 0;
  371. } // Function moveToOrigin()
  372. /**
  373. * shift 垂直水平创建或编辑
  374. *
  375. * @param event 事件
  376. * @return 鼠标事件
  377. */
  378. compare(event: SMouseEvent): SMouseEvent {
  379. if (this.line.length) {
  380. let last = new SPoint(event.x, event.y);
  381. if (this.status == SItemStatus.Create) {
  382. last = this.line[0];
  383. } else if (this.status == SItemStatus.Edit) {
  384. if (this.curIndex == 1) {
  385. last = this.line[0];
  386. } else if (this.curIndex == 0) {
  387. last = this.line[1];
  388. }
  389. }
  390. const dx = Math.abs(event.x - last.x);
  391. const dy = Math.abs(event.y - last.y);
  392. if (dy > dx) {
  393. event.x = last.x;
  394. } else {
  395. event.y = last.y;
  396. }
  397. }
  398. return event;
  399. } // Function compare()
  400. /**
  401. * 判断点是否在区域内
  402. *
  403. * @param x x 坐标
  404. * @param y y 坐标
  405. * @return 是否在区域内
  406. */
  407. contains(x: number, y: number): boolean {
  408. if (this.line.length == 2) {
  409. let p = new SPoint(x, y);
  410. if (
  411. SMathUtil.pointToLine(p, new SLine(this.line[0], this.line[1]))
  412. .MinDis < this.sceneDis
  413. ) {
  414. return true;
  415. }
  416. }
  417. return false;
  418. } // Function contains()
  419. /**
  420. * 撤销操作
  421. */
  422. undo(): void {
  423. if (this.status != SItemStatus.Normal) {
  424. this.undoStack.undo();
  425. }
  426. } // Function undo()
  427. /**
  428. * 重做操作
  429. */
  430. redo(): void {
  431. if (this.status != SItemStatus.Normal) {
  432. this.undoStack.redo();
  433. }
  434. } // Function redo()
  435. /**
  436. * 取消操作 item 事件
  437. */
  438. cancelOperate(): void {
  439. if (this.status == SItemStatus.Create) {
  440. this.parent = null;
  441. this.releaseItem();
  442. } else if (this.status == SItemStatus.Edit) {
  443. this.status = SItemStatus.Normal;
  444. this.releaseItem();
  445. }
  446. } // Function cancelOperate()
  447. /**
  448. * Item 对象边界区域
  449. *
  450. * @return 边界区域
  451. */
  452. boundingRect(): SRect {
  453. if (this.line.length) {
  454. this.minX = this.line[0].x;
  455. this.maxX = this.line[0].x;
  456. this.minY = this.line[0].y;
  457. this.maxY = this.line[0].y;
  458. this.line.forEach(it => {
  459. let x = it.x,
  460. y = it.y;
  461. if (x < this.minX) {
  462. this.minX = x;
  463. }
  464. if (y < this.minY) {
  465. this.minY = y;
  466. }
  467. if (x > this.maxX) {
  468. this.maxX = x;
  469. }
  470. if (y > this.maxY) {
  471. this.maxY = y;
  472. }
  473. });
  474. }
  475. return new SRect(
  476. this.minX,
  477. this.minY,
  478. this.maxX - this.minX,
  479. this.maxY - this.minY
  480. );
  481. } // Function boundingRect()
  482. /**
  483. * 返回对象储存的相关数据
  484. *
  485. * @return 对象数据
  486. */
  487. toData(): any {
  488. this.moveToOrigin()
  489. const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
  490. this.data.style.line = Line;
  491. this.data.style.default.lineWidth = this.lineWidth;
  492. this.data.style.default.lineStyle = this.lineStyle;
  493. this.data.style.default.strokeColor = this.strokeColor.value;
  494. this.data.style.default.fillColor = this.fillColor.value;
  495. return this.data
  496. } // Function toData()
  497. /**
  498. * Item 绘制操作
  499. *
  500. * @param painter 绘制对象
  501. */
  502. onDraw(painter: SPainter): void {
  503. this.sceneDis = painter.toPx(this.dis);
  504. painter.pen.lineWidth = painter.toPx(this.lineWidth);
  505. painter.pen.color = this.strokeColor;
  506. if (this.line.length == 2) {
  507. // 绘制直线
  508. painter.pen.color = this.strokeColor;
  509. if (this.lineStyle == SLineStyle.Dashed) {
  510. painter.pen.lineDash = [
  511. painter.toPx(this.lineWidth * 3),
  512. painter.toPx(this.lineWidth * 7)
  513. ];
  514. } else if (this.lineStyle == SLineStyle.Dotted) {
  515. painter.pen.lineDash = [
  516. painter.toPx(2 * this.lineWidth),
  517. painter.toPx(2 * this.lineWidth)
  518. ];
  519. }
  520. if (this.selected && this.status == SItemStatus.Normal) {
  521. painter.pen.lineWidth = painter.toPx(this.lineWidth * 2);
  522. painter.shadow.shadowBlur = 10;
  523. painter.shadow.shadowColor = new SColor(`#00000033`);
  524. painter.shadow.shadowOffsetX = 5;
  525. painter.shadow.shadowOffsetY = 5;
  526. }
  527. painter.drawLine(this.line[0], this.line[1]);
  528. if (
  529. this.status == SItemStatus.Edit ||
  530. this.status == SItemStatus.Create
  531. ) {
  532. // 绘制端点
  533. this.line.forEach((p, i): void => {
  534. painter.brush.color = this.fillColor;
  535. if (i == this.curIndex) {
  536. painter.brush.color = this.activeFillColor;
  537. }
  538. painter.drawCircle(p.x, p.y, painter.toPx(5));
  539. });
  540. }
  541. } else if (this.line.length == 1) {
  542. if (
  543. this.status == SItemStatus.Edit ||
  544. this.status == SItemStatus.Create
  545. ) {
  546. // 绘制端点
  547. painter.brush.color = this.fillColor;
  548. painter.drawCircle(
  549. this.line[0].x,
  550. this.line[0].y,
  551. painter.toPx(5)
  552. );
  553. }
  554. }
  555. } // Function onDraw()
  556. } // Class SBaseLineEdit