summaryrefslogtreecommitdiffhomepage
path: root/draw/anim.cpp
blob: 1a02ad933c1bc1f44b32c7af5de1b5a90cb1bc21 (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
#include "anim.hpp"
#include "anim-atlas.hpp"
#include "shaders/tile.hpp"
#include "wireframe.hpp"
#include "quad-floor.hpp"

namespace floormat {

anim_mesh::anim_mesh()
{
    _mesh.setCount(6)
        .addVertexBuffer(_vertex_buffer, 0, tile_shader::TextureCoordinates{})
        .addVertexBuffer(_positions_buffer, 0, tile_shader::Position{})
        .setIndexBuffer(_index_buffer, 0, GL::MeshIndexType::UnsignedShort);
    CORRADE_INTERNAL_ASSERT(_mesh.isIndexed());
}

std::array<UnsignedShort, 6> anim_mesh::make_index_array()
{
    return {{
        0, 1, 2,
        2, 1, 3,
    }};
}

void anim_mesh::draw(tile_shader& shader, const 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);
    _positions_buffer.setSubData(0, pos);
    const auto texcoords = atlas.texcoords_for_frame(r, frame);
    _vertex_buffer.setSubData(0, texcoords);
    shader.draw(_mesh);
}

} // namespace floormat