BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
renderer.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 "renderer.h"
20
21#include <iostream>
22
23#include "glm/gtc/matrix_transform.hpp"
24#include "shaders.h"
25
27
28bool
30{
31 glBlendEquation(GL_FUNC_ADD);
32 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
33
37
38 return true;
39}
40
41void
42Renderer::render(const glm::vec2 &fb_size, const State &state, const View &view)
43{
44 glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
45 glClear(GL_COLOR_BUFFER_BIT);
46
47 scatter_renderer.draw(fb_size, view, state.scatter, state.colors);
48 graph_renderer.draw(view, state.landmarks, state.colors);
49 ui_renderer.draw(view);
50}
51
52void
53
54Renderer::check_pressed_vertex(const View &view, glm::vec2 mouse_pos)
55{
57 glm::vec2 screen_mouse = view.screen_mouse_coords(mouse_pos);
58 if (graph_renderer.is_vert_pressed(view, screen_mouse)) {
60 }
61 }
62}
63
64void
66{
68}
69
70bool
72{
74}
75
76size_t
78{
80}
81
82void
83Renderer::add_vert(State &state, View &view, glm::vec2 mouse_pos)
84{
85 // Copy pressed landmark
88 // Add new landmark to cursor position
89 else
90 state.landmarks.add(view.model_mouse_coords(mouse_pos));
91}
92
93void
95{
97 // Remove landmark
100 }
101}
102
103void
104Renderer::move_vert(State &state, View &view, glm::vec2 mouse_pos)
105{
106 // Move landmark
107 glm::vec2 model_mouse = view.model_mouse_coords(mouse_pos);
108
109 state.landmarks.move(graph_renderer.vert_ind, model_mouse);
110}
111
112void
113Renderer::start_multiselect(glm::vec2 mouse_pos)
114{
116}
117
118bool
120{
122}
123
124bool
126{
128}
129
130void
131Renderer::update_multiselect(glm::vec2 mouse_pos, const LandmarkModel &model)
132{
133 ui_renderer.set_rect_end_point(mouse_pos, model);
134}
135
136void
138{
141}
142
143void
145{
147}
148
149bool
151{
152 return ui_renderer.is_rect_pressed(mouse_pos);
153}
154
155void
156Renderer::move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
157{
158 ui_renderer.move_selection(mouse_pos, landmarks);
159}
160
161void
162Renderer::draw_cursor_radius(const View &v, glm::vec2 mouse_pos, float r)
163{
164 ui_renderer.should_draw_circle(v, mouse_pos, r);
165}
166
167std::vector<size_t>
169 const glm::vec2 &pos,
170 float radius,
171 const LandmarkModel &landmarks)
172{
173 std::vector<size_t> ids;
174 for (size_t i = 0; i < landmarks.n_landmarks(); ++i) {
175 glm::vec2 screen_mouse = view.screen_mouse_coords(pos);
176 glm::vec2 vert = view.screen_coords(landmarks.lodim_vertices[i]);
177 if (ui_renderer.is_within_circle(vert, screen_mouse, radius))
178 ids.emplace_back(i);
179 }
180 return ids;
181}
void render(const glm::vec2 &fb_size, const State &state, const View &view)
Render graph and scatterplot.
Definition: renderer.cpp:42
size_t get_vert_ind()
Definition: renderer.cpp:77
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
GraphRenderer graph_renderer
Definition: renderer.h:96
UiRenderer ui_renderer
Definition: renderer.h:97
ScatterRenderer scatter_renderer
Definition: renderer.h:95
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
bool init()
Definition: renderer.cpp:29
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
Renderer()
Definition: renderer.cpp:26
bool get_vert_pressed()
Definition: renderer.cpp:71
void move_vert(State &state, View &view, glm::vec2 mouse_pos)
Definition: renderer.cpp:104
void remove_vert(State &state)
Definition: renderer.cpp:94
void reset_pressed_vert()
Definition: renderer.cpp:65
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 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
glm::vec2 screen_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to screen coordinates ([0,...
Definition: view.h:127
glm::vec2 screen_coords(glm::vec2 point) const
Converts point to screen coordinates([0,0] in the middle of the screen).
Definition: view.h:157
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
void remove_landmark(size_t ind)
Definition: color_data.cpp:114
bool is_vert_pressed(const View &view, glm::vec2 mouse)
Checks if some vertex was pressed.
bool vert_pressed
Flag indicating if a vertex was pressed.
void draw(const View &v, const LandmarkModel &m, const ColorData &colors)
Draw event of the 2D landmark graph.
size_t vert_ind
Index of the pressed vertex.
Model of the high- and low-dimensional landmarks.
size_t n_landmarks() const
Reurns number of the 2D landmarks.
void duplicate(size_t ind)
Creates new landmark with the same two- and high-dimensional coordinates as the given landmark.
void move(size_t ind, const glm::vec2 &mouse_pos)
Sets two-dimensional position of the pressed landmark to mouse position.
void add(const glm::vec2 &mouse_pos)
Creates new landmark with the two- and high-dimensional coordinates as the closeset landmark.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
void remove(size_t ind)
Removes landmark and corresponding edges.
void draw(const glm::vec2 &fb_size, const View &v, const ScatterModel &m, const ColorData &colors)
Draw event of the 2D data points.
Storage of data of used algorithms and input events.
Definition: state.h:50
ScatterModel scatter
Definition: state.h:64
LandmarkModel landmarks
Definition: state.h:55
ColorData colors
Definition: state.h:63
void draw(const View &v)
Definition: ui_renderer.cpp:49
void set_rect_start_point(glm::vec2 mouse_pos)
bool update_rect_pos
Definition: ui_renderer.h:38
bool is_rect_pressed(glm::vec2 mouse_pos)
Definition: ui_renderer.cpp:86
bool draw_rect
Definition: ui_renderer.h:37
void should_draw_circle(const View &view, glm::vec2 mouse_pos, float r)
bool is_within_circle(const glm::vec2 &vert, const glm::vec2 &pos, float radius)
void set_rect_end_point(glm::vec2 mouse_pos, const LandmarkModel &model)
bool init()
Definition: ui_renderer.cpp:34
void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
bool rect_pressed
Definition: ui_renderer.h:40