-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.cpp
188 lines (146 loc) · 5.58 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
#include"camera.h"
#include "keyreceiver.h"
#include <QGuiApplication>
Camera::Camera(int width, int height, glm::vec3 position)
{
Camera::width = width;
Camera::height = height;
Position = position;
//rubber_band_horizontal = new QRubberBand(QRubberBand::Line);
//rubber_band_vertical = new QRubberBand(QRubberBand::Line);
//rubber_band_horizontal->setAttribute(Qt::WA_TransparentForMouseEvents);
//rubber_band_vertical->setAttribute(Qt::WA_TransparentForMouseEvents);
//rubber_band_horizontal->unsetCursor();
//rubber_band_vertical->unsetCursor();
}
void Camera::updateMatrix(float FOVdeg, float nearPlane, float farPlane)
{
// Initializes matrices since otherwise they will be the null matrix
this->FOVdeg = FOVdeg;
view = glm::mat4(1.0f);
projection = glm::mat4(1.0f);
// Makes camera look in the right direction from the right position
view = glm::lookAt(Position, Position + Orientation, Up);
// Adds perspective to the scene
projection = glm::perspective(FOVdeg,(float)width/height, nearPlane, farPlane);
// Sets new camera matrix
cameraMatrix = projection * view;
}
void Camera::Matrix(Shader& shader, const char* uniform)
{
#ifdef Q_OS_WIN
#elif defined(Q_OS_MAC) || defined (Q_OS_LINUX)
glUniformMatrix4fv(glGetUniformLocation(shader.ID, uniform), 1, GL_FALSE, glm::value_ptr(cameraMatrix));
#endif
}
#ifdef Q_OS_WIN
void Camera::Delete() {
if(m_matrixBuffer)
m_matrixBuffer->Release();
}
#endif
Camera::~Camera() {
/*if(rubber_band_horizontal)
delete rubber_band_horizontal;
if(rubber_band_vertical)
delete rubber_band_vertical;
rubber_band_horizontal = 0;
rubber_band_vertical = 0;*/
}
// Runs at every pass. When player clicks on the 3D window, the variable 'firstClick' is activated the tracks cursor movement. When Escape key is pressed, it exists the mode.
// This is required as the cursor is locked in the middle of the window when in play.
void Camera::Inputs(int screenPosX, int screenPosY, int mouseX, int mouseY, int press_key_esc, int press_key_w, int press_key_a, int press_key_s, int press_key_d, int left_mouse_click)
{
if(left_mouse_click==1) {
if (firstClick)
{
QGuiApplication::setOverrideCursor(Qt::CrossCursor);
/*#if defined(Q_OS_MAC)
rubber_band_horizontal->setGeometry(QRect(-screenPosX+(width / 2)-10, -screenPosY+(height / 2)-1, 20, 2));
if(rubber_band_horizontal->isHidden()) {
rubber_band_horizontal->show();
}
rubber_band_vertical->setGeometry(-screenPosX+(width / 2)-1, -screenPosY+(height / 2)-10, 2, 20);
if(rubber_band_vertical->isHidden()) {
rubber_band_vertical->show();
}
#endif*/
firstClick = false;
}
}
if(press_key_esc==1) {
firstClick = true;
/*#if defined(Q_OS_MAC)
rubber_band_horizontal->hide();
rubber_band_vertical->hide();
#endif*/
}
if(!firstClick){
// Handles key inputs
if(press_key_w == 1) {
Position += speed * Orientation;
}
if(press_key_a == 1) {
Position += (1.f * speed) * -glm::normalize(glm::cross(Orientation, Up));
}
if(press_key_s == 1) {
Position += speed * -Orientation;
}
if(press_key_d == 1) {
Position += (1.f * speed) * glm::normalize(glm::cross(Orientation, Up));
}
/* if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_W))
{
Position += speed * Orientation;
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_A))
{
Position += speed * -glm::normalize(glm::cross(Orientation, Up));
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_S))
{
Position += speed * -Orientation;
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_D))
{
Position += speed * glm::normalize(glm::cross(Orientation, Up));
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_Space))
{
Position += speed * Up;
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_Control))
{
Position += speed * -Up;
}
if (QGuiApplication::queryKeyboardModifiers().testFlag(Qt::Key_Shift))
{
speed = 0.4f;
}
else
{
speed = 0.1f;
}*/
#if defined(Q_OS_WIN) || defined(Q_OS_MAC)
/*if(mouseX < width/2-5 || mouseX > width/2 +5 ) {
QCursor::setPos(-screenPosX+(width / 2), -screenPosY + mouseY);
}
if(mouseY < height/2-5 || mouseY > height/2+5) {
QCursor::setPos(-screenPosX + mouseX, -screenPosY+(height / 2));
}*/
QCursor::setPos(-screenPosX+(width / 2), -screenPosY+(height / 2));
#endif
float rotX = sensitivity*(float)(mouseY*1.0 - (height / 2)) / height;
float rotY = sensitivity*(float)(mouseX*1.0 - (width / 2)) / width;
glm::vec3 newOrientation = glm::rotate(Orientation, glm::radians(-rotX), glm::normalize(glm::cross(Orientation, Up)));
if (abs(glm::angle(newOrientation, Up) - glm::radians(90.0f)) <= glm::radians(85.0f))
{
Orientation = newOrientation;
}
// Rotates the Orientation left and right
Orientation = glm::rotate(Orientation, glm::radians(-rotY), Up);
}
else {
QGuiApplication::setOverrideCursor(Qt::ArrowCursor);
}
}