123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- /*
- * *********************************************************************************************************************
- *
- * !!
- * .F88X
- * X8888Y
- * .}888888N;
- * i888888N; .:! .I$WI:
- * R888888I .'N88~ i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
- * .R888888I .;N8888~ .X8' "8I.!,/8" !%NY8`"8I8~~8>,88I
- * +888888N; .8888888Y "&&8Y.}8,
- * ./888888N; .R888888Y .'}~ .>}'.`+> i}! "i' +/' .'i~ !11,.:">, .~]! .i}i
- * ~888888%: .I888888l .]88~`1/iY88Ii+1'.R$8$8]"888888888> Y8$ W8E X8E W8888'188Il}Y88$*
- * 18888888 E8888881 .]W%8$`R8X'&8%++N8i,8N%N8+l8%` .}8N:.R$RE%N88N%N$K$R 188,FE$8%~Y88I
- * .E888888I .i8888888' .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
- * 8888888I .,N888888~ ~88i"8W,!N8*.I88.}888%F,i$88"F88" 888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
- * i888888N' I888Y ]88;/EX*IFKFK88X K8R .l8W 88Y ~88}'88E&%8W.X8N``]88!.$8K .:W8I
- * .i888888N; I8Y .&8$ .X88! i881.:%888>I88 ;88] +88+.';;;;:.Y88X 18N.,88l .+88/
- * .:R888888I
- * .&888888I Copyright (c) 2009-2020. 博锐尚格科技股份有限公司
- * ~8888'
- * .!88~ All rights reserved.
- *
- * ****/
- import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
- import { SGraphEdit } from "@persagy-web/edit";
- import { SMouseEvent, SObject } from "@persagy-web/base/lib";
- import { SGraphAddCommand, SGraphGroupMoveCommand, SGraphItem, SGraphMoveCommand, SGraphPropertyCommand, SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
- import { rgbaNum } from "@persagy-web/big-edit/lib/until";
- // 引入命令
- import { SColor, SFont, SArrowStyleType, SPoint } from '@persagy-web/draw/lib';
- import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint, SBaseBtns } from "./"
- import { ItemOrder, SItemStatus } from '@persagy-web/big/lib';
- /**
- * 拓扑图场景类
- *
- * @author 韩耀龙 <han_yao_long@163.com>
- */
- export class PTopoScene extends SBaseEditScene {
- /** 图例数据 */
- legendObj: any = null;
- /** 是否打开吸附功能 */
- isAdsorb:boolean = false;
- // 静态服务器路径
- public imgServeUrl: string = '';
- // 联通方式
- public uninType: object = {
- wantou: '',
- santong: '',
- sitong: ''
- }
- constructor() {
- super()
- // 选择绑定选额item事件
- this.selectContainer.connect("listChange", this, this.listChange);
- this.selectContainer.connect("groupMove", this, this.groupMove);
- this.undoStack.connect("cmdListChange", this, this.stackChange)
- }
- /**
- * 改变 view 背景色
- *
- * @param val 颜色值
- */
- changeBackgroundColor(val: any) {
- if (!this.view) return;
- if (val) {
- if (val.includes('#')) {
- this.view.backgroundColor = new SColor(val)
- } else {
- const colorlist: any = rgbaNum(val);
- if (!colorlist) return
- this.view.backgroundColor = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255)
- }
- this.view.update()
- }
- }
- /**
- * 选中返回的选中 item 回调方法
- *
- * @param event 鼠标事件参数
- */
- listChange(list: any): void {
- const itemList: any = []
- list.itemList.forEach((item: any) => {
- if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
- itemList.push(item)
- }
- })
- this.emitChoice(itemList);
- }
- /**
- * 选中返回的选中 item 回调方法(用于场景的外部调用)
- *
- * @param list 选中的 item 数组
- */
- emitChoice(list: any) {
- }
- /**
- * 鼠标左键按下
- *
- * @param event 鼠标事件参数
- */
- onMouseDown(event: SMouseEvent): any {
- this.vueOnMouseDown(event) //外部调用
- if (this.grabItem) {
- if (this.grabItem instanceof SBasePipe && this.isAdsorb) {
- this.setTipeEndanchor(event)
- return true;
- }
- return this.grabItem.onMouseDown(event);
- }
- if (this.editCmd == "EditBaseLine") {
- const item = this.addPolyLineArrow(event);
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBasePolyLine") {
- this.addPolyLine(event);
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBasetext") {
- this.addTextItem(event);
- this.clearCmdStatus();
- } else if (this.editCmd == "BaseExplain") {
- this.addExplainItem(event);
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseImage") {
- this.addImageItem(event)
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBasePolygon") { //
- const item = this.addPolygonItem(event);
- item.moveable = true;
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseRect") { // 设置层级与多边形一致
- const item = this.addRectItem(event)
- item.zOrder = ItemOrder.polygonOrder;
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseTriangle") {
- this.addTriangleItem(event)
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseCircle") { // 设置层级与多边形一致
- const item = this.addCircleItem(event)
- item.zOrder = ItemOrder.polygonOrder
- item.moveable = true;
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseArrows") { // 设置层级与多边形一致
- const item = this.addPolygonArrow(event)
- item.zOrder = ItemOrder.polygonOrder
- item.moveable = true;
- this.clearCmdStatus();
- } else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
- this.addPipeUninTool(event, this.editCmd)
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBasePipe") {
- this.addBasePipe(event, this.legendObj);
- this.clearCmdStatus();
- } else if (this.editCmd == "equation") {
- // 添加公式
- this.addEquation(event, this.editCmd);
- this.clearCmdStatus();
- } else if (this.editCmd == "infoPoint") {
- // 添加信息点
- this.addInfoPoint(event, this.editCmd);
- this.clearCmdStatus();
- } else if (this.editCmd == "EditBaseBtn") {
- // 添加基础按钮
- this.SBaseBtn(event);
- this.clearCmdStatus();
- } else if (this.editCmd == "") {
- super.onMouseDown(event);
- }
- }
- /**
- * 鼠标双击事件
- *
- * @param event 事件参数
- * @return boolean
- */
- onDoubleClick(event: SMouseEvent): boolean {
- // 如果为复制状态则双击失效
- // if (this.isCopy == "true") {
- // return true
- // }
- if (!this.isEditStatus) {
- return true
- } else {
- return super.onDoubleClick(event);
- }
- } // Function onDoubleClick()
- /**
- * 添加基本管道联通器
- *
- * @param event 鼠标事件
- * @param cmd 命令
- */
- addPipeUninTool(event: SMouseEvent, cmd: string): SBasePipeUninTool {
- const data = {
- /** 名称 */
- name: '基础管道接头',
- /** 图标 (Image),线类型 (Line) */
- type: "Line",
- /** 位置 */
- pos: { x: event.x, y: event.y },
- /** 由应用自己定义 */
- properties: {
- type: "BasePipeUninTool",
- },
- style: {
- uninToolType: cmd, //分别分二头连接器、三头连接器、四头连接器
- default: {
- strokecolor: "#c0ccda",
- width:64,
- height:64,
- zorder: ItemOrder.markOrder
- }
- }
- };
- const item = new SBasePipeUninTool(null, data);
- item.selectable = true;
- item.moveable = true;
- this.addItem(item);
- this.finishCreated(item)
- item.connect("onContextMenu", this, this.getItem);
- if (this.view) {
- this.view.update();
- }
- return item;
- }
- /**
- * 添加公式
- * @param event
- */
- addEquation(event: SMouseEvent, cmd: string): SBaseEquation {
- const data = {
- /** 名称 */
- name: '公式',
- /** 图标 */
- type: "Text",
- /** 位置 */
- pos: { x: event.x, y: event.y },
- size: { width: 0, height: 0 },
- /** 由应用自己定义 */
- properties: {
- type: "Equation" // 自定义类型用于区分mark与node
- },
- style: {
- default: {
- text: '请在右侧属性栏填写公式!',
- color: "#646c73",
- font: 14,
- backgroundcolor: "#f7f9facc",
- }
- }
- };
- const item = new SBaseEquation(null, data);
- item.moveTo(event.x, event.y);
- item.moveable = true;
- this.addItem(item);
- this.grabItem = null;
- item.connect("onContextMenu", this, this.getItem);
- this.finishCreated(item);
- return item;
- }
- /**
- * 添加信息点
- * @param event
- */
- addInfoPoint(event: SMouseEvent, cmd: string): SBaseInfoPoint {
- const data = {
- /** 名称 */
- name: '信息点',
- /** 图标 */
- type: "Text",
- /** 位置 */
- pos: { x: event.x, y: event.y },
- size: { width: 0, height: 0 },
- /** 由应用自己定义 */
- properties: {
- type: "InfoPoint" // 自定义类型用于区分mark与node
- },
- style: {
- default: {
- text: '信息点',
- color: "#646c73",
- font: 14,
- backgroundcolor: "#f7f9facc",
- }
- }
- };
- const item = new SBaseInfoPoint(null, data);
- item.moveTo(event.x, event.y);
- item.moveable = true;
- this.addItem(item);
- this.grabItem = null;
- item.connect("onContextMenu", this, this.getItem);
- this.finishCreated(item);
- return item;
- }
- /**
- * 添加按钮
- * @param event
- */
- SBaseBtn(event: SMouseEvent): SBaseBtns {
- const data = {
- /** 名称 */
- name: '按钮',
- /** 按钮 */
- type: "text",
- /** 位置 */
- pos: { x: event.x, y: event.y },
- size: { width: 60, height: 30 },
- /** 由应用自己定义 */
- properties: {
- type: "baseBtn", // 自定义类型用于区分mark与node
- bindMsg: '' //按钮绑定的信息
- },
- style: {
- default: {
- text: '按钮',
- color: "#646c73",
- font: 14,
- backgroundColor: "#427dd213",
- lineWidth: 2,
- strokeColor: '#000000'
- }
- }
- };
- const item = new SBaseBtns(null, data);
- item.moveTo(event.x, event.y);
- item.moveable = true;
- this.addItem(item);
- this.grabItem = null;
- item.connect("onContextMenu", this, this.getItem);
- this.finishCreated(item);
- return item;
- }
- /**
- * 鼠标右键事件
- *
- * @param event 鼠标事件参数
- * @returns 是否点击右键
- */
- onContextMenu(event: SMouseEvent): boolean {
- if (!super.onContextMenu(event)) {
- this.getItem(null, [event])
- }
- return true
- }
- /**
- * 修改 item 样式,数据等方法
- *
- * @param styletype string 修改样式类型
- * @param changeStyle 更改样式数据
- * @param itemList ? SGraphEdit[] 如果不传入默认使用选择器中选中得item
- */
- updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
- // 如果未传入需要修改样式的item,默认取选择器中的item
- let List = null;
- if (itemList && itemList.length) {
- List = itemList;
- } else {
- List = this.selectContainer.itemList;
- };
- let styleValue: any
- if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor" || styletype == "color") {
- const colorlist = rgbaNum(changestyle)
- styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
- } else if (styletype == "filterColor") {
- const color: any = rgbaNum(changestyle)
- 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'`
- } else if (styletype == "lineStyle") {
- styleValue = SLineStyle[changestyle]
- } else if (styletype == "begin" || styletype == "end") {
- styleValue = SArrowStyleType[changestyle]
- } else if (styletype == "font") {
- styleValue = new SFont("sans-serif", changestyle)
- } else if (styletype == "url") {
- styleValue = this.imgServeUrl + changestyle;
- // 设置default url
- List.forEach((item: SGraphEdit) => {
- item.defaultUrl = changestyle
- })
- } else if (styletype == "rotate") { // 弯头设置旋转角度
- styleValue = changestyle;
- } else if (styletype == "radius") { // 圆角折线拐角半径
- styleValue = changestyle;
- console.log(changestyle, '===========');
- } else {
- styleValue = changestyle
- }
- List.forEach((item: SGraphEdit, index: number) => {
- if (item instanceof SGraphSelectContainer) {
- return
- }
- const oldMsg = item[styletype];
- const newMsg = styleValue;
- this.undoStack.push(new SGraphPropertyCommand(this, item, styletype, oldMsg, newMsg));
- item[styletype] = styleValue;
- })
- }
- /**
- * 修改指定设备得信息点
- *
- * @param obj Object 信息点
- */
- changeEquipMsgPoint(obj: any): void {
- const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0] : null;
- if (List && List instanceof SBaseEquipment) {
- List.setMsgPoint(obj);
- }
- }
- /**
- * item 创建完成后回调
- *
- * @param event 鼠标事件参数
- */
- finishCreated(item: SGraphEdit): void {
- this.grabItem = null;
- item.status = SItemStatus.Normal;
- this.undoStack.push(new SGraphAddCommand(this, item));
- this.selectContainer.clear();
- this.selectContainer.toggleItem(item);
- }
- /**
- * 修改 cmdstatus 函数;常在在业务中调用
- */
- clearCmdStatus() {
- //do something
- }
- /**
- * 获取item (常用与场景外的调用F)
- * @param event SMouseEvent 鼠标事件
- * @param item SGraphEdit|null 返回item
- *
- */
- getItem(item: SGraphEdit | null, event: SMouseEvent[]): void {
- // do something
- }
- /**
- * 获取item (常用与场景外的调用F)
- * @param event SMouseEvent 鼠标事件
- * @param item SGraphEdit|null 返回item
- *
- */
- vueOnMouseDown(event: SMouseEvent) {
- // do something
- }
- /**
- * 设置 item 状态
- */
- setItemStatus() {
- const List = this.selectContainer.itemList[0];
- if (List && List instanceof SGraphEdit) {
- if (List.status == SItemStatus.Normal) {
- List.status = SItemStatus.Edit;
- this.grabItem = List;
- } else {
- List.status = SItemStatus.Normal;
- this.grabItem = null
- }
- }
- }
- /**
- * 获取item (常用与场景外的调用F)
- *
- * @params isAll 是否为全部item数据
- * @return obj 返回保存的数据接口
- */
- save(isAll: boolean = true) {
- if (!this.view) return;
- const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool','baseBtn',"Equation"];
- const NodeType: string[] = ['BaseEquipment'];
- const RelationType: string[] = ["BasePipe"];
- const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
- const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
- const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
- let nodeList;
- if (isAll) {
- nodeList = this.root.children;
- } else {
- nodeList = this.selectContainer.itemList;
- };
- nodeList.forEach(item => {
- if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
- // 添加节点数据
- if (item.data && Marktype.includes(item.data.properties.type)) {
- markers.push(item.toData())
- }
- if (item.legendData && NodeType.includes(item.legendData.properties.type)) {
- nodes.push(item.toData())
- }
- if (item.relationData && RelationType.includes(item.relationData.properties.type)) {
- relations.push(item.toData())
- }
- }
- });
- return {
- markers,
- nodes,
- relations
- }
- }
- /**
- * 粘贴
- */
- paste(): void {
- const copyList = JSON.parse(JSON.stringify(this.copyString));
- const parserData = new PTopoParser();
- const graphItemList: SGraphEdit[] = [];
- parserData.parseData(copyList);
- parserData.markers.forEach((item: SGraphEdit) => {
- item.selectable = true;
- item.moveable = true;
- if (this.view) {
- item.pos.x += 10 / this.view.scale
- item.pos.y += 10 / this.view.scale
- }
- this.addItem(item);
- graphItemList.push(item);
- });
- this.addListCommand(graphItemList);
- this.view ? this.view.update() : '';
- }
- /**
- * 覆盖底层添加 item 方法,增加绑定移动事件
- */
- addItem(item: SGraphItem): void {
- super.addItem(item);
- if (!(item instanceof SGraphSelectContainer)) {
- item.connect('moveEnd', this, this.onItemMove.bind(this));
- }
- }
- /**
- * 添加移动命令到命令栈
- */
- onItemMove(item: SGraphItem, arg: SPoint[]): void {
- this.undoStack.push(new SGraphMoveCommand(this, item, arg[0], arg[1]));
- }
- /**
- * 接收选择器抛出的批量移动的事件
- *
- * @param sender 事件发送者
- * @param args 返回的参数
- */
- groupMove(sender: SGraphItem, args: []): void {
- if (args.length > 2) {
- // @ts-ignore
- const itemList = args[0] as SGraphItem[];
- // @ts-ignore
- const oldList = args[1] as SPoint[];
- // @ts-ignore
- const newList = args[2] as SPoint[];
- this.undoStack.push(new SGraphGroupMoveCommand(this, itemList, oldList, newList))
- }
- }
- /**
- * 命令栈当前命令索引发生变化
- *
- * @param sender 事件发送者
- */
- stackChange(sender: SObject): void {
- this.selectContainer.getSize()
- }
- }
|