PTopoScene.ts 20 KB

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