2023-12-29 19:26:41 -05:00
|
|
|
/*
|
|
|
|
* <Short Description>
|
|
|
|
* Copyright (C) 2023 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_BATCH_2D_RENDERER_H
|
|
|
|
#define BLT_WITH_GRAPHICS_BATCH_2D_RENDERER_H
|
|
|
|
|
2024-01-01 22:15:30 -05:00
|
|
|
#include "blt/gfx/model.h"
|
|
|
|
#include "blt/gfx/shader.h"
|
2024-01-02 02:38:56 -05:00
|
|
|
#include "blt/gfx/renderer/resource_manager.h"
|
|
|
|
#include <blt/std/hashmap.h>
|
|
|
|
#include <blt/std/memory_util.h>
|
|
|
|
#include <blt/math/vectors.h>
|
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
2024-02-17 14:38:18 -05:00
|
|
|
#include <memory>
|
2024-04-12 17:37:35 -04:00
|
|
|
#include <map>
|
|
|
|
#include <variant>
|
2024-01-01 22:15:30 -05:00
|
|
|
|
2023-12-29 19:26:41 -05:00
|
|
|
namespace blt::gfx
|
|
|
|
{
|
2024-01-02 17:10:29 -05:00
|
|
|
struct rectangle2d_t
|
2024-01-02 02:38:56 -05:00
|
|
|
{
|
2024-04-11 20:40:28 -04:00
|
|
|
blt::vec2f pos, size;
|
|
|
|
float rotation = 0;
|
2024-01-02 02:38:56 -05:00
|
|
|
|
2024-04-11 20:40:28 -04:00
|
|
|
rectangle2d_t(float x, float y, float width, float height, float rotation): pos(x, y), size(width, height), rotation(rotation)
|
2024-01-02 02:38:56 -05:00
|
|
|
{}
|
|
|
|
|
2024-04-11 20:40:28 -04:00
|
|
|
rectangle2d_t(float x, float y, float width, float height): pos(x, y), size(width, height)
|
|
|
|
{}
|
|
|
|
|
|
|
|
rectangle2d_t(blt::vec2f pos, blt::vec2f size, float rotation): pos(pos), size(size), rotation(rotation)
|
|
|
|
{}
|
|
|
|
|
|
|
|
rectangle2d_t(blt::vec2f pos, blt::vec2f size): pos(pos), size(size)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct line2d_t
|
|
|
|
{
|
|
|
|
blt::vec2f p1;
|
|
|
|
blt::vec2f p2;
|
2024-04-12 00:10:29 -04:00
|
|
|
float thickness = 1;
|
2024-04-11 20:40:28 -04:00
|
|
|
|
|
|
|
line2d_t(float px1, float py1, float px2, float py2): p1(px1, py1), p2(px2, py2)
|
|
|
|
{}
|
|
|
|
|
|
|
|
line2d_t(blt::vec2f p1, blt::vec2f p2): p1(p1), p2(p2)
|
|
|
|
{}
|
2024-04-12 00:10:29 -04:00
|
|
|
|
|
|
|
line2d_t(float px1, float py1, float px2, float py2, float thickness): p1(px1, py1), p2(px2, py2), thickness(thickness)
|
|
|
|
{}
|
|
|
|
|
|
|
|
line2d_t(blt::vec2f p1, blt::vec2f p2, float thickness): p1(p1), p2(p2), thickness(thickness)
|
|
|
|
{}
|
2024-04-11 20:40:28 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct point2d_t
|
|
|
|
{
|
|
|
|
blt::vec2f pos;
|
|
|
|
float scale = 1;
|
|
|
|
|
|
|
|
point2d_t(float x, float y, float scale): pos(x, y), scale(scale)
|
|
|
|
{}
|
|
|
|
|
|
|
|
point2d_t(float x, float y): pos(x, y)
|
2024-01-02 02:38:56 -05:00
|
|
|
{}
|
2024-04-12 17:37:35 -04:00
|
|
|
|
|
|
|
point2d_t(vec2f pos, float scale): pos(pos), scale(scale)
|
|
|
|
{}
|
|
|
|
|
|
|
|
explicit point2d_t(vec2f pos): pos(pos)
|
|
|
|
{}
|
2024-01-02 02:38:56 -05:00
|
|
|
};
|
2023-12-30 03:26:06 -05:00
|
|
|
|
2024-01-02 02:38:56 -05:00
|
|
|
struct draw_state
|
2024-01-01 22:15:30 -05:00
|
|
|
{
|
2024-01-02 02:38:56 -05:00
|
|
|
// texture to use
|
|
|
|
std::string texture_name;
|
|
|
|
// color to use
|
|
|
|
blt::vec4 color;
|
|
|
|
// how much to blend the texture into the color? note blending is always additive!
|
|
|
|
blt::vec4 blend;
|
2024-01-01 22:15:30 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class batch_renderer_2d
|
|
|
|
{
|
|
|
|
private:
|
2024-01-02 02:38:56 -05:00
|
|
|
struct vec_hash
|
|
|
|
{
|
|
|
|
std::size_t operator()(const blt::vec4& key) const
|
|
|
|
{
|
|
|
|
using namespace blt::mem;
|
2024-04-11 20:40:28 -04:00
|
|
|
return type_cast<blt::i32>(key.x()) ^ type_cast<blt::i32>(key.y()) ^ type_cast<blt::i32>(key.y()) ^ type_cast<blt::i32>(key.z());
|
2024-01-02 02:38:56 -05:00
|
|
|
}
|
|
|
|
};
|
2024-04-12 17:37:35 -04:00
|
|
|
|
|
|
|
struct render_object_t
|
|
|
|
{
|
|
|
|
std::string texture;
|
|
|
|
blt::vec4 color;
|
|
|
|
blt::vec4 texture_blend_factor;
|
|
|
|
std::variant<rectangle2d_t, point2d_t, line2d_t> t;
|
|
|
|
};
|
|
|
|
|
2024-01-02 02:38:56 -05:00
|
|
|
private:
|
|
|
|
vertex_array* square_vao = nullptr;
|
2024-04-11 20:40:28 -04:00
|
|
|
vertex_array* line_vao = nullptr;
|
|
|
|
shader_t* square_shader = nullptr;
|
|
|
|
shader_t* point_shader = nullptr;
|
2024-01-02 02:38:56 -05:00
|
|
|
resource_manager& resources;
|
2024-04-12 17:37:35 -04:00
|
|
|
// z-index -> draw object
|
|
|
|
std::map<blt::i32, std::vector<render_object_t>> draw_objects;
|
2024-01-02 02:38:56 -05:00
|
|
|
size_t draw_count_ = 0;
|
2024-01-01 22:15:30 -05:00
|
|
|
public:
|
2024-01-02 02:38:56 -05:00
|
|
|
explicit batch_renderer_2d(resource_manager& resources): resources(resources)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void create();
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawRectangle(std::string_view texture, const rectangle2d_t& rectangle, blt::i32 z_index = 0)
|
2024-01-02 02:38:56 -05:00
|
|
|
{
|
2024-01-18 14:14:13 -05:00
|
|
|
const static blt::vec4 empty{0, 0, 0, 1};
|
2024-01-02 13:03:51 -05:00
|
|
|
const static blt::vec4 full{1, 1, 1, 1};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{std::string(texture), empty, full, rectangle});
|
2024-01-02 02:38:56 -05:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawRectangle(const blt::vec4& color, const rectangle2d_t& rectangle, blt::i32 z_index = 0)
|
2024-01-02 02:38:56 -05:00
|
|
|
{
|
2024-01-02 13:03:51 -05:00
|
|
|
const static blt::vec4 empty{0, 0, 0, 0};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{"", color, empty, rectangle});
|
2024-01-02 02:38:56 -05:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawRectangle(const draw_state& draw_info, const rectangle2d_t& rectangle, blt::i32 z_index = 0)
|
2024-01-02 02:38:56 -05:00
|
|
|
{
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{draw_info.texture_name, draw_info.color, draw_info.blend, rectangle});
|
2024-01-02 02:38:56 -05:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawLine(std::string_view texture, const line2d_t& line, blt::i32 z_index = 0)
|
2024-04-12 00:10:29 -04:00
|
|
|
{
|
|
|
|
const static blt::vec4 empty{0, 0, 0, 1};
|
|
|
|
const static blt::vec4 full{1, 1, 1, 1};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{std::string(texture), empty, full, line});
|
2024-04-12 00:10:29 -04:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawLine(const blt::vec4& color, const line2d_t& line, blt::i32 z_index = 0)
|
2024-04-11 20:40:28 -04:00
|
|
|
{
|
|
|
|
const static blt::vec4 empty{0, 0, 0, 0};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{"", color, empty, line});
|
2024-04-11 20:40:28 -04:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawLine(const draw_state& draw_info, const line2d_t& line, blt::i32 z_index = 0)
|
2024-04-11 20:40:28 -04:00
|
|
|
{
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{draw_info.texture_name, draw_info.color, draw_info.blend, line});
|
2024-04-11 20:40:28 -04:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawPoint(std::string_view texture, const point2d_t& point, blt::i32 z_index = 0)
|
2024-04-11 20:40:28 -04:00
|
|
|
{
|
|
|
|
const static blt::vec4 empty{0, 0, 0, 1};
|
|
|
|
const static blt::vec4 full{1, 1, 1, 1};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{std::string(texture), empty, full, point});
|
2024-04-11 20:40:28 -04:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawPoint(const blt::vec4& color, const point2d_t& point, blt::i32 z_index = 0)
|
2024-04-11 20:40:28 -04:00
|
|
|
{
|
|
|
|
const static blt::vec4 empty{0, 0, 0, 0};
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{"", color, empty, point});
|
2024-04-11 20:40:28 -04:00
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
inline void drawPoint(const draw_state& draw_info, const point2d_t& point, blt::i32 z_index = 0)
|
2024-04-11 20:40:28 -04:00
|
|
|
{
|
2024-04-12 17:37:35 -04:00
|
|
|
draw_objects[z_index].push_back(render_object_t{draw_info.texture_name, draw_info.color, draw_info.blend, point});
|
2024-04-11 20:40:28 -04:00
|
|
|
}
|
|
|
|
|
2024-01-02 13:03:51 -05:00
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawRectangle(const T& render_info, P... p)
|
|
|
|
{
|
|
|
|
drawRectangle(render_info, {p...});
|
|
|
|
}
|
|
|
|
|
2024-04-11 20:40:28 -04:00
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawPoint(const T& render_info, P... p)
|
|
|
|
{
|
|
|
|
drawPoint(render_info, {p...});
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawLine(const T& render_info, P... p)
|
|
|
|
{
|
|
|
|
drawLine(render_info, {p...});
|
|
|
|
}
|
|
|
|
|
2024-04-12 17:37:35 -04:00
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawRectangle(const T& render_info, blt::i32 z_index, P... p)
|
|
|
|
{
|
|
|
|
drawRectangle(render_info, {p...}, z_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawPoint(const T& render_info, blt::i32 z_index, P... p)
|
|
|
|
{
|
|
|
|
drawPoint(render_info, {p...}, z_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... P>
|
|
|
|
inline void drawLine(const T& render_info, blt::i32 z_index, P... p)
|
|
|
|
{
|
|
|
|
drawLine(render_info, {p...}, z_index);
|
|
|
|
}
|
|
|
|
|
2024-01-02 13:03:51 -05:00
|
|
|
void render(bool transparency = true);
|
2024-01-02 02:38:56 -05:00
|
|
|
|
2024-01-01 22:15:30 -05:00
|
|
|
void cleanup();
|
2024-01-02 02:38:56 -05:00
|
|
|
|
2024-04-11 20:40:28 -04:00
|
|
|
[[nodiscard]] inline size_t draw_count() const
|
2024-01-02 13:03:51 -05:00
|
|
|
{
|
2024-01-02 02:38:56 -05:00
|
|
|
return draw_count_;
|
|
|
|
}
|
2024-01-01 22:15:30 -05:00
|
|
|
};
|
|
|
|
|
2023-12-29 19:26:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //BLT_WITH_GRAPHICS_BATCH_2D_RENDERER_H
|