source: opengl-game/game-gui-glfw.cpp@ 92cbc6a

feature/imgui-sdl points-test
Last change on this file since 92cbc6a was a6f6833, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Remove getWindowSize() from game-gui and instead add getWindowWidth(), getWindowHeight(), and refreshWindowSize() (which updates the internal variables returned by the first two functions)

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[0e6ecf3]1#include "game-gui-glfw.hpp"
2
[1ce9afe]3#include "compiler.hpp"
[9546928]4#include "consts.hpp"
5
[c61323a]6queue<UIEvent> GameGui_GLFW::s_events;
[7bf5433]7string GameGui_GLFW::s_errorMessage;
[d8cb15e]8
[7fc5e27]9string& GameGui_GLFW::getError() {
[d8cb15e]10 return GameGui_GLFW::s_errorMessage;
11}
12
[7fc5e27]13bool GameGui_GLFW::init() {
[d8cb15e]14 GameGui_GLFW::s_errorMessage = "No error";
15 glfwSetErrorCallback(glfw_error_callback);
16
[7fc5e27]17 windowWidth = -1;
18 windowHeight = -1;
19
[d8cb15e]20 return glfwInit() == GLFW_TRUE ? RTWO_SUCCESS : RTWO_ERROR;
[0e6ecf3]21}
22
[7fc5e27]23void GameGui_GLFW::shutdown() {
[0e6ecf3]24 glfwTerminate();
25}
26
[7fc5e27]27void* GameGui_GLFW::createWindow(const string& title, int width, int height, bool fullscreen) {
[1ce9afe]28 GLFWmonitor* mon = nullptr;
29
30#if defined(GAMEGUI_INCLUDE_VULKAN)
31 glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); // This is for Vulkan, OpenGL needs different flags
32#elif defined(MAC)
33 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
34 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
35 glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
36 glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
37#else
38 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
39 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
40#endif
41
42 glfwWindowHint(GLFW_SAMPLES, 16);
43 glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, true);
44
45 if (fullscreen) {
46 mon = glfwGetPrimaryMonitor();
47 const GLFWvidmode* vmode = glfwGetVideoMode(mon);
48
[7fc5e27]49 windowWidth = vmode->width;
50 windowHeight = vmode->height;
51 } else {
52 windowWidth = width;
53 windowHeight = height;
[1ce9afe]54 }
[0e6ecf3]55
[7fc5e27]56 window = glfwCreateWindow(windowWidth, windowHeight, title.c_str(), mon, nullptr);
[1ce9afe]57
[a6f6833]58 // TODO: I should check the window size after it's created to make sure it matches the requested size
59 // glfwGetFramebufferSize(window, width, height) segfaults on OSX, check other platforms
60 // I think glfwGetWindowSize(window, width, height) works fine.
61
[7bf5433]62 glfwSetMouseButtonCallback(window, glfw_mouse_button_callback);
[1ce9afe]63 glfwSetKeyCallback(window, glfw_key_callback);
64
[0e6ecf3]65 return window;
66}
67
[7fc5e27]68void GameGui_GLFW::destroyWindow() {
[0e6ecf3]69 // TODO: This function can throw some errors. They should be handled
70 glfwDestroyWindow(window);
71}
72
[7bf5433]73void GameGui_GLFW::processEvents() {
74 glfwPollEvents();
75
[c61323a]76 if (glfwWindowShouldClose(window)) {
77 UIEvent e;
78 e.type = UI_EVENT_QUIT;
[7bf5433]79
[c61323a]80 s_events.push(e);
81 }
[7bf5433]82}
83
[c61323a]84int GameGui_GLFW::pollEvent(UIEvent* event) {
85 if (s_events.empty()) {
[7bf5433]86 return 0;
87 }
88
[c61323a]89 *event = s_events.front();
90 s_events.pop();
[7bf5433]91
92 return 1;
93}
94
[a6f6833]95void GameGui_GLFW::refreshWindowSize() {
96 // glfwGetFramebufferSize(window, width, height) segfaults on OSX, check other platforms
97 // I think glfwGetWindowSize(window, width, height) works fine.
98 glfwGetWindowSize(window, &windowWidth, &windowHeight);
99}
100
101int GameGui_GLFW::getWindowWidth() {
102 return windowWidth;
103}
104
105int GameGui_GLFW::getWindowHeight() {
106 return windowHeight;
107}
108
[4eb4d0a]109#ifdef GAMEGUI_INCLUDE_VULKAN
110
[7fc5e27]111bool GameGui_GLFW::createVulkanSurface(VkInstance instance, VkSurfaceKHR* surface) {
[0e6ecf3]112 return glfwCreateWindowSurface(instance, window, nullptr, surface) == VK_SUCCESS ?
113 RTWO_SUCCESS : RTWO_ERROR;
114}
[8667f76]115
[7fc5e27]116vector<const char*> GameGui_GLFW::getRequiredExtensions() {
[8667f76]117 uint32_t glfwExtensionCount = 0;
118 const char** glfwExtensions;
119
120 glfwExtensions = glfwGetRequiredInstanceExtensions(&glfwExtensionCount);
121
122 vector<const char*> extensions(glfwExtensions, glfwExtensions + glfwExtensionCount);
123
124 return extensions;
125}
126
[a6f6833]127#endif
[1ce9afe]128
129void glfw_error_callback(int error, const char* description) {
130 GameGui_GLFW::s_errorMessage = description;
131}
132
[7bf5433]133void glfw_mouse_button_callback(GLFWwindow* window, int button, int action, int mods) {
134 double x, y;
135 glfwGetCursorPos(window, &x, &y);
136
137 /*
138 MouseEvent e { button, action, (int)x, (int)y };
139
140 mouseEvents.push(e);
141 */
142}
143
[1ce9afe]144void glfw_key_callback(GLFWwindow* window, int key, int scancode, int action, int mods) {
[c61323a]145 UIEvent e;
146 e.type = UI_EVENT_KEY;
147 e.key.keycode = key;
[1ce9afe]148
[c61323a]149 GameGui_GLFW::s_events.push(e);
[1ce9afe]150}
Note: See TracBrowser for help on using the repository browser.