|
@@ -45,49 +45,47 @@ import { SItemStatus, ItemOrder } from "@persagy-web/big";
|
|
import { Marker } from "../type/Marker";
|
|
import { Marker } from "../type/Marker";
|
|
import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
|
|
import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
|
|
import { SGraphEdit } from ".."
|
|
import { SGraphEdit } from ".."
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 编辑多边形
|
|
* 编辑多边形
|
|
*
|
|
*
|
|
- * @author 韩耀龙
|
|
|
|
|
|
+ * @author 韩耀龙 <han_yao_long@163.com>
|
|
*/
|
|
*/
|
|
export class SBasePolygonEdit extends SGraphEdit {
|
|
export class SBasePolygonEdit extends SGraphEdit {
|
|
- /** X坐标最小值 */
|
|
|
|
|
|
+ /** X 坐标最小值 */
|
|
private minX = Number.MAX_SAFE_INTEGER;
|
|
private minX = Number.MAX_SAFE_INTEGER;
|
|
- /** X坐标最大值 */
|
|
|
|
|
|
+ /** X 坐标最大值 */
|
|
private maxX = Number.MIN_SAFE_INTEGER;
|
|
private maxX = Number.MIN_SAFE_INTEGER;
|
|
- /** Y坐标最小值 */
|
|
|
|
|
|
+ /** Y 坐标最小值 */
|
|
private minY = Number.MAX_SAFE_INTEGER;
|
|
private minY = Number.MAX_SAFE_INTEGER;
|
|
- /** Y坐标最大值 */
|
|
|
|
|
|
+ /** Y 坐标最大值 */
|
|
private maxY = Number.MIN_SAFE_INTEGER;
|
|
private maxY = Number.MIN_SAFE_INTEGER;
|
|
-
|
|
|
|
/** 图例节点对象数据 */
|
|
/** 图例节点对象数据 */
|
|
data: Marker;
|
|
data: Marker;
|
|
/** 轮廓线坐标 */
|
|
/** 轮廓线坐标 */
|
|
private pointList: SPoint[] = [];
|
|
private pointList: SPoint[] = [];
|
|
- // 获取当前状态
|
|
|
|
get getPointList(): SPoint[] {
|
|
get getPointList(): SPoint[] {
|
|
return this.pointList;
|
|
return this.pointList;
|
|
- }
|
|
|
|
- // 编辑当前状态
|
|
|
|
|
|
+ } // Get getPointList
|
|
set setPointList(arr: SPoint[]) {
|
|
set setPointList(arr: SPoint[]) {
|
|
this.pointList = arr;
|
|
this.pointList = arr;
|
|
this.update();
|
|
this.update();
|
|
- }
|
|
|
|
|
|
+ } // Set getPointList
|
|
|
|
|
|
/** 当前状态 */
|
|
/** 当前状态 */
|
|
protected _status: number = SItemStatus.Normal;
|
|
protected _status: number = SItemStatus.Normal;
|
|
get status(): SItemStatus {
|
|
get status(): SItemStatus {
|
|
return this._status;
|
|
return this._status;
|
|
- }
|
|
|
|
|
|
+ } // Get status
|
|
set status(value: SItemStatus) {
|
|
set status(value: SItemStatus) {
|
|
this._status = value;
|
|
this._status = value;
|
|
this.undoStack.clear();
|
|
this.undoStack.clear();
|
|
this.update();
|
|
this.update();
|
|
- }
|
|
|
|
|
|
+ } // Set status
|
|
|
|
|
|
/** 边框颜色 */
|
|
/** 边框颜色 */
|
|
_strokeColor: SColor = SColor.Black;
|
|
_strokeColor: SColor = SColor.Black;
|
|
- /** 画笔颜色 */
|
|
|
|
|
|
+ /** 画笔颜色 */
|
|
get strokeColor(): SColor {
|
|
get strokeColor(): SColor {
|
|
return this._strokeColor;
|
|
return this._strokeColor;
|
|
} // Get strokeColor
|
|
} // Get strokeColor
|
|
@@ -116,7 +114,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.update();
|
|
this.update();
|
|
} // Set lineStyle
|
|
} // Set lineStyle
|
|
|
|
|
|
- /** 边框的宽 只可输入像素宽 */
|
|
|
|
|
|
+ /** 边框的宽只可输入像素宽 */
|
|
_lineWidth: number = 1;
|
|
_lineWidth: number = 1;
|
|
get lineWidth(): number {
|
|
get lineWidth(): number {
|
|
return this._lineWidth;
|
|
return this._lineWidth;
|
|
@@ -136,11 +134,11 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
private curPoint: null | SPoint = null;
|
|
private curPoint: null | SPoint = null;
|
|
/** 灵敏像素 */
|
|
/** 灵敏像素 */
|
|
private len: number = 10;
|
|
private len: number = 10;
|
|
- /** 场景像素 内部将灵敏像素换算为场景实际距离 */
|
|
|
|
|
|
+ /** 场景像素内部将灵敏像素换算为场景实际距离 */
|
|
private scenceLen: number = 15;
|
|
private scenceLen: number = 15;
|
|
/** 场景像素 */
|
|
/** 场景像素 */
|
|
private isAlt: boolean = false;
|
|
private isAlt: boolean = false;
|
|
- /** undo/redo堆栈 */
|
|
|
|
|
|
+ /** undo/redo 堆栈 */
|
|
protected undoStack: SUndoStack = new SUndoStack();
|
|
protected undoStack: SUndoStack = new SUndoStack();
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -171,20 +169,24 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.setPointList = setPointList;
|
|
this.setPointList = setPointList;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
// 样式相关
|
|
// 样式相关
|
|
if (data.style.default) {
|
|
if (data.style.default) {
|
|
// 颜色
|
|
// 颜色
|
|
if (data.style.default.strokeColor) {
|
|
if (data.style.default.strokeColor) {
|
|
this.strokeColor = new SColor(data.style.default.strokeColor)
|
|
this.strokeColor = new SColor(data.style.default.strokeColor)
|
|
}
|
|
}
|
|
|
|
+
|
|
// 线宽
|
|
// 线宽
|
|
if (data.style.default.lineWidth) {
|
|
if (data.style.default.lineWidth) {
|
|
this.lineWidth = data.style.default.lineWidth
|
|
this.lineWidth = data.style.default.lineWidth
|
|
}
|
|
}
|
|
|
|
+
|
|
// 线样式
|
|
// 线样式
|
|
if (data.style.default.lineStyle) {
|
|
if (data.style.default.lineStyle) {
|
|
this.lineStyle = data.style.default.lineStyle
|
|
this.lineStyle = data.style.default.lineStyle
|
|
}
|
|
}
|
|
|
|
+
|
|
// 填充色
|
|
// 填充色
|
|
if (data.style.default.fillColor) {
|
|
if (data.style.default.fillColor) {
|
|
this.fillColor = new SColor(data.style.default.fillColor)
|
|
this.fillColor = new SColor(data.style.default.fillColor)
|
|
@@ -229,10 +231,10 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 储存新的多边形顶点
|
|
* 储存新的多边形顶点
|
|
*
|
|
*
|
|
- * @param x 点位得x坐标
|
|
|
|
- * @param y 点位得y坐标
|
|
|
|
|
|
+ * @param x 点位得 x 坐标
|
|
|
|
+ * @param y 点位得 y 坐标
|
|
* @param i 储存所在索引
|
|
* @param i 储存所在索引
|
|
- * @return SPoint。添加的顶点
|
|
|
|
|
|
+ * @return 添加的顶点
|
|
*/
|
|
*/
|
|
insertPoint(x: number, y: number, i: number | null = null): SPoint {
|
|
insertPoint(x: number, y: number, i: number | null = null): SPoint {
|
|
const point = new SPoint(x, y);
|
|
const point = new SPoint(x, y);
|
|
@@ -241,6 +243,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
} else {
|
|
} else {
|
|
this.pointList.splice(i, 0, point);
|
|
this.pointList.splice(i, 0, point);
|
|
}
|
|
}
|
|
|
|
+
|
|
this.update();
|
|
this.update();
|
|
return point;
|
|
return point;
|
|
} // Function insertPoint()
|
|
} // Function insertPoint()
|
|
@@ -249,10 +252,10 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
* 删除点位
|
|
* 删除点位
|
|
*
|
|
*
|
|
* @param i 删除点所在的索引
|
|
* @param i 删除点所在的索引
|
|
- * @return SPoint|null。索引不在数组范围则返回null
|
|
|
|
|
|
+ * @return 索引不在数组范围则返回 null
|
|
*/
|
|
*/
|
|
deletePoint(i: number | null = null): SPoint | null {
|
|
deletePoint(i: number | null = null): SPoint | null {
|
|
- let point = null;
|
|
|
|
|
|
+ let point;
|
|
if (i != null) {
|
|
if (i != null) {
|
|
if (i >= this.pointList.length || i < 0) {
|
|
if (i >= this.pointList.length || i < 0) {
|
|
point = null;
|
|
point = null;
|
|
@@ -268,6 +271,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
point = null;
|
|
point = null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
this.curIndex = -1;
|
|
this.curIndex = -1;
|
|
this.curPoint = null;
|
|
this.curPoint = null;
|
|
this.update();
|
|
this.update();
|
|
@@ -277,29 +281,28 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 多边形顶点的移动位置
|
|
* 多边形顶点的移动位置
|
|
*
|
|
*
|
|
- * @param x 点位得x坐标
|
|
|
|
- * @param y 点位得y坐标
|
|
|
|
- * @param i 点位得i坐标
|
|
|
|
- * @return 移动对应得点。如果索引无法找到移动顶点,则返回null
|
|
|
|
|
|
+ * @param x 点位得 x 坐标
|
|
|
|
+ * @param y 点位得 y 坐标
|
|
|
|
+ * @param i 点位得 i 坐标
|
|
|
|
+ * @return 移动对应得点。如果索引无法找到移动顶点,则返回 null
|
|
*/
|
|
*/
|
|
movePoint(x: number, y: number, i: number): SPoint | null {
|
|
movePoint(x: number, y: number, i: number): SPoint | null {
|
|
- let point = null;
|
|
|
|
|
|
+ let point
|
|
if (i >= this.pointList.length || i < 0) {
|
|
if (i >= this.pointList.length || i < 0) {
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (this.pointList.length) {
|
|
if (this.pointList.length) {
|
|
this.pointList[i].x = x;
|
|
this.pointList[i].x = x;
|
|
this.pointList[i].y = y;
|
|
this.pointList[i].y = y;
|
|
}
|
|
}
|
|
|
|
+
|
|
point = this.pointList[i];
|
|
point = this.pointList[i];
|
|
return point;
|
|
return point;
|
|
} // Function movePoint()
|
|
} // Function movePoint()
|
|
|
|
|
|
- ////////////
|
|
|
|
- // 以下为三种状态下的绘制多边形方法
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
- * 展示状态 --绘制多边形数组
|
|
|
|
|
|
+ * 展示状态 -- 绘制多边形数组
|
|
*
|
|
*
|
|
* @param painter 绘制类
|
|
* @param painter 绘制类
|
|
* @param pointList 绘制多边形数组
|
|
* @param pointList 绘制多边形数组
|
|
@@ -321,6 +324,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
painter.toPx(this.lineWidth)
|
|
painter.toPx(this.lineWidth)
|
|
];
|
|
];
|
|
}
|
|
}
|
|
|
|
+
|
|
if (this.selected) {
|
|
if (this.selected) {
|
|
painter.shadow.shadowBlur = 10;
|
|
painter.shadow.shadowBlur = 10;
|
|
painter.shadow.shadowColor = new SColor(`#00000033`);
|
|
painter.shadow.shadowColor = new SColor(`#00000033`);
|
|
@@ -329,12 +333,13 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
} else {
|
|
} else {
|
|
painter.shadow.shadowColor = SColor.Transparent;
|
|
painter.shadow.shadowColor = SColor.Transparent;
|
|
}
|
|
}
|
|
|
|
+
|
|
painter.drawPolygon([...pointList]);
|
|
painter.drawPolygon([...pointList]);
|
|
painter.restore();
|
|
painter.restore();
|
|
} // Function drawShowPolygon()
|
|
} // Function drawShowPolygon()
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 创建状态 --绘制多边形数组
|
|
|
|
|
|
+ * 创建状态 -- 绘制多边形数组
|
|
*
|
|
*
|
|
* @param painter 绘制类
|
|
* @param painter 绘制类
|
|
* @param pointList 绘制多边形数组
|
|
* @param pointList 绘制多边形数组
|
|
@@ -351,11 +356,11 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.lastPoint.y
|
|
this.lastPoint.y
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
+
|
|
painter.drawPolyline(pointList);
|
|
painter.drawPolyline(pointList);
|
|
painter.pen.color = SColor.Transparent;
|
|
painter.pen.color = SColor.Transparent;
|
|
painter.brush.color = new SColor(this.fillColor.value);
|
|
painter.brush.color = new SColor(this.fillColor.value);
|
|
painter.pen.lineWidth = painter.toPx(this.lineWidth);
|
|
painter.pen.lineWidth = painter.toPx(this.lineWidth);
|
|
-
|
|
|
|
if (this.lastPoint) {
|
|
if (this.lastPoint) {
|
|
painter.drawPolygon([...pointList, this.lastPoint]);
|
|
painter.drawPolygon([...pointList, this.lastPoint]);
|
|
// 绘制顶点块
|
|
// 绘制顶点块
|
|
@@ -391,9 +396,9 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
|
|
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
- * 编辑状态 --绘制多边形数组
|
|
|
|
|
|
+ * 编辑状态 -- 绘制多边形数组
|
|
*
|
|
*
|
|
- * @param painter 绘制类
|
|
|
|
|
|
+ * @param painter 绘制类
|
|
* @param pointList 绘制多边形数组
|
|
* @param pointList 绘制多边形数组
|
|
*/
|
|
*/
|
|
protected drawEditPolygon(painter: SPainter, pointList: SPoint[]): void {
|
|
protected drawEditPolygon(painter: SPainter, pointList: SPoint[]): void {
|
|
@@ -411,6 +416,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
if (index == this.curIndex) {
|
|
if (index == this.curIndex) {
|
|
painter.brush.color = new SColor("#2196f3");
|
|
painter.brush.color = new SColor("#2196f3");
|
|
}
|
|
}
|
|
|
|
+
|
|
painter.drawCircle(item.x, item.y, painter.toPx(this.len / 2));
|
|
painter.drawCircle(item.x, item.y, painter.toPx(this.len / 2));
|
|
});
|
|
});
|
|
} // Function drawCreatePolygon()
|
|
} // Function drawCreatePolygon()
|
|
@@ -419,8 +425,6 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
* 编辑状态操作多边形数组
|
|
* 编辑状态操作多边形数组
|
|
*
|
|
*
|
|
* @param event 鼠标事件
|
|
* @param event 鼠标事件
|
|
- *
|
|
|
|
- *
|
|
|
|
*/
|
|
*/
|
|
protected editPolygonPoint(event: SMouseEvent): void {
|
|
protected editPolygonPoint(event: SMouseEvent): void {
|
|
// 判断是否为删除状态 isAlt = true为删除状态
|
|
// 判断是否为删除状态 isAlt = true为删除状态
|
|
@@ -440,11 +444,13 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
lenIndex = index;
|
|
lenIndex = index;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+
|
|
// 若点击到,对该索引对应的点做删除
|
|
// 若点击到,对该索引对应的点做删除
|
|
if (lenIndex != -1) {
|
|
if (lenIndex != -1) {
|
|
if (this.pointList.length <= 3) {
|
|
if (this.pointList.length <= 3) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+
|
|
const delePoint = new SPoint(
|
|
const delePoint = new SPoint(
|
|
this.pointList[lenIndex].x,
|
|
this.pointList[lenIndex].x,
|
|
this.pointList[lenIndex].y
|
|
this.pointList[lenIndex].y
|
|
@@ -501,6 +507,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
// 判断是否有点
|
|
// 判断是否有点
|
|
if (len.Point) {
|
|
if (len.Point) {
|
|
// 点在了多边形的边上
|
|
// 点在了多边形的边上
|
|
@@ -524,6 +531,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.pointList[this.curIndex].y
|
|
this.pointList[this.curIndex].y
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
+
|
|
// 刷新视图
|
|
// 刷新视图
|
|
this.update();
|
|
this.update();
|
|
}
|
|
}
|
|
@@ -531,11 +539,11 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
|
|
|
|
/////////////////////
|
|
/////////////////////
|
|
// undo、redo相关操作
|
|
// undo、redo相关操作
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 记录相关动作并推入栈中
|
|
* 记录相关动作并推入栈中
|
|
- * @param SGraphCommand 相关命令类
|
|
|
|
- * @param any 对应传入参数
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param SGraphCommand 相关命令类
|
|
|
|
+ * @param any 对应传入参数
|
|
*/
|
|
*/
|
|
protected recordAction(SGraphCommand: any, any: any[]): void {
|
|
protected recordAction(SGraphCommand: any, any: any[]): void {
|
|
// 记录相关命令并推入堆栈中
|
|
// 记录相关命令并推入堆栈中
|
|
@@ -560,6 +568,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
if (this.status == SItemStatus.Normal) {
|
|
if (this.status == SItemStatus.Normal) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+
|
|
this.undoStack.redo();
|
|
this.undoStack.redo();
|
|
} // Function redo()
|
|
} // Function redo()
|
|
|
|
|
|
@@ -569,8 +578,8 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 鼠标双击事件
|
|
* 鼠标双击事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
onDoubleClick(event: SMouseEvent): boolean {
|
|
onDoubleClick(event: SMouseEvent): boolean {
|
|
// 如果位show状态 双击改对象则需改为编辑状态
|
|
// 如果位show状态 双击改对象则需改为编辑状态
|
|
@@ -581,6 +590,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.status = SItemStatus.Normal;
|
|
this.status = SItemStatus.Normal;
|
|
this.releaseItem();
|
|
this.releaseItem();
|
|
}
|
|
}
|
|
|
|
+
|
|
this.update();
|
|
this.update();
|
|
return true;
|
|
return true;
|
|
} // Function onDoubleClick()
|
|
} // Function onDoubleClick()
|
|
@@ -588,10 +598,9 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 键盘事件
|
|
* 键盘事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
-
|
|
|
|
onKeyDown(event: KeyboardEvent): boolean {
|
|
onKeyDown(event: KeyboardEvent): boolean {
|
|
if (this.status == SItemStatus.Normal) {
|
|
if (this.status == SItemStatus.Normal) {
|
|
return false;
|
|
return false;
|
|
@@ -611,6 +620,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.isAlt = true;
|
|
this.isAlt = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
this.update();
|
|
this.update();
|
|
return true;
|
|
return true;
|
|
} // Function onKeyDown()
|
|
} // Function onKeyDown()
|
|
@@ -618,8 +628,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 键盘键抬起事件
|
|
* 键盘键抬起事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
*/
|
|
*/
|
|
onKeyUp(event: KeyboardEvent): void {
|
|
onKeyUp(event: KeyboardEvent): void {
|
|
if (this.status == SItemStatus.Edit) {
|
|
if (this.status == SItemStatus.Edit) {
|
|
@@ -632,19 +641,21 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
this.update();
|
|
this.update();
|
|
} // Function onKeyUp()
|
|
} // Function onKeyUp()
|
|
|
|
|
|
/**
|
|
/**
|
|
* 鼠标按下事件
|
|
* 鼠标按下事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
onMouseDown(event: SMouseEvent): boolean {
|
|
onMouseDown(event: SMouseEvent): boolean {
|
|
if (event.shiftKey) {
|
|
if (event.shiftKey) {
|
|
event = this.compare(event);
|
|
event = this.compare(event);
|
|
}
|
|
}
|
|
|
|
+
|
|
// 如果状态为编辑状态则添加点
|
|
// 如果状态为编辑状态则添加点
|
|
if (this.status == SItemStatus.Create) {
|
|
if (this.status == SItemStatus.Create) {
|
|
// 新增顶点
|
|
// 新增顶点
|
|
@@ -657,6 +668,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.pointList[0].y
|
|
this.pointList[0].y
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
+
|
|
if (this.pointList.length > 2 && len > 0 && len < this.scenceLen) {
|
|
if (this.pointList.length > 2 && len > 0 && len < this.scenceLen) {
|
|
this.status = SItemStatus.Normal;
|
|
this.status = SItemStatus.Normal;
|
|
//3 传递完成事件状态
|
|
//3 传递完成事件状态
|
|
@@ -675,14 +687,15 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
} else {
|
|
} else {
|
|
return super.onMouseDown(event);
|
|
return super.onMouseDown(event);
|
|
}
|
|
}
|
|
|
|
+
|
|
return true;
|
|
return true;
|
|
} // Function onMouseDown()
|
|
} // Function onMouseDown()
|
|
|
|
|
|
/**
|
|
/**
|
|
* 鼠标移入事件
|
|
* 鼠标移入事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
onMouseEnter(event: SMouseEvent): boolean {
|
|
onMouseEnter(event: SMouseEvent): boolean {
|
|
return true;
|
|
return true;
|
|
@@ -691,10 +704,9 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 鼠标移出事件
|
|
* 鼠标移出事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
-
|
|
|
|
onMouseLeave(event: SMouseEvent): boolean {
|
|
onMouseLeave(event: SMouseEvent): boolean {
|
|
return true;
|
|
return true;
|
|
} // Function onMouseLeave()
|
|
} // Function onMouseLeave()
|
|
@@ -702,14 +714,14 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 鼠标移动事件
|
|
* 鼠标移动事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
-
|
|
|
|
onMouseMove(event: SMouseEvent): boolean {
|
|
onMouseMove(event: SMouseEvent): boolean {
|
|
if (event.shiftKey) {
|
|
if (event.shiftKey) {
|
|
event = this.compare(event);
|
|
event = this.compare(event);
|
|
}
|
|
}
|
|
|
|
+
|
|
if (this.status == SItemStatus.Create) {
|
|
if (this.status == SItemStatus.Create) {
|
|
this.lastPoint = new SPoint();
|
|
this.lastPoint = new SPoint();
|
|
this.lastPoint.x = event.x;
|
|
this.lastPoint.x = event.x;
|
|
@@ -726,14 +738,15 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
} else {
|
|
} else {
|
|
return super.onMouseMove(event);
|
|
return super.onMouseMove(event);
|
|
}
|
|
}
|
|
|
|
+
|
|
return true;
|
|
return true;
|
|
} // Function onMouseMove()
|
|
} // Function onMouseMove()
|
|
|
|
|
|
/**
|
|
/**
|
|
- * shift垂直水平创建或编辑
|
|
|
|
|
|
+ * shift 垂直水平创建或编辑
|
|
*
|
|
*
|
|
- * @param event 事件
|
|
|
|
- * */
|
|
|
|
|
|
+ * @param event 事件
|
|
|
|
+ */
|
|
compare(event: SMouseEvent): SMouseEvent {
|
|
compare(event: SMouseEvent): SMouseEvent {
|
|
if (this.pointList.length) {
|
|
if (this.pointList.length) {
|
|
let last = new SPoint(event.x, event.y);
|
|
let last = new SPoint(event.x, event.y);
|
|
@@ -744,6 +757,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
last = this.pointList[this.curIndex - 1];
|
|
last = this.pointList[this.curIndex - 1];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
const dx = Math.abs(event.x - last.x);
|
|
const dx = Math.abs(event.x - last.x);
|
|
const dy = Math.abs(event.y - last.y);
|
|
const dy = Math.abs(event.y - last.y);
|
|
if (dy > dx) {
|
|
if (dy > dx) {
|
|
@@ -752,14 +766,15 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
event.y = last.y;
|
|
event.y = last.y;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
return event;
|
|
return event;
|
|
} // Function compare()
|
|
} // Function compare()
|
|
|
|
|
|
/**
|
|
/**
|
|
* 鼠标抬起事件
|
|
* 鼠标抬起事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
onMouseUp(event: SMouseEvent): boolean {
|
|
onMouseUp(event: SMouseEvent): boolean {
|
|
if (this.status == SItemStatus.Edit) {
|
|
if (this.status == SItemStatus.Edit) {
|
|
@@ -785,9 +800,9 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 移动后处理所有坐标,并肩原点置为场景原点
|
|
* 移动后处理所有坐标,并肩原点置为场景原点
|
|
*
|
|
*
|
|
- * @param x x坐标
|
|
|
|
- * @param y y坐标
|
|
|
|
- * */
|
|
|
|
|
|
+ * @param x x 坐标
|
|
|
|
+ * @param y y 坐标
|
|
|
|
+ */
|
|
moveToOrigin(x: number, y: number): void {
|
|
moveToOrigin(x: number, y: number): void {
|
|
super.moveToOrigin(x, y);
|
|
super.moveToOrigin(x, y);
|
|
this.pointList = this.pointList.map(t => {
|
|
this.pointList = this.pointList.map(t => {
|
|
@@ -795,6 +810,7 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
t.y = t.y + y;
|
|
t.y = t.y + y;
|
|
return t;
|
|
return t;
|
|
});
|
|
});
|
|
|
|
+
|
|
this.x = 0;
|
|
this.x = 0;
|
|
this.y = 0;
|
|
this.y = 0;
|
|
} // Function moveToOrigin()
|
|
} // Function moveToOrigin()
|
|
@@ -802,8 +818,8 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 适配事件
|
|
* 适配事件
|
|
*
|
|
*
|
|
- * @param event 事件参数
|
|
|
|
- * @return boolean
|
|
|
|
|
|
+ * @param event 事件参数
|
|
|
|
+ * @return 是否处理该事件
|
|
*/
|
|
*/
|
|
onResize(event: SMouseEvent): boolean {
|
|
onResize(event: SMouseEvent): boolean {
|
|
return true;
|
|
return true;
|
|
@@ -811,7 +827,6 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 取消操作
|
|
* 取消操作
|
|
- *
|
|
|
|
*/
|
|
*/
|
|
cancelOperate(): void {
|
|
cancelOperate(): void {
|
|
// 当状态为展示状态
|
|
// 当状态为展示状态
|
|
@@ -822,13 +837,14 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
// 编辑状态
|
|
// 编辑状态
|
|
this.status = SItemStatus.Normal;
|
|
this.status = SItemStatus.Normal;
|
|
}
|
|
}
|
|
|
|
+
|
|
this.update();
|
|
this.update();
|
|
} // Function cancelOperate()
|
|
} // Function cancelOperate()
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Item对象边界区域
|
|
|
|
|
|
+ * Item 对象边界区域
|
|
*
|
|
*
|
|
- * @return SRect
|
|
|
|
|
|
+ * @return 边界区域
|
|
*/
|
|
*/
|
|
boundingRect(): SRect {
|
|
boundingRect(): SRect {
|
|
if (this.pointList.length) {
|
|
if (this.pointList.length) {
|
|
@@ -842,17 +858,22 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
if (x < this.minX) {
|
|
if (x < this.minX) {
|
|
this.minX = x;
|
|
this.minX = x;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (y < this.minY) {
|
|
if (y < this.minY) {
|
|
this.minY = y;
|
|
this.minY = y;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (x > this.maxX) {
|
|
if (x > this.maxX) {
|
|
this.maxX = x;
|
|
this.maxX = x;
|
|
}
|
|
}
|
|
|
|
+
|
|
if (y > this.maxY) {
|
|
if (y > this.maxY) {
|
|
this.maxY = y;
|
|
this.maxY = y;
|
|
}
|
|
}
|
|
|
|
+
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+
|
|
return new SRect(
|
|
return new SRect(
|
|
this.minX,
|
|
this.minX,
|
|
this.minY,
|
|
this.minY,
|
|
@@ -864,29 +885,32 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
/**
|
|
/**
|
|
* 判断点是否在区域内
|
|
* 判断点是否在区域内
|
|
*
|
|
*
|
|
- * @param x
|
|
|
|
- * @param y
|
|
|
|
|
|
+ * @param x x 坐标
|
|
|
|
+ * @param y y 坐标
|
|
|
|
+ * @return 是否在该区域内
|
|
*/
|
|
*/
|
|
contains(x: number, y: number): boolean {
|
|
contains(x: number, y: number): boolean {
|
|
let arr = this.pointList;
|
|
let arr = this.pointList;
|
|
if (arr.length < 3 || !SPolygonUtil.pointIn(x, y, arr)) {
|
|
if (arr.length < 3 || !SPolygonUtil.pointIn(x, y, arr)) {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
+
|
|
return true;
|
|
return true;
|
|
} // Function contains()
|
|
} // Function contains()
|
|
|
|
|
|
/**
|
|
/**
|
|
* 返回对象储存的相关数据
|
|
* 返回对象储存的相关数据
|
|
*
|
|
*
|
|
- * @return formData
|
|
|
|
|
|
+ * @return 对象参数
|
|
*/
|
|
*/
|
|
- toData() {
|
|
|
|
|
|
+ toData() : any {
|
|
const Line = this.pointList.map(pos => {
|
|
const Line = this.pointList.map(pos => {
|
|
return {
|
|
return {
|
|
x: pos.x,
|
|
x: pos.x,
|
|
y: pos.y
|
|
y: pos.y
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+
|
|
this.data.style.outLine = Line;
|
|
this.data.style.outLine = Line;
|
|
this.data.style.default.lineWidth = this.lineWidth;
|
|
this.data.style.default.lineWidth = this.lineWidth;
|
|
this.data.style.default.lineStyle = this.lineStyle;
|
|
this.data.style.default.lineStyle = this.lineStyle;
|
|
@@ -896,9 +920,9 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
} // Function toData()
|
|
} // Function toData()
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Item绘制操作
|
|
|
|
|
|
+ * Item 绘制操作
|
|
*
|
|
*
|
|
- * @param painter painter对象
|
|
|
|
|
|
+ * @param painter 绘制对象
|
|
*/
|
|
*/
|
|
onDraw(painter: SPainter): void {
|
|
onDraw(painter: SPainter): void {
|
|
this.scenceLen = painter.toPx(this.len);
|
|
this.scenceLen = painter.toPx(this.len);
|
|
@@ -914,4 +938,4 @@ export class SBasePolygonEdit extends SGraphEdit {
|
|
this.drawEditPolygon(painter, this.pointList);
|
|
this.drawEditPolygon(painter, this.pointList);
|
|
}
|
|
}
|
|
} // Function onDraw()
|
|
} // Function onDraw()
|
|
-} // Class SPolygonItem
|
|
|
|
|
|
+} // Class SBasePolygonEdit
|