PTopoScene.ts 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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.grabItem) {
  49. if (this.grabItem instanceof SBasePipe) {
  50. this.setTipeEndanchor(event)
  51. return true;
  52. }
  53. return this.grabItem.onMouseDown(event);
  54. }
  55. if (this.editCmd == "EditBaseLine") {
  56. this.addPolyLineArrow(event);
  57. this.clearCmdStatus();
  58. } else if (this.editCmd == "EditBasePolyLine") {
  59. this.addPolyLine(event);
  60. this.clearCmdStatus();
  61. } else if (this.editCmd == "EditBasetext") {
  62. this.addTextItem(event);
  63. this.clearCmdStatus();
  64. }
  65. else if (this.editCmd == "BaseExplain") {
  66. this.addExplainItem(event);
  67. this.clearCmdStatus();
  68. } else if (this.editCmd == "EditBaseImage") {
  69. this.addImageItem(event)
  70. this.clearCmdStatus();
  71. }
  72. else if (this.editCmd == "EditBasePolygon") {
  73. this.addPolygonItem(event);
  74. this.clearCmdStatus();
  75. } else if (this.editCmd == "EditBaseRect") {
  76. this.addRectItem(event)
  77. this.clearCmdStatus();
  78. } else if (this.editCmd == "EditBaseTriangle") {
  79. this.addTriangleItem(event)
  80. this.clearCmdStatus();
  81. } else if (this.editCmd == "EditBaseCircle") {
  82. this.addCircleItem(event)
  83. this.clearCmdStatus();
  84. }
  85. else if (this.editCmd == "EditBaseArrows") {
  86. // this.addArrowsItem(event)
  87. this.clearCmdStatus();
  88. }
  89. else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
  90. this.addPipeUninTool(event, this.editCmd)
  91. this.clearCmdStatus();
  92. }
  93. else if (this.editCmd == "EditBasePipe") {
  94. this.addBasePipe(event);
  95. // this.addBaseIconTextItem(event)
  96. this.clearCmdStatus();
  97. } else if (this.editCmd == "EditEuqipment" || this.legendObj) {
  98. this.addEuqipment(event, this.legendObj)
  99. this.clearCmdStatus();
  100. }
  101. else if (this.editCmd == "") {
  102. super.onMouseDown(event);
  103. }
  104. } // Function onMouseDown()
  105. /**
  106. * 鼠标右键事件
  107. *
  108. * @param event 鼠标事件参数
  109. */
  110. onContextMenu(event: SMouseEvent): boolean {
  111. if (!super.onContextMenu(event)) {
  112. this.getItem(null, [event])
  113. }
  114. return true
  115. } // Function onContextMenu()
  116. /**
  117. * 修改 item 样式,数据等方法
  118. * @param styletype string 修改样式类型
  119. * @param changeStyle 更改样式数据
  120. * @param itemList? SGraphEdit[] 如果不传入默认使用选择器中选中得item
  121. */
  122. updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
  123. // 如果未传入需要修改样式的item,默认取选择器中的item
  124. let List = null;
  125. if (itemList && itemList.length) {
  126. List = itemList;
  127. } else {
  128. List = this.selectContainer.itemList;
  129. };
  130. let styleValue: any
  131. if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
  132. const colorlist = rgbaNum(changestyle)
  133. styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
  134. } else if (styletype == "lineStyle") {
  135. styleValue = SLineStyle[changestyle]
  136. } else if (styletype == "font") {
  137. styleValue = new SFont("sans-serif", changestyle)
  138. } else {
  139. styleValue = changestyle
  140. }
  141. List.forEach((item: SGraphEdit, index: number) => {
  142. if (item instanceof SGraphSelectContainer) {
  143. return
  144. }
  145. item[styletype] = styleValue;
  146. })
  147. } // Function updateStyle()
  148. /**
  149. * item 创建完成后回调
  150. *
  151. * @param event 鼠标事件参数
  152. */
  153. finishCreated(item: SGraphEdit): void {
  154. this.grabItem = null;
  155. item.status = SItemStatus.Normal;
  156. this.undoStack.push(new SGraphAddCommand(this, item));
  157. this.selectContainer.clear();
  158. this.selectContainer.toggleItem(item);
  159. } // Function finishCreated()
  160. /**
  161. * 修改 cmdstatus 函数;常在在业务中调用
  162. *
  163. */
  164. clearCmdStatus() {
  165. } // Function clearCmdStatus()
  166. /**
  167. * 获取item (常用与场景外的调用F)
  168. * @param event SMouseEvent 鼠标事件
  169. * @param item SGraphEdit|null 返回item
  170. *
  171. */
  172. getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
  173. } // Function getItem()
  174. /**
  175. * 获取item (常用与场景外的调用F)
  176. * @param event SMouseEvent 鼠标事件
  177. * @param item SGraphEdit|null 返回item
  178. *
  179. */
  180. vueOnMouseDown(event: SMouseEvent) {
  181. } // Function vueOnMouseDown()
  182. /**
  183. * 获取item (常用与场景外的调用F)
  184. *
  185. * @params isAll 是否为全部item数据
  186. * @return obj 返回保存的数据接口
  187. */
  188. save(isAll: boolean = true) {
  189. if (!this.view) return;
  190. const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect'];
  191. const NodeType: string[] = [];
  192. const RelationType: string[] = [];
  193. const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  194. const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  195. const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  196. let nodeList;
  197. if (isAll) {
  198. nodeList = this.root.children;
  199. } else {
  200. nodeList = this.selectContainer.itemList;
  201. };
  202. nodeList.forEach(item => {
  203. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  204. // 添加节点数据
  205. if (Marktype.includes(item.data.properties.type)) {
  206. markers.push(item.toData())
  207. }
  208. if (NodeType.includes(item.data.properties.type)) {
  209. nodes.push(item.toData())
  210. }
  211. if (RelationType.includes(item.data.properties.type)) {
  212. relations.push(item.toData())
  213. }
  214. }
  215. });
  216. return {
  217. markers,
  218. nodes,
  219. relations
  220. }
  221. } // Function save()
  222. }