-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRenderState.js
246 lines (205 loc) · 6.69 KB
/
RenderState.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import { action } from "mobx"
import * as tjs from 'three'
import registerModule from "@/framework/registerModule"
import { clampCircular, TAU, TAU2, TAU4 } from "@/mathUtils"
class RenderState {
constructor(root, parent) {
this.root = root
// renderer
this.renderer = new tjs.WebGLRenderer({ antialias: true })
this.renderIsQueued = false
const documentWidth = Number.parseFloat(getComputedStyle(window.document.documentElement).width)*0.9
this.renderer.setSize(documentWidth, Math.floor(documentWidth/1.3333))
this.renderer.setPixelRatio(window.devicePixelRatio || 1)
this.renderer.useLegacyLights = false
// camera
this.camera = new tjs.PerspectiveCamera(75, 640 / 480, 0.1, 1000)
this.focusPoint = new tjs.Vector3(0, 0, 0)
this.focusDistance = 20
this.cameraAngle = new tjs.Vector2(0, 0) // pitch, yaw (offset in radians plane X, Y)
this.updateCamera()
// orbiting -- click and drag to rotate
this.isOrbiting = false
this.isOrbitMode = true
this.orbitSpeed = new tjs.Vector2(0.01, 0.01)
this.orbitStartMousePos = new tjs.Vector2()
this.orbitStartCamAngle = new tjs.Vector2()
// panning -- click and drag to translate
this.isPanMode = false
this.isPanning = false
this.panSpeed = new tjs.Vector2(0.05, 0.05)
this.panStartPos = new tjs.Vector3()
this.panUnitX = new tjs.Vector3()
this.panUnitY = new tjs.Vector3()
this.panStartMousePos = new tjs.Vector2()
// input state
this.keyStates = {
"Control": false,
"Alt": false,
"Shift": false,
}
window.addEventListener('keydown', (e) => {
if (e.key in this.keyStates) {
this.keyStates[e.key] = true
}
})
window.addEventListener('keyup', (e) => {
if (e.key in this.keyStates) {
this.keyStates[e.key] = false
}
})
// scene setup
this.scene = new tjs.Scene()
this.scene.background = new tjs.Color(0x101010);
const axesHelper = new tjs.AxesHelper(5)
this.scene.add(axesHelper)
// lighting
this.scene.add(new tjs.AmbientLight(0x353550, 1))
const light1 = new tjs.PointLight(0xffeeff, 100, 100)
light1.position.set(5, 5, 5)
this.scene.add(light1)
const directionalLight = new tjs.DirectionalLight(0xffffff, 0.5);
this.scene.add(directionalLight);
// objects
// const geometry = new tjs.BoxGeometry(1, 1, 1)
const geometry = new tjs.SphereGeometry(1, 10, 10)
const material = new tjs.MeshLambertMaterial({ color: 0x11AA11 })
this.theMesh = new tjs.Mesh(geometry, material)
this.scene.add(this.theMesh)
this._module = registerModule(root, parent, this, {
actions: {
render: {
symbolName: null
},
invalidate: {
symbolName: null,
},
randomCameraAngle: {},
updateCamAngle: {
history: {}
},
prevCamAngle: {
name: "Prev Cam",
symbolName: null
},
nextCamAngle: {
name: "Next Cam",
symbolName: null
},
focusObject: {
name: "Focus Last Object",
symbolName: null
},
normalizeObject: {
symbolName: null
},
zoomIn: {},
zoomOut: {}
},
props: {
isOrbitMode: {
name: "Orbit",
symbolName: "orbit",
onToggle: action(() => { //TODO: create a mutex group
if (!this.isOrbitMode) {
this._module.isPanMode.obs = false
}
this._module.isOrbitMode.obs = !this.isOrbitMode
})
},
isPanMode: {
name: "Pan",
symbolName: "pan",
onToggle: action(() => {
if (!this.isPanMode) {
this._module.isOrbitMode.obs = false
}
this._module.isPanMode.obs = !this.isPanMode
})
},
focusDistance: {
symbolName: null,
valueMin: 0,
valueMax: 100,
valueStep: 0.1, //TODO: relative values
onUpdate: (valueOld, valueNew) => {
this.updateCamera()
this.invalidate()
}
}
}
})
// TODO: add a mutex group to handle this
// autorun(() => { if (this.props.isOrbitMode) this.props.isPanMode = false })
// initialize history with dummy call of current value
this._module.updateCamAngle.action.trackWith({ isDummyCall: true })(this.cameraAngle.x, this.cameraAngle.y)
this._queueRender()
}
updateCamera() {
// (focus point, focus distance) -> (camera position, camera rotation)
const [xc, xs] = [Math.cos(this.cameraAngle.x), Math.sin(this.cameraAngle.x)]
const [yc, ys] = [Math.cos(this.cameraAngle.y), Math.sin(this.cameraAngle.y)]
const offset = new tjs.Vector3(xc * yc, ys, xs * yc).multiplyScalar(this.focusDistance)
this.camera.position.copy(this.focusPoint).add(offset)
this.camera.lookAt(this.focusPoint)
}
prevCamAngle() {
this._module.updateCamAngle.action.history.tryPrev().call()
}
nextCamAngle() {
this._module.updateCamAngle.action.history.tryNext().call()
}
updateCamAngle(x, y) {
this.cameraAngle.set(x, y)
this.updateCamera()
this.invalidate()
}
zoomIn() {
this._module.focusDistance.obs = this.focusDistance * 0.9
this.updateCamera()
this.invalidate()
}
zoomOut() {
this._module.focusDistance.obs = this.focusDistance * 1.11112 // 1.11112 * 0.9 ~ 1
this.updateCamera()
this.invalidate()
}
randomCameraAngle() {
this._module.updateCamAngle.action(Math.random() * TAU, Math.random() * TAU2 - TAU4)
}
focusObject() {
// find bounding box and a safe radius
const bbox = new tjs.Box3().setFromObject(this.scene.children.at(-1))
bbox.getCenter(this.focusPoint)
const bsphere = new tjs.Sphere()
bbox.getBoundingSphere(bsphere)
this._module.focusDistance.obs = bsphere.radius;
this.updateCamera()
this.invalidate()
}
normalizeObject() {
// find bounding box and a safe radius
const bbox = new tjs.Box3().setFromObject(this.scene.children.at(-1))
const size = new tjs.Vector3()
bbox.getSize(size)
const sizeMax = Math.max(size.x, size.y, size.z)
this.scene.children.at(-1).scale.set(10 / sizeMax, 10 / sizeMax, 10 / sizeMax)
this.invalidate()
}
_queueRender() {
// call render once on next browser redraw
requestAnimationFrame(() => this._module.render.action())
}
invalidate() {
if (!this.renderIsQueued) {
this._queueRender()
this.renderIsQueued = true
}
}
render() {
this.renderer.render(this.scene, this.camera)
this.root.count.obs = this.root.count.value + 1
this.renderIsQueued = false
}
}
export default RenderState