PTopoScene.ts 18 KB

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