-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
139 lines (109 loc) · 3.68 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
#include <iostream>
#include "game.h"
#include "resourceManager.h"
void FrameBufferSizeCallback(GLFWwindow* window, int width, int height);
void KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mode);
void MouseCallback(GLFWwindow* window, double xposIn, double yposIn);
void MouseButtonCallback(GLFWwindow* window, int button, int action, int mods);
void ScrollCallback(GLFWwindow* window, double xOffset, double yOffset);
const unsigned int screenWidth = 960;
const unsigned int screenHeight = 540;
float lastX = screenWidth / 2.0f;
float lastY = screenHeight / 2.0f;
bool firstMouse = true;
float deltaAdd = 0.0f;
Game cubeGame(screenWidth, screenHeight);
int main(){
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_RESIZABLE, true);
GLFWwindow* window = glfwCreateWindow(screenWidth, screenHeight, "CubesGame", NULL, NULL);
glfwMakeContextCurrent(window);
if(!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)){
std::cout << "GLAD failed to initialize" << std::endl;
return -1;
}
glfwSetKeyCallback(window, KeyCallback);
glfwSetFramebufferSizeCallback(window, FrameBufferSizeCallback);
glfwSetMouseButtonCallback(window, MouseButtonCallback);
glfwSetCursorPosCallback(window, MouseCallback);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
glfwSetScrollCallback(window, ScrollCallback);
glViewport(0, 0, screenWidth, screenHeight);
glEnable(GL_CULL_FACE);
glEnable(GL_DEPTH_TEST);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
float deltaTime = 0.0f;
float lastFrame = 0.0f;
cubeGame.Init();
while(!glfwWindowShouldClose(window)){
float currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
glfwPollEvents();
cubeGame.ProcessInput(deltaTime);
deltaAdd += deltaTime;
//PhysicsUpdate runs at 30 fps.
while(deltaAdd >= 0.033333333f){
cubeGame.PhysicsUpdate(deltaTime);
deltaAdd -= 0.033333333f;
}
//Update runs every frame.
cubeGame.Update(deltaTime);
glClearColor(0.0f, 0.5f, 0.5f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
cubeGame.Render();
lastFrame = currentFrame;
glfwSwapBuffers(window);
}
ResourceManager::Clear();
cubeGame.Clear();
glfwTerminate();
return 0;
}
void ScrollCallback(GLFWwindow* window, double xOffset, double yOffset){
if(yOffset > 0.0f){
cubeGame.MouseScroll(true);
}
if(yOffset < 0.0f){
cubeGame.MouseScroll(false);
}
}
void KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mode){
if(key == GLFW_KEY_Q && action == GLFW_PRESS){
glfwSetWindowShouldClose(window, true);
}
if(key >= 0 && key < 1024){
if(action == GLFW_PRESS){
cubeGame.keys[key] = true;
}else if(action == GLFW_RELEASE){
cubeGame.keys[key] = false;
}
}
}
void MouseButtonCallback(GLFWwindow* window, int button, int action, int mods){
if(button == GLFW_MOUSE_BUTTON_LEFT && action == GLFW_PRESS){
cubeGame.BreakBlock();
}
if(button == GLFW_MOUSE_BUTTON_RIGHT && action == GLFW_PRESS){
cubeGame.PlaceBlock();
}
}
void FrameBufferSizeCallback(GLFWwindow* window, int width, int height){
glViewport(0, 0, width, height);
}
void MouseCallback(GLFWwindow* window, double xposIn, double yposIn){
float xPos = static_cast<float>(xposIn);
float yPos = static_cast<float>(yposIn);
if(firstMouse){
lastX = xPos;
lastY = yPos;
firstMouse = false;
}
float xOffset = xPos - lastX;
float yOffset = lastY - yPos;
lastX = xPos;
lastY = yPos;
cubeGame.UpdateCamera(xOffset, yOffset);
}