40 std::cout <<
"Failed to initialize GLFW." << std::endl;
44 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
45 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
46 glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
47 window = glfwCreateWindow(800, 600, window_name.c_str(), NULL, NULL);
49 std::cout <<
"Failed to create GLFW window." << std::endl;
54 glfwMakeContextCurrent(
window);
66 glfwSetWindowUserPointer(
window, (
void *)&input);
74 return glfwWindowShouldClose(
window);
89 std::cerr <<
"Error: " << description << std::endl;
100 glViewport(0, 0, width, height);
111 ImGuiIO &io = ImGui::GetIO();
112 if (io.WantCaptureKeyboard)
124 ImGuiIO &io = ImGui::GetIO();
125 if (io.WantCaptureMouse)
140 ImGuiIO &io = ImGui::GetIO();
141 if (io.WantCaptureMouse)
146 glfwGetCursorPos(
window, &xpos, &ypos);
147 input_inst->
mouse.
pos = glm::vec2(xpos, ypos);
158 input_inst->
mouse.
pos = glm::vec2(xpos, ypos);
static void cursor_position_callback(GLFWwindow *window, double xpos, double ypos)
static void error_callback(int error, const char *description)
static void framebuffer_size_callback(GLFWwindow *window, int width, int height)
bool init(const std::string &window_name, InputData &input)
bool window_should_close()
void end_frame(FrameStats &fs)
static void scroll_callback(GLFWwindow *window, double xoffset, double yoffset)
static void key_callback(GLFWwindow *window, int key, int scancode, int action, int mods)
static void mouse_button_callback(GLFWwindow *window, int button, int action, int mods)
int key
Code of the key of the recent event.
int action
Key action, whether it was pressed, released or held.
double xoffset
Offset of the mouse wheel along x-axis.
glm::vec2 pos
Raw mouse cursor coordinates on the screen ([0,0] in the upper left corner).
int action
Pressed, released or held button.
int button
Left, right or middle button.
double yoffset
Offset of the mouse wheel along y-axis.