diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-09 20:40:31 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-09 20:40:31 +0100 |
commit | 0ec88d181a5a5c3c3e791426b7fa01d44195ec8c (patch) | |
tree | 0c72a6fed79d5a4bb2e9d610cf03079cc342fae2 /draw | |
parent | 9482f370e56397d50e5d7efef81a33af7390d07a (diff) |
add forgotten animation drawing
Diffstat (limited to 'draw')
-rw-r--r-- | draw/anim.cpp | 28 | ||||
-rw-r--r-- | draw/anim.hpp | 8 |
2 files changed, 30 insertions, 6 deletions
diff --git a/draw/anim.cpp b/draw/anim.cpp index a096711c..aa5ee1f6 100644 --- a/draw/anim.cpp +++ b/draw/anim.cpp @@ -1,8 +1,8 @@ #include "anim.hpp" #include "anim-atlas.hpp" +#include "chunk.hpp" #include "shaders/tile.hpp" -#include "wireframe.hpp" -#include "quad-floor.hpp" +#include <Magnum/GL/Texture.h> namespace floormat { @@ -22,7 +22,28 @@ std::array<UnsignedShort, 6> anim_mesh::make_index_array() }}; } -void anim_mesh::draw(tile_shader& shader, const anim_atlas& atlas, rotation r, std::size_t frame, local_coords xy) +void anim_mesh::draw(tile_shader& shader, chunk& c) +{ + for (std::size_t i = 0; i < TILE_COUNT; i++) + { + const local_coords pos{i}; + if (auto [atlas, s] = c[pos].scenery(); atlas) + { + draw(shader, *atlas, s.r, s.frame, pos); +#if 1 + // todo debugging + static std::size_t N = 0; + N++; + auto nframes = atlas->info().nframes; + if (N > nframes*3) + N = 0; + s.frame = (scenery::frame_t)std::min(N, nframes-1); +#endif + } + } +} + +void anim_mesh::draw(tile_shader& shader, anim_atlas& atlas, rotation r, std::size_t frame, local_coords xy) { const auto center = Vector3(xy.x, xy.y, 0.f) * TILE_SIZE; const auto pos = atlas.frame_quad(center, r, frame); @@ -32,6 +53,7 @@ void anim_mesh::draw(tile_shader& shader, const anim_atlas& atlas, rotation r, s for (std::size_t i = 0; i < 4; i++) array[i] = { pos[i], texcoords[i], depth }; _vertex_buffer.setSubData(0, array); + atlas.texture().bind(0); shader.draw(_mesh); } diff --git a/draw/anim.hpp b/draw/anim.hpp index 163c5b1a..324d8c3b 100644 --- a/draw/anim.hpp +++ b/draw/anim.hpp @@ -10,18 +10,20 @@ #include <Magnum/GL/Mesh.h> #include <Magnum/GL/Buffer.h> -namespace floormat::Serialize { struct anim_frame; } +//namespace floormat::Serialize { struct anim_frame; } namespace floormat { struct tile_shader; struct anim_atlas; -using anim_frame = Serialize::anim_frame; +struct chunk; +//using anim_frame = Serialize::anim_frame; struct anim_mesh final { anim_mesh(); - void draw(tile_shader& shader, const anim_atlas& atlas, rotation r, std::size_t frame, local_coords xy); + void draw(tile_shader& shader, chunk& c); + void draw(tile_shader& shader, anim_atlas& atlas, rotation r, std::size_t frame, local_coords xy); private: struct vertex_data final { |