PTopoScene.ts 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment, SBasePipeUninTool, SBasePipe, SBaseArrow } from "./../big-edit";
  2. import { SBaseRectEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit, SBasePolygonEdit } from "./../edit";
  3. import { SPersagyImageEdit } from "./"
  4. import { SMouseEvent } from "@persagy-web/base/lib";
  5. import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
  6. import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
  7. import { rgbaNum } from "./../big-edit/until";
  8. // 引入命令
  9. import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
  10. import { SColor, SFont } from '@persagy-web/draw/lib';
  11. export class PTopoScene extends SBaseEditScene {
  12. /** 图例数据 */
  13. legendObj: any = null;
  14. constructor() {
  15. super()
  16. // // 选择绑定选额item事件
  17. this.selectContainer.connect("listChange", this, this.listChange);
  18. }
  19. /**
  20. * 选中返回的选中item回调方法
  21. *
  22. * @param event 鼠标事件参数
  23. */
  24. listChange(list: any): void {
  25. const itemList: any = []
  26. console.log('list', list)
  27. list.itemList.forEach((item: any) => {
  28. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  29. itemList.push(item)
  30. }
  31. })
  32. this.emitChoice(itemList);
  33. } // Function listChange()
  34. /**
  35. * 选中返回的选中item回调方法(用于场景的外部调用)
  36. *
  37. * @param list 选中的item数组
  38. */
  39. emitChoice(list: any) {
  40. } // Function emitChoice()
  41. /**
  42. * 鼠标左键按下
  43. *
  44. * @param event 鼠标事件参数
  45. */
  46. onMouseDown(event: SMouseEvent): any {
  47. this.vueOnMouseDown(event) //外部调用
  48. if (this.editCmd == "EditBaseLine") {
  49. this.addPolyLineArrow(event);
  50. this.clearCmdStatus();
  51. } else if (this.editCmd == "EditBasePolyLine") {
  52. this.addPolyLine(event);
  53. this.clearCmdStatus();
  54. } else if (this.editCmd == "EditBasetext") {
  55. this.addTextItem(event);
  56. this.clearCmdStatus();
  57. }
  58. else if (this.editCmd == "BaseExplain") {
  59. this.addExplainItem(event);
  60. this.clearCmdStatus();
  61. } else if (this.editCmd == "EditBaseImage") {
  62. this.addImageItem(event)
  63. this.clearCmdStatus();
  64. }
  65. else if (this.editCmd == "EditBasePolygon") {
  66. this.addPolygonItem(event);
  67. this.clearCmdStatus();
  68. } else if (this.editCmd == "EditBaseRect") {
  69. this.addRectItem(event)
  70. this.clearCmdStatus();
  71. } else if (this.editCmd == "EditBaseTriangle") {
  72. this.addTriangleItem(event)
  73. this.clearCmdStatus();
  74. } else if (this.editCmd == "EditBaseCircle") {
  75. this.addCircleItem(event)
  76. this.clearCmdStatus();
  77. }
  78. else if (this.editCmd == "EditBaseArrows") {
  79. // this.addArrowsItem(event)
  80. this.clearCmdStatus();
  81. }
  82. else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
  83. this.addPipeUninTool(event, this.editCmd)
  84. this.clearCmdStatus();
  85. }
  86. else if (this.editCmd == "EditBasePipe") {
  87. this.addBasePipe(event);
  88. this.clearCmdStatus();
  89. } else if (this.editCmd == "EditEuqipment" || this.legendObj) {
  90. this.addEuqipment(event, this.legendObj)
  91. this.clearCmdStatus();
  92. }
  93. else if (this.editCmd == "") {
  94. super.onMouseDown(event);
  95. }
  96. } // Function onMouseDown()
  97. /**
  98. * 鼠标右键事件
  99. *
  100. * @param event 鼠标事件参数
  101. */
  102. onContextMenu(event: SMouseEvent): boolean {
  103. if (!super.onContextMenu(event)) {
  104. this.getItem(null, [event])
  105. }
  106. return true
  107. } // Function onContextMenu()
  108. /**
  109. * 修改 item 样式,数据等方法
  110. * @param styletype string 修改样式类型
  111. * @param changeStyle 更改样式数据
  112. * @param itemList? SGraphEdit[] 如果不传入默认使用选择器中选中得item
  113. */
  114. updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
  115. // 如果未传入需要修改样式的item,默认取选择器中的item
  116. let List = null;
  117. if (itemList && itemList.length) {
  118. List = itemList;
  119. } else {
  120. List = this.selectContainer.itemList;
  121. };
  122. let styleValue: any
  123. if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
  124. const colorlist = rgbaNum(changestyle)
  125. styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
  126. } else if (styletype == "lineStyle") {
  127. styleValue = SLineStyle[changestyle]
  128. } else if (styletype == "font") {
  129. styleValue = new SFont("sans-serif", changestyle)
  130. } else {
  131. styleValue = changestyle
  132. }
  133. List.forEach((item: SGraphEdit, index: number) => {
  134. if (item instanceof SGraphSelectContainer) {
  135. return
  136. }
  137. item[styletype] = styleValue;
  138. })
  139. } // Function updateStyle()
  140. /**
  141. * item 创建完成后回调
  142. *
  143. * @param event 鼠标事件参数
  144. */
  145. finishCreated(item: SGraphEdit): void {
  146. this.grabItem = null;
  147. item.status = SItemStatus.Normal;
  148. this.undoStack.push(new SGraphAddCommand(this, item));
  149. this.selectContainer.clear();
  150. this.selectContainer.toggleItem(item);
  151. } // Function finishCreated()
  152. /**
  153. * 修改 cmdstatus 函数;常在在业务中调用
  154. *
  155. */
  156. clearCmdStatus() {
  157. } // Function clearCmdStatus()
  158. /**
  159. * 获取item (常用与场景外的调用F)
  160. * @param event SMouseEvent 鼠标事件
  161. * @param item SGraphEdit|null 返回item
  162. *
  163. */
  164. getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
  165. } // Function getItem()
  166. /**
  167. * 获取item (常用与场景外的调用F)
  168. * @param event SMouseEvent 鼠标事件
  169. * @param item SGraphEdit|null 返回item
  170. *
  171. */
  172. vueOnMouseDown(event: SMouseEvent) {
  173. } // Function vueOnMouseDown()
  174. /**
  175. * 获取item (常用与场景外的调用F)
  176. *
  177. * @params isAll 是否为全部item数据
  178. * @return obj 返回保存的数据接口
  179. */
  180. save(isAll: boolean = true) {
  181. if (!this.view) return;
  182. const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect'];
  183. const NodeType: string[] = [];
  184. const RelationType: string[] = [];
  185. const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  186. const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  187. const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  188. let nodeList;
  189. if (isAll) {
  190. nodeList = this.root.children;
  191. } else {
  192. nodeList = this.selectContainer.itemList;
  193. };
  194. nodeList.forEach(item => {
  195. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  196. // 添加节点数据
  197. if (Marktype.includes(item.data.properties.type)) {
  198. markers.push(item.toData())
  199. }
  200. if (NodeType.includes(item.data.properties.type)) {
  201. nodes.push(item.toData())
  202. }
  203. if (RelationType.includes(item.data.properties.type)) {
  204. relations.push(item.toData())
  205. }
  206. }
  207. });
  208. return {
  209. markers,
  210. nodes,
  211. relations
  212. }
  213. } // Function save()
  214. }