BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
input_handler.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 "input_handler.h"
20
21void
22InputHandler::update(View &view, Renderer &renderer, State &state)
23{
24 process_keyboard(view, renderer);
25 process_mouse_button(view, renderer, state);
27}
28
29void
31{
32 input.reset();
33}
34
35void
37{
38 int key = input.keyboard.key;
39 int action = input.keyboard.action;
40 if (key == GLFW_KEY_W && (action == GLFW_PRESS || action == GLFW_REPEAT))
41 view.move_y(1);
42 if (key == GLFW_KEY_S && (action == GLFW_PRESS || action == GLFW_REPEAT))
43 view.move_y(-1);
44 if (key == GLFW_KEY_A && (action == GLFW_PRESS || action == GLFW_REPEAT))
45 view.move_x(-1);
46 if (key == GLFW_KEY_D && (action == GLFW_PRESS || action == GLFW_REPEAT))
47 view.move_x(1);
48
49 if (key == GLFW_KEY_LEFT_CONTROL &&
50 (action == GLFW_PRESS || action == GLFW_REPEAT)) {
52 } else if (key == GLFW_KEY_LEFT_CONTROL && action == GLFW_RELEASE) {
54 }
55
56 if (key == GLFW_KEY_LEFT_SHIFT &&
57 (action == GLFW_PRESS || action == GLFW_REPEAT))
59 else if (key == GLFW_KEY_LEFT_SHIFT && action == GLFW_RELEASE)
61}
62
63void
65{
66 int action = input.mouse.action;
67 auto pos = input.mouse.pos;
68 auto model_mouse_pos = view.model_mouse_coords(input.mouse.pos);
69 switch (input.mouse.button) {
70 case GLFW_MOUSE_BUTTON_LEFT:
71 switch (action) {
72 case GLFW_PRESS:
73 if (state.colors.clustering.active_cluster != -1 &&
74 state.colors.coloring == state.colors.BRUSHING) {
75 renderer.start_brushing();
76 break;
77 }
78
79 if (renderer.is_passive_multiselect()) {
80 renderer.check_pressed_rect(model_mouse_pos);
81 break;
82 }
83
85 renderer.start_multiselect(model_mouse_pos);
86 break;
87 }
88
89 renderer.check_pressed_vertex(view, pos);
90
92 renderer.add_vert(state, view, pos);
93 break;
94 }
95
96 break;
97 case GLFW_RELEASE:
98 renderer.reset_pressed_vert();
99 renderer.reset_multiselect();
100 renderer.stop_brushing();
101 break;
102 default:
103 break;
104 }
105 break;
106 case GLFW_MOUSE_BUTTON_RIGHT:
107 switch (action) {
108 case GLFW_PRESS:
109 if (renderer.is_passive_multiselect()) {
110 renderer.stop_multiselect();
111 break;
112 }
113
115 renderer.check_pressed_vertex(view, pos);
116 renderer.remove_vert(state);
117 break;
118 }
119 break;
120 case GLFW_RELEASE:
121 renderer.reset_pressed_vert();
122 break;
123 default:
124 break;
125 }
126 break;
127 case GLFW_MOUSE_BUTTON_MIDDLE:
128 switch (action) {
129 case GLFW_PRESS:
130 view.look_at(pos);
131 break;
132 default:
133 break;
134 }
135 break;
136 default:
137 break;
138 }
139
140 if (state.colors.clustering.active_cluster != -1 &&
141 state.colors.coloring == state.colors.BRUSHING) {
142 float radius = state.colors.clustering.radius_size;
143 renderer.draw_cursor_radius(view, pos, radius);
144 if (renderer.is_brushing_active()) {
145 std::vector<size_t> idxs = renderer.get_landmarks_within_circle(
146 view, pos, radius, state.landmarks);
147 state.colors.color_landmarks(idxs);
148 }
149 return;
150 } else
151 renderer.stop_cursor_radius();
152
154 renderer.update_multiselect(model_mouse_pos, state.landmarks);
155 } else if (renderer.get_rect_pressed()) {
156 renderer.move_selection(model_mouse_pos, state.landmarks);
157 } else if (renderer.get_vert_pressed() &&
158 !renderer.is_passive_multiselect()) {
160 renderer.move_vert(state, view, input.mouse.pos);
161 }
162 }
163}
164
165void
167{
169}
void process_keyboard(View &view, Renderer &renderer)
Identify which key was pressed and notify other parts (listed in arguments) about it.
void update(View &view, Renderer &renderer, State &state)
void process_mouse_button(View &view, Renderer &renderer, State &state)
Handle mouse button input.
void process_mouse_scroll(View &view)
Process mouse scroll and notify other parts(listed in arguments) about it.
InputData input
Definition: input_handler.h:38
Handles rendering of the graph and scatter plot and handles IO.
Definition: renderer.h:33
void stop_cursor_radius()
Definition: renderer.h:86
void check_pressed_vertex(const View &view, glm::vec2 mouse_pos)
Check whether the vertex was pressed and set flags.
Definition: renderer.cpp:54
void add_vert(State &state, View &view, glm::vec2 mouse_pos)
Definition: renderer.cpp:83
void draw_cursor_radius(const View &v, glm::vec2 mouse_pos, float r)
Definition: renderer.cpp:162
bool is_active_multiselect()
Definition: renderer.cpp:119
std::vector< size_t > get_landmarks_within_circle(const View &view, const glm::vec2 &pos, float radius, const LandmarkModel &landmarks)
Definition: renderer.cpp:168
void start_multiselect(glm::vec2 mouse_pos)
Definition: renderer.cpp:113
bool get_vert_pressed()
Definition: renderer.cpp:71
void start_brushing()
Definition: renderer.h:81
void move_vert(State &state, View &view, glm::vec2 mouse_pos)
Definition: renderer.cpp:104
void stop_brushing()
Definition: renderer.h:83
void remove_vert(State &state)
Definition: renderer.cpp:94
void reset_pressed_vert()
Definition: renderer.cpp:65
bool get_rect_pressed()
Definition: renderer.h:77
bool is_passive_multiselect()
Definition: renderer.cpp:125
void stop_multiselect()
Definition: renderer.cpp:144
void reset_multiselect()
Definition: renderer.cpp:137
void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
Definition: renderer.cpp:156
void update_multiselect(glm::vec2 mouse_pos, const LandmarkModel &model)
Definition: renderer.cpp:131
bool is_brushing_active()
Definition: renderer.h:82
bool check_pressed_rect(glm::vec2 mouse_pos)
Definition: renderer.cpp:150
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
Definition: view.h:37
void move_y(int dir)
Move view along Y-axis.
Definition: view.h:171
void look_at(glm::vec2 tgt)
Cause the camera to look at the specified point.
Definition: view.h:218
void zoom(float yoffset, glm::vec2 mouse)
Adjust zoom accordingly.
Definition: view.h:196
void move_x(int dir)
Move view along X-axis.
Definition: view.h:183
glm::vec2 model_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to model coordinates ([0,...
Definition: view.h:139
int active_cluster
Index of the active cluster (into clusters) that is used for brushing.
Definition: cluster_data.h:53
float radius_size
Size of the brushing radius circle for mouse.
Definition: cluster_data.h:59
void color_landmarks(const std::vector< size_t > &idxs)
Notifies Sweeper that the color settings has been modified and that the data has to be recomputed.
Definition: color_data.cpp:96
ClusterData clustering
Definition: color_data.h:71
int coloring
Type of the coloring method.
Definition: color_data.h:65
void reset()
Definition: input_data.h:39
KeyboardData keyboard
Definition: input_data.h:32
MouseData mouse
Definition: input_data.h:31
int key
Code of the key of the recent event.
Definition: keyboard_data.h:29
bool shift_pressed
Flag indicating if SHIFT was pressed.
Definition: keyboard_data.h:38
int action
Key action, whether it was pressed, released or held.
Definition: keyboard_data.h:32
bool ctrl_pressed
Flag indicating if CTRL was pressed.
Definition: keyboard_data.h:35
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
Storage of data of used algorithms and input events.
Definition: state.h:50
LandmarkModel landmarks
Definition: state.h:55
ColorData colors
Definition: state.h:63