EditScence.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. import { SMouseEvent, SUndoStack } from "@saga-web/base";
  2. import { SGraphScene, SGraphLayoutType } from '@saga-web/graph/lib';
  3. import { SFloorParser, SLineItem, SPolylineItem, SItemStatus, ItemOrder } from "@saga-web/big";
  4. import { SGraphItem, SImageItem, STextItem, SGraphPointListInsert, SGraphPointListDelete, SGraphPointListUpdate, SGraphAddCommand } from "@saga-web/graph/lib";
  5. import { SZoneLegendItem } from "@/lib/items/SZoneLegendItem";
  6. import { TipelineItem } from "@/lib/items/TipelineItem";
  7. import { SImgTextItem } from "@/lib/items/SImgTextItem"
  8. import { SPoint, SFont } from '@saga-web/draw/lib';
  9. /**
  10. * 在线绘图
  11. *
  12. * @author 韩耀龙
  13. */
  14. export class EditScence extends SGraphScene {
  15. undoStack = new SUndoStack();
  16. /** 命令 1 绘制直线 */
  17. private cmd = 'choice';
  18. /** 获取当前状态 */
  19. get getCmd(): string {
  20. return this.cmd;
  21. }
  22. /** 编辑当前状态 */
  23. set setCmd(cmd: string) {
  24. if (cmd == 'choice') {
  25. this.grabItem = null;
  26. }
  27. this.cmd = cmd;
  28. if (this.focusItem) {
  29. // 取消操作
  30. this.focusItem.cancelOperate();
  31. this.focusItem = null;
  32. // this.selectContainer.
  33. }
  34. if (this.view) {
  35. this.view.update();
  36. }
  37. };
  38. /** 当前选中焦点Item */
  39. focusItem: SGraphItem | null = null;
  40. /**图例节点 */
  41. Nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
  42. /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  43. Markers: any = [];
  44. /** 管线对象 */
  45. Relations: any = [];
  46. constructor() {
  47. super();
  48. // // 选择绑定选额item事件
  49. this.selectContainer.connect("listChange", this, this.listChange);
  50. }
  51. /**
  52. * 监听变化
  53. * @param obj 变化后的对象
  54. */
  55. listChange(obj: any) {
  56. let itemType: string = 'equipment'
  57. if (obj.itemList[0] instanceof STextItem) {
  58. itemType = 'text'
  59. } else if (obj.itemList[0] instanceof SImageItem) {
  60. itemType = 'images'
  61. } else if (obj.itemList[0] instanceof SLineItem) {
  62. itemType = 'line'
  63. } else if (obj.itemList[0] instanceof SPolylineItem) {
  64. itemType = 'pipeline'
  65. } else if (obj.itemList[0] instanceof SZoneLegendItem) {
  66. itemType = 'position'
  67. } else if (obj.itemList[0] instanceof SImgTextItem) {
  68. itemType = 'equipment'
  69. } else {
  70. itemType = ''
  71. };
  72. if (obj.itemList.length == 1) {
  73. // 获取聚焦item
  74. this.focusItem = obj.itemList[0]
  75. }
  76. let msg = {
  77. itemList: obj.itemList,
  78. itemType,
  79. }
  80. this.emitChange(msg)
  81. }
  82. emitChange(msg: any) {
  83. }
  84. /**
  85. * 增加线段item
  86. */
  87. addLine(event: SMouseEvent): boolean {
  88. const item = new SLineItem(null, new SPoint(event.x, event.y));
  89. item.status = SItemStatus.Create;
  90. item.zOrder = ItemOrder.lineOrder;
  91. item.selectable = true;
  92. this.addItem(item);
  93. item.connect("finishCreated", this, this.finishCreated);
  94. this.grabItem = item;
  95. this.undoStack.push(new SGraphAddCommand(this, item));
  96. // item.connect("onMove", this, this.onItemMove.bind(this));
  97. return true
  98. }
  99. /**
  100. * 增加折线item
  101. */
  102. addPolylineItem(event: SMouseEvent): boolean {
  103. const point = new SPoint(event.x, event.y)
  104. const item = new TipelineItem(null, [point]);
  105. //设置状态
  106. item.selectable = true;
  107. item.status = SItemStatus.Create;
  108. item.zOrder = ItemOrder.polylineOrder
  109. this.addItem(item);
  110. item.connect("finishCreated", this, this.finishCreated);
  111. // this.undoStack.push(new SGraphAddCommand(this, item));
  112. this.grabItem = item;
  113. this.focusItem = item;
  114. return true
  115. }
  116. /**
  117. * 增加多边形item
  118. */
  119. addPolygonItem(event: SMouseEvent): void {
  120. //创建item
  121. const Legend = {
  122. ID: 123,
  123. Name: "哈哈",
  124. GraphElementType: 'Zone',
  125. GraphElementId: '123',
  126. Pos: { x: 0, y: 0 },
  127. OutLine: [[new SPoint(event.x, event.y)]],
  128. Properties: {
  129. strokeColor: '#3d73c0',
  130. fillColor: '#eda986'
  131. },
  132. Num: 123
  133. }
  134. const Polylines = new SZoneLegendItem(null, Legend);
  135. Polylines.selectable = true;
  136. //设置状态
  137. Polylines.setStatus = SItemStatus.Create;
  138. const point = new SPoint(event.x, event.y);
  139. Polylines.zOrder = ItemOrder.polygonOrder;
  140. Polylines.setPointList = [point];
  141. Polylines.moveable = true;
  142. this.addItem(Polylines);
  143. Polylines.connect("finishCreated", this, this.finishCreated);
  144. this.grabItem = Polylines;
  145. this.focusItem = Polylines;
  146. this.Nodes.push(Polylines)
  147. }
  148. /**
  149. * 增加图片Item
  150. */
  151. addImgItem(event: SMouseEvent) {
  152. const url = require('./../../assets/logo.png')
  153. const item = new SImageItem(null);
  154. item.url = url;
  155. item.zOrder = ItemOrder.imageOrder;
  156. item.selectable = true;
  157. item.moveable = true;
  158. item.moveTo(event.x, event.y);
  159. this.addItem(item);
  160. this.grabItem == null;
  161. this.focusItem = item;
  162. this.cmd = 'choice';
  163. }
  164. /**
  165. * 增加文字item
  166. */
  167. addTextItem(event: SMouseEvent): void {
  168. const item = new STextItem(null, '请在右侧属性栏输入文字!');
  169. item.moveTo(event.x, event.y);
  170. item.selectable = true;
  171. item.moveable = true;
  172. item.zOrder = ItemOrder.textOrder;
  173. this.addItem(item);
  174. this.grabItem == null
  175. this.cmd = 'choice';
  176. }
  177. /**
  178. * 增加图标
  179. */
  180. addIconItem(): void {
  181. }
  182. /**
  183. * 更改item对应属性
  184. */
  185. editItemStatus(): void {
  186. }
  187. /**
  188. * 更改文本对应属性
  189. * @param str string 文字内容
  190. */
  191. updatedText(str: string): void {
  192. if (this.focusItem) {
  193. const old = this.focusItem.text;
  194. this.focusItem.text = str;
  195. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", old, str));
  196. }
  197. }
  198. /**
  199. * 更改文本fontSize属性
  200. * @param size number 文字大小
  201. */
  202. updatedFontSize(size: number): void {
  203. if (this.focusItem) {
  204. let old = new SFont(this.focusItem.font);
  205. let font = new SFont(this.focusItem.font);
  206. font.size = size;
  207. this.focusItem.font = font;
  208. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
  209. }
  210. }
  211. /**
  212. * 更改线宽属性
  213. * @param lineWidth number 线宽大小
  214. */
  215. updatedLineWidth(lineWidth: number): void {
  216. if (this.focusItem) {
  217. // let old = new SFont(this.focusItem.font);
  218. // let font = new SFont(this.focusItem.font);
  219. // font.size = size;
  220. this.focusItem.lineWidth = lineWidth;
  221. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
  222. }
  223. }
  224. /**
  225. * 更改文本颜色属性
  226. * @param str string 颜色
  227. */
  228. updatedFontColor(color: string): void {
  229. if (this.focusItem) {
  230. let old = this.focusItem.color;
  231. this.focusItem.color = color;
  232. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  233. }
  234. }
  235. /**
  236. * 更改border颜色
  237. * @param color string 颜色
  238. */
  239. updatedBorderColor(color: string): void {
  240. if (this.focusItem) {
  241. let old = this.focusItem.strokeColor;
  242. this.focusItem.strokeColor = color;
  243. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  244. }
  245. }
  246. /**
  247. * 更改item宽
  248. * @param width number 颜色
  249. */
  250. updatedWidth(width: number): void {
  251. if (this.focusItem) {
  252. // let old = this.focusItem.width;
  253. this.focusItem.width = width;
  254. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  255. }
  256. }
  257. /**
  258. * 更改item高
  259. * @param height number 颜色
  260. */
  261. updatedHeight(height: number): void {
  262. if (this.focusItem) {
  263. // let old = this.focusItem.width;
  264. this.focusItem.height = height;
  265. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  266. }
  267. }
  268. /**
  269. * 更改item坐标
  270. * @param x number x x坐标
  271. * @param y number y y坐标
  272. */
  273. updatedPosition(x: number, y: number): void {
  274. if (this.focusItem) {
  275. let p = this.focusItem.mapFromScene(x, y)
  276. // newx - oldx = newleft - oldleft
  277. // 要求的值(新的x坐标) - 旧的x坐标 = 新的左边界(用户输入的值) - 旧的左边界
  278. this.focusItem.x = p.x - this.focusItem.boundingRect().left + this.focusItem.x;
  279. this.focusItem.y = p.y - this.focusItem.boundingRect().top + this.focusItem.y;
  280. }
  281. }
  282. /**
  283. * 更改item 背景色坐标
  284. * @param color string 颜色color
  285. */
  286. updatedbackColor(color: string): void {
  287. if (this.focusItem) {
  288. this.focusItem.backgroundColor = color;
  289. }
  290. }
  291. /**
  292. * 删除指定item
  293. */
  294. deleiteItem(): void {
  295. if (this.focusItem) {
  296. this.removeItem(this.focusItem);
  297. this.focusItem = null;
  298. }
  299. if (this.view) {
  300. this.view.update();
  301. }
  302. }
  303. /**
  304. * 对齐指定item
  305. * @param v
  306. */
  307. changeAlignItem(v: any): void {
  308. console.log(v);
  309. this.selectContainer.layout(v);
  310. }
  311. /**
  312. * 提取item
  313. */
  314. extractItem(): void {
  315. console.log(this)
  316. }
  317. /**
  318. * 保存数据
  319. */
  320. saveMsgItem(): any {
  321. const Nodes: any = []
  322. this.Nodes.forEach(e => {
  323. Nodes.push(e.toData())
  324. });
  325. let element = {
  326. Nodes
  327. }
  328. return element
  329. }
  330. /**
  331. * 锁住item
  332. */
  333. lockItem(): void {
  334. }
  335. /**
  336. * 执行取消操作
  337. */
  338. redo(): void {
  339. this.undoStack.undo();
  340. }
  341. /**
  342. * 执行重做操作执行
  343. */
  344. undo(): void {
  345. this.undoStack.redo();
  346. }
  347. /**
  348. * 完成事件创建的回调函数
  349. */
  350. finishCreated(item: any) {
  351. this.setCmd = 'choice';
  352. this.focusItem = item;
  353. this.selectContainer.toggleItem(item)
  354. }
  355. ////////////////////////
  356. // 以下为鼠标键盘操作事件
  357. onMouseDown(event: SMouseEvent): any {
  358. if (this.grabItem) {
  359. return this.grabItem.onMouseDown(event);
  360. }
  361. switch (this.cmd) {
  362. case 'baseLine':
  363. this.addLine(event);
  364. break;
  365. case 'baseText':
  366. this.addTextItem(event);
  367. break;
  368. case 'baseImage':
  369. this.addImgItem(event)
  370. break;
  371. case 'Zone':
  372. this.addPolygonItem(event);
  373. break;
  374. // case 'Image':
  375. // this.addPolylineItem(event);
  376. // break;
  377. case 'Line':
  378. this.addPolylineItem(event);
  379. break;
  380. default:
  381. return super.onMouseDown(event);
  382. }
  383. }
  384. /**
  385. * 键盘事件
  386. *
  387. * @param event 事件参数
  388. * @return boolean
  389. */
  390. onKeyDown(event: KeyboardEvent): any {
  391. if (this.grabItem) {
  392. this.grabItem.onKeyDown(event);
  393. }
  394. // if (event.key == "Enter") {
  395. // this.cmd = 0
  396. // }
  397. return false
  398. }
  399. }