2024-11-11 02:29:28 -05:00
|
|
|
#pragma once
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 Brett Terpstra
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLT_WITH_GRAPHICS_FONT_RENDERER_H
|
|
|
|
#define BLT_WITH_GRAPHICS_FONT_RENDERER_H
|
|
|
|
|
|
|
|
#include <blt/gfx/font/font.h>
|
2024-11-11 16:47:25 -05:00
|
|
|
#include <blt/gfx/texture.h>
|
2024-11-11 19:21:42 -05:00
|
|
|
#include <blt/gfx/shader.h>
|
|
|
|
#include <blt/gfx/model.h>
|
2024-11-11 16:47:25 -05:00
|
|
|
#include <blt/std/hashmap.h>
|
|
|
|
#include <blt/std/binary_tree.h>
|
2024-11-11 02:29:28 -05:00
|
|
|
|
|
|
|
namespace blt::gfx
|
|
|
|
{
|
|
|
|
|
2024-11-11 16:47:25 -05:00
|
|
|
class font_texture_atlas : public texture_gl2D
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct bounded_t
|
|
|
|
{
|
|
|
|
font::glyph_t glyph;
|
2024-11-12 18:26:34 -05:00
|
|
|
// starting point inside texture atlas
|
2024-11-11 16:47:25 -05:00
|
|
|
blt::vec2ui min;
|
2024-11-11 19:21:42 -05:00
|
|
|
// ending point of the glyph, inside texture atlas
|
2024-11-11 16:47:25 -05:00
|
|
|
blt::vec2ui max;
|
|
|
|
};
|
2024-11-11 19:21:42 -05:00
|
|
|
struct added_font_results_t
|
|
|
|
{
|
|
|
|
blt::u64 last_inserted_index;
|
|
|
|
blt::u64 min_index_used;
|
|
|
|
blt::u64 max_index_used;
|
|
|
|
};
|
|
|
|
public:
|
2024-11-12 19:30:28 -05:00
|
|
|
explicit font_texture_atlas(blt::i32 dimensions, blt::u32 padding);
|
2024-11-11 16:47:25 -05:00
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
added_font_results_t add_font(const font::font_file_t& file, float size);
|
2024-11-11 16:47:25 -05:00
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
added_font_results_t add_font(const font::font_file_t& file, blt::u64 start, float size);
|
2024-11-11 16:47:25 -05:00
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
bounded_t& get_glyph(blt::u64 c, float size)
|
|
|
|
{ return glyphs.at(size).at(c); }
|
2024-11-11 16:47:25 -05:00
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
[[nodiscard]] const bounded_t& get_glyph(blt::u64 c, float size) const
|
|
|
|
{ return glyphs.at(size).at(c); }
|
2024-11-11 16:47:25 -05:00
|
|
|
|
|
|
|
private:
|
2024-11-12 18:26:34 -05:00
|
|
|
blt::hashmap_t<float, blt::hashmap_t<blt::u64, bounded_t>> glyphs;
|
2024-11-11 16:47:25 -05:00
|
|
|
blt::u32 used_width = 0;
|
|
|
|
blt::u32 used_height = 0;
|
2024-11-12 19:30:28 -05:00
|
|
|
blt::u32 padding;
|
2024-11-11 16:47:25 -05:00
|
|
|
};
|
2024-11-11 02:29:28 -05:00
|
|
|
|
2024-11-11 19:21:42 -05:00
|
|
|
class font_generator_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct bounded_font_t
|
|
|
|
{
|
|
|
|
std::unique_ptr<font_texture_atlas> atlas;
|
|
|
|
float min_size, max_size;
|
|
|
|
blt::u64 min_char, max_char;
|
|
|
|
|
|
|
|
bounded_font_t(std::unique_ptr<font_texture_atlas> atlas, float minSize, float maxSize, u64 minChar, u64 maxChar):
|
|
|
|
atlas(std::move(atlas)), min_size(minSize), max_size(maxSize), min_char(minChar), max_char(maxChar)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2024-11-12 19:30:28 -05:00
|
|
|
explicit font_generator_t(blt::i32 dimensions, blt::u32 padding, const std::vector<float>& sizes_to_generate);
|
2024-11-11 19:21:42 -05:00
|
|
|
|
|
|
|
void add_font(const font::font_file_t& file);
|
|
|
|
|
|
|
|
inline font_texture_atlas& get_texture(float size, blt::u64 c)
|
|
|
|
{
|
|
|
|
for (auto& atlas : atlases)
|
|
|
|
{
|
|
|
|
if (!(size >= atlas.min_size && size <= atlas.max_size))
|
|
|
|
continue;
|
2024-11-12 18:26:34 -05:00
|
|
|
if (c >= atlas.min_char && c <= atlas.max_char)
|
2024-11-11 19:21:42 -05:00
|
|
|
return *atlas.atlas;
|
|
|
|
}
|
|
|
|
throw std::runtime_error("Character not found inside atlases at this size");
|
|
|
|
}
|
2024-11-12 18:26:34 -05:00
|
|
|
|
|
|
|
[[nodiscard]] blt::i32 get_dimensions() const
|
|
|
|
{ return dimensions; }
|
2024-11-11 19:21:42 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
blt::i32 dimensions;
|
2024-11-12 19:30:28 -05:00
|
|
|
blt::u32 padding;
|
2024-11-11 19:21:42 -05:00
|
|
|
std::vector<bounded_font_t> atlases;
|
2024-11-12 19:30:28 -05:00
|
|
|
// doesn't make sense to store this.
|
2024-11-11 19:21:42 -05:00
|
|
|
std::vector<float> sizes_to_generate;
|
|
|
|
};
|
|
|
|
|
2024-11-11 02:29:28 -05:00
|
|
|
class font_renderer_t
|
|
|
|
{
|
|
|
|
public:
|
2024-11-11 19:21:42 -05:00
|
|
|
struct compiled_text_t
|
|
|
|
{
|
2024-11-12 00:28:48 -05:00
|
|
|
friend font_renderer_t;
|
|
|
|
public:
|
|
|
|
explicit compiled_text_t(font_generator_t& generator);
|
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
void change_text(std::string_view str, float size);
|
|
|
|
|
|
|
|
compiled_text_t& setPosition(const blt::vec2f& pos)
|
|
|
|
{
|
|
|
|
position = pos;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setScale(const blt::vec2f& s)
|
|
|
|
{
|
|
|
|
scale = s;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setColor(const blt::vec4f& c)
|
|
|
|
{
|
|
|
|
color = c;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setPosition(float x, float y)
|
|
|
|
{
|
|
|
|
position = {x, y};
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setScale(float x, float y)
|
|
|
|
{
|
|
|
|
scale = {x, y};
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setColor(float r, float g, float b, float a = 1)
|
|
|
|
{
|
|
|
|
color = {r, g, b, a};
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
compiled_text_t& setZIndex(float s)
|
|
|
|
{
|
|
|
|
z_index = s;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] const vec2f& getPosition() const
|
|
|
|
{ return position; }
|
|
|
|
|
|
|
|
[[nodiscard]] const vec2f& getScale() const
|
|
|
|
{ return scale; }
|
|
|
|
|
|
|
|
[[nodiscard]] const vec4f& getColor() const
|
|
|
|
{ return color; }
|
|
|
|
|
|
|
|
[[nodiscard]] float getZIndex() const
|
|
|
|
{ return z_index; }
|
2024-11-12 00:28:48 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
void draw();
|
|
|
|
|
|
|
|
struct text_render_info_t
|
|
|
|
{
|
2024-11-12 18:26:34 -05:00
|
|
|
font_texture_atlas* texture = nullptr;
|
|
|
|
blt::size_t render_start = 0;
|
2024-11-12 00:28:48 -05:00
|
|
|
blt::size_t render_count = 0;
|
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
text_render_info_t(font_texture_atlas* texture, size_t renderStart, size_t renderCount):
|
|
|
|
texture(texture), render_start(renderStart), render_count(renderCount)
|
|
|
|
{}
|
2024-11-12 00:28:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
font_generator_t& generator;
|
2024-11-12 18:26:34 -05:00
|
|
|
vertex_array_t vao{};
|
|
|
|
std::vector<text_render_info_t> renders;
|
|
|
|
blt::vec2f position;
|
|
|
|
blt::vec2f scale = {1, 1};
|
|
|
|
blt::vec4 color = blt::make_color(1, 1, 1);
|
|
|
|
float z_index = 0;
|
2024-11-11 19:21:42 -05:00
|
|
|
};
|
2024-11-12 00:28:48 -05:00
|
|
|
|
2024-11-11 19:21:42 -05:00
|
|
|
public:
|
|
|
|
explicit font_renderer_t();
|
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
void create_default(blt::i32 dimensions = 0);
|
2024-11-11 19:21:42 -05:00
|
|
|
void create(const std::vector<float>& generated_font_sizes, blt::i32 dimensions = 0);
|
|
|
|
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
void add_font(const font::font_file_t& file)
|
|
|
|
{
|
|
|
|
generator->add_font(file);
|
|
|
|
}
|
|
|
|
|
2024-11-12 18:26:34 -05:00
|
|
|
void add_default_font(std::string_view path);
|
|
|
|
|
|
|
|
void add_default_font(const blt::u8* data, blt::size_t size, bool compressed = false);
|
|
|
|
|
|
|
|
compiled_text_t* create_text(std::string_view str, float size);
|
2024-11-12 00:28:48 -05:00
|
|
|
|
|
|
|
void destroy_text(compiled_text_t* text);
|
2024-11-12 18:26:34 -05:00
|
|
|
|
|
|
|
void render();
|
2024-11-11 16:47:25 -05:00
|
|
|
|
2024-11-11 02:29:28 -05:00
|
|
|
private:
|
2024-11-11 19:21:42 -05:00
|
|
|
std::unique_ptr<font_generator_t> generator;
|
|
|
|
std::unique_ptr<shader_t> font_shader;
|
2024-11-12 00:28:48 -05:00
|
|
|
|
|
|
|
blt::hashmap_t<compiled_text_t*, blt::size_t> text_ptr_to_index;
|
|
|
|
std::vector<std::unique_ptr<compiled_text_t>> added_texts;
|
|
|
|
std::vector<std::unique_ptr<compiled_text_t>> cached_text_objects;
|
2024-11-11 02:29:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //BLT_WITH_GRAPHICS_FONT_RENDERER_H
|