|
@@ -1,5 +1,5 @@
|
|
|
-import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment, SBasePipeUninTool, SBasePipe } from "./../big-edit";
|
|
|
-import { SBasePolylineEdit, SBaseRectEdit, SBaseLineEdit, SBaseTextEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit, SBasePolygonEdit } from "./../edit";
|
|
|
+import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment, SBasePipeUninTool, SBasePipe, SBaseArrow } from "./../big-edit";
|
|
|
+import { SBaseRectEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit, SBasePolygonEdit } from "./../edit";
|
|
|
import { SPersagyImageEdit } from "./"
|
|
|
import { SMouseEvent } from "@persagy-web/base/lib";
|
|
|
import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
|
|
@@ -48,14 +48,12 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
onMouseDown(event: SMouseEvent): any {
|
|
|
this.vueOnMouseDown(event)
|
|
|
if (this.editCmd == "EditBaseLine") {
|
|
|
-
|
|
|
- this.addPolyLine(event);
|
|
|
+ this.addPolyLineArrow(event);
|
|
|
this.clearCmdStatus();
|
|
|
} else if (this.editCmd == "EditBasePolyLine") {
|
|
|
this.addPolyLine(event);
|
|
|
this.clearCmdStatus();
|
|
|
- }
|
|
|
- else if (this.editCmd == "EditBasetext") {
|
|
|
+ } else if (this.editCmd == "EditBasetext") {
|
|
|
this.addTextItem(event);
|
|
|
this.clearCmdStatus();
|
|
|
}
|
|
@@ -110,464 +108,6 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
}
|
|
|
return true
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- * 新增基础类直线
|
|
|
- *
|
|
|
- * @param event 鼠标事件参数
|
|
|
- */
|
|
|
- addLine(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础直线',
|
|
|
-
|
|
|
- type: "Line",
|
|
|
-
|
|
|
- scale: { x: 1, y: 1, z: 1 },
|
|
|
-
|
|
|
- rolate: { x: 0, y: 0, z: 0 },
|
|
|
-
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "BaseLine"
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- line: [{ x: event.x, y: event.y }],
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const lineItem = new SBaseLineEdit(null, data);
|
|
|
- lineItem.status = SItemStatus.Create;
|
|
|
- this.addItem(lineItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, lineItem));
|
|
|
- lineItem.selectable = true;
|
|
|
- this.grabItem = lineItem;
|
|
|
- lineItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- lineItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 新增基础类文本
|
|
|
- *
|
|
|
- * @param event 鼠标事件参数
|
|
|
- */
|
|
|
- addTextItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础文本',
|
|
|
-
|
|
|
- type: "Text",
|
|
|
-
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
- size: { width: 0, height: 0 },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "BaseText"
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- text: '请在右侧属性栏输入文字!',
|
|
|
- color: "#646c73",
|
|
|
- font: 14,
|
|
|
- backgroundcolor: "#f7f9facc",
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBaseTextEdit(null, data);
|
|
|
- item.moveTo(event.x, event.y);
|
|
|
- item.moveable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.grabItem = null;
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- this.finishCreated(item);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 新增基础类注释
|
|
|
- *
|
|
|
- * @param event 鼠标事件参数
|
|
|
- */
|
|
|
- addExplainItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础注释文本',
|
|
|
-
|
|
|
- type: "Text",
|
|
|
-
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "BaseExplain",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- text: '请在右侧属性栏输入文字!',
|
|
|
- color: "#646c73",
|
|
|
- font: 14,
|
|
|
- backgroundcolor: "#f7f9facc",
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBaseExpainEdit(null, data);
|
|
|
- item.moveTo(event.x, event.y);
|
|
|
- item.selectable = true;
|
|
|
- item.moveable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.grabItem = null;
|
|
|
- this.finishCreated(item);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 新增基础类图片
|
|
|
- *
|
|
|
- * @param event 鼠标事件参数
|
|
|
- */
|
|
|
- addImageItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础图片',
|
|
|
- num: 1,
|
|
|
-
|
|
|
- type: "Image",
|
|
|
-
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "BaseImage",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- strokecolor: "#c0ccda",
|
|
|
- url: '',
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SPersagyImageEdit(null, data);
|
|
|
- item.selectable = true;
|
|
|
- item.moveable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.Markers.push(item);
|
|
|
- this.finishCreated(item);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 添加基本矩形item
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addRectItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '基础矩形',
|
|
|
-
|
|
|
- type: "Zone",
|
|
|
-
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BaseRect",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- line: [{ x: event.x, y: event.y }],
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const rectItem = new SBaseRectEdit(null, data);
|
|
|
- rectItem.status = SItemStatus.Create;
|
|
|
- this.addItem(rectItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, rectItem));
|
|
|
- rectItem.selectable = true;
|
|
|
- rectItem.moveable = true;
|
|
|
- this.grabItem = rectItem;
|
|
|
- rectItem.isTransform = true
|
|
|
- rectItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- rectItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 添加基本三角形item
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addTriangleItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '基础三角形',
|
|
|
- type: "Zone",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BaseTriangle",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- line: [{ x: event.x, y: event.y }],
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const triangleItem = new SBaseTriangleEdit(null, data);
|
|
|
- triangleItem.status = SItemStatus.Create;
|
|
|
- this.addItem(triangleItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, triangleItem));
|
|
|
- triangleItem.selectable = true;
|
|
|
- triangleItem.moveable = true;
|
|
|
- this.grabItem = triangleItem;
|
|
|
- triangleItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- triangleItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 添加基本箭头item
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addArrowsItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '基础箭头',
|
|
|
- type: "Zone",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BaseArrow",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- line: [{ x: event.x, y: event.y }],
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const arrowItem = new SBaseArrowEdit(null, data);
|
|
|
- arrowItem.status = SItemStatus.Create;
|
|
|
- arrowItem.moveable = true;
|
|
|
- this.addItem(arrowItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, arrowItem));
|
|
|
- arrowItem.selectable = true;
|
|
|
- this.grabItem = arrowItem;
|
|
|
- arrowItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- arrowItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 添加基本圆
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addCircleItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '基础圆形',
|
|
|
- type: "Zone",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BaseCircle",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- },
|
|
|
- line: [{ x: event.x, y: event.y }],
|
|
|
- }
|
|
|
- }
|
|
|
- const circleItem = new SBaseCircleEdit(null, data);
|
|
|
- circleItem.status = SItemStatus.Create;
|
|
|
- circleItem.selectable = true;
|
|
|
- this.grabItem = circleItem;
|
|
|
- this.addItem(circleItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, circleItem));
|
|
|
- circleItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- circleItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 添加基本多边形
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addPolygonItem(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '基础多边形',
|
|
|
- type: "Zone",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BasePolygon",
|
|
|
- },
|
|
|
- style: {
|
|
|
- outLine: [{ x: event.x, y: event.y }],
|
|
|
- default: {
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const polygonItem = new SBasePolygonEdit(null, data);
|
|
|
- polygonItem.status = SItemStatus.Create;
|
|
|
- polygonItem.selectable = true;
|
|
|
- this.addItem(polygonItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, polygonItem));
|
|
|
- this.grabItem = polygonItem;
|
|
|
- polygonItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- polygonItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 新增折线
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addPolyLine(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
- name: '管道',
|
|
|
- type: "line",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BasePolyline",
|
|
|
- },
|
|
|
- style: {
|
|
|
- outLine: [{ x: event.x, y: event.y }],
|
|
|
- default: {
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBasePolylineEdit(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
- item.selectable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.grabItem = item;
|
|
|
- item.connect("finishCreated", this, this.finishCreated);
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- * 添加基本设备item
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addEuqipment(event: SMouseEvent): void {
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础设备',
|
|
|
- num: 1,
|
|
|
- size: { width: 50, height: 50 },
|
|
|
-
|
|
|
- type: "Image",
|
|
|
-
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "baseEquipment",
|
|
|
- },
|
|
|
- style: {
|
|
|
- default: {
|
|
|
- strokecolor: "#c0ccda",
|
|
|
- url: require('./../../../assets/images/svg.svg'),
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const circleItem = new SBaseEquipment(null, data);
|
|
|
- circleItem.status = SItemStatus.Create;
|
|
|
- this.addItem(circleItem);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, circleItem));
|
|
|
- circleItem.selectable = true;
|
|
|
- this.grabItem = circleItem;
|
|
|
- circleItem.connect("finishCreated", this, this.finishCreated);
|
|
|
- circleItem.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- * 添加基本管道联通器
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- * @param cmd 命令
|
|
|
- */
|
|
|
- addPipeUninTool(event: SMouseEvent, cmd: string): void {
|
|
|
- const cmdList = {
|
|
|
- 'wantou': 2,
|
|
|
- 'santong': 3,
|
|
|
- 'sitong': 4,
|
|
|
- }
|
|
|
- const data = {
|
|
|
-
|
|
|
- name: '基础管道接头',
|
|
|
-
|
|
|
- type: "Image",
|
|
|
-
|
|
|
- pos: { x: event.x, y: event.y },
|
|
|
-
|
|
|
- properties: {
|
|
|
- type: "BasePipeUninTool",
|
|
|
- },
|
|
|
- style: {
|
|
|
- uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,
|
|
|
- default: {
|
|
|
- strokecolor: "#c0ccda",
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBasePipeUninTool(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
- item.selectable = true;
|
|
|
- item.moveable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.grabItem = item;
|
|
|
- item.connect("finishCreated", this, this.finishCreated);
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 新增管道
|
|
|
- *
|
|
|
- * @param event 鼠标事件
|
|
|
- */
|
|
|
- addBasePipe(event: SMouseEvent) {
|
|
|
- const data = {
|
|
|
- name: '管道',
|
|
|
- type: "line",
|
|
|
- pos: { x: 0, y: 0 },
|
|
|
- properties: {
|
|
|
- type: "BasePolyline",
|
|
|
- },
|
|
|
- style: {
|
|
|
- outLine: [{ x: event.x, y: event.y }],
|
|
|
- default: {
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const item = new SBasePipe(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
- item.selectable = true;
|
|
|
- this.addItem(item);
|
|
|
- this.undoStack.push(new SGraphAddCommand(this, item));
|
|
|
- this.grabItem = item;
|
|
|
- item.connect("finishCreated", this, this.finishCreated);
|
|
|
- item.connect("onContextMenu", this, this.getItem);
|
|
|
- if (this.view) {
|
|
|
- this.view.update();
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
|
|
|
* 修改 item 样式,数据等方法
|