BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
scatter_renderer.cpp
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#include "scatter_renderer.h"
21
22#include "glm/gtc/matrix_transform.hpp"
23
24#include <iostream>
25
26#include "shaders.h"
27
29
30void
32{
33 glGenVertexArrays(1, &VAO);
34 glGenBuffers(1, &VBO_pos);
35 glGenBuffers(1, &VBO_col);
36
38
40}
41
42void
43ScatterRenderer::draw(const glm::vec2 &fb_size,
44 const View &view,
45 const ScatterModel &model,
46 const ColorData &colors)
47{
49
50 size_t n =
51 std::min(model.points.size(),
52 colors.data.size()); // misalignment aborts it, be careful
53
54 size_t points_size = n / texture_renderer.get_num_of_texts();
55 size_t start_index = texture_renderer.get_active_fb() * points_size;
56
57 prepare_data(start_index, points_size, model, colors);
58
59 shader.use();
60 shader.set_mat4("model", glm::mat4(1.0f));
61 shader.set_mat4("view", view.get_view_matrix());
62 shader.set_mat4("proj", view.get_proj_matrix());
63
64 glBindVertexArray(VAO);
65 glEnable(GL_BLEND);
66 glDrawArrays(GL_POINTS, 0, points_size);
67
68 glDisable(GL_BLEND);
69
71
73}
74
75void
77 size_t points_size,
78 const ScatterModel &model,
79 const ColorData &colors)
80{
81 glBindVertexArray(VAO);
82
83 glBindBuffer(GL_ARRAY_BUFFER, VBO_pos);
84 glBufferData(GL_ARRAY_BUFFER,
85 points_size * sizeof(glm::vec2),
86 &model.points[start_index],
87 GL_DYNAMIC_DRAW);
88 glVertexAttribPointer(
89 0, 2, GL_FLOAT, GL_FALSE, sizeof(glm::vec2), (void *)0);
90 glEnableVertexAttribArray(0);
91
92 glBindBuffer(GL_ARRAY_BUFFER, VBO_col);
93 glBufferData(GL_ARRAY_BUFFER,
94 points_size * sizeof(glm::vec4),
95 &colors.data[start_index],
96 GL_DYNAMIC_DRAW);
97 glVertexAttribPointer(
98 1, 4, GL_FLOAT, GL_FALSE, sizeof(glm::vec4), (void *)0);
99 glEnableVertexAttribArray(1);
100}
void set_mat4(const std::string &name, glm::mat4 value) const
Bind the matrix 4x4 variable to the shader.
Definition: shader.cpp:103
void use()
Activate built shader.
Definition: shader.cpp:79
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
Definition: shader.cpp:27
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
Definition: view.h:37
glm::mat4 get_proj_matrix() const
Compute projection matrix for orthographic projection.
Definition: view.h:108
glm::mat4 get_view_matrix() const
Compute view matrix for drawing into the "view" space.
Definition: view.h:98
const std::string scatter_fs
Definition: shaders.h:59
const std::string scatter_vs
Definition: shaders.h:45
Storage of the color data.
Definition: color_data.h:40
std::vector< glm::vec4 > data
Colors of the 2D data points.
Definition: color_data.h:59
Model of the two-dimensional data points.
Definition: scatter_model.h:42
std::vector< glm::vec2 > points
Coordinates of the two-dimensional data points.
Definition: scatter_model.h:44
unsigned int VBO_col
void prepare_data(size_t start_index, size_t points_size, const ScatterModel &model, const ColorData &colors)
Prepare data to render scatterplot with colors.
TextureRenderer texture_renderer
unsigned int VBO_pos
unsigned int VAO
void draw(const glm::vec2 &fb_size, const View &v, const ScatterModel &m, const ColorData &colors)
Draw event of the 2D data points.
void bind_fb(const glm::vec2 &fb_size)
size_t get_active_fb()
size_t get_num_of_texts()