-
Notifications
You must be signed in to change notification settings - Fork 931
/
Copy pathcontrols.cpp
133 lines (110 loc) · 4.17 KB
/
controls.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
// Include GLFW
#include <GLFW/glfw3.h>
extern GLFWwindow* window; // The "extern" keyword here is to access the variable "window" declared in tutorialXXX.cpp. This is a hack to keep the tutorials simple. Please avoid this.
// Include GLM
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
using namespace glm;
#include "controls.hpp"
glm::mat4 ViewMatrix;
glm::mat4 ProjectionMatrix;
glm::mat4 getViewMatrix(){
return ViewMatrix;
}
glm::mat4 getProjectionMatrix(){
return ProjectionMatrix;
}
const float PI = glm::pi<float>();
// Initial position : on +Z
glm::vec3 position = glm::vec3( 0, 0, 5 );
// Initial horizontal angle : toward -Z
float horizontalAngle = PI;
// Initial vertical angle : none
float verticalAngle = 0.0f;
// Initial Field of View
float initialFoV = 45.0f;
float speed = 3.0f; // 3 units / second
float mouseSpeed = 0.005f;
void computeMatricesFromInputs(){
// glfwGetTime is called only once, the first time this function is called
static double lastTime = glfwGetTime();
// Compute time difference between current and last frame
double currentTime = glfwGetTime();
float deltaTime = float(currentTime - lastTime);
// First time this function is called, the cursor position is reset since
// an unintended movement will otherwise register on the first frame
static bool first_frame = true;
if (first_frame){
glfwSetCursorPos(window, 1024/2, 768/2);
first_frame = false;
}
// Get mouse position
double xpos, ypos;
glfwGetCursorPos(window, &xpos, &ypos);
// Reset mouse position for next frame
glfwSetCursorPos(window, 1024/2, 768/2);
// Compute new orientation
horizontalAngle += mouseSpeed * float(1024/2 - xpos );
verticalAngle -= mouseSpeed * float( 768/2 - ypos );
if (verticalAngle < PI/2+0.01) {
verticalAngle = PI/2+0.01;
}
if (verticalAngle > 3*PI/2-0.01) {
verticalAngle = 3*PI/2-0.01;
}
// Direction : Spherical coordinates to Cartesian coordinates conversion
glm::vec3 direction(
cos(verticalAngle) * sin(horizontalAngle),
sin(verticalAngle),
cos(verticalAngle) * cos(horizontalAngle)
);
// Forwards vector
glm::vec3 forwards = glm::normalize(glm::vec3(direction.x,0,direction.z));
glm::vec3 backwards = (-1.0f)*forwards;
// Up vector
glm::vec3 up = glm::vec3( 0, 1, 0 );
glm::vec3 down = (-1.0f)*up;
// Right vector
glm::vec3 right = glm::cross(forwards,up);
glm::vec3 left = (-1.0f)*right;
// Move forward
if (glfwGetKey( window, GLFW_KEY_UP ) == GLFW_PRESS
|| glfwGetKey( window, GLFW_KEY_W ) == GLFW_PRESS){
position += forwards * deltaTime * speed;
}
// Move backward
if (glfwGetKey( window, GLFW_KEY_DOWN ) == GLFW_PRESS
|| glfwGetKey( window, GLFW_KEY_S ) == GLFW_PRESS){
position += backwards * deltaTime * speed;
}
// Strafe right
if (glfwGetKey( window, GLFW_KEY_RIGHT ) == GLFW_PRESS
|| glfwGetKey( window, GLFW_KEY_D ) == GLFW_PRESS){
position += right * deltaTime * speed;
}
// Strafe left
if (glfwGetKey( window, GLFW_KEY_LEFT ) == GLFW_PRESS
|| glfwGetKey( window, GLFW_KEY_A ) == GLFW_PRESS){
position += left * deltaTime * speed;
}
// Move up
if (glfwGetKey( window, GLFW_KEY_SPACE ) == GLFW_PRESS){
position += up * deltaTime * speed;
}
// Move down
if (glfwGetKey( window, GLFW_KEY_LEFT_SHIFT ) == GLFW_PRESS
|| glfwGetKey( window, GLFW_KEY_RIGHT_SHIFT) == GLFW_PRESS){
position += down * deltaTime * speed;
}
float FoV = initialFoV;// - 5 * glfwGetMouseWheel(); // Now GLFW 3 requires setting up a callback for this. It's a bit too complicated for this beginner's tutorial, so it's disabled instead.
// Projection matrix : 45° Field of View, 4:3 ratio, display range : 0.1 unit <-> 100 units
ProjectionMatrix = glm::perspective(glm::radians(FoV), 4.0f / 3.0f, 0.1f, 100.0f);
// Camera matrix
ViewMatrix = glm::lookAt(
position, // Camera is here
position+direction, // and looks here : at the same position, plus "direction"
up // Head is up (set to 0,-1,0 to look upside-down)
);
// For the next frame, the "last time" will be "now"
lastTime = currentTime;
}