From 542bc1c103f129c2f648dbe77affb485cfdf93ab Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 9 Oct 2022 02:21:01 +0200 Subject: a --- src/wireframe-mesh.cpp | 29 +++++++++++++++++++---------- src/wireframe-mesh.hpp | 17 ++++++++++++----- 2 files changed, 31 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/wireframe-mesh.cpp b/src/wireframe-mesh.cpp index 14af4a15..1332c682 100644 --- a/src/wireframe-mesh.cpp +++ b/src/wireframe-mesh.cpp @@ -1,13 +1,14 @@ #include "wireframe-mesh.hpp" #include "shaders/tile-shader.hpp" +#include "tile-atlas.hpp" #include -#include #include #include +#include +#include #include #include #include -#include namespace Magnum::Examples::wireframe { @@ -30,15 +31,23 @@ GL::RectangleTexture wireframe::null::make_constant_texture() quad::vertex_array quad::make_vertex_array() const { +#if 0 constexpr auto X = TILE_SIZE[0], Y = TILE_SIZE[1]; constexpr float Z = 0; - vertex_array ret = {{ + return {{ { -X + center[0], -Y + center[1], Z + center[2] }, { X + center[0], -Y + center[1], Z + center[2] }, { X + center[0], Y + center[1], Z + center[2] }, { -X + center[0], Y + center[1], Z + center[2] }, }}; - return ret; +#else + return tile_atlas::floor_quad(center, {TILE_SIZE[0], TILE_SIZE[1]}); +#endif +} + +quad::index_array quad::make_index_array() +{ + return tile_atlas::indices(0); } quad::quad(Vector3 center, Vector2 size) : center(center), size(size) {} @@ -49,18 +58,18 @@ namespace Magnum::Examples { template wireframe_mesh::wireframe_mesh() { - _mesh.setCount((int)T::num_vertices) - .setPrimitive(T::primitive) + _mesh.setCount((int)T::num_indexes) .addVertexBuffer(_texcoords_buffer, 0, tile_shader::TextureCoordinates{}) - .addVertexBuffer(_vertex_buffer, 0, tile_shader::Position{}); - CORRADE_INTERNAL_ASSERT(!_mesh.isIndexed()); + .addVertexBuffer(_vertex_buffer, 0, tile_shader::Position{}) + .setIndexBuffer(_index_buffer, 0, GL::MeshIndexType::UnsignedShort); } template void wireframe_mesh::draw(tile_shader& shader, T x) { GL::Renderer::setLineWidth(2); - _vertex_buffer.setData(x.make_vertex_array(), GL::BufferUsage::DynamicDraw); - //_texture.bind(0); + _vertex_buffer.setSubData(0, x.make_vertex_array()); + _index_buffer.setSubData(0, x.make_index_array()); + _texture.bind(0); shader.draw(_mesh); } diff --git a/src/wireframe-mesh.hpp b/src/wireframe-mesh.hpp index 7a6892c2..2a7cf10c 100644 --- a/src/wireframe-mesh.hpp +++ b/src/wireframe-mesh.hpp @@ -1,6 +1,5 @@ #pragma once -#include "tile-atlas.hpp" #include "tile-defs.hpp" #include #include @@ -20,16 +19,19 @@ namespace wireframe template concept traits = requires (const T& x) { {T::num_vertices} -> std::convertible_to; + {T::num_indexes} -> std::convertible_to; {x.primitive} -> std::convertible_to; {x.make_vertex_array() } -> std::same_as>; + {x.make_index_array() } -> std::same_as>; }; struct null final { static constexpr auto primitive = GL::MeshPrimitive::Triangles; - static constexpr std::size_t num_vertices = 0; + static constexpr std::size_t num_vertices = 0, num_indexes = 0; static GL::RectangleTexture make_constant_texture(); static std::array make_vertex_array() { return {}; } + static std::array make_index_array() { return {}; } }; struct quad final @@ -37,11 +39,14 @@ struct quad final quad(Vector3 center, Vector2 size); constexpr quad() = default; - static constexpr std::size_t num_vertices = 4; - static constexpr GL::MeshPrimitive primitive = GL::MeshPrimitive::LineLoop; + static constexpr std::size_t num_vertices = 4, num_indexes = 6; + static constexpr GL::MeshPrimitive primitive = GL::MeshPrimitive::Triangles; using vertex_array = std::array; + using index_array = std::array; + vertex_array make_vertex_array() const; + static index_array make_index_array() ; private: Vector3 center = {}; @@ -57,7 +62,9 @@ struct wireframe_mesh final void draw(tile_shader& shader, T traits); private: - GL::Buffer _vertex_buffer{std::array{}}, _texcoords_buffer{std::array{}}; + GL::Buffer _vertex_buffer{std::array{}, GL::BufferUsage::DynamicDraw}, + _texcoords_buffer{std::array{}, GL::BufferUsage::DynamicDraw}, + _index_buffer{std::array{}, GL::BufferUsage::DynamicDraw}; GL::RectangleTexture _texture = wireframe::null::make_constant_texture(); GL::Mesh _mesh; }; -- cgit v1.2.3