SGraphPointListUpdate.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 { SPoint } from "@persagy-web/draw";
  27. import { SGraphCommand, SGraphItem, SGraphScene } from "@persagy-web/graph/";
  28. /**
  29. * 多边形、折线等相关顶点的位置更新命令
  30. *
  31. * @author 韩耀龙 <han_yao_long@163.com>
  32. */
  33. export class SGraphPointListUpdate extends SGraphCommand {
  34. /** 命令名称 */
  35. readonly command: string;
  36. /** 指向 item 对象 */
  37. item: SGraphItem;
  38. /** 原位置 */
  39. old: SPoint;
  40. /** 当前位置 */
  41. pos: SPoint;
  42. /** 索引 */
  43. index: number;
  44. /** 顶点数组 */
  45. pointList: SPoint[];
  46. /**
  47. * 构造函数
  48. *
  49. * @param scene item 所在场景
  50. * @param item 指向 item 对象
  51. * @param pointList 顶点数组
  52. * @param old 原位置
  53. * @param pos 当前位置
  54. * @param index 索引
  55. */
  56. constructor(
  57. scene: SGraphScene,
  58. item: SGraphItem,
  59. pointList: SPoint[],
  60. old: SPoint,
  61. pos: SPoint,
  62. index: number
  63. ) {
  64. super(scene);
  65. this.item = item;
  66. this.old = old;
  67. this.pos = pos;
  68. this.index = index;
  69. this.pointList = pointList;
  70. this.command = "SGraphPointListUpdate";
  71. this.desc = `更新折点=${item.id}`;
  72. }
  73. /**
  74. * 执行重做操作执行
  75. */
  76. redo(): void {
  77. this.pointList[this.index].x = this.pos.x;
  78. this.pointList[this.index].y = this.pos.y;
  79. this.item.update();
  80. }
  81. /**
  82. * 执行取消操作执行
  83. */
  84. undo(): void {
  85. this.pointList[this.index].x = this.old.x;
  86. this.pointList[this.index].y = this.old.y;
  87. this.item.update();
  88. }
  89. /**
  90. * 命令细节描述
  91. *
  92. * @return 字符串型数据
  93. */
  94. toString(): string {
  95. const pointList = `pointList=${JSON.stringify(this.pointList)}`;
  96. const old = `old=${JSON.stringify(this.old)}`;
  97. const pos = `pos=${JSON.stringify(this.pos)}`;
  98. const index = `index=${this.index}`;
  99. return `${index};\n${old};\n${pos};\n${pointList}`;
  100. }
  101. }