File size: 2,627 Bytes
352fb85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { Vector3 } from "../math/Vector3";
import { Quaternion } from "../math/Quaternion";
import { EventDispatcher } from "../events/EventDispatcher";
import { Matrix4 } from "../math/Matrix4";
import { ObjectChangedEvent } from "../events/Events";

abstract class Object3D extends EventDispatcher {
    public positionChanged: boolean = false;
    public rotationChanged: boolean = false;
    public scaleChanged: boolean = false;

    protected _position: Vector3 = new Vector3();
    protected _rotation: Quaternion = new Quaternion();
    protected _scale: Vector3 = new Vector3(1, 1, 1);
    protected _transform: Matrix4 = new Matrix4();

    protected _changeEvent = new ObjectChangedEvent(this);

    update: () => void;
    applyPosition: () => void;
    applyRotation: () => void;
    applyScale: () => void;
    raiseChangeEvent: () => void;

    constructor() {
        super();

        this.update = () => {};

        this.applyPosition = () => {
            this.position = new Vector3();
        };

        this.applyRotation = () => {
            this.rotation = new Quaternion();
        };

        this.applyScale = () => {
            this.scale = new Vector3(1, 1, 1);
        };

        this.raiseChangeEvent = () => {
            this.dispatchEvent(this._changeEvent);
        };
    }

    protected _updateMatrix() {
        this._transform = Matrix4.Compose(this._position, this._rotation, this._scale);
    }

    get position() {
        return this._position;
    }

    set position(position: Vector3) {
        if (!this._position.equals(position)) {
            this._position = position;
            this.positionChanged = true;
            this._updateMatrix();
            this.dispatchEvent(this._changeEvent);
        }
    }

    get rotation() {
        return this._rotation;
    }

    set rotation(rotation: Quaternion) {
        if (!this._rotation.equals(rotation)) {
            this._rotation = rotation;
            this.rotationChanged = true;
            this._updateMatrix();
            this.dispatchEvent(this._changeEvent);
        }
    }

    get scale() {
        return this._scale;
    }

    set scale(scale: Vector3) {
        if (!this._scale.equals(scale)) {
            this._scale = scale;
            this.scaleChanged = true;
            this._updateMatrix();
            this.dispatchEvent(this._changeEvent);
        }
    }

    get forward() {
        let forward = new Vector3(0, 0, 1);
        forward = this.rotation.apply(forward);
        return forward;
    }

    get transform() {
        return this._transform;
    }
}

export { Object3D };