PTopoScene.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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) 2009-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * ****/
  25. import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
  26. import { SGraphEdit, SGraphPropertyCommand, } from "@persagy-web/edit";
  27. import { SMouseEvent } from "@persagy-web/base/lib";
  28. import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
  29. import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
  30. import { rgbaNum } from "@persagy-web/big-edit/lib/until";
  31. // 引入命令
  32. import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
  33. import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
  34. import { PTopoParser, SBasePipeUninTool } from "./"
  35. /**
  36. * 拓扑图场景类
  37. *
  38. * @author 韩耀龙 <han_yao_long@163.com>
  39. */
  40. export class PTopoScene extends SBaseEditScene {
  41. /** 图例数据 */
  42. legendObj: any = null;
  43. constructor() {
  44. super()
  45. // 选择绑定选额item事件
  46. this.selectContainer.connect("listChange", this, this.listChange);
  47. }
  48. /**
  49. * 选中返回的选中 item 回调方法
  50. *
  51. * @param event 鼠标事件参数
  52. */
  53. listChange(list: any): void {
  54. const itemList: any = []
  55. list.itemList.forEach((item: any) => {
  56. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  57. itemList.push(item)
  58. }
  59. })
  60. this.emitChoice(itemList);
  61. }
  62. /**
  63. * 选中返回的选中 item 回调方法(用于场景的外部调用)
  64. *
  65. * @param list 选中的 item 数组
  66. */
  67. emitChoice(list: any) {
  68. }
  69. /**
  70. * 鼠标左键按下
  71. *
  72. * @param event 鼠标事件参数
  73. */
  74. onMouseDown(event: SMouseEvent): any {
  75. this.vueOnMouseDown(event) //外部调用
  76. if (this.grabItem) {
  77. if (this.grabItem instanceof SBasePipe) {
  78. this.setTipeEndanchor(event)
  79. return true;
  80. }
  81. return this.grabItem.onMouseDown(event);
  82. }
  83. if (this.editCmd == "EditBaseLine") {
  84. this.addPolyLineArrow(event);
  85. this.clearCmdStatus();
  86. } else if (this.editCmd == "EditBasePolyLine") {
  87. this.addPolyLine(event);
  88. this.clearCmdStatus();
  89. } else if (this.editCmd == "EditBasetext") {
  90. this.addTextItem(event);
  91. this.clearCmdStatus();
  92. }
  93. else if (this.editCmd == "BaseExplain") {
  94. this.addExplainItem(event);
  95. this.clearCmdStatus();
  96. } else if (this.editCmd == "EditBaseImage") {
  97. this.addImageItem(event)
  98. this.clearCmdStatus();
  99. }
  100. else if (this.editCmd == "EditBasePolygon") {
  101. this.addPolygonItem(event);
  102. this.clearCmdStatus();
  103. } else if (this.editCmd == "EditBaseRect") {
  104. this.addRectItem(event)
  105. this.clearCmdStatus();
  106. } else if (this.editCmd == "EditBaseTriangle") {
  107. this.addTriangleItem(event)
  108. this.clearCmdStatus();
  109. } else if (this.editCmd == "EditBaseCircle") {
  110. this.addCircleItem(event)
  111. this.clearCmdStatus();
  112. }
  113. else if (this.editCmd == "EditBaseArrows") {
  114. this.addPolygonArrow(event)
  115. this.clearCmdStatus();
  116. }
  117. else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
  118. this.addPipeUninTool(event, this.editCmd)
  119. this.clearCmdStatus();
  120. }
  121. else if (this.editCmd == "EditBasePipe") {
  122. this.addBasePipe(event, this.legendObj);
  123. this.clearCmdStatus();
  124. }
  125. else if (this.editCmd == "") {
  126. super.onMouseDown(event);
  127. }
  128. }
  129. /**
  130. * 添加基本管道联通器
  131. *
  132. * @param event 鼠标事件
  133. * @param cmd 命令
  134. */
  135. addPipeUninTool(event: SMouseEvent, cmd: string): void {
  136. const cmdList = {
  137. 'wantou': 2,
  138. 'santong': 3,
  139. 'sitong': 4,
  140. }
  141. const data = {
  142. /** 名称 */
  143. name: '基础管道接头',
  144. /** 图标 (Image),线类型 (Line) */
  145. type: "Image",
  146. /** 位置 */
  147. pos: { x: event.x, y: event.y },
  148. /** 由应用自己定义 */
  149. properties: {
  150. type: "BasePipeUninTool",
  151. },
  152. style: {
  153. uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
  154. default: {
  155. strokecolor: "#c0ccda",
  156. }
  157. }
  158. };
  159. const item = new SBasePipeUninTool(null, data);
  160. item.status = SItemStatus.Create;
  161. item.selectable = true;
  162. item.moveable = true;
  163. this.addItem(item);
  164. this.grabItem = item;
  165. this.finishCreated(item)
  166. item.connect("onContextMenu", this, this.getItem);
  167. if (this.view) {
  168. this.view.update();
  169. }
  170. }
  171. /**
  172. * 鼠标右键事件
  173. *
  174. * @param event 鼠标事件参数
  175. * @returns 是否点击右键
  176. */
  177. onContextMenu(event: SMouseEvent): boolean {
  178. if (!super.onContextMenu(event)) {
  179. this.getItem(null, [event])
  180. }
  181. return true
  182. }
  183. /**
  184. * 修改 item 样式,数据等方法
  185. *
  186. * @param styletype string 修改样式类型
  187. * @param changeStyle 更改样式数据
  188. * @param itemList ? SGraphEdit[] 如果不传入默认使用选择器中选中得item
  189. */
  190. updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
  191. // 如果未传入需要修改样式的item,默认取选择器中的item
  192. let List = null;
  193. if (itemList && itemList.length) {
  194. List = itemList;
  195. } else {
  196. List = this.selectContainer.itemList;
  197. };
  198. let styleValue: any
  199. if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
  200. const colorlist = rgbaNum(changestyle)
  201. styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
  202. } else if (styletype == "lineStyle") {
  203. styleValue = SLineStyle[changestyle]
  204. } else if (styletype == "begin" || styletype == "end") {
  205. styleValue = SArrowStyleType[changestyle]
  206. } else if (styletype == "font") {
  207. styleValue = new SFont("sans-serif", changestyle)
  208. } else {
  209. styleValue = changestyle
  210. }
  211. List.forEach((item: SGraphEdit, index: number) => {
  212. if (item instanceof SGraphSelectContainer) {
  213. return
  214. }
  215. const oldMsg = item[styletype];
  216. const newMsg = styleValue;
  217. this.undoStack.push(new SGraphPropertyCommand(this, item, styletype, oldMsg, newMsg));
  218. item[styletype] = styleValue;
  219. })
  220. }
  221. /**
  222. * 修改指定设备得信息点
  223. *
  224. * @param obj Object 信息点
  225. */
  226. changeEquipMsgPoint(obj: any): void {
  227. const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0] : null;
  228. if (List && List instanceof SBaseEquipment) {
  229. List.setMsgPoint(obj);
  230. }
  231. }
  232. /**
  233. * item 创建完成后回调
  234. *
  235. * @param event 鼠标事件参数
  236. */
  237. finishCreated(item: SGraphEdit): void {
  238. this.grabItem = null;
  239. item.status = SItemStatus.Normal;
  240. this.undoStack.push(new SGraphAddCommand(this, item));
  241. this.selectContainer.clear();
  242. this.selectContainer.toggleItem(item);
  243. }
  244. /**
  245. * 修改 cmdstatus 函数;常在在业务中调用
  246. */
  247. clearCmdStatus() {
  248. //do something
  249. }
  250. /**
  251. * 获取item (常用与场景外的调用F)
  252. * @param event SMouseEvent 鼠标事件
  253. * @param item SGraphEdit|null 返回item
  254. *
  255. */
  256. getItem(item: SGraphEdit | null, event: SMouseEvent[]): void {
  257. // do something
  258. }
  259. /**
  260. * 获取item (常用与场景外的调用F)
  261. * @param event SMouseEvent 鼠标事件
  262. * @param item SGraphEdit|null 返回item
  263. *
  264. */
  265. vueOnMouseDown(event: SMouseEvent) {
  266. // do something
  267. }
  268. /**
  269. * 设置 item 状态
  270. */
  271. setItemStatus() {
  272. const List = this.selectContainer.itemList[0];
  273. if (List && List instanceof SGraphEdit) {
  274. if (List.status == SItemStatus.Normal) {
  275. List.status = SItemStatus.Edit;
  276. this.grabItem = List;
  277. } else {
  278. List.status = SItemStatus.Normal;
  279. this.grabItem = null
  280. }
  281. }
  282. }
  283. /**
  284. * 获取item (常用与场景外的调用F)
  285. *
  286. * @params isAll 是否为全部item数据
  287. * @return obj 返回保存的数据接口
  288. */
  289. save(isAll: boolean = true) {
  290. if (!this.view) return;
  291. const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon'];
  292. const NodeType: string[] = ['BaseEquipment'];
  293. const RelationType: string[] = ["BasePipe"];
  294. const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  295. const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  296. const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  297. let nodeList;
  298. if (isAll) {
  299. nodeList = this.root.children;
  300. } else {
  301. nodeList = this.selectContainer.itemList;
  302. };
  303. nodeList.forEach(item => {
  304. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  305. // 添加节点数据
  306. if (item.data && Marktype.includes(item.data.properties.type)) {
  307. markers.push(item.toData())
  308. }
  309. if (item.legendData && NodeType.includes(item.legendData.properties.type)) {
  310. nodes.push(item.toData())
  311. }
  312. if (item.relationData && RelationType.includes(item.relationData.properties.type)) {
  313. relations.push(item.toData())
  314. }
  315. }
  316. });
  317. return {
  318. markers,
  319. nodes,
  320. relations
  321. }
  322. }
  323. /**
  324. * 粘贴
  325. */
  326. paste(): void {
  327. const copyList = JSON.parse(JSON.stringify(this.copyString));
  328. const parserData = new PTopoParser();
  329. const graphItemList: SGraphEdit[] = [];
  330. parserData.parseData(copyList);
  331. parserData.markers.forEach((item: SGraphEdit) => {
  332. item.selectable = true;
  333. item.moveable = true;
  334. if (this.view) {
  335. item.pos.x += 10 / this.view.scale
  336. item.pos.y += 10 / this.view.scale
  337. }
  338. this.addItem(item);
  339. graphItemList.push(item);
  340. });
  341. this.addListCommand(graphItemList);
  342. this.view ? this.view.update() : '';
  343. }
  344. }