-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlPlayer.h
88 lines (71 loc) · 2.37 KB
/
GlPlayer.h
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
#ifndef GL_PLAYER_H
#define GL_PLAYER_H
#include"GlCamera.h"
class GlPlayer : public GlCamera {
public:
GlPlayer(GLFWwindow* window)
: GlCamera(window), position(1, 3, 3), horizontalAngle(3.14159f), verticalAngle(0.0f),
initialFoV(45.0f), speed(3.0f), mouseSpeed(0.05f), lastTime(glfwGetTime())
{
int width, height;
glfwGetWindowSize(this->pWindowM, &width, &height);
glfwSetCursorPos(this->pWindowM, width / 2.0, height / 2.0);
}
virtual void frame() {
double mouseX, mouseY;
int width, height;
glfwGetCursorPos(this->pWindowM, &mouseX, &mouseY);
glfwGetWindowSize(this->pWindowM, &width, &height);
glfwSetCursorPos(this->pWindowM, width / 2.0, height / 2.0);
double currentTime = glfwGetTime();
float deltaTime = float(currentTime - lastTime);
this->lastTime = currentTime;
this->horizontalAngle += this->mouseSpeed * deltaTime * float(width / 2.0 - mouseX);
this->verticalAngle += this->mouseSpeed * deltaTime * float(height / 2.0 - mouseY);
glm::vec3 direction(
cos(this->verticalAngle) * sin(this->horizontalAngle),
sin(this->verticalAngle),
cos(this->verticalAngle) * cos(this->horizontalAngle)
);
glm::vec3 right(
sin(this->horizontalAngle - 3.14159f / 2.0f),
0,
cos(this->horizontalAngle - 3.14159f / 2.0f)
);
glm::vec3 up(glm::cross(right, direction));
if (glfwGetKey(this->pWindowM, GLFW_KEY_W) == GLFW_PRESS) {
position += direction * deltaTime * this->speed;
}
if (glfwGetKey(this->pWindowM, GLFW_KEY_A) == GLFW_PRESS) {
position -= right * deltaTime * this->speed;
}
if (glfwGetKey(this->pWindowM, GLFW_KEY_S) == GLFW_PRESS) {
position -= direction * deltaTime * this->speed;
}
if (glfwGetKey(this->pWindowM, GLFW_KEY_D) == GLFW_PRESS) {
position += right * deltaTime * this->speed;
}
if (glfwGetKey(this->pWindowM, GLFW_KEY_UP) == GLFW_PRESS) {
this->initialFoV -= 0.2f;
}
if (glfwGetKey(this->pWindowM, GLFW_KEY_DOWN) == GLFW_PRESS) {
this->initialFoV += 0.2f;
}
this->newPerspective(this->initialFoV, width, height, 0.1f, 100.0f);
static int i = 0;
i++;
if (i == 500) {
i = 0;
}
this->newView(position, position + direction, up);
}
private:
glm::vec3 position;
float horizontalAngle;
float verticalAngle;
float initialFoV;
float speed;
float mouseSpeed;
float lastTime;
};
#endif