summaryrefslogtreecommitdiff
path: root/ui/text.cpp
blob: 7cb7d30cb26f507fbad5ede50f7388974f840e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "text.h"
#include "font.h"
#include "gfx/gl/uiShader.h"
#include "uiComponent.h"
#include <array>
#include <cache.h>
#include <glArrays.h>
#include <glm/gtc/type_ptr.hpp>
#include <utility>

Text::Text(std::string_view s, const Font & font, Position pos, glm::vec3 c) : UIComponent {pos}, colour {c}
{
	for (const auto & textureQuads : font.render(s)) {
		auto & rendering
				= models.emplace_back(textureQuads.first, static_cast<GLsizei>(6 * textureQuads.second.size()));
		glBindVertexArray(rendering.vao);

		glBindBuffer(GL_ARRAY_BUFFER, rendering.vbo);
		std::vector<glm::vec4> vertices;
		vertices.reserve(6 * textureQuads.second.size());
		for (const auto & quad : textureQuads.second) {
			for (auto offset = 0U; offset < 3; offset += 2) {
				for (auto vertex = 0U; vertex < 3; vertex += 1) {
					vertices.emplace_back(quad[(vertex + offset) % 4] + glm::vec4 {position.origin, 0, 0});
				}
			}
		};
		glBufferData(GL_ARRAY_BUFFER, static_cast<GLsizeiptr>(sizeof(glm::vec4)) * rendering.count,
				glm::value_ptr(vertices.front()), GL_STATIC_DRAW);

		glEnableVertexAttribArray(0);
		glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(glm::vec4), nullptr);

		glBindVertexArray(0);
	}
}

void
Text::render(const UIShader & shader, const Position &) const
{
	shader.text.use(colour);
	glActiveTexture(GL_TEXTURE0);
	for (const auto & m : models) {
		glBindTexture(GL_TEXTURE_2D, m.texture);
		glBindVertexArray(m.vao);
		glDrawArrays(GL_TRIANGLES, 0, m.count);
	}
	glBindVertexArray(0);
	glBindTexture(GL_TEXTURE_2D, 0);
}

bool
Text::handleInput(const SDL_Event &, const Position &)
{
	return false;
}

Text::Model::Model(GLuint t, GLsizei c) : texture {t}, count {c} { }