SLineEdit.ts 17 KB

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