BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_renderer.h
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#ifndef UI_RENDERER_H
20#define UI_RENDERER_H
21
22#include <glm/glm.hpp>
23
24#include <array>
25
26#include "landmark_model.h"
27#include "shader.h"
28#include "view.h"
29
30/**
31 * @brief Renderer of the objects that are needed in the user
32 * interaction with the dataset.
33 *
34 */
36{
39
41
42 /** If the brushing is active.*/
44
46
47 UiRenderer();
48 bool init();
49
50 void draw(const View &v);
51
52 bool is_rect_pressed(glm::vec2 mouse_pos);
53
54 void set_rect_start_point(glm::vec2 mouse_pos);
55 void set_rect_end_point(glm::vec2 mouse_pos, const LandmarkModel &model);
56
57 void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks);
58
59 void should_draw_circle(const View &view, glm::vec2 mouse_pos, float r);
60 bool is_within_circle(const glm::vec2 &vert,
61 const glm::vec2 &pos,
62 float radius);
63
64private:
66 unsigned int VAO_r;
67 unsigned int VBO_r;
68 unsigned int EBO_r;
69
72 unsigned int VAO_c;
73 unsigned int VBO_c;
74
75 std::array<glm::vec2, 4> rect_vtxs;
76 const std::array<unsigned int, 6> rect_indices;
77
82
83 std::vector<size_t> selected_landmarks;
84
85 glm::vec2 circle_pos;
87
88 void prepare_data(float current_zoom);
89 /**
90 * @brief Prepare rectangle data used for multiselect.
91 *
92 */
93 void prepare_rectangle();
94 void prepare_circle(float current_zoom);
95
96 bool is_within_rect(glm::vec2 point) const;
97};
98
99#endif //#ifndef UI_RENDERER_H
Abstracts working with shaders.
Definition: shader.h:31
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
Definition: view.h:37
Model of the high- and low-dimensional landmarks.
Renderer of the objects that are needed in the user interaction with the dataset.
Definition: ui_renderer.h:36
glm::vec2 circle_pos
Definition: ui_renderer.h:85
float max_diff_x
Definition: ui_renderer.h:78
unsigned int VBO_r
Definition: ui_renderer.h:67
bool is_brushing_active
If the brushing is active.
Definition: ui_renderer.h:43
float min_diff_y
Definition: ui_renderer.h:81
void draw(const View &v)
Definition: ui_renderer.cpp:49
unsigned int VBO_c
Definition: ui_renderer.h:73
void set_rect_start_point(glm::vec2 mouse_pos)
bool is_within_rect(glm::vec2 point) const
const std::array< unsigned int, 6 > rect_indices
Definition: ui_renderer.h:76
bool update_rect_pos
Definition: ui_renderer.h:38
Shader shader_r
Definition: ui_renderer.h:65
bool is_rect_pressed(glm::vec2 mouse_pos)
Definition: ui_renderer.cpp:86
bool draw_rect
Definition: ui_renderer.h:37
int num_all_vtxs_circle
Definition: ui_renderer.h:70
bool draw_circle
Definition: ui_renderer.h:45
std::vector< size_t > selected_landmarks
Definition: ui_renderer.h:83
std::array< glm::vec2, 4 > rect_vtxs
Definition: ui_renderer.h:75
void prepare_data(float current_zoom)
Definition: ui_renderer.cpp:79
void should_draw_circle(const View &view, glm::vec2 mouse_pos, float r)
unsigned int EBO_r
Definition: ui_renderer.h:68
float min_diff_x
Definition: ui_renderer.h:79
unsigned int VAO_r
Definition: ui_renderer.h:66
float max_diff_y
Definition: ui_renderer.h:80
Shader shader_c
Definition: ui_renderer.h:71
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)
void prepare_circle(float current_zoom)
bool init()
Definition: ui_renderer.cpp:34
float circle_radius
Definition: ui_renderer.h:86
unsigned int VAO_c
Definition: ui_renderer.h:72
void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
void prepare_rectangle()
Prepare rectangle data used for multiselect.
bool rect_pressed
Definition: ui_renderer.h:40