EditScence.ts 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121
  1. import { SMouseEvent, SUndoStack } from "@saga-web/base";
  2. import { SGraphScene, SGraphLayoutType, SAnchorItem } from "@saga-web/graph/lib";
  3. import { SFloorParser, SLineItem, SPolylineItem, SItemStatus, ItemOrder, STooltipItem, ItemColor } from "@saga-web/big";
  4. import {
  5. SGraphItem,
  6. SLineStyle,
  7. SImageItem,
  8. STextItem,
  9. SGraphPointListInsert,
  10. SGraphPointListDelete,
  11. SGraphPointListUpdate,
  12. SGraphAddCommand,
  13. } from "@saga-web/graph/lib";
  14. import { SImageShowType } from "@saga-web/graph/lib/enums/SImageShowType";
  15. import { SZoneLegendItem } from "@/lib/items/SZoneLegendItem";
  16. import { SSCPZZoneLegendItem } from "@/lib/items/SSCPZZoneLegendItem";
  17. import { SFHFQZoneLegendItem } from "@/lib/items/SFHFQZoneLegendItem";
  18. import { SImageLegendItem } from "@/lib/items/SImageLegendItem";
  19. import { TipelineItem } from "@/lib/items/TipelineItem";
  20. import { SImageMarkerItem } from "@/lib/items/SImageMarkerItem";
  21. import { SPoint, SFont, SColor, SRect } from "@saga-web/draw/lib";
  22. import { Legend } from "@/lib/types/Legend";
  23. import { Relation } from "@/lib/types/Relation";
  24. import { uuid } from "@/components/mapClass/until";
  25. import { STextMarkerItem } from "@/lib/items/STextMarkerItem";
  26. import { SLineMarkerItem } from "@/lib/items/SLineMarkerItem";
  27. import { SSpaceItem } from "@saga-web/big/lib/items/floor/SSpaceItem";
  28. import { SMathUtil } from "@saga-web/big/lib/utils/SMathUtil";
  29. import { MinDis } from "@saga-web/big/lib/types/MinDis";
  30. import { HighlightItem } from "@/lib/items/HighlightItem";
  31. import { SEquipmentItem } from "@/lib/items/SEquipmentItem"; // 设备类
  32. /**
  33. * 在线绘图
  34. *
  35. * @author 韩耀龙
  36. */
  37. export class EditScence extends SGraphScene {
  38. undoStack = new SUndoStack();
  39. /** 命令 1 绘制直线 */
  40. private cmd = "choice";
  41. /** 获取当前状态 */
  42. get getCmd(): string {
  43. return this.cmd;
  44. }
  45. /** 编辑当前状态 */
  46. set setCmd(cmd: string) {
  47. if (cmd == "choice") {
  48. this.grabItem = null;
  49. }
  50. this.cmd = cmd;
  51. if (this.focusItem) {
  52. // 取消操作
  53. this.focusItem.cancelOperate();
  54. this.focusItem = null;
  55. // this.selectContainer.
  56. }
  57. if (this.view) {
  58. this.view.update();
  59. }
  60. }
  61. /** 背景图像对象 */
  62. private backgroundImgItem: SImageItem | null = null;
  63. /** 设备对象 */
  64. private equipmentItem: SEquipmentItem | null = null;
  65. /** 绘制区域时 是否为点选 */
  66. isSelecting: boolean = false;
  67. /** 是否开启吸附 */
  68. isAbsorbing: boolean = false;
  69. /** 吸附展示item */
  70. highLight: HighlightItem | null = null;
  71. /** 当前选中焦点Item */
  72. focusItem: SGraphItem | null = null;
  73. /**图例节点 */
  74. Nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域) // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
  75. /**图例节点 */ Markers: any = [];
  76. /** 管线对象 */
  77. Relations: any = [];
  78. _isEditStatus: Boolean = true; // 是否可编辑
  79. set isEditStatus(bol: Boolean): void {
  80. this._isEditStatus = bol;
  81. }
  82. get isEditStatus(): Boolean {
  83. return this._isEditStatus;
  84. }
  85. constructor() {
  86. super();
  87. // // 选择绑定选额item事件
  88. this.selectContainer.connect("listChange", this, this.listChange);
  89. ItemColor.spaceColor = new SColor("#A4ABB22B");
  90. ItemColor.wallColor = new SColor("#A7AEB3FF");
  91. ItemColor.columnColor = new SColor("#A7AEB3FF");
  92. ItemColor.virtualWallColor = new SColor("#A7AEB3FF");
  93. ItemColor.selectColor = new SColor("#84A0BB2B");
  94. ItemColor.spaceBorderColor = new SColor("#A7AEB3FF");
  95. }
  96. /** 绘制图例样式 */
  97. _legend: any | null = null;
  98. get getlegend(): any {
  99. return this._legend;
  100. }
  101. set setlegend(obj: any) {
  102. this._legend = obj;
  103. console.log("aaaaaa", obj);
  104. }
  105. /** fid=>item映射,由解析器存入 */
  106. fidToItem = {};
  107. /**
  108. * 监听变化
  109. * @param obj 变化后的对象
  110. */
  111. listChange(obj: any) {
  112. let itemType: string = "equipment";
  113. if (obj.itemList[0] instanceof STextMarkerItem) {
  114. itemType = "baseText";
  115. } else if (obj.itemList[0] instanceof SImageMarkerItem) {
  116. itemType = "baseImage";
  117. } else if (obj.itemList[0] instanceof SLineMarkerItem) {
  118. itemType = "baseLine";
  119. } else if (obj.itemList[0] instanceof SZoneLegendItem) {
  120. itemType = "Zone";
  121. } else if (obj.itemList[0] instanceof SFHFQZoneLegendItem) {
  122. itemType = "Zone";
  123. } else if (obj.itemList[0] instanceof SSCPZZoneLegendItem) {
  124. itemType = "Zone";
  125. } else if (obj.itemList[0] instanceof SImageLegendItem) {
  126. itemType = "Image";
  127. } else if (obj.itemList[0] instanceof TipelineItem) {
  128. itemType = "Line";
  129. } else if (obj.itemList[0] instanceof SSpaceItem) {
  130. // 点选
  131. this.clickToAddArea(obj.itemList[0]);
  132. return;
  133. } else {
  134. itemType = "";
  135. }
  136. if (obj.itemList.length == 1) {
  137. // 获取聚焦item
  138. this.focusItem = obj.itemList[0];
  139. }
  140. let msg = {
  141. itemList: obj.itemList,
  142. itemType,
  143. };
  144. this.emitChange(msg);
  145. }
  146. emitChange(msg: any) {}
  147. /**
  148. * 增加线段item
  149. */
  150. addLine(event: SMouseEvent): boolean {
  151. const clickItem = this.clickIsItem(event);
  152. if (clickItem) {
  153. let centerPoint = clickItem.boundingRect().center();
  154. const p = clickItem.mapToScene(centerPoint.x, centerPoint.y);
  155. event.x = p.x;
  156. event.y = p.y;
  157. }
  158. const data = {
  159. /** ID */
  160. ID: uuid(),
  161. /** 名称 */
  162. Name: "直线",
  163. /** 图标(Image),线类型(Line) */
  164. Type: "Line",
  165. /** 位置 */
  166. Pos: { X: 0, Y: 0 },
  167. /** 由应用自己定义 */
  168. Properties: {
  169. IconUrl: require("../../assets/images/t-line-hover.png"),
  170. Line: [{ X: event.x, Y: event.y }],
  171. LineWidth: 2,
  172. },
  173. };
  174. const item = new SLineMarkerItem(null, data);
  175. item.status = SItemStatus.Create;
  176. item.zOrder = ItemOrder.lineOrder;
  177. item.selectable = true;
  178. this.addItem(item);
  179. this.Markers.push(item);
  180. item.connect("finishCreated", this, this.finishCreated);
  181. this.grabItem = item;
  182. this.focusItem = item;
  183. this.scenceUpdate(this);
  184. // this.undoStack.push(new SGraphAddCommand(this, item));
  185. // item.connect("onMove", this, this.onItemMove.bind(this));
  186. return true;
  187. }
  188. /**
  189. * 增加折线item
  190. */
  191. addPolylineItem(event: SMouseEvent): boolean {
  192. const point = new SPoint(event.x, event.y);
  193. const item = new TipelineItem(null, [point]);
  194. //设置状态
  195. item.selectable = true;
  196. item.status = SItemStatus.Create;
  197. item.zOrder = ItemOrder.polylineOrder;
  198. this.addItem(item);
  199. item.connect("finishCreated", this, this.finishCreated);
  200. // this.undoStack.push(new SGraphAddCommand(this, item));
  201. this.grabItem = item;
  202. this.focusItem = item;
  203. return true;
  204. }
  205. /**
  206. * 增加管道 lenged
  207. */
  208. addTipelineItem(event: SMouseEvent): boolean {
  209. const anc = this.clickIsAnchor(event);
  210. if (anc) {
  211. const p = anc.mapToScene(0, 0);
  212. anc.isConnected = true;
  213. event.x = p.x;
  214. event.y = p.y;
  215. }
  216. const LegendData: Relation = {
  217. ID: uuid(),
  218. Name: this._legend.Name,
  219. GraphElementId: this._legend.Id,
  220. PointList: [{ X: event.x, Y: event.y }],
  221. LineType: "Line",
  222. Properties: {
  223. IconUrl: "/serve/topology-wanda/Picture/query/" + this._legend.Url,
  224. LineDash: this._legend.LineDash,
  225. LineWidth: this._legend.LineWidth,
  226. Color: this._legend.Color,
  227. },
  228. };
  229. const item = new TipelineItem(null, LegendData);
  230. //设置状态
  231. item.selectable = true;
  232. item.status = SItemStatus.Create;
  233. item.zOrder = ItemOrder.polylineOrder;
  234. this.addItem(item);
  235. this.Relations.push(item);
  236. item.connect("finishCreated", this, this.finishCreated);
  237. // this.undoStack.push(new SGraphAddCommand(this, item));
  238. this.grabItem = item;
  239. this.focusItem = item;
  240. // 起始锚点
  241. item.startAnchor = anc;
  242. if (anc) {
  243. anc.parent?.connect("changePos", item, item.changePos);
  244. item.anchor1ID = anc.id;
  245. item.node1Id = anc.parent.id;
  246. }
  247. this.scenceUpdate(this);
  248. return true;
  249. }
  250. /**
  251. * 增加多边形item lenged
  252. */
  253. addPolygonItem(event: SMouseEvent): void {
  254. const SubType = this._legend.SubType ? this._legend.SubType : "";
  255. const LegendData: Legend = {
  256. ID: uuid(),
  257. Name: this._legend.Name,
  258. GraphElementType: this._legend.Type,
  259. Num: 1,
  260. GraphElementId: this._legend.Id,
  261. AttachObjectIds: [],
  262. Type: "Zone",
  263. Pos: { X: event.x, Y: event.y },
  264. OutLine: [{ X: event.x, Y: event.y }],
  265. SubType: SubType,
  266. Properties: {
  267. IconUrl: "/serve/topology-wanda/Picture/query/" + this._legend.Url,
  268. StrokeColor: this._legend.Color,
  269. FillColor: this._legend.FillColor,
  270. LineDash: this._legend.LineDash,
  271. LineWidth: this._legend.LineWidth,
  272. font: 0,
  273. color: "",
  274. TextPos: { X: 0, Y: 0 },
  275. },
  276. };
  277. let Polylines = null;
  278. if (SubType == "SCPZ") {
  279. Polylines = new SSCPZZoneLegendItem(null, LegendData);
  280. } else if (SubType == "FHFQ") {
  281. Polylines = new SFHFQZoneLegendItem(null, LegendData);
  282. } else {
  283. Polylines = new SZoneLegendItem(null, LegendData);
  284. }
  285. Polylines.selectable = true;
  286. //设置状态
  287. Polylines.status = SItemStatus.Create;
  288. Polylines.zOrder = ItemOrder.polygonOrder;
  289. // Polylines.moveable = true;
  290. this.addItem(Polylines);
  291. this.Nodes.push(Polylines);
  292. Polylines.connect("finishCreated", this, this.finishCreated);
  293. this.grabItem = Polylines;
  294. this.focusItem = Polylines;
  295. this.scenceUpdate(this);
  296. }
  297. /**
  298. * 点选创建区域
  299. */
  300. clickToAddArea(item: SSpaceItem): void {
  301. if (this.cmd != "Zone") {
  302. return;
  303. }
  304. if (this.isSelecting && this._legend) {
  305. //@ts-ignore
  306. item.isExtracted = true;
  307. const SubType = this._legend.SubType ? this._legend.SubType : "";
  308. const LegendData: Legend = {
  309. ID: uuid(),
  310. Name: this._legend.Name,
  311. GraphElementType: this._legend.Type,
  312. Num: 1,
  313. GraphElementId: this._legend.Id,
  314. AttachObjectIds: [],
  315. Type: "Zone",
  316. Pos: { X: item.x, Y: item.y },
  317. OutLine: item.pointArr[0],
  318. SubType: SubType,
  319. Properties: {
  320. IconUrl: "/serve/topology-wanda/Picture/query/" + this._legend.Url,
  321. StrokeColor: this._legend.Color,
  322. FillColor: this._legend.FillColor,
  323. LineDash: this._legend.LineDash,
  324. LineWidth: this._legend.LineWidth,
  325. font: 12,
  326. color: "",
  327. FID: item.data.SourceId,
  328. TextPos: { X: item.data.Location.Points[0].X, Y: -item.data.Location.Points[0].Y },
  329. },
  330. };
  331. let Polylines = null;
  332. if (SubType == "SCPZ") {
  333. Polylines = new SSCPZZoneLegendItem(null, LegendData);
  334. } else if (SubType == "FHFQ") {
  335. Polylines = new SFHFQZoneLegendItem(null, LegendData);
  336. } else {
  337. Polylines = new SZoneLegendItem(null, LegendData);
  338. }
  339. Polylines.selectable = true;
  340. //设置状态
  341. Polylines.status = SItemStatus.Normal;
  342. this.addItem(Polylines);
  343. this.Nodes.push(Polylines);
  344. Polylines.connect("finishCreated", this, this.finishCreated);
  345. this.finishCreated(Polylines);
  346. this.focusItem = Polylines;
  347. this.scenceUpdate(this);
  348. }
  349. }
  350. /**
  351. * 增加图片Item mark
  352. */
  353. addImgItem(event: SMouseEvent) {
  354. const data = {
  355. /** ID */
  356. ID: uuid(),
  357. /** 名称 */
  358. Name: "图片",
  359. Num: 1,
  360. /** 图标(Image),线类型(Line) */
  361. Type: "Image",
  362. /** 位置 */
  363. Pos: { X: event.x, Y: event.y },
  364. /** 由应用自己定义 */
  365. Properties: {
  366. IconUrl: require(`../../assets/images/t-img-hover.png`),
  367. Url: "",
  368. },
  369. };
  370. const item = new SImageMarkerItem(null, data);
  371. item.zOrder = ItemOrder.imageOrder;
  372. item.selectable = true;
  373. item.moveable = true;
  374. this.addItem(item);
  375. this.Markers.push(item);
  376. this.grabItem == null;
  377. this.focusItem = item;
  378. this.cmd = "choice";
  379. this.scenceUpdate(this);
  380. }
  381. /**
  382. * 增加文字item
  383. */
  384. addTextItem(event: SMouseEvent): void {
  385. const data = {
  386. /** ID */
  387. ID: uuid(),
  388. /** 名称 */
  389. Name: "文本",
  390. /** 图标 */
  391. Type: "Text",
  392. /** 位置 */
  393. Pos: { X: event.x, Y: event.y },
  394. /** 由应用自己定义 */
  395. Properties: {
  396. IconUrl: require(`../../assets/images/t-text-hover.png`),
  397. Text: "请在右侧属性栏输入文字!",
  398. Color: "",
  399. Font: 12,
  400. BackgroundColor: "",
  401. },
  402. };
  403. const item = new STextMarkerItem(null, data);
  404. item.moveTo(event.x, event.y);
  405. item.selectable = true;
  406. item.moveable = true;
  407. item.zOrder = ItemOrder.textOrder;
  408. this.addItem(item);
  409. this.Markers.push(item);
  410. this.grabItem = item;
  411. this.focusItem = item;
  412. this.cmd = "choice";
  413. this.scenceUpdate(this);
  414. }
  415. /**
  416. * 增加图标lenged图标
  417. */
  418. addIconItem(event: SMouseEvent): void {
  419. //获取信息工程化相关参数
  420. const LegendData: Legend = {
  421. ID: uuid(),
  422. Name: this._legend.Name,
  423. GraphElementType: this._legend.Type,
  424. Num: 1,
  425. GraphElementId: this._legend.Id,
  426. AttachObjectIds: [],
  427. Pos: { X: event.x, Y: event.y },
  428. Scale: { X: 1, Y: 1, Z: 1 }, // 缩放
  429. Rolate: { X: 0, Y: 0, Z: 0 },
  430. Size: { Width: 0, Height: 0 }, // 大小
  431. Properties: {
  432. IconUrl: "/serve/topology-wanda/Picture/query/" + this._legend.Url,
  433. Url: "/serve/topology-wanda/Picture/query/" + this._legend.Url,
  434. Num: 1, // 此num与信息工程化得num无关
  435. sWidth: 24, //icon 的宽
  436. sHeight: 24, //icon 的高
  437. font: 12, //font
  438. color: "", //字体颜色
  439. GraphCategoryId: this._legend.GraphCategoryId,
  440. },
  441. };
  442. const item = new SImageLegendItem(null, LegendData);
  443. this.cmd = "choice";
  444. item.selectable = true;
  445. item.moveable = true;
  446. item.zOrder = ItemOrder.markOrder;
  447. this.addItem(item);
  448. this.Nodes.push(item);
  449. this.grabItem = item;
  450. this.focusItem = item;
  451. this.scenceUpdate(this);
  452. }
  453. /**
  454. * 更改item对应属性
  455. */
  456. editItemStatus(): void {}
  457. /**
  458. * 更改文本对应属性
  459. * @param str string 文字内容
  460. */
  461. updatedText(str: string): void {
  462. if (this.focusItem) {
  463. const old = this.focusItem.text;
  464. this.focusItem.text = str;
  465. this.scenceUpdate(this);
  466. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "text", old, str));
  467. }
  468. }
  469. /**
  470. * 更改文本fontSize属性
  471. * @param size number 文字大小
  472. */
  473. updatedFontSize(size: number): void {
  474. if (this.focusItem) {
  475. let old = new SFont(this.focusItem.font);
  476. let font = new SFont(this.focusItem.font);
  477. font.size = size;
  478. this.focusItem.font = font;
  479. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
  480. }
  481. }
  482. /**
  483. * 更改线宽属性
  484. * @param lineWidth number 线宽大小
  485. */
  486. updatedLineWidth(lineWidth: number): void {
  487. if (this.focusItem) {
  488. // let old = new SFont(this.focusItem.font);
  489. // let font = new SFont(this.focusItem.font);
  490. // font.size = size;
  491. this.focusItem.lineWidth = lineWidth;
  492. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "font", old, font));
  493. }
  494. }
  495. /**
  496. * 更改文本颜色属性
  497. * @param str string 颜色
  498. */
  499. updatedFontColor(color: string): void {
  500. if (this.focusItem) {
  501. let old = this.focusItem.color;
  502. this.focusItem.color = new SColor(color);
  503. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  504. }
  505. }
  506. /**
  507. * 更改border颜色
  508. * @param color string 颜色
  509. */
  510. updatedBorderColor(color: string): void {
  511. if (this.focusItem) {
  512. if (
  513. this.focusItem instanceof SZoneLegendItem ||
  514. this.focusItem instanceof SSCPZZoneLegendItem ||
  515. this.focusItem instanceof SFHFQZoneLegendItem
  516. ) {
  517. this.focusItem.strokeColor = new SColor(color);
  518. } else {
  519. // let old = this.focusItem.strokeColor;
  520. this.focusItem.strokeColor = new SColor(color);
  521. }
  522. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  523. }
  524. }
  525. /**
  526. * 更改item宽
  527. * @param width number 颜色
  528. */
  529. updatedWidth(width: number): void {
  530. if (this.focusItem) {
  531. // let old = this.focusItem.width;
  532. if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
  533. this.focusItem.sWidth = width;
  534. } else {
  535. this.focusItem.width = width;
  536. }
  537. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  538. }
  539. }
  540. /**
  541. * 更改item高
  542. * @param height number 颜色
  543. */
  544. updatedHeight(height: number): void {
  545. if (this.focusItem) {
  546. // let old = this.focusItem.width;
  547. if (this.focusItem.data && this.focusItem.data.GraphElementType && this.focusItem.data.GraphElementType == "Image") {
  548. this.focusItem.sHeight = height;
  549. } else {
  550. this.focusItem.height = height;
  551. }
  552. // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
  553. }
  554. }
  555. /**
  556. * 更改item坐标
  557. * @param x number x x坐标
  558. * @param y number y y坐标
  559. */
  560. updatedPosition(x: number, y: number): void {
  561. if (this.focusItem) {
  562. let p = this.focusItem.mapFromScene(x, y);
  563. // newx - oldx = newleft - oldleft
  564. // 要求的值(新的x坐标) - 旧的x坐标 = 新的左边界(用户输入的值) - 旧的左边界
  565. this.focusItem.x = p.x - this.focusItem.boundingRect().left + this.focusItem.x;
  566. this.focusItem.y = p.y - this.focusItem.boundingRect().top + this.focusItem.y;
  567. }
  568. }
  569. /**
  570. * 更改item 背景色坐标
  571. * @param color string 颜色color
  572. */
  573. updatedbackColor(color: string): void {
  574. if (this.focusItem) {
  575. this.focusItem.backgroundColor = new SColor(color);
  576. }
  577. }
  578. /**
  579. * 更改item Url
  580. * @param url string 图片key
  581. */
  582. upadataImageUrl(url: string, type: [number, undefined]): void {
  583. if (this.focusItem) {
  584. if (!type) {
  585. this.focusItem.url = "/serve/topology-wanda/Picture/query/" + url;
  586. } else {
  587. this.focusItem.url = url;
  588. }
  589. }
  590. }
  591. /**
  592. * 更改item border
  593. * @param val string border类型
  594. */
  595. upadataBorder(val: string): void {
  596. if (this.focusItem) {
  597. let borderStyle = null;
  598. if (val == "dashed") {
  599. borderStyle = SLineStyle.Dashed;
  600. } else if (val == "dotted") {
  601. borderStyle = SLineStyle.Dotted;
  602. } else if (val == "solid") {
  603. borderStyle = SLineStyle.Soild;
  604. }
  605. this.focusItem.lineStyle = borderStyle;
  606. }
  607. }
  608. /**
  609. * 更改item 名称
  610. * @param val string border类型
  611. */
  612. upadataLengedName(val: string): void {
  613. if (this.focusItem && this.focusItem.data) {
  614. this.focusItem.text = val;
  615. this.scenceUpdate(this);
  616. }
  617. }
  618. /**
  619. * 更改item Num数量
  620. * @param num number item数量 (只对icon设备类)
  621. */
  622. upadatImageNum(num: number): void {
  623. if (this.focusItem && this.focusItem.num) {
  624. this.focusItem.num = num;
  625. }
  626. }
  627. /**
  628. * 更改item Num数量
  629. * @param num number item数量 (只对icon设备类)
  630. */
  631. upadatfillColor(fillColor: string): void {
  632. if (this.focusItem && this.focusItem.fillColor) {
  633. this.focusItem.fillColor = new SColor(fillColor);
  634. }
  635. }
  636. /**
  637. * 更改图例说
  638. * @param num number
  639. */
  640. upadatitemExplain(ItemExplain: string): void {
  641. if (this.focusItem) {
  642. this.focusItem.data.Properties.ItemExplain = ItemExplain;
  643. }
  644. }
  645. /**
  646. * 更新工程信息化的相关数据
  647. * @param AttachObjectIds Array
  648. */
  649. upadatAttachObjectIds(AttachObjectIds: []): void {
  650. if (this.focusItem) {
  651. this.focusItem.data.AttachObjectIds = AttachObjectIds;
  652. }
  653. }
  654. /**
  655. * 删除指定item
  656. */
  657. deleiteItem(): void {
  658. if (this.focusItem) {
  659. if (
  660. (this.focusItem instanceof SZoneLegendItem ||
  661. this.focusItem instanceof SSCPZZoneLegendItem ||
  662. this.focusItem instanceof SFHFQZoneLegendItem ||
  663. this.focusItem instanceof TipelineItem) &&
  664. this.focusItem.curIndex != -1
  665. ) {
  666. this.focusItem.deletePoint(this.focusItem.curIndex);
  667. } else {
  668. this.removeItem(this.focusItem);
  669. let a = -1;
  670. this.Nodes.forEach((item: any, index: number) => {
  671. if (item.id == this.focusItem.id) {
  672. a = index;
  673. }
  674. });
  675. if (a > -1) {
  676. this.Nodes.splice(a, 1);
  677. }
  678. let b = -1;
  679. this.Markers.forEach((item: any, index: number) => {
  680. if (item.id == this.focusItem.id) {
  681. b = index;
  682. }
  683. });
  684. if (b > -1) {
  685. this.Markers.splice(b, 1);
  686. }
  687. let c = -1;
  688. this.Relations.forEach((item: any, index: number) => {
  689. if (item.id == this.focusItem.id) {
  690. c = index;
  691. }
  692. });
  693. if (c > -1) {
  694. this.Relations.splice(c, 1);
  695. }
  696. this.focusItem = null;
  697. if (this.view) {
  698. this.view.update();
  699. }
  700. this.scenceUpdate(this);
  701. }
  702. }
  703. }
  704. scenceUpdate(scence: any) {}
  705. /**
  706. * 对齐指定item
  707. * @param v
  708. */
  709. changeAlignItem(v: any): void {
  710. this.selectContainer.layout(v);
  711. }
  712. /**
  713. * 提取item
  714. */
  715. extractItem(): void {
  716. console.log(this);
  717. }
  718. /**
  719. * 保存数据
  720. */
  721. saveMsgItem(): any {
  722. const Nodes: any = [];
  723. const Markers: any = [];
  724. const Relations: any = [];
  725. this.Nodes.forEach((e) => {
  726. Nodes.push(e.toData());
  727. });
  728. this.Markers.forEach((e) => {
  729. Markers.push(e.toData());
  730. });
  731. this.Relations.forEach((e) => {
  732. Relations.push(e.toData());
  733. });
  734. let element = {
  735. Nodes,
  736. Markers,
  737. Relations,
  738. };
  739. return element;
  740. }
  741. /**
  742. * 锁住item
  743. */
  744. lockItem(): void {}
  745. /**
  746. * 执行取消操作
  747. */
  748. redo(): void {
  749. this.undoStack.undo();
  750. }
  751. /**
  752. * 执行重做操作执行
  753. */
  754. undo(): void {
  755. this.undoStack.redo();
  756. }
  757. /**
  758. * 完成事件创建的回调函数
  759. */
  760. finishCreated(item: any) {
  761. this.setCmd = "choice";
  762. this.focusItem = item;
  763. this.selectContainer.toggleItem(item);
  764. }
  765. ////////////////////////
  766. // 以下为鼠标键盘操作事件
  767. onMouseDown(event: SMouseEvent): any {
  768. console.log("onMouseDown");
  769. // 判断是否开启吸附,并且有吸附的点
  770. if (this.isAbsorbing && this.highLight && this.highLight.visible) {
  771. event.x = this.highLight.point.x;
  772. event.y = this.highLight.point.y;
  773. }
  774. if (this.grabItem) {
  775. if (this.grabItem instanceof TipelineItem) {
  776. this.setTipeEndanchor(event);
  777. return true;
  778. }
  779. return this.grabItem.onMouseDown(event);
  780. }
  781. switch (this.cmd) {
  782. // 画设备
  783. case "equipment":
  784. this.addEquipment(event);
  785. break;
  786. case "baseLine":
  787. this.addLine(event);
  788. break;
  789. case "baseText":
  790. this.addTextItem(event);
  791. break;
  792. case "baseImage":
  793. this.addImgItem(event);
  794. break;
  795. case "Zone":
  796. if (!this.isSelecting) {
  797. this.addPolygonItem(event);
  798. } else {
  799. // 点选创建区域
  800. return super.onMouseDown(event);
  801. }
  802. break;
  803. case "Image":
  804. this.addIconItem(event);
  805. break;
  806. case "Line":
  807. this.addTipelineItem(event);
  808. break;
  809. default:
  810. return super.onMouseDown(event);
  811. }
  812. }
  813. onMouseMove(event: SMouseEvent): boolean {
  814. if (this.isAbsorbing) {
  815. if (!this.highLight) {
  816. this.highLight = new HighlightItem(null);
  817. this.addItem(this.highLight);
  818. }
  819. this.highLight.visible = false;
  820. this.absorbSpace(event);
  821. }
  822. return super.onMouseMove(event);
  823. }
  824. /**
  825. * 键盘事件
  826. *
  827. * @param event 事件参数
  828. * @return boolean
  829. */
  830. onKeyDown(event: KeyboardEvent): any {
  831. if (this.grabItem) {
  832. this.grabItem.onKeyDown(event);
  833. if (event.code == "Escape") {
  834. const item = this.grabItem;
  835. this.grabItem = null;
  836. this.removeItem(item);
  837. if (this.view) {
  838. this.view.update();
  839. }
  840. this.setCmd = "choice";
  841. }
  842. }
  843. // if (event.key == "Enter") {
  844. // this.cmd = 0
  845. // }
  846. return false;
  847. }
  848. /**
  849. * 设置结束锚点
  850. *
  851. */
  852. setTipeEndanchor(event: SMouseEvent): void {
  853. if (this.grabItem instanceof TipelineItem) {
  854. if (this.grabItem.status == SItemStatus.Create) {
  855. const anc = this.clickIsAnchor(event);
  856. if (anc) {
  857. const p = anc.mapToScene(0, 0);
  858. anc.isConnected = true;
  859. event.x = p.x;
  860. event.y = p.y;
  861. if (this.grabItem.pointList.length) {
  862. this.grabItem.endAnchor = anc;
  863. anc.parent?.connect("changePos", this.grabItem, this.grabItem.changePos);
  864. }
  865. this.grabItem.anchor2ID = anc.id;
  866. this.grabItem.node2Id = anc.parent.id;
  867. this.grabItem.onMouseDown(event);
  868. this.grabItem.status = SItemStatus.Normal;
  869. this.finishCreated(this.grabItem);
  870. return;
  871. }
  872. }
  873. this.grabItem.onMouseDown(event);
  874. }
  875. }
  876. /**
  877. * 划线时点击位置是否是锚点
  878. *
  879. * @param event 事件
  880. * @param len 限制距离
  881. * @return 点击的锚点
  882. * */
  883. clickIsAnchor(event: SMouseEvent): SAnchorItem | null {
  884. let minAnchor = null;
  885. let len: number = -1;
  886. this.Nodes.forEach((image) => {
  887. if (image.anchorList && image.anchorList.length) {
  888. image.anchorList.forEach((anchor) => {
  889. let anchorPoint = anchor.mapToScene(0, 0);
  890. let dis = SMathUtil.pointDistance(event.x, event.y, anchorPoint.x, anchorPoint.y);
  891. if (len < 0) {
  892. len = anchor.sceneDis;
  893. }
  894. if (dis < len) {
  895. minAnchor = anchor;
  896. len = dis;
  897. }
  898. });
  899. }
  900. });
  901. console.log("-----------------------");
  902. console.log(minAnchor);
  903. console.log("-----------------------");
  904. return minAnchor;
  905. }
  906. /**
  907. * 划线时点击位置是在文本,图片,,区域内
  908. *
  909. * @param event 事件
  910. * @return 点击的item
  911. * */
  912. clickIsItem(event: SMouseEvent): SGraphItem | null {
  913. let minIten = null;
  914. let len: number = -1;
  915. let itemList = this.Nodes.concat(this.Markers);
  916. itemList.forEach((item) => {
  917. if (
  918. item instanceof STextMarkerItem ||
  919. item instanceof SImageMarkerItem ||
  920. item instanceof SZoneLegendItem ||
  921. item instanceof SFHFQZoneLegendItem ||
  922. item instanceof SSCPZZoneLegendItem
  923. ) {
  924. let scenePoint = item.mapFromScene(event.x, event.y);
  925. if (item.contains(scenePoint.x, scenePoint.y)) {
  926. let dis = SMathUtil.pointDistance(scenePoint.x, scenePoint.y, item.boundingRect().center().x, item.boundingRect().center().y);
  927. if (len < 0) {
  928. minIten = item;
  929. len = dis;
  930. }
  931. if (dis < len) {
  932. minIten = item;
  933. len = dis;
  934. }
  935. }
  936. }
  937. });
  938. console.log("-----------------------");
  939. console.log(minIten);
  940. console.log("-----------------------");
  941. return minIten;
  942. }
  943. /**
  944. * 点是否在吸附区域内
  945. *
  946. * @param p 要判断的点
  947. * @param minX 空间区域
  948. * @param minY 空间区域
  949. * @param maxX 空间区域
  950. * @param maxY 空间区域
  951. */
  952. static isPointInAbsorbArea(p: SPoint, minX: number, maxX: number, minY: number, maxY: number): boolean {
  953. let rect = new SRect(minX - 1000, minY - 1000, maxX - minX + 2000, maxY - minY + 2000);
  954. return rect.contains(p.x, p.y);
  955. } // Function isPointInAbsorbArea()
  956. /**
  957. * 吸附空间
  958. *
  959. * @param event 鼠标事件对象
  960. * @return boolean 是否找到吸附的对象
  961. */
  962. absorbSpace(event: SMouseEvent): boolean {
  963. if (!this.highLight) {
  964. return false;
  965. }
  966. let absorbLen = 1000;
  967. if (this.view) {
  968. absorbLen = 10 / this.view.scale;
  969. }
  970. let P = this.absorbSpacePoint(event, absorbLen);
  971. if (P.Point) {
  972. this.highLight.distance = P.MinDis;
  973. this.highLight.point = new SPoint(P.Point.X, -P.Point.Y);
  974. this.highLight.visible = true;
  975. return true;
  976. } else {
  977. let L = this.absorbSpaceLine(event, absorbLen);
  978. if (L.Line && L.Point) {
  979. this.highLight.distance = L.MinDis;
  980. this.highLight.point = L.Point;
  981. this.highLight.line = L.Line;
  982. this.highLight.visible = true;
  983. return true;
  984. }
  985. return false;
  986. }
  987. } // Function absorbSpace()
  988. /**
  989. * 吸附空间点
  990. *
  991. * @param event 鼠标事件对象
  992. * @param absorbLen 吸附距离
  993. * @return MinDis 吸附的点
  994. */
  995. absorbSpacePoint(event: SMouseEvent, absorbLen: number): MinDis {
  996. let minPointDis = Number.MAX_SAFE_INTEGER;
  997. let Point;
  998. this.spaceList.map((space): void => {
  999. if (EditScence.isPointInAbsorbArea(new SPoint(event.x, event.y), space.minX, space.maxX, space.minY, space.maxY)) {
  1000. space.data.OutLine.forEach((item): void => {
  1001. let minDis = SMathUtil.getMinDisPoint(new SPoint(event.x, event.y), item);
  1002. if (minDis && minDis.MinDis < absorbLen && minDis.MinDis < minPointDis) {
  1003. minPointDis = minDis.MinDis;
  1004. Point = minDis.Point;
  1005. }
  1006. });
  1007. }
  1008. });
  1009. return {
  1010. MinDis: minPointDis,
  1011. Point: Point,
  1012. };
  1013. } // Function absorbSpacePoint()
  1014. /**
  1015. * 吸附空间线
  1016. *
  1017. * @param event 鼠标事件对象
  1018. * @param absorbLen 吸附距离
  1019. * @return PointToLine 吸附的线
  1020. */
  1021. absorbSpaceLine(event: SMouseEvent, absorbLen: number): PointToLine {
  1022. let minPointDis = Number.MAX_SAFE_INTEGER;
  1023. let Point, Line;
  1024. this.spaceList.forEach((space): void => {
  1025. if (EditScence.isPointInAbsorbArea(new SPoint(event.x, event.y), space.minX, space.maxX, space.minY, space.maxY)) {
  1026. space.data.OutLine.forEach((item): void => {
  1027. let minDisLine = SMathUtil.getMinDisLine(new SPoint(event.x, event.y), item);
  1028. if (minDisLine && minDisLine.MinDis < absorbLen && minDisLine.MinDis < minPointDis) {
  1029. minPointDis = minDisLine.MinDis;
  1030. Point = minDisLine.Point;
  1031. Line = minDisLine.Line;
  1032. }
  1033. });
  1034. }
  1035. });
  1036. return {
  1037. MinDis: minPointDis,
  1038. Point: Point,
  1039. Line: Line,
  1040. };
  1041. } // Function absorbSpaceLine()
  1042. /**
  1043. * 修改背景图片
  1044. * @param {string} url 背景图像地址
  1045. */
  1046. setBackgroundImgItem(url: string): void {
  1047. let imgItem = new SImageItem(null);
  1048. if (this.backgroundImgItem) {
  1049. this.backgroundImgItem.parent = null;
  1050. }
  1051. this.backgroundImgItem = imgItem;
  1052. imgItem.showType = SImageShowType.AutoFit;
  1053. imgItem.url = url;
  1054. console.log(url);
  1055. imgItem.zOrder = -1000;
  1056. this.addItem(imgItem);
  1057. }
  1058. /**
  1059. * 添加设备类
  1060. * @param
  1061. */
  1062. addEquipment(event: SMouseEvent): void {
  1063. let equipmentItem = new SEquipmentItem(null, { 名称: "设备1", 温度: "25℃" });
  1064. // equipmentItem.moveable = true;
  1065. equipmentItem.moveTo(event.x, event.y);
  1066. this.addItem(equipmentItem);
  1067. this.grabItem = equipmentItem;
  1068. this.focusItem = equipmentItem;
  1069. this.cmd = "choice";
  1070. }
  1071. }