|
@@ -22,7 +22,9 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
pos: {
|
|
|
x: 0, y:0
|
|
|
},
|
|
|
-
|
|
|
+ mouse: {
|
|
|
+ x: 0, y: 0
|
|
|
+ },
|
|
|
scale: 1,
|
|
|
keyCode: -1,
|
|
|
moveMode: false,
|
|
@@ -52,7 +54,6 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
// EditorRef.value.style.backgroundColor = "greenyellow";
|
|
|
EditorRef.value.style.left = "0";
|
|
|
EditorRef.value.style.top = "0";
|
|
|
-
|
|
|
CanvasRef.value.style.width = "100%"
|
|
|
CanvasRef.value.style.height = "100%"
|
|
|
EditorRef.value.style.position = "absolute";
|
|
@@ -115,19 +116,35 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
let isMoving = false;
|
|
|
let moveX = 0, moveY = 0;
|
|
|
+
|
|
|
+
|
|
|
+ const obj = new ObjsContainer([]);
|
|
|
+ this.state.onWidthChanged(()=>{
|
|
|
+ obj.rect.width = this.state.width;
|
|
|
+ })
|
|
|
+ this.state.onWidthChanged(()=>{
|
|
|
+ obj.rect.height = this.state.height;
|
|
|
+ })
|
|
|
+
|
|
|
parent.addEventListener("mousemove",(e:MouseEvent)=>{
|
|
|
- //this.state.setMouse({x: e.offsetX, y: e.offsetY});
|
|
|
+
|
|
|
+ const s = this.state.scale;
|
|
|
+ const b = editorLayer.getBoundingClientRect()
|
|
|
+ this.state.setMouse({x: (e.clientX - b.left) / s , y: (e.clientY - b.top) / s});
|
|
|
+
|
|
|
if (isMoving || e.button == 2) { //鼠标右键
|
|
|
e.preventDefault();
|
|
|
parent.style.cursor = "grab";
|
|
|
const xOffset = e.pageX - moveX;
|
|
|
const yOffset = e.pageY - moveY;
|
|
|
- this.state.setPos({x: this.state.pos.x + xOffset, y: this.state.pos.y + yOffset});
|
|
|
+
|
|
|
+ obj.translate(xOffset, yOffset);
|
|
|
+ editorLayer.style.transform = obj.parent.worldTransform.getMatrixStr();
|
|
|
+ //this.state.setPos({x: this.state.pos.x + xOffset, y: this.state.pos.y + yOffset});
|
|
|
}
|
|
|
moveX = e.pageX;
|
|
|
moveY = e.pageY;
|
|
|
});
|
|
|
-
|
|
|
|
|
|
parent.addEventListener("mouseup",(e:MouseEvent)=>{
|
|
|
if(this.state.moveMode) this.moveEditor();
|
|
@@ -143,9 +160,14 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
})
|
|
|
|
|
|
this.state.onScaleChanged((v)=>{
|
|
|
- editorLayer.style.transformOrigin = "50% 50%";
|
|
|
- editorLayer.style.transform = `scale(${v})`;
|
|
|
+ obj.setPivot2(this.state.mouse.x, this.state.mouse.y)
|
|
|
+ obj.scale(v, v);
|
|
|
+ editorLayer.style.transformOrigin = `0 0`;
|
|
|
+ editorLayer.style.transform = obj.parent.worldTransform.getMatrixStr();
|
|
|
+ //editorLayer.style.left
|
|
|
})
|
|
|
+
|
|
|
+
|
|
|
this.state.onPosChanged((v)=>{
|
|
|
editorLayer.style.left= v.x + "px";
|
|
|
editorLayer.style.top = v.y + "px";
|