-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcamera.cpp
481 lines (399 loc) · 14.1 KB
/
camera.cpp
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#include "framework.h"
#include <xinput.h>
namespace Framework
{
// Camera implementation
Camera::Camera()
: m_mbuttonCur(MBUTTON_None),
m_wheelDelta(0)
{
}
bool Camera::HandleWindowsMessage(UINT message, WPARAM wParam, LPARAM lParam)
{
(void)lParam;
switch (message)
{
case WM_LBUTTONDOWN:
OnMouseDown(MBUTTON_Left);
return true;
case WM_MBUTTONDOWN:
OnMouseDown(MBUTTON_Middle);
return true;
case WM_RBUTTONDOWN:
OnMouseDown(MBUTTON_Right);
return true;
case WM_LBUTTONUP:
OnMouseUp(MBUTTON_Left);
return true;
case WM_MBUTTONUP:
OnMouseUp(MBUTTON_Middle);
return true;
case WM_RBUTTONUP:
OnMouseUp(MBUTTON_Right);
return true;
case WM_MOUSEWHEEL:
OnMouseWheel(int(short(HIWORD(wParam))));
return true;
default:
return false;
}
}
// PerspectiveCamera implementation
PerspectiveCamera::PerspectiveCamera()
: super(),
m_viewToWorld(identity),
m_worldToView(identity),
m_projection(identity),
m_worldToClip(identity)
{
}
void PerspectiveCamera::SetProjection(
float vFOV,
float aspect,
float zNear,
float zFar)
{
m_projection = perspProjD3DStyle(vFOV, aspect, zNear, zFar);
UpdateWorldToClip();
}
void PerspectiveCamera::UpdateWorldToClip()
{
m_worldToView = inverseRigid(m_viewToWorld);
m_worldToClip = m_worldToView * m_projection;
}
// FPSCamera implementation
FPSCamera::FPSCamera()
: super(),
m_moveSpeed(1.0f),
m_rotateSpeed(0.005f),
m_mbuttonActivate(MBUTTON_None),
m_mousePosPrev(0),
m_controllerPresent(false),
m_controllerMoveSpeed(2.0f),
m_controllerRotateSpeed(2.0f),
m_yaw(0.0f),
m_pitch(0.0f),
m_pos(0)
{
// Check for controller
XINPUT_STATE stateDummy;
m_controllerPresent = (XInputGetState(0, &stateDummy) == ERROR_SUCCESS);
}
void FPSCamera::Update(float timestep)
{
// Track mouse motion
int2 mousePos;
GetCursorPos((POINT *)&mousePos);
int2 mouseMove = mousePos - m_mousePosPrev;
m_mousePosPrev = mousePos;
// Handle mouse rotation
if (m_mbuttonActivate == MBUTTON_None ||
m_mbuttonCur == m_mbuttonActivate)
{
m_yaw -= m_rotateSpeed * mouseMove.x;
m_yaw = modPositive(m_yaw, 2.0f*pi);
m_pitch -= m_rotateSpeed * mouseMove.y;
m_pitch = clamp(m_pitch, -0.5f*pi, 0.5f*pi);
}
// Retrieve controller state
XINPUT_STATE controllerState = {};
float2 controllerLeftStick(0.0f), controllerRightStick(0.0f);
float controllerLeftTrigger = 0.0f, controllerRightTrigger = 0.0f;
if (m_controllerPresent)
{
// Look out for disconnection
if (XInputGetState(0, &controllerState) == ERROR_SUCCESS)
{
// Decode axes and apply dead zones
controllerLeftTrigger = float(max(0, controllerState.Gamepad.bLeftTrigger - XINPUT_GAMEPAD_TRIGGER_THRESHOLD)) / float(255 - XINPUT_GAMEPAD_TRIGGER_THRESHOLD);
controllerRightTrigger = float(max(0, controllerState.Gamepad.bRightTrigger - XINPUT_GAMEPAD_TRIGGER_THRESHOLD)) / float(255 - XINPUT_GAMEPAD_TRIGGER_THRESHOLD);
controllerLeftStick = float2(controllerState.Gamepad.sThumbLX, controllerState.Gamepad.sThumbLY);
float lengthLeft = length(controllerLeftStick);
if (lengthLeft > XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE)
controllerLeftStick = (controllerLeftStick / lengthLeft) * (lengthLeft - XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE) / float(32768 - XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE);
else
controllerLeftStick = float2(0.0f);
controllerRightStick = float2(controllerState.Gamepad.sThumbRX, controllerState.Gamepad.sThumbRY);
float lengthRight = length(controllerRightStick);
if (lengthRight > XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE)
controllerRightStick = (controllerRightStick / lengthRight) * (lengthRight - XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE) / float(32768 - XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE);
else
controllerRightStick = float2(0.0f);
}
else
{
m_controllerPresent = false;
}
}
// Handle controller rotation
if (m_controllerPresent)
{
m_yaw -= m_controllerRotateSpeed * controllerRightStick.x * abs(controllerRightStick.x) * timestep;
m_yaw = modPositive(m_yaw, 2.0f*pi);
m_pitch += m_controllerRotateSpeed * controllerRightStick.y * abs(controllerRightStick.y) * timestep;
m_pitch = clamp(m_pitch, -0.5f*pi, 0.5f*pi);
}
UpdateOrientation();
// Handle translation
// !!!UNDONE: acceleration based on how long you've been holding the button,
// to make fine motions easier?
float moveStep = timestep * m_moveSpeed;
// !!!UNDONE: move keyboard tracking into an input system that respects focus, etc.
if (GetAsyncKeyState(VK_SHIFT) || (controllerState.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER))
moveStep *= 3.0f;
if (GetAsyncKeyState(VK_CONTROL) || (controllerState.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_SHOULDER))
moveStep *= 0.1f;
if (GetAsyncKeyState('W'))
m_pos -= m_viewToWorld[2].xyz * moveStep;
if (GetAsyncKeyState('S'))
m_pos += m_viewToWorld[2].xyz * moveStep;
if (GetAsyncKeyState('A'))
m_pos -= m_viewToWorld[0].xyz * moveStep;
if (GetAsyncKeyState('D'))
m_pos += m_viewToWorld[0].xyz * moveStep;
if (GetAsyncKeyState('E'))
m_pos += m_viewToWorld[1].xyz * moveStep;
if (GetAsyncKeyState('C'))
m_pos -= m_viewToWorld[1].xyz * moveStep;
if (m_controllerPresent)
{
float3 localVelocity(0.0f);
localVelocity.x = controllerLeftStick.x * abs(controllerLeftStick.x);
localVelocity.y = square(controllerRightTrigger) - square(controllerLeftTrigger);
localVelocity.z = -controllerLeftStick.y * abs(controllerLeftStick.y);
m_pos += xfmVector(localVelocity, m_viewToWorld) * (moveStep * m_controllerMoveSpeed);
}
// Calculate remaining matrices
setTranslation(&m_viewToWorld, m_pos);
UpdateWorldToClip();
}
void FPSCamera::LookAt(float3 posCamera, float3 posTarget)
{
m_pos = posCamera;
setTranslation(&m_viewToWorld, m_pos);
// Calculate angles to look at posTarget
float3 vecToTarget = posTarget - posCamera;
ASSERT_WARN(!all(isnear(vecToTarget, 0.0f)));
vecToTarget = normalize(vecToTarget);
m_yaw = atan2f(-vecToTarget.z, vecToTarget.x);
m_pitch = asinf(vecToTarget.y);
// Update matrices
UpdateOrientation();
UpdateWorldToClip();
}
void FPSCamera::SetPose(float3 posCamera, float yaw, float pitch)
{
m_pos = posCamera;
m_yaw = yaw;
m_pitch = pitch;
// Update matrices
UpdateOrientation();
UpdateWorldToClip();
}
void FPSCamera::UpdateOrientation()
{
// Calculate new orientation matrix using spherical coordinates
float cosYaw = cosf(m_yaw);
float sinYaw = sinf(m_yaw);
float cosPitch = cosf(m_pitch);
float sinPitch = sinf(m_pitch);
float3 forward = { cosYaw * cosPitch, sinPitch, -sinYaw * cosPitch };
float3 right = { sinYaw, 0, cosYaw };
float3 up = cross(right, forward);
m_viewToWorld[0].xyz = right;
m_viewToWorld[1].xyz = up;
m_viewToWorld[2].xyz = -forward;
}
// MayaCamera implementation
MayaCamera::MayaCamera()
: super(),
m_rotateSpeed(0.005f),
m_zoomSpeed(0.01f),
m_zoomWheelSpeed(0.001f),
m_mousePosPrev(0),
m_controllerPresent(false),
m_controllerMoveSpeed(2.0f),
m_controllerZoomSpeed(2.0f),
m_controllerRotateSpeed(2.0f),
m_yaw(0.0f),
m_pitch(0.0f),
m_posTarget(0),
m_radius(1.0f),
m_pos(-1, 0, 0)
{
// Check for controller
XINPUT_STATE stateDummy;
m_controllerPresent = (XInputGetState(0, &stateDummy) == ERROR_SUCCESS);
}
void MayaCamera::Update(float timestep)
{
(void)timestep;
// Track mouse motion
int2 mousePos;
GetCursorPos((POINT *)&mousePos);
int2 mouseMove = mousePos - m_mousePosPrev;
m_mousePosPrev = mousePos;
// Handle mouse rotation
if (m_mbuttonCur == MBUTTON_Left)
{
m_yaw -= m_rotateSpeed * mouseMove.x;
m_yaw = modPositive(m_yaw, 2.0f*pi);
m_pitch -= m_rotateSpeed * mouseMove.y;
m_pitch = clamp(m_pitch, -0.5f*pi, 0.5f*pi);
}
// Retrieve controller state
XINPUT_STATE controllerState = {};
float2 controllerLeftStick(0.0f), controllerRightStick(0.0f);
float controllerLeftTrigger = 0.0f, controllerRightTrigger = 0.0f;
if (m_controllerPresent)
{
// Look out for disconnection
if (XInputGetState(0, &controllerState) == ERROR_SUCCESS)
{
// Decode axes and apply dead zones
controllerLeftTrigger = float(max(0, controllerState.Gamepad.bLeftTrigger - XINPUT_GAMEPAD_TRIGGER_THRESHOLD)) / float(255 - XINPUT_GAMEPAD_TRIGGER_THRESHOLD);
controllerRightTrigger = float(max(0, controllerState.Gamepad.bRightTrigger - XINPUT_GAMEPAD_TRIGGER_THRESHOLD)) / float(255 - XINPUT_GAMEPAD_TRIGGER_THRESHOLD);
controllerLeftStick = float2(controllerState.Gamepad.sThumbLX, controllerState.Gamepad.sThumbLY);
float lengthLeft = length(controllerLeftStick);
if (lengthLeft > XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE)
controllerLeftStick = (controllerLeftStick / lengthLeft) * (lengthLeft - XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE) / float(32768 - XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE);
else
controllerLeftStick = float2(0.0f);
controllerRightStick = float2(controllerState.Gamepad.sThumbRX, controllerState.Gamepad.sThumbRY);
float lengthRight = length(controllerRightStick);
if (lengthRight > XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE)
controllerRightStick = (controllerRightStick / lengthRight) * (lengthRight - XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE) / float(32768 - XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE);
else
controllerRightStick = float2(0.0f);
}
else
{
m_controllerPresent = false;
}
}
// Handle controller rotation
if (m_controllerPresent)
{
m_yaw -= m_controllerRotateSpeed * controllerRightStick.x * abs(controllerRightStick.x) * timestep;
m_yaw = modPositive(m_yaw, 2.0f*pi);
m_pitch += m_controllerRotateSpeed * controllerRightStick.y * abs(controllerRightStick.y) * timestep;
m_pitch = clamp(m_pitch, -0.5f*pi, 0.5f*pi);
}
UpdateOrientation();
// Handle zoom
if (m_mbuttonCur == MBUTTON_Right)
{
m_radius *= expf(mouseMove.y * m_zoomSpeed);
}
m_radius *= expf(-m_wheelDelta * m_zoomWheelSpeed);
m_wheelDelta = 0;
// Handle controller zoom
if (m_controllerPresent && !(controllerState.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER))
{
m_radius *= expf(-controllerLeftStick.y * abs(controllerLeftStick.y) * m_controllerZoomSpeed * timestep);
}
// Handle motion of target point
if (m_mbuttonCur == MBUTTON_Middle)
{
m_posTarget -= m_rotateSpeed * mouseMove.x * m_radius * m_viewToWorld[0].xyz;
m_posTarget += m_rotateSpeed * mouseMove.y * m_radius * m_viewToWorld[1].xyz;
}
// Handle controller motion of target point
if (m_controllerPresent && (controllerState.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER))
{
float3 localVelocity(0.0f);
localVelocity.x = controllerLeftStick.x * abs(controllerLeftStick.x);
localVelocity.y = square(controllerRightTrigger) - square(controllerLeftTrigger);
localVelocity.z = -controllerLeftStick.y * abs(controllerLeftStick.y);
m_posTarget += xfmVector(localVelocity, m_viewToWorld) * (m_radius * m_controllerMoveSpeed * timestep);
}
// Calculate remaining matrices
m_pos = m_posTarget + m_radius * m_viewToWorld[2].xyz;
setTranslation(&m_viewToWorld, m_pos);
UpdateWorldToClip();
}
void MayaCamera::LookAt(float3 posCamera, float3 posTarget)
{
m_posTarget = posTarget;
m_pos = posCamera;
// Calculate angles to look at posTarget
float3 vecToTarget = posTarget - posCamera;
ASSERT_WARN(!all(isnear(vecToTarget, 0.0f)));
m_radius = length(vecToTarget);
vecToTarget /= m_radius;
m_yaw = atan2f(-vecToTarget.z, vecToTarget.x);
m_pitch = asinf(vecToTarget.y);
// Update matrices
UpdateOrientation();
m_pos = m_posTarget + m_radius * m_viewToWorld[2].xyz;
setTranslation(&m_viewToWorld, m_pos);
UpdateWorldToClip();
}
void MayaCamera::SetPose(float3 posTarget, float yaw, float pitch, float radius)
{
m_posTarget = posTarget;
m_yaw = yaw;
m_pitch = pitch;
m_radius = radius;
// Update matrices
UpdateOrientation();
UpdateWorldToClip();
}
void MayaCamera::UpdateOrientation()
{
// Calculate new orientation matrix using spherical coordinates
float cosYaw = cosf(m_yaw);
float sinYaw = sinf(m_yaw);
float cosPitch = cosf(m_pitch);
float sinPitch = sinf(m_pitch);
float3 forward = { cosYaw * cosPitch, sinPitch, -sinYaw * cosPitch };
float3 right = { sinYaw, 0, cosYaw };
float3 up = cross(right, forward);
m_viewToWorld[0].xyz = right;
m_viewToWorld[1].xyz = up;
m_viewToWorld[2].xyz = -forward;
}
// TwoDCamera implementation
TwoDCamera::TwoDCamera()
: super(),
m_dimsWindow(1, 1),
m_zoomWheelSpeed(0.001f),
m_mbuttonActivate(MBUTTON_Left),
m_mousePosPrev(0, 0),
m_pos(0.5f, 0.5f),
m_scale(1.0f),
m_viewToWorld(identity),
m_worldToView(identity)
{
}
void TwoDCamera::Update(float timestep)
{
(void)timestep;
// Track mouse motion
int2 mousePos;
GetCursorPos((POINT *)&mousePos);
int2 mouseMove = mousePos - m_mousePosPrev;
m_mousePosPrev = mousePos;
// Calculate pixels-to-world scale factor - based on height of window (width just changes aspect ratio)
float pixelsToWorld = m_scale / m_dimsWindow.y;
// Handle mouse translation
if (m_mbuttonActivate == MBUTTON_None ||
m_mbuttonCur == m_mbuttonActivate)
{
m_pos -= pixelsToWorld * float2(mouseMove);
}
// Handle mouse wheel zoom
m_scale *= expf(-m_wheelDelta * m_zoomWheelSpeed);
m_wheelDelta = 0;
UpdateTransforms();
}
void TwoDCamera::UpdateTransforms()
{
float aspect = float(m_dimsWindow.x) / float(m_dimsWindow.y);
m_viewToWorld = affineMatrix(
diagonalMatrix(m_scale * aspect, m_scale),
float2(m_pos.x - 0.5f * m_scale * aspect, m_pos.y - 0.5f * m_scale));
m_worldToView = inverse(m_viewToWorld);
m_worldToClip = m_worldToView * affineMatrix(diagonalMatrix(2.0f, -2.0f), float2(-1.0f, 1.0f));
}
}