SBaseTriangleEdit.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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, SPainter, SPoint, SRect } from "@persagy-web/draw";
  27. import { SMouseButton, SMouseEvent, SUndoStack } from "@persagy-web/base";
  28. import { SItemStatus } from "@persagy-web/big";
  29. import {
  30. SLineStyle,
  31. SGraphItem, SGraphPointListInsert
  32. } from "@persagy-web/graph/";
  33. import { SGraphEdit } from "..";
  34. import { Marker } from "../type/Marker";
  35. /**
  36. * 折线编辑类
  37. *
  38. * @author 韩耀龙 <han_yao_long@163.com>
  39. */
  40. export class SBaseTriangleEdit extends SGraphEdit {
  41. /** 是否绘制完成 */
  42. _status: SItemStatus = SItemStatus.Normal;
  43. get status(): SItemStatus {
  44. return this._status;
  45. } // Get status
  46. set status(v: SItemStatus) {
  47. this._status = v;
  48. this.undoStack.clear();
  49. this.update();
  50. } // Set status
  51. /** 编辑相关操作的数据 */
  52. data: Marker;
  53. /** 矩形两个对角 */
  54. private _line: SPoint[] = [];
  55. get line(): SPoint[] {
  56. return this._line;
  57. } // Get line
  58. set line(arr: SPoint[]) {
  59. this._line = arr;
  60. this.update();
  61. } // Get line
  62. /** 矩形左上角 */
  63. private _leftTop: SPoint = new SPoint();
  64. /** 矩形右下角 */
  65. private _rightBottom: SPoint = new SPoint();
  66. /** 绘制三角形的点数组 */
  67. private pointList: SPoint[] = [];
  68. /** 线条颜色 */
  69. _strokeColor: SColor = SColor.Black;
  70. get strokeColor(): SColor {
  71. return this._strokeColor;
  72. } // Get strokeColor
  73. set strokeColor(v: SColor) {
  74. this._strokeColor = v;
  75. this.update();
  76. } // Set strokeColor
  77. /** 填充色 */
  78. _fillColor: SColor = new SColor("#2196f3");
  79. get fillColor(): SColor {
  80. return this._fillColor;
  81. } // Get fillColor
  82. set fillColor(v: SColor) {
  83. this._fillColor = v;
  84. this.update();
  85. } // Set fillColor
  86. /** 边框样式 */
  87. _lineStyle: SLineStyle = SLineStyle.Solid;
  88. get lineStyle(): SLineStyle {
  89. return this._lineStyle;
  90. } // Get lineStyle
  91. set lineStyle(v: SLineStyle) {
  92. this._lineStyle = v;
  93. this.update();
  94. } // Set lineStyle
  95. /** 线条宽度 */
  96. _lineWidth: number = 1;
  97. get lineWidth(): number {
  98. return this._lineWidth;
  99. } // Get lineWidth
  100. set lineWidth(v: number) {
  101. this._lineWidth = v;
  102. this.update();
  103. } // Set lineWidth
  104. /** undo/redo 堆栈 */
  105. private undoStack: SUndoStack = new SUndoStack();
  106. /**
  107. * 构造函数
  108. *
  109. * @param parent 指向父对象
  110. * @param data 数据
  111. */
  112. constructor(parent: SGraphItem | null, data: Marker) {
  113. super(parent);
  114. this.data = data;
  115. if (data.style && data.style.default) {
  116. // 关于顶点
  117. if (data.style.default.Line) {
  118. let setPointList: SPoint[];
  119. setPointList = data.style.default.line.map(i => {
  120. return new SPoint(i.x, i.y)
  121. });
  122. this.line = setPointList;
  123. }
  124. // 颜色
  125. if (data.style.default.strokeColor) {
  126. this.strokeColor = new SColor(data.style.default.strokeColor)
  127. }
  128. // 线宽
  129. if (data.style.default.lineWidth) {
  130. this.lineWidth = data.style.default.lineWidth
  131. }
  132. // 线样式
  133. if (data.style.default.lineStyle) {
  134. this.lineStyle = data.style.default.lineStyle
  135. }
  136. }
  137. } // Constructor
  138. /**
  139. * 宽高发发生变化
  140. *
  141. * @param oldSize 改之前的大小
  142. * @param newSize 改之后大小
  143. */
  144. resize(oldSize: SRect, newSize: SRect): void {
  145. const xs = newSize.width / oldSize.width;
  146. const ys = newSize.height / oldSize.height;
  147. this.line = this.line.map(t => {
  148. t.x = t.x * xs;
  149. t.y = t.y * ys;
  150. return t;
  151. });
  152. this.calRect();
  153. this.update();
  154. } // Function resize()
  155. /**
  156. * 鼠标按下事件
  157. *
  158. * @param event 鼠标事件
  159. * @return 是否处理事件
  160. */
  161. onMouseDown(event: SMouseEvent): boolean {
  162. if (event.buttons == SMouseButton.LeftButton) {
  163. if (this.status == SItemStatus.Create) {
  164. this.addPoint(new SPoint(event.x, event.y));
  165. return true;
  166. } else {
  167. return super.onMouseDown(event);
  168. }
  169. }
  170. return true;
  171. } // Function onMouseDown()
  172. /**
  173. * 鼠标移动事件
  174. *
  175. * @param event 事件参数
  176. * @return 是否处理事件
  177. */
  178. onMouseMove(event: SMouseEvent): boolean {
  179. if (this.status == SItemStatus.Create) {
  180. if (this.line[0] instanceof SPoint) {
  181. this.line[1] = new SPoint(event.x, event.y);
  182. this.calRect()
  183. }
  184. } else {
  185. return super.onMouseMove(event);
  186. }
  187. this.update();
  188. return true;
  189. } // Function onMouseMove()
  190. /**
  191. * 鼠标抬起事件
  192. *
  193. * @param event 事件参数
  194. * @return 是否处理事件
  195. */
  196. onMouseUp(event: SMouseEvent): boolean {
  197. if (this.status != SItemStatus.Create) {
  198. super.onMouseUp(event);
  199. }
  200. return true;
  201. } // Function onMouseUp()
  202. /**
  203. * 计算矩形的左上角和右下角
  204. */
  205. private calRect(): void {
  206. if (this.line.length > 1) {
  207. const fi = this.line[0];
  208. const se = this.line[1];
  209. let minx, maxx, miny, maxy;
  210. if (fi.x < se.x) {
  211. minx = fi.x;
  212. maxx = se.x;
  213. } else {
  214. minx = se.x;
  215. maxx = fi.x;
  216. }
  217. if (fi.y < se.y) {
  218. miny = fi.y;
  219. maxy = se.y;
  220. } else {
  221. miny = se.y;
  222. maxy = fi.y;
  223. }
  224. this._leftTop = new SPoint(minx, miny);
  225. this._rightBottom = new SPoint(maxx, maxy);
  226. this.calTriangle()
  227. }
  228. } // Function calRect()
  229. /**
  230. * 计算绘制图形的 3 个点
  231. */
  232. private calTriangle(): void {
  233. this.pointList = [];
  234. this.pointList.push(new SPoint(this._leftTop.x, this._rightBottom.y));
  235. this.pointList.push(new SPoint((this._leftTop.x + this._rightBottom.x) / 2, this._leftTop.y));
  236. this.pointList.push(new SPoint(this._rightBottom.x, this._rightBottom.y));
  237. } // Function calTriangle()
  238. /**
  239. * 添加点至数组中
  240. *
  241. * @param p 添加的点
  242. */
  243. private addPoint(p: SPoint): void {
  244. if (this.line.length < 2) {
  245. this.line.push(p);
  246. this.recordAction(SGraphPointListInsert, [this.line, p]);
  247. } else {
  248. this.line[1] = p;
  249. this.recordAction(SGraphPointListInsert, [this.line, p, 1]);
  250. this.status = SItemStatus.Normal;
  251. this.releaseItem();
  252. this.$emit("finishCreated");
  253. }
  254. this.calRect();
  255. this.update();
  256. } // Function addPoint()
  257. /**
  258. * 记录相关动作并推入栈中
  259. *
  260. * @param SGraphCommand 相关命令类
  261. * @param any 对应传入参数
  262. */
  263. protected recordAction(SGraphCommand: any, any: any[]): void {
  264. // 记录相关命令并推入堆栈中
  265. const command = new SGraphCommand(this.scene, this, ...any);
  266. this.undoStack.push(command);
  267. } // Function recordAction()
  268. /**
  269. * Item对象边界区域
  270. *
  271. * @return 边界区域
  272. */
  273. boundingRect(): SRect {
  274. if (this.line.length > 1) {
  275. this.calRect();
  276. return new SRect(this._leftTop, this._rightBottom);
  277. }
  278. return new SRect()
  279. } // Function boundingRect()
  280. /**
  281. * 撤销操作
  282. */
  283. undo(): void {
  284. if (this._status != SItemStatus.Normal) {
  285. this.undoStack.undo();
  286. }
  287. } // Function undo()
  288. /**
  289. * 重做操作
  290. */
  291. redo(): void {
  292. if (this._status != SItemStatus.Normal) {
  293. this.undoStack.redo();
  294. }
  295. } // Function redo()
  296. /**
  297. * 取消操作执行
  298. */
  299. cancelOperate(): void {
  300. if (this.status == SItemStatus.Create) {
  301. this.parent = null;
  302. this.releaseItem();
  303. } else if (this.status == SItemStatus.Edit) {
  304. this.status = SItemStatus.Normal;
  305. this.releaseItem();
  306. }
  307. } // Function cancelOperate()
  308. /**
  309. * Item 绘制操作
  310. *
  311. * @param painter 绘制对象
  312. */
  313. onDraw(painter: SPainter): void {
  314. if (this.line.length == 2) {
  315. painter.pen.color = this.strokeColor;
  316. painter.brush.color = this.fillColor;
  317. painter.pen.lineWidth = this.lineWidth;
  318. if (this.lineStyle == SLineStyle.Dashed) {
  319. painter.pen.lineDash = [
  320. painter.toPx(this.lineWidth * 3),
  321. painter.toPx(this.lineWidth * 7)
  322. ];
  323. } else if (this.lineStyle == SLineStyle.Dotted) {
  324. painter.pen.lineDash = [
  325. painter.toPx(this.lineWidth * 2),
  326. painter.toPx(this.lineWidth * 2)
  327. ];
  328. }
  329. painter.drawPolygon(this.pointList);
  330. }
  331. } // Function onDraw()
  332. } // Class SBaseTriangleEdit