SBaseTriangleEdit.ts 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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 haojianlong
  39. */
  40. export class SBaseTriangleEdit extends SGraphEdit {
  41. /** 是否绘制完成 */
  42. _status: SItemStatus = SItemStatus.Normal;
  43. get status(): SItemStatus {
  44. return this._status;
  45. }
  46. set status(v: SItemStatus) {
  47. this._status = v;
  48. this.undoStack.clear();
  49. this.update();
  50. }
  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. }
  73. set strokeColor(v: SColor) {
  74. this._strokeColor = v;
  75. this.update();
  76. }
  77. /** 填充色 */
  78. _fillColor: SColor = new SColor("#2196f3");
  79. get fillColor(): SColor {
  80. return this._fillColor;
  81. }
  82. set fillColor(v: SColor) {
  83. this._fillColor = v;
  84. this.update();
  85. }
  86. /** 边框样式 */
  87. _lineStyle: SLineStyle = SLineStyle.Solid;
  88. get lineStyle(): SLineStyle {
  89. return this._lineStyle;
  90. }
  91. set lineStyle(v: SLineStyle) {
  92. this._lineStyle = v;
  93. this.update();
  94. }
  95. /** 线条宽度 */
  96. _lineWidth: number = 1;
  97. get lineWidth(): number {
  98. return this._lineWidth;
  99. }
  100. set lineWidth(v: number) {
  101. this._lineWidth = v;
  102. this.update();
  103. }
  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. resize(oldSize: SRect, newSize: SRect): void {
  142. const xs = newSize.width / oldSize.width;
  143. const ys = newSize.height / oldSize.height;
  144. this.line = this.line.map(t => {
  145. t.x = t.x * xs;
  146. t.y = t.y * ys;
  147. return t
  148. })
  149. this.calRect()
  150. this.update()
  151. }
  152. /**
  153. * 鼠标按下事件
  154. *
  155. * @param event 鼠标事件
  156. * @return 是否处理事件
  157. * */
  158. onMouseDown(event: SMouseEvent): boolean {
  159. if (event.buttons == SMouseButton.LeftButton) {
  160. if (this.status == SItemStatus.Create) {
  161. this.addPoint(new SPoint(event.x, event.y));
  162. return true;
  163. } else {
  164. return super.onMouseDown(event);
  165. }
  166. }
  167. return true;
  168. } // Function onMouseDown()
  169. /**
  170. * 鼠标移动事件
  171. *
  172. * @param event 鼠标事件
  173. * @return 是否处理事件
  174. * */
  175. onMouseMove(event: SMouseEvent): boolean {
  176. if (this.status == SItemStatus.Create) {
  177. if (this.line[0] instanceof SPoint) {
  178. this.line[1] = new SPoint(event.x, event.y);
  179. this.calRect()
  180. }
  181. } else {
  182. return super.onMouseMove(event);
  183. }
  184. this.update();
  185. return true;
  186. } // Function onMouseMove()
  187. /**
  188. * 鼠标抬起事件
  189. *
  190. * @param event 事件参数
  191. * @return boolean
  192. */
  193. onMouseUp(event: SMouseEvent): boolean {
  194. if (this.status != SItemStatus.Create) {
  195. super.onMouseUp(event);
  196. }
  197. return true;
  198. } // Function onMouseUp()
  199. /**
  200. * 计算矩形的左上角和右下角
  201. */
  202. private calRect(): void {
  203. if (this.line.length > 1) {
  204. const fi = this.line[0];
  205. const se = this.line[1];
  206. let minx, maxx, miny, maxy;
  207. if (fi.x < se.x) {
  208. minx = fi.x;
  209. maxx = se.x;
  210. } else {
  211. minx = se.x;
  212. maxx = fi.x;
  213. }
  214. if (fi.y < se.y) {
  215. miny = fi.y;
  216. maxy = se.y;
  217. } else {
  218. miny = se.y;
  219. maxy = fi.y;
  220. }
  221. this._leftTop = new SPoint(minx, miny)
  222. this._rightBottom = new SPoint(maxx, maxy)
  223. this.calTriangel()
  224. }
  225. } // Function calRect
  226. /**
  227. * 计算绘制图形的3个点
  228. */
  229. private calTriangel(): void {
  230. this.pointList = [];
  231. this.pointList.push(new SPoint(this._leftTop.x, this._rightBottom.y))
  232. this.pointList.push(new SPoint((this._leftTop.x + this._rightBottom.x) / 2, this._leftTop.y))
  233. this.pointList.push(new SPoint(this._rightBottom.x, this._rightBottom.y))
  234. } // Function calRect
  235. /**
  236. * 添加点至数组中
  237. *
  238. * @param p 添加的点
  239. * */
  240. private addPoint(p: SPoint): void {
  241. if (this.line.length < 2) {
  242. this.line.push(p);
  243. this.recordAction(SGraphPointListInsert, [this.line, p]);
  244. } else {
  245. this.line[1] = p;
  246. this.recordAction(SGraphPointListInsert, [this.line, p, 1]);
  247. this.status = SItemStatus.Normal;
  248. this.releaseItem();
  249. this.$emit("finishCreated");
  250. }
  251. this.calRect()
  252. this.update();
  253. } // Function addPoint()
  254. /**
  255. * 记录相关动作并推入栈中
  256. *
  257. * @param SGraphCommand 相关命令类
  258. * @param any 对应传入参数
  259. */
  260. protected recordAction(SGraphCommand: any, any: any[]): void {
  261. // 记录相关命令并推入堆栈中
  262. const command = new SGraphCommand(this.scene, this, ...any);
  263. this.undoStack.push(command);
  264. } // Function recordAction()
  265. /**
  266. * Item对象边界区域
  267. *
  268. * @return SRect 外接矩阵
  269. * */
  270. boundingRect(): SRect {
  271. if (this.line.length > 1) {
  272. this.calRect()
  273. return new SRect(this._leftTop, this._rightBottom);
  274. }
  275. return new SRect()
  276. } // Function boundingRect()
  277. /**
  278. * 撤销操作
  279. *
  280. */
  281. undo(): void {
  282. if (this._status != SItemStatus.Normal) {
  283. this.undoStack.undo();
  284. }
  285. } // Function undo()
  286. /**
  287. * 重做操作
  288. *
  289. */
  290. redo(): void {
  291. if (this._status != SItemStatus.Normal) {
  292. this.undoStack.redo();
  293. }
  294. } // Function redo()
  295. /**
  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 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 STriangleEdit