-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
249 lines (209 loc) · 7.41 KB
/
main.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
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Player.h"
#include "Camera.h"
#include "Cube.h"
#include <bits/stdc++.h>
using namespace std;
using Vec2 = glm::vec2;
using Vec3 = glm::vec3;
using Mat4 = glm::mat4;
void processInput(GLFWwindow *window);
void mouse_callback(GLFWwindow* window, double xpos, double ypos);
void framebuffer_size_callback(GLFWwindow* window, int width, int height);
// Settings
const int WIDTH = 800, HEIGHT = 600;
const char *vertexShaderSource = "#version 330 core\n"
"layout (location = 0) in vec3 aPos;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 projection;\n"
"void main()\n"
"{\n"
" gl_Position = projection * view * model * vec4(aPos, 1.0f);\n"
"}\0";
const char *fragmentShaderSource = "#version 330 core\n"
"out vec4 FragColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);\n"
"}\n\0";
float deltaTime = 0.0f; // Time between current frame and last frame
float lastFrame = 0.0f; // Time of last frame
// Camera
Camera camera(Vec3(0.0f, 0.0f, 3.0f));
Player player(Vec3(0.0f, 0.0f, 3.0f), &camera);
int main() {
// Initialize GLFW
if (!glfwInit()) {
std::cout << "Failed to initialize GLFW" << std::endl;
return -1;
}
// Set GLFW options
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// Create a window
GLFWwindow* window = glfwCreateWindow(WIDTH, HEIGHT, "opengl", NULL, NULL);
if (window == NULL) {
std::cout << "Failed to create GLFW window" << std::endl;
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
// Initialize GLEW
glewExperimental = GL_TRUE;
if (glewInit() != GLEW_OK) {
std::cout << "Failed to initialize GLEW" << std::endl;
return -1;
}
// Set the viewport
glViewport(0, 0, WIDTH, HEIGHT);
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
// Capture mouse events
glfwSetCursorPosCallback(window, mouse_callback);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
// Vertex shaders
unsigned int vertexShader = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vertexShader, 1, &vertexShaderSource, NULL);
glCompileShader(vertexShader);
int success;
char infoLog[512];
glGetShaderiv(vertexShader, GL_COMPILE_STATUS, &success);
if (!success) {
glGetShaderInfoLog(vertexShader, 512, NULL, infoLog);
std::cout << "ERROR: Vertex shader compilation failed\n" << infoLog << std::endl;
}
// Fragment shaders
unsigned int fragmentShader = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fragmentShader, 1, &fragmentShaderSource, NULL);
glCompileShader(fragmentShader);
glGetShaderiv(fragmentShader, GL_COMPILE_STATUS, &success);
if (!success) {
glGetShaderInfoLog(fragmentShader, 512, NULL, infoLog);
std::cout << "ERROR: Fragment shader compilation failed\n" << infoLog << std::endl;
}
// Link shaders into a shader program
unsigned int shaderProgram = glCreateProgram();
glAttachShader(shaderProgram, vertexShader);
glAttachShader(shaderProgram, fragmentShader);
glLinkProgram(shaderProgram);
glGetProgramiv(shaderProgram, GL_LINK_STATUS, &success);
if (!success) {
glGetProgramInfoLog(shaderProgram, 512, NULL, infoLog);
std::cout << "ERROR: Shader program linking failed\n" << infoLog << std::endl;
}
// Delete the shader objects, since they're now linked into the program
glDeleteShader(vertexShader);
glDeleteShader(fragmentShader);
// Add positions for multiple cubes
Vec3 cubePositions[] = {
Vec3( 0.0f, 0.0f, 0.0f),
Vec3( 2.0f, 5.0f, -15.0f),
Vec3(-1.5f, -2.2f, -2.5f),
Vec3(-3.8f, -2.0f, -12.3f),
Vec3( 2.4f, -0.4f, -3.5f),
Vec3(-1.7f, 3.0f, -7.5f),
Vec3( 1.3f, -2.0f, -2.5f),
Vec3( 1.5f, 2.0f, -2.5f),
Vec3( 1.5f, 0.2f, -1.5f),
Vec3(-1.3f, 1.0f, -1.5f)
};
vector<std::unique_ptr<Cube>> cubes;
for (int i = 0; i < 10; i++) {
cubes.push_back(std::make_unique<Cube>(cubePositions[i], Vec3(0.0f, 0.0f, 0.0f), Vec3(1.0f, 1.0f, 1.0f)));
}
// Create an Object instance
// Object obj;
// if (!obj.loadFromOBJ("cow.obj")) {
// std::cerr << "Failed to load OBJ file." << std::endl;
// return -1;
// }
// Experimental
glEnable(GL_DEPTH_TEST);
glPolygonMode( GL_FRONT_AND_BACK, GL_LINE);
// Main loop
while (!glfwWindowShouldClose(window)) {
// Update deltaTime
float currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
lastFrame = currentFrame;
// Process input
processInput(window);
// Clear the screen & depth buffer
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// Create the view & projection matrices
Mat4 view = camera.getViewMatrix();
Mat4 projection = glm::perspective(glm::radians(camera.fov), (float)WIDTH / HEIGHT, 0.1f, 100.0f);
// Use shader program and set common uniforms
glUseProgram(shaderProgram);
int viewLoc = glGetUniformLocation(shaderProgram, "view");
int projLoc = glGetUniformLocation(shaderProgram, "projection");
glUniformMatrix4fv(viewLoc, 1, GL_FALSE, glm::value_ptr(view));
glUniformMatrix4fv(projLoc, 1, GL_FALSE, glm::value_ptr(projection));
// Render cubes
for (const auto& cube : cubes) {
// Update rotation
cube->rotation += Vec3(1.0f, 1.0f, 1.0f) * 50.0f * deltaTime;
// Get the model matrix
Mat4 model = cube->getModelMatrix();
// Set the model matrix uniform
int modelLoc = glGetUniformLocation(shaderProgram, "model");
glUniformMatrix4fv(modelLoc, 1, GL_FALSE, glm::value_ptr(model));
// Draw the cube
cube->draw();
}
// Swap buffers and poll events
glfwSwapBuffers(window);
glfwPollEvents();
}
// Clean up
glDeleteProgram(shaderProgram);
glfwTerminate();
return 0;
}
// Process inputs
void processInput(GLFWwindow *window) {
if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) {
glfwSetWindowShouldClose(window, true);
}
// Player controls
float xDir = 0.0f, yDir = 0.0f;
if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS)
yDir += 1.0f;
if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS)
yDir -= 1.0f;
if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS)
xDir -= 1.0f;
if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS)
xDir += 1.0f;
player.move(Vec2(xDir, yDir), deltaTime);
if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS) {
player.jump();
}
player.updateVertical(deltaTime);
}
// Mouse movement callback
void mouse_callback(GLFWwindow* window, double xpos, double ypos) {
static bool firstMouse = true;
static float lastX = WIDTH / 2.0f;
static float lastY = HEIGHT / 2.0f;
if (firstMouse) {
lastX = xpos;
lastY = ypos;
firstMouse = false;
}
float xoffset = xpos - lastX;
float yoffset = lastY - ypos; // Reverse: y-coords go from bot to top
lastX = xpos;
lastY = ypos;
camera.processMouseMovement(xoffset, yoffset);
}
// Resize viewport on window resize
void framebuffer_size_callback(GLFWwindow* window, int width, int height) {
glViewport(0, 0, width, height);
}