SBaseCircleEdit.ts 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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 SBaseCircleEdit extends SGraphEdit {
  41. /** 是否绘制完成 */
  42. /**编辑相关操作的数据 */
  43. data: Marker
  44. _status: SItemStatus = SItemStatus.Normal;
  45. get status(): SItemStatus {
  46. return this._status;
  47. }
  48. set status(v: SItemStatus) {
  49. this._status = v;
  50. this.undoStack.clear();
  51. this.update();
  52. }
  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 _radius: number = 0;
  68. get radius(): number {
  69. return this._radius;
  70. } // Get radius
  71. set radius(v: number) {
  72. if (v == this._radius) {
  73. return;
  74. }
  75. this._radius = v;
  76. this.update();
  77. } // Set radius
  78. /** 线条颜色 */
  79. _strokeColor: SColor = SColor.Black;
  80. get strokeColor(): SColor {
  81. return this._strokeColor;
  82. }
  83. set strokeColor(v: SColor) {
  84. this._strokeColor = v;
  85. this.update();
  86. }
  87. /** 填充色 */
  88. _fillColor: SColor = new SColor("#2196f3");
  89. get fillColor(): SColor {
  90. return this._fillColor;
  91. }
  92. set fillColor(v: SColor) {
  93. this._fillColor = v;
  94. this.update();
  95. }
  96. /** 边框样式 */
  97. _lineStyle: SLineStyle = SLineStyle.Solid;
  98. get lineStyle(): SLineStyle {
  99. return this._lineStyle;
  100. }
  101. set lineStyle(v: SLineStyle) {
  102. this._lineStyle = v;
  103. this.update();
  104. }
  105. /** 线条宽度 */
  106. _lineWidth: number = 1;
  107. get lineWidth(): number {
  108. return this._lineWidth;
  109. }
  110. set lineWidth(v: number) {
  111. this._lineWidth = v;
  112. this.update();
  113. }
  114. /** undo/redo堆栈 */
  115. private undoStack: SUndoStack = new SUndoStack();
  116. /**
  117. * 构造函数
  118. *
  119. * @param parent 指向父对象
  120. * @param data 矩形数据
  121. */
  122. constructor(parent: SGraphItem | null, data: Marker) {
  123. super(parent);
  124. this.data = data;
  125. if (data.style && data.style.default) {
  126. // 关于顶点
  127. if (data.style.default.line) {
  128. let setPointList: SPoint[];
  129. setPointList = data.style.default.line.map(i => {
  130. return new SPoint(i.X, i.Y)
  131. });
  132. this.line = setPointList;
  133. }
  134. // 颜色
  135. if (data.style.default.strokeColor) {
  136. this.strokeColor = new SColor(data.style.default.strokeColor)
  137. }
  138. // 线宽
  139. if (data.style.default.lineWidth) {
  140. this.lineWidth = data.style.default.lineWidth
  141. }
  142. // 线样式
  143. if (data.style.default.lineStyle) {
  144. this.lineStyle = data.style.default.lineStyle
  145. }
  146. }
  147. } // Constructor
  148. /**
  149. * 大小改变
  150. */
  151. resize(oldSize: SRect, newSize: SRect): void {
  152. const xs = newSize.width / oldSize.width;
  153. const ys = newSize.height / oldSize.height;
  154. this.line = this.line.map(t => {
  155. t.x = t.x * xs;
  156. t.y = t.y * ys;
  157. return t
  158. })
  159. this.calRect()
  160. this.update()
  161. }
  162. /**
  163. * 鼠标按下事件
  164. *
  165. * @param event 鼠标事件
  166. * @return 是否处理事件
  167. * */
  168. onMouseDown(event: SMouseEvent): boolean {
  169. if (event.buttons == SMouseButton.LeftButton) {
  170. if (this.status == SItemStatus.Create) {
  171. this.addPoint(new SPoint(event.x, event.y));
  172. return true;
  173. } else {
  174. return super.onMouseDown(event);
  175. }
  176. }
  177. return true;
  178. } // Function onMouseDown()
  179. /**
  180. * 鼠标移动事件
  181. *
  182. * @param event 鼠标事件
  183. * @return 是否处理事件
  184. * */
  185. onMouseMove(event: SMouseEvent): boolean {
  186. if (this.status == SItemStatus.Create) {
  187. if (this.line[0] instanceof SPoint) {
  188. this.line[1] = new SPoint(event.x, event.y);
  189. this.calRect()
  190. }
  191. } else {
  192. return super.onMouseMove(event);
  193. }
  194. this.update();
  195. return true;
  196. } // Function onMouseMove()
  197. /**
  198. * 鼠标抬起事件
  199. *
  200. * @param event 事件参数
  201. * @return boolean
  202. */
  203. onMouseUp(event: SMouseEvent): boolean {
  204. if (this.status != SItemStatus.Create) {
  205. super.onMouseUp(event);
  206. }
  207. return true;
  208. } // Function onMouseUp()
  209. /**
  210. * 计算矩形的左上角和右下角
  211. */
  212. private calRect(): void {
  213. if (this.line.length > 1) {
  214. const fi = this.line[0];
  215. const se = this.line[1];
  216. let minx, maxx, miny, maxy;
  217. if (fi.x < se.x) {
  218. minx = fi.x;
  219. maxx = se.x;
  220. } else {
  221. minx = se.x;
  222. maxx = fi.x;
  223. }
  224. if (fi.y < se.y) {
  225. miny = fi.y;
  226. maxy = se.y;
  227. } else {
  228. miny = se.y;
  229. maxy = fi.y;
  230. }
  231. this._leftTop = new SPoint(minx, miny)
  232. this._rightBottom = new SPoint(maxx, maxy)
  233. }
  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. * 返回对象储存的相关数据
  310. *
  311. * @return formData
  312. */
  313. toData(): any {
  314. const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
  315. this.data.style.default.line = Line;
  316. this.data.style.default.lineWidth = this.lineWidth;
  317. this.data.style.default.lineStyle = this.lineStyle;
  318. this.data.style.default.strokeColor = this.strokeColor;
  319. return this.data
  320. }
  321. /**
  322. * Item绘制操作
  323. *
  324. * @param painter painter对象
  325. */
  326. onDraw(painter: SPainter): void {
  327. if (this.line.length == 2) {
  328. painter.pen.color = this.strokeColor;
  329. painter.brush.color = this.fillColor;
  330. painter.pen.lineWidth = this.lineWidth;
  331. if (this.lineStyle == SLineStyle.Dashed) {
  332. painter.pen.lineDash = [
  333. painter.toPx(this.lineWidth * 3),
  334. painter.toPx(this.lineWidth * 7)
  335. ];
  336. } else if (this.lineStyle == SLineStyle.Dotted) {
  337. painter.pen.lineDash = [
  338. painter.toPx(this.lineWidth * 2),
  339. painter.toPx(this.lineWidth * 2)
  340. ];
  341. }
  342. painter.drawEllipse(
  343. (this._leftTop.x + this._rightBottom.x) / 2,
  344. (this._leftTop.y + this._rightBottom.y) / 2,
  345. (this._rightBottom.x - this._leftTop.x) / 2,
  346. (this._rightBottom.y - this._leftTop.y) / 2
  347. );
  348. }
  349. } // Function onDraw()
  350. } // Class SCircleEdit