PTopoScene.ts 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  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, SBaseEquation, SBaseInfoPoint } from "./"
  35. /**
  36. * 拓扑图场景类
  37. *
  38. * @author 韩耀龙 <han_yao_long@163.com>
  39. */
  40. export class PTopoScene extends SBaseEditScene {
  41. /** 图例数据 */
  42. legendObj: any = null;
  43. // 静态服务器路径
  44. public imgServeUrl: string = '';
  45. // 联通方式
  46. public uninType: object = {
  47. wantou: '',
  48. santong: '',
  49. sitong: ''
  50. }
  51. constructor() {
  52. super()
  53. // 选择绑定选额item事件
  54. this.selectContainer.connect("listChange", this, this.listChange);
  55. }
  56. /**
  57. * 改变 view 背景色
  58. *
  59. * @param val 颜色值
  60. */
  61. changeBackgroundColor(val: any) {
  62. if (!this.view) return;
  63. if (val) {
  64. if (val.includes('#')) {
  65. this.view.backgroundColor = new SColor(val)
  66. } else {
  67. const colorlist: any = rgbaNum(val);
  68. if (!colorlist) return
  69. this.view.backgroundColor = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255))
  70. }
  71. this.view.update()
  72. }
  73. }
  74. /**
  75. * 选中返回的选中 item 回调方法
  76. *
  77. * @param event 鼠标事件参数
  78. */
  79. listChange(list: any): void {
  80. const itemList: any = []
  81. list.itemList.forEach((item: any) => {
  82. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  83. itemList.push(item)
  84. }
  85. })
  86. this.emitChoice(itemList);
  87. }
  88. /**
  89. * 选中返回的选中 item 回调方法(用于场景的外部调用)
  90. *
  91. * @param list 选中的 item 数组
  92. */
  93. emitChoice(list: any) {
  94. }
  95. /**
  96. * 鼠标左键按下
  97. *
  98. * @param event 鼠标事件参数
  99. */
  100. onMouseDown(event: SMouseEvent): any {
  101. this.vueOnMouseDown(event) //外部调用
  102. if (this.grabItem) {
  103. if (this.grabItem instanceof SBasePipe) {
  104. this.setTipeEndanchor(event)
  105. return true;
  106. }
  107. return this.grabItem.onMouseDown(event);
  108. }
  109. if (this.editCmd == "EditBaseLine") {
  110. this.addPolyLineArrow(event);
  111. this.clearCmdStatus();
  112. } else if (this.editCmd == "EditBasePolyLine") {
  113. this.addPolyLine(event);
  114. this.clearCmdStatus();
  115. } else if (this.editCmd == "EditBasetext") {
  116. this.addTextItem(event);
  117. this.clearCmdStatus();
  118. }
  119. else if (this.editCmd == "BaseExplain") {
  120. this.addExplainItem(event);
  121. this.clearCmdStatus();
  122. } else if (this.editCmd == "EditBaseImage") {
  123. this.addImageItem(event)
  124. this.clearCmdStatus();
  125. }
  126. else if (this.editCmd == "EditBasePolygon") {
  127. this.addPolygonItem(event);
  128. this.clearCmdStatus();
  129. } else if (this.editCmd == "EditBaseRect") {
  130. this.addRectItem(event)
  131. this.clearCmdStatus();
  132. } else if (this.editCmd == "EditBaseTriangle") {
  133. this.addTriangleItem(event)
  134. this.clearCmdStatus();
  135. } else if (this.editCmd == "EditBaseCircle") {
  136. this.addCircleItem(event)
  137. this.clearCmdStatus();
  138. }
  139. else if (this.editCmd == "EditBaseArrows") {
  140. this.addPolygonArrow(event)
  141. this.clearCmdStatus();
  142. }
  143. else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
  144. this.addPipeUninTool(event, this.editCmd)
  145. this.clearCmdStatus();
  146. }
  147. else if (this.editCmd == "EditBasePipe") {
  148. this.addBasePipe(event, this.legendObj);
  149. this.clearCmdStatus();
  150. }
  151. else if (this.editCmd == "equation") {
  152. // 添加公式
  153. this.addEquation(event, this.editCmd);
  154. this.clearCmdStatus();
  155. } else if (this.editCmd == "infoPoint") {
  156. // 添加信息点
  157. this.addInfoPoint(event, this.editCmd);
  158. this.clearCmdStatus();
  159. } else if (this.editCmd == "") {
  160. super.onMouseDown(event);
  161. }
  162. }
  163. /**
  164. * 鼠标双击事件
  165. *
  166. * @param event 事件参数
  167. * @return boolean
  168. */
  169. onDoubleClick(event: SMouseEvent): boolean {
  170. // 如果为复制状态则双击失效
  171. // if (this.isCopy == "true") {
  172. // return true
  173. // }
  174. if (!this.isEditStatus) {
  175. return true
  176. } else {
  177. return super.onDoubleClick(event);
  178. }
  179. } // Function onDoubleClick()
  180. /**
  181. * 添加基本管道联通器
  182. *
  183. * @param event 鼠标事件
  184. * @param cmd 命令
  185. */
  186. addPipeUninTool(event: SMouseEvent, cmd: string): void {
  187. const data = {
  188. /** 名称 */
  189. name: '基础管道接头',
  190. /** 图标 (Image),线类型 (Line) */
  191. type: "Image",
  192. /** 位置 */
  193. pos: { x: event.x, y: event.y },
  194. /** 由应用自己定义 */
  195. properties: {
  196. type: "BasePipeUninTool",
  197. },
  198. style: {
  199. uninToolType: cmd, //分别分二头连接器、三头连接器、四头连接器
  200. default: {
  201. strokecolor: "#c0ccda",
  202. url: this.uninType[cmd]
  203. }
  204. }
  205. };
  206. const item = new SBasePipeUninTool(null, data);
  207. item.url = this.imgServeUrl + this.uninType[cmd];
  208. item.selectable = true;
  209. item.moveable = true;
  210. this.addItem(item);
  211. this.finishCreated(item)
  212. item.connect("onContextMenu", this, this.getItem);
  213. if (this.view) {
  214. this.view.update();
  215. }
  216. }
  217. /**
  218. * 添加公式
  219. * @param event
  220. */
  221. addEquation(event: SMouseEvent, cmd: string) {
  222. const data = {
  223. /** 名称 */
  224. name: '公式',
  225. /** 图标 */
  226. type: "Text",
  227. /** 位置 */
  228. pos: { x: event.x, y: event.y },
  229. size: { width: 0, height: 0 },
  230. /** 由应用自己定义 */
  231. properties: {
  232. type: "Equation" // 自定义类型用于区分mark与node
  233. },
  234. style: {
  235. default: {
  236. text: '请在右侧属性栏填写公式!',
  237. color: "#646c73",
  238. font: 14,
  239. backgroundcolor: "#f7f9facc",
  240. }
  241. }
  242. };
  243. const item = new SBaseEquation(null, data);
  244. item.moveTo(event.x, event.y);
  245. item.moveable = true;
  246. this.addItem(item);
  247. this.grabItem = null;
  248. item.connect("onContextMenu", this, this.getItem);
  249. this.finishCreated(item);
  250. }
  251. /**
  252. * 添加信息点
  253. * @param event
  254. */
  255. addInfoPoint(event: SMouseEvent, cmd: string) {
  256. const data = {
  257. /** 名称 */
  258. name: '信息点',
  259. /** 图标 */
  260. type: "Text",
  261. /** 位置 */
  262. pos: { x: event.x, y: event.y },
  263. size: { width: 0, height: 0 },
  264. /** 由应用自己定义 */
  265. properties: {
  266. type: "InfoPoint" // 自定义类型用于区分mark与node
  267. },
  268. style: {
  269. default: {
  270. text: '信息点',
  271. color: "#646c73",
  272. font: 14,
  273. backgroundcolor: "#f7f9facc",
  274. }
  275. }
  276. };
  277. const item = new SBaseInfoPoint(null, data);
  278. item.moveTo(event.x, event.y);
  279. item.moveable = true;
  280. this.addItem(item);
  281. this.grabItem = null;
  282. item.connect("onContextMenu", this, this.getItem);
  283. this.finishCreated(item);
  284. }
  285. /**
  286. * 鼠标右键事件
  287. *
  288. * @param event 鼠标事件参数
  289. * @returns 是否点击右键
  290. */
  291. onContextMenu(event: SMouseEvent): boolean {
  292. if (!super.onContextMenu(event)) {
  293. this.getItem(null, [event])
  294. }
  295. return true
  296. }
  297. /**
  298. * 修改 item 样式,数据等方法
  299. *
  300. * @param styletype string 修改样式类型
  301. * @param changeStyle 更改样式数据
  302. * @param itemList ? SGraphEdit[] 如果不传入默认使用选择器中选中得item
  303. */
  304. updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
  305. // 如果未传入需要修改样式的item,默认取选择器中的item
  306. let List = null;
  307. if (itemList && itemList.length) {
  308. List = itemList;
  309. } else {
  310. List = this.selectContainer.itemList;
  311. };
  312. let styleValue: any
  313. if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
  314. const colorlist = rgbaNum(changestyle)
  315. styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
  316. } else if (styletype == "lineStyle") {
  317. styleValue = SLineStyle[changestyle]
  318. } else if (styletype == "begin" || styletype == "end") {
  319. styleValue = SArrowStyleType[changestyle]
  320. } else if (styletype == "font") {
  321. styleValue = new SFont("sans-serif", changestyle)
  322. } else if (styletype == "url") {
  323. styleValue = this.imgServeUrl + changestyle;
  324. // 设置default url
  325. List.forEach((item: SGraphEdit) => {
  326. item.defaultUrl = changestyle
  327. })
  328. } else {
  329. styleValue = changestyle
  330. }
  331. List.forEach((item: SGraphEdit, index: number) => {
  332. if (item instanceof SGraphSelectContainer) {
  333. return
  334. }
  335. const oldMsg = item[styletype];
  336. const newMsg = styleValue;
  337. this.undoStack.push(new SGraphPropertyCommand(this, item, styletype, oldMsg, newMsg));
  338. item[styletype] = styleValue;
  339. })
  340. }
  341. /**
  342. * 修改指定设备得信息点
  343. *
  344. * @param obj Object 信息点
  345. */
  346. changeEquipMsgPoint(obj: any): void {
  347. const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0] : null;
  348. if (List && List instanceof SBaseEquipment) {
  349. List.setMsgPoint(obj);
  350. }
  351. }
  352. /**
  353. * item 创建完成后回调
  354. *
  355. * @param event 鼠标事件参数
  356. */
  357. finishCreated(item: SGraphEdit): void {
  358. this.grabItem = null;
  359. item.status = SItemStatus.Normal;
  360. this.undoStack.push(new SGraphAddCommand(this, item));
  361. this.selectContainer.clear();
  362. this.selectContainer.toggleItem(item);
  363. }
  364. /**
  365. * 修改 cmdstatus 函数;常在在业务中调用
  366. */
  367. clearCmdStatus() {
  368. //do something
  369. }
  370. /**
  371. * 获取item (常用与场景外的调用F)
  372. * @param event SMouseEvent 鼠标事件
  373. * @param item SGraphEdit|null 返回item
  374. *
  375. */
  376. getItem(item: SGraphEdit | null, event: SMouseEvent[]): void {
  377. // do something
  378. }
  379. /**
  380. * 获取item (常用与场景外的调用F)
  381. * @param event SMouseEvent 鼠标事件
  382. * @param item SGraphEdit|null 返回item
  383. *
  384. */
  385. vueOnMouseDown(event: SMouseEvent) {
  386. // do something
  387. }
  388. /**
  389. * 设置 item 状态
  390. */
  391. setItemStatus() {
  392. const List = this.selectContainer.itemList[0];
  393. if (List && List instanceof SGraphEdit) {
  394. if (List.status == SItemStatus.Normal) {
  395. List.status = SItemStatus.Edit;
  396. this.grabItem = List;
  397. } else {
  398. List.status = SItemStatus.Normal;
  399. this.grabItem = null
  400. }
  401. }
  402. }
  403. /**
  404. * 获取item (常用与场景外的调用F)
  405. *
  406. * @params isAll 是否为全部item数据
  407. * @return obj 返回保存的数据接口
  408. */
  409. save(isAll: boolean = true) {
  410. if (!this.view) return;
  411. const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool'];
  412. const NodeType: string[] = ['BaseEquipment'];
  413. const RelationType: string[] = ["BasePipe"];
  414. const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  415. const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  416. const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  417. let nodeList;
  418. if (isAll) {
  419. nodeList = this.root.children;
  420. } else {
  421. nodeList = this.selectContainer.itemList;
  422. };
  423. nodeList.forEach(item => {
  424. if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
  425. // 添加节点数据
  426. if (item.data && Marktype.includes(item.data.properties.type)) {
  427. markers.push(item.toData())
  428. }
  429. if (item.legendData && NodeType.includes(item.legendData.properties.type)) {
  430. nodes.push(item.toData())
  431. }
  432. if (item.relationData && RelationType.includes(item.relationData.properties.type)) {
  433. relations.push(item.toData())
  434. }
  435. }
  436. });
  437. return {
  438. markers,
  439. nodes,
  440. relations
  441. }
  442. }
  443. /**
  444. * 粘贴
  445. */
  446. paste(): void {
  447. const copyList = JSON.parse(JSON.stringify(this.copyString));
  448. const parserData = new PTopoParser();
  449. const graphItemList: SGraphEdit[] = [];
  450. parserData.parseData(copyList);
  451. parserData.markers.forEach((item: SGraphEdit) => {
  452. item.selectable = true;
  453. item.moveable = true;
  454. if (this.view) {
  455. item.pos.x += 10 / this.view.scale
  456. item.pos.y += 10 / this.view.scale
  457. }
  458. this.addItem(item);
  459. graphItemList.push(item);
  460. });
  461. this.addListCommand(graphItemList);
  462. this.view ? this.view.update() : '';
  463. }
  464. }