BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
wrapper_glfw.cpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#include "wrapper_glfw.h"
20
21#include "imgui.h"
22#include <glm/glm.hpp>
23
24#include <iostream>
25
27
29{
30 glfwDestroyWindow(window);
31 glfwTerminate();
32}
33
34bool
35GlfwWrapper::init(const std::string &window_name, InputData &input)
36{
37 glfwSetErrorCallback(error_callback);
38
39 if (!glfwInit()) {
40 std::cout << "Failed to initialize GLFW." << std::endl;
41 return false;
42 }
43
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);
48 if (!window) {
49 std::cout << "Failed to create GLFW window." << std::endl;
50 glfwTerminate();
51 return false;
52 }
53
54 glfwMakeContextCurrent(window);
55
56 glfwSwapInterval(1);
57
58 glfwSetKeyCallback(window, key_callback);
59 glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
60 glfwSetScrollCallback(window, scroll_callback);
61 glfwSetMouseButtonCallback(window, mouse_button_callback);
62 glfwSetCursorPosCallback(window, cursor_position_callback);
63
64 // Set the user pointer tied to the window used for
65 // storing values in callbacks.
66 glfwSetWindowUserPointer(window, (void *)&input);
67
68 return true;
69}
70
71bool
73{
74 return glfwWindowShouldClose(window);
75}
76
77void
79{
80 glFinish();
81 glfwSwapBuffers(window);
82 // Calls registered callbacks if any events were triggered
83 glfwPollEvents();
84}
85
86void
87GlfwWrapper::error_callback(int error, const char *description)
88{
89 std::cerr << "Error: " << description << std::endl;
90}
91
92void
94 int width,
95 int height)
96{
97 InputData *input_inst = (InputData *)glfwGetWindowUserPointer(window);
98 input_inst->fb_width = width;
99 input_inst->fb_height = height;
100 glViewport(0, 0, width, height);
101}
102
103void
104GlfwWrapper::key_callback(GLFWwindow *window,
105 int key,
106 int scancode,
107 int action,
108 int mods)
109{
110 // Ignore callback if io is used by imgui window or gadget
111 ImGuiIO &io = ImGui::GetIO();
112 if (io.WantCaptureKeyboard)
113 return;
114
115 InputData *input_inst = (InputData *)glfwGetWindowUserPointer(window);
116 input_inst->keyboard.key = key;
117 input_inst->keyboard.action = action;
118}
119
120void
121GlfwWrapper::scroll_callback(GLFWwindow *window, double xoffset, double yoffset)
122{
123 // Ignore callback if io is used by imgui window or gadget
124 ImGuiIO &io = ImGui::GetIO();
125 if (io.WantCaptureMouse)
126 return;
127
128 InputData *input_inst = (InputData *)glfwGetWindowUserPointer(window);
129 input_inst->mouse.xoffset = xoffset;
130 input_inst->mouse.yoffset = yoffset;
131}
132
133void
135 int button,
136 int action,
137 int mods)
138{
139 // Ignore callback if io is used by imgui window or gadget
140 ImGuiIO &io = ImGui::GetIO();
141 if (io.WantCaptureMouse)
142 return;
143
144 InputData *input_inst = (InputData *)glfwGetWindowUserPointer(window);
145 double xpos, ypos;
146 glfwGetCursorPos(window, &xpos, &ypos);
147 input_inst->mouse.pos = glm::vec2(xpos, ypos);
148 input_inst->mouse.button = button;
149 input_inst->mouse.action = action;
150}
151
152void
154 double xpos,
155 double ypos)
156{
157 InputData *input_inst = (InputData *)glfwGetWindowUserPointer(window);
158 input_inst->mouse.pos = glm::vec2(xpos, ypos);
159}
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)
GLFWwindow * window
Definition: wrapper_glfw.h:48
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)
Input events data storage.
Definition: input_data.h:30
KeyboardData keyboard
Definition: input_data.h:32
MouseData mouse
Definition: input_data.h:31
int fb_width
Definition: input_data.h:36
int fb_height
Definition: input_data.h:37
int key
Code of the key of the recent event.
Definition: keyboard_data.h:29
int action
Key action, whether it was pressed, released or held.
Definition: keyboard_data.h:32
double xoffset
Offset of the mouse wheel along x-axis.
Definition: mouse_data.h:36
glm::vec2 pos
Raw mouse cursor coordinates on the screen ([0,0] in the upper left corner).
Definition: mouse_data.h:45
int action
Pressed, released or held button.
Definition: mouse_data.h:33
int button
Left, right or middle button.
Definition: mouse_data.h:31
double yoffset
Offset of the mouse wheel along y-axis.
Definition: mouse_data.h:38