Undo1.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <div>
  3. <el-button @click="addCircle">Circle</el-button>
  4. <el-button @click="addRect">Rect</el-button>
  5. <el-button @click="deleteItem">Delete</el-button>
  6. <el-button @click="undo">Undo</el-button>
  7. <el-button @click="redo">Redo</el-button>
  8. <canvas id="undoFrame" width="800" height="400" />
  9. </div>
  10. </template>
  11. <script lang="ts">
  12. import { SMouseEvent, SUndoStack } from "@saga-web/base";
  13. import { SColor, SPainter, SRect } from "@saga-web/draw";
  14. import { SGraphItem, SGraphScene, SGraphView } from "@saga-web/graph";
  15. import {SGraphCommand} from "@saga-web/graph/lib";
  16. import {SUndoCommand} from "@saga-web/base/lib";
  17. import {SPoint} from "@saga-web/draw/lib";
  18. class RectItem extends SGraphItem {
  19. width = 100;
  20. height = 100;
  21. constructor(parent: SGraphItem | null) {
  22. super(parent);
  23. this.moveable = true;
  24. this.selectable = true;
  25. this.selected = true;
  26. this.isTransform = true;
  27. this.rolate = 60;
  28. }
  29. boundingRect(): SRect {
  30. return new SRect(0, 0, this.width, this.height);
  31. }
  32. onDraw(canvas: SPainter): void {
  33. canvas.pen.color = SColor.Blue;
  34. canvas.pen.lineWidth = 5;
  35. canvas.brush.color = this.selected ? SColor.Red : SColor.Green;
  36. canvas.drawRect(0, 0, this.width, this.height)
  37. }
  38. }
  39. class CircleItem extends SGraphItem {
  40. r = 50;
  41. constructor(parent: SGraphItem | null) {
  42. super(parent);
  43. this.moveable = true;
  44. this.selectable = true;
  45. this.isTransform = false;
  46. }
  47. boundingRect(): SRect {
  48. return new SRect(0, 0, this.r * 2, this.r * 2);
  49. }
  50. onDraw(canvas: SPainter): void {
  51. canvas.pen.color = SColor.Blue;
  52. canvas.pen.lineWidth = 5;
  53. canvas.brush.color = this.selected ? SColor.Red : SColor.Green;
  54. canvas.drawCircle(this.r, this.r, this.r);
  55. }
  56. }
  57. class SScene extends SGraphScene {
  58. undoStack = new SUndoStack();
  59. /** 定义命令 */
  60. cmd = 0;
  61. constructor() {
  62. super();
  63. }
  64. onMouseUp(event: SMouseEvent): boolean {
  65. switch(this.cmd) {
  66. case 1:
  67. this.addCircle(event.x, event.y);
  68. break;
  69. case 2:
  70. this.addRect(event.x, event.y);
  71. break;
  72. default:
  73. super.onMouseUp(event);
  74. }
  75. this.cmd = 0;
  76. return false
  77. }
  78. private addCircle(x: number, y: number): void {
  79. let item = new CircleItem(null);
  80. item.moveTo(x - 50, y - 50);
  81. this.addItem(item);
  82. this.undoStack.push(new SGraphAddCommand(this, item));
  83. item.connect("onMove", this, this.onItemMove.bind(this));
  84. }
  85. private addRect(x: number, y: number): void {
  86. let item = new RectItem(null);
  87. item.moveTo(x - 50, y - 50);
  88. this.addItem(item);
  89. this.undoStack.push(new SGraphAddCommand(this, item));
  90. item.connect("onMove", this, this.onItemMove.bind(this));
  91. }
  92. onItemMove(item: SGraphItem, ...arg: any): void {
  93. this.undoStack.push(new SGraphMoveCommand(this, item, arg[0][0] as SPoint, arg[0][1] as SPoint));
  94. }
  95. }
  96. class TestView extends SGraphView {
  97. constructor() {
  98. super("undoFrame");
  99. }
  100. }
  101. class SGraphAddCommand extends SGraphCommand {
  102. item: SGraphItem;
  103. parent: SGraphItem | null;
  104. constructor(scene: SGraphScene, item: SGraphItem) {
  105. super(scene);
  106. this.item = item;
  107. this.parent = item.parent;
  108. }
  109. mergeWith(command: SUndoCommand): boolean {
  110. return false;
  111. }
  112. redo(): void {
  113. this.item.parent = this.parent;
  114. this.parent.update();
  115. }
  116. undo(): void {
  117. this.item.parent = null;
  118. this.parent.update();
  119. }
  120. }
  121. class SGraphDeleteCommand extends SGraphCommand {
  122. mergeWith(command: SUndoCommand): boolean {
  123. return false;
  124. }
  125. redo(): void {
  126. }
  127. undo(): void {
  128. }
  129. }
  130. class SGraphMoveCommand extends SGraphCommand {
  131. item: SGraphItem;
  132. old: SPoint;
  133. pos: SPoint;
  134. constructor(scene: SGraphScene, item: SGraphItem, old: SPoint, pos: SPoint) {
  135. super(scene);
  136. this.item = item;
  137. this.old = old;
  138. this.pos = pos;
  139. }
  140. mergeWith(command: SUndoCommand): boolean {
  141. if (command instanceof SGraphMoveCommand && command.item == this.item) {
  142. command.pos = this.pos;
  143. return true;
  144. }
  145. return false;
  146. }
  147. redo(): void {
  148. this.item.pos = new SPoint(this.pos.x, this.pos.y);
  149. this.item.update();
  150. }
  151. undo(): void {
  152. this.item.pos = new SPoint(this.old.x, this.old.y);
  153. this.item.update();
  154. }
  155. }
  156. export default {
  157. data() {
  158. return {
  159. scene: new SScene(),
  160. }
  161. },
  162. mounted(): void {
  163. let view = new TestView();
  164. view.scene = this.scene;//new SScene(); //this.data.scene;
  165. },
  166. methods: {
  167. addCircle() {
  168. this.scene.cmd = 1;
  169. },
  170. addRect() {
  171. this.scene.cmd = 2;
  172. },
  173. deleteItem() {
  174. },
  175. undo() {
  176. console.log("undo");
  177. this.scene.undoStack.undo();
  178. },
  179. redo() {
  180. this.scene.undoStack.redo();
  181. }
  182. }
  183. }
  184. </script>
  185. <style scoped>
  186. </style>