BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
graph_renderer.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef GRAPH_RENDERER_H
21#define GRAPH_RENDERER_H
22
23#include <vector>
24
25#include "color_data.h"
26#include "landmark_model.h"
27#include "shader.h"
28#include "view.h"
29
30#include <array>
31#include <vector>
32
33/**
34 * @brief Renderer of the 2D landmark graph.
35 *
36 */
38{
39 /** Flag indicating if a vertex was pressed. */
41 /** Index of the pressed vertex. If the vertex was not pressed, it is UB. */
42 size_t vert_ind;
43
45
46 void init();
47
48 // TODO: this should not know about actual Landmarks, we should pass actual
49 // vertex + edge positions as with the layouter.
50 /**
51 * @brief Draw event of the 2D landmark graph.
52 *
53 * Renders vertices and edges at current positions.
54 *
55 * @param v
56 * @param m
57 *
58 * \todo TODO: this should not know about actual Landmarks, we should pass
59 * actual vertex + edge positions as with the layouter.
60 */
61 void draw(const View &v, const LandmarkModel &m, const ColorData &colors);
62
63 /**
64 * @brief Checks if some vertex was pressed.
65 *
66 * @param[in] mouse Mouse screen coordinates.
67 * @param[out] vert_ind If the vertex was pressed it returns the index of
68 * the vertex, otherwise it is UB.
69 * @return true If a vertex was pressed.
70 * @return false If no vertex was pressed.
71 */
72 bool is_vert_pressed(const View &view, glm::vec2 mouse);
73
74private:
75 /** Radius of the vertex used for comparing, if
76 * the landmark was pressed.
77 */
78 static constexpr float vertex_size = 5.0f;
79
80 /** Cached screen coordinates of the vertices. */
81 std::vector<glm::vec2> vertices;
82
83 /** Number of all vertices for rendering circles(graph vertices).*/
85
87 unsigned int VAO_v;
88 unsigned int VBO_v_pos;
89 unsigned int VBO_v_col;
90
93 unsigned int VAO_v_outline;
94 unsigned int VBO_v_pos_outline;
95
97 unsigned int VAO_e;
98 unsigned int VBO_e;
99
100 /**
101 * @brief Prepare data to render vertices and edges.
102 *
103 * Fill VBOs and VAOs.
104 *
105 * @param current_zoom Current zoom of the "camera".
106 * @param model Data source
107 */
108 void prepare_data(float current_zoom,
109 const LandmarkModel &model,
110 const ColorData &colors);
111 /**
112 * @brief Prepare graph vertices that are rendered as circles.
113 *
114 * @param current_zoom Current zoom of the "camera".
115 * @param model Data source
116 */
117 void prepare_vertices(float current_zoom,
118 const LandmarkModel &model,
119 const ColorData &colors);
120 /**
121 * @brief Prepare graph edges that are rendered as lines.
122 *
123 * @param model Data source
124 */
125 void prepare_edges(const LandmarkModel &model);
126
127 /**
128 * @brief Add vertices for TRIANGLE_FAN that creates circle
129 * at given position.
130 *
131 * @param middle_x x position of the middle of the circle.
132 * @param middle_y y position of the middle of the circle.
133 * @param zoom Current zoom level used to adjust the size of the circle.
134 * @param all_vtxs Storage of the vertices that will be filled.
135 */
136 void add_circle(float middle_x,
137 float middle_y,
138 float zoom,
139 std::vector<float> &all_vtxs,
140 std::vector<float> &vtxs_outlines,
141 std::vector<glm::vec3> &all_colors,
142 const glm::vec3 &color);
143};
144
145#endif // #ifndef GRAPH_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
Storage of the color data.
Definition: color_data.h:40
Renderer of the 2D landmark graph.
std::vector< glm::vec2 > vertices
Cached screen coordinates of the vertices.
unsigned int VAO_v_outline
void prepare_vertices(float current_zoom, const LandmarkModel &model, const ColorData &colors)
Prepare graph vertices that are rendered as circles.
bool is_vert_pressed(const View &view, glm::vec2 mouse)
Checks if some vertex was pressed.
unsigned int VAO_v
static constexpr float vertex_size
Radius of the vertex used for comparing, if the landmark was pressed.
unsigned int VBO_v_col
Shader shader_v_outline
unsigned int VAO_e
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.
int num_all_vtxs
Number of all vertices for rendering circles(graph vertices).
unsigned int VBO_v_pos_outline
void add_circle(float middle_x, float middle_y, float zoom, std::vector< float > &all_vtxs, std::vector< float > &vtxs_outlines, std::vector< glm::vec3 > &all_colors, const glm::vec3 &color)
Add vertices for TRIANGLE_FAN that creates circle at given position.
unsigned int VBO_v_pos
int num_all_vtxs_outlines
size_t vert_ind
Index of the pressed vertex.
void prepare_edges(const LandmarkModel &model)
Prepare graph edges that are rendered as lines.
void prepare_data(float current_zoom, const LandmarkModel &model, const ColorData &colors)
Prepare data to render vertices and edges.
unsigned int VBO_e
Model of the high- and low-dimensional landmarks.