|
@@ -1,4 +1,6 @@
|
|
|
import { DesignComp } from "../../objects/DesignTemp/DesignComp";
|
|
|
+import { history } from "../../objects/DesignTemp/factory";
|
|
|
+import { RxValue } from "../ReactCtrl/rxValue";
|
|
|
import { Matrix } from "./matrix";
|
|
|
import { DisplayObject } from "./objects/displayObject";
|
|
|
import { isRectInter } from "./objects/mathUtils";
|
|
@@ -14,61 +16,85 @@ export class CompObject extends DisplayObject {
|
|
|
comp:DesignComp;
|
|
|
rect = new Rectangle();
|
|
|
|
|
|
- _width = 0;
|
|
|
- _height = 0;
|
|
|
-
|
|
|
- constructor(c:DesignComp) {
|
|
|
+ state = RxValue.create({
|
|
|
+ transform: {
|
|
|
+ x: 0,
|
|
|
+ y: 0,
|
|
|
+ w: 0,
|
|
|
+ h: 0,
|
|
|
+ sx: 0,
|
|
|
+ sy: 0,
|
|
|
+ r: 0,
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ constructor(c:DesignComp, usHistory = false) {
|
|
|
super();
|
|
|
this.comp = c;
|
|
|
- if (c.layout.size ) {
|
|
|
- if (c.layout.size[0]) {
|
|
|
- this._width = designSizeToPx(c.layout.size[0]);
|
|
|
- }
|
|
|
- if (c.layout.size[1]) {
|
|
|
- this._height = designSizeToPx(c.layout.size[1]);
|
|
|
- }
|
|
|
+
|
|
|
+ // this.transform.setFromMatrix(Matrix.createFromMatrixStr(c.layout.transformMatrix || "matrix(1,0,0,1,0,0)"));
|
|
|
+ // return;
|
|
|
+ // console.log("xxxxxxxxxxxxx2222222222xxxxxxxxxxxxxx");
|
|
|
+
|
|
|
+ const wmtx = Matrix.createFromMatrixStr(c.layout.transformMatrix || "matrix(1,0,0,1,0,0)")
|
|
|
+ const s = wmtx.getScale();
|
|
|
+
|
|
|
+ let t = {
|
|
|
+ x: wmtx.tx,
|
|
|
+ y: wmtx.ty,
|
|
|
+ sx: s.x,
|
|
|
+ sy: s.y,
|
|
|
+ w: designSizeToPx(c.layout.size[0]),
|
|
|
+ h: designSizeToPx(c.layout.size[1]),
|
|
|
+ r: wmtx.getRotate()
|
|
|
}
|
|
|
- if (c.$el) {
|
|
|
- if (!c.layout.size) {
|
|
|
- this._width = c.$el.clientWidth;
|
|
|
- this._height = c.$el.clientHeight;
|
|
|
- c.layout.size = [pxToDesignSize(this._width), pxToDesignSize(this._height)]
|
|
|
- } else if (!c.layout.size[0]) {
|
|
|
- this._width = c.$el.clientWidth;
|
|
|
- c.layout.size[0] = pxToDesignSize(this._width)
|
|
|
-
|
|
|
- }else if (!c.layout.size[1]) {
|
|
|
- this._height = c.$el.clientHeight;
|
|
|
- c.layout.size[1] = pxToDesignSize(this._height)
|
|
|
+ this.state.setTransform(t);
|
|
|
+ let inited = true;
|
|
|
+
|
|
|
+ this.state.onTransformChanged((tsf)=>{
|
|
|
+ const m = new Matrix();
|
|
|
+ m.setTransform(tsf.x, tsf.y, 0, 0, tsf.sx, tsf.sy, tsf.r, 0, 0);
|
|
|
+ this.transform.setFromMatrix(m);
|
|
|
+ this._boundsID++;
|
|
|
+ this.updateTransform();
|
|
|
+ if (!inited) {
|
|
|
+ const s:any = [pxToDesignSize(tsf.w), pxToDesignSize(tsf.h)];
|
|
|
+ this.comp.layout.setSize(s);
|
|
|
+ this.comp.layout.setTransformMatrix(m.getMatrixStr())
|
|
|
}
|
|
|
+ inited = false;
|
|
|
+ })
|
|
|
+
|
|
|
+ if (usHistory) {
|
|
|
+ this.state.setHistory(history);
|
|
|
}
|
|
|
- this.transform.setFromMatrix(Matrix.createFromMatrixStr(c.layout.transformMatrix || "matrix(1,0,0,1,0,0)"));
|
|
|
- this._boundsID++;
|
|
|
-
|
|
|
- this.updateTransform();
|
|
|
}
|
|
|
|
|
|
get width() {
|
|
|
- return this._width
|
|
|
+ return this.state.transform.w;
|
|
|
}
|
|
|
+
|
|
|
set width( value ) {
|
|
|
- this._width = value;
|
|
|
- this.comp.layout.size[0] = pxToDesignSize(this._width);
|
|
|
+ const t = {...this.state.transform};
|
|
|
+ t.w = value;
|
|
|
+ this.state.setTransform(t);
|
|
|
}
|
|
|
+
|
|
|
set height( value ) {
|
|
|
- this._height = value;
|
|
|
- this.comp.layout.size[1] = pxToDesignSize(this._height);
|
|
|
+ const t = {...this.state.transform};
|
|
|
+ t.h = value;
|
|
|
+ this.state.setTransform(t);
|
|
|
}
|
|
|
|
|
|
get height() {
|
|
|
- return this._height
|
|
|
+ return this.state.transform.h
|
|
|
}
|
|
|
|
|
|
translate(x:number, y:number) {
|
|
|
- this.x = this.x + x;
|
|
|
- this.y = this.y + y;
|
|
|
- this.updateTransform();
|
|
|
- this.comp.layout.setTransformMatrix(this.worldTransform.getMatrixStr());
|
|
|
+ const t = {...this.state.transform};
|
|
|
+ t.x +=x;
|
|
|
+ t.y +=y;
|
|
|
+ this.state.setTransform(t);
|
|
|
}
|
|
|
|
|
|
getRect(){
|
|
@@ -150,19 +176,4 @@ export class CompObject extends DisplayObject {
|
|
|
this.worldTransform.apply(p,p);
|
|
|
return p;
|
|
|
}
|
|
|
-
|
|
|
- updateSize() {
|
|
|
- const c = this.comp;
|
|
|
- if (c.layout.size ) {
|
|
|
- if (c.layout.size[0]) {
|
|
|
- this._width = designSizeToPx(c.layout.size[0]);
|
|
|
- }
|
|
|
- if (c.layout.size[1]) {
|
|
|
- this._height = designSizeToPx(c.layout.size[1]);
|
|
|
- }
|
|
|
- }
|
|
|
- // this.transform.setFromMatrix(Matrix.createFromMatrixStr(c.layout.transformMatrix || "matrix(1,0,0,1,0,0)"));
|
|
|
- this.updateTransform();
|
|
|
- this._boundsID++;
|
|
|
- }
|
|
|
}
|