SCircleEdit.ts 9.0 KB

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