summaryrefslogtreecommitdiffhomepage
path: root/tile-shader.hpp
blob: bf0813ff8e5ffaec895b9c72b260b43c343d5a55 (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
#pragma once
#include "tile-atlas.hpp"
#include <vector>
#include <utility>
#include <Magnum/GL/AbstractShaderProgram.h>
#include <Magnum/GL/Texture.h>
#include <Magnum/Math/Color.h>
#include <Magnum/Math/Vector2.h>
#include <Magnum/Math/Matrix4.h>

struct tile_atlas;

namespace Magnum::Examples {

struct tile_shader : GL::AbstractShaderProgram
{
    typedef GL::Attribute<0, Vector3> Position;
    typedef GL::Attribute<1, Vector2> TextureCoordinates;
    typedef GL::Attribute<2, int> TextureID;

    explicit tile_shader();

    Vector2 scale() const { return scale_; }
    tile_shader& set_scale(const Vector2& scale);
    Vector2 camera_offset() const { return camera_offset_; }
    tile_shader& set_camera_offset(Vector2 camera_offset);

    static Vector2 project(Vector3 pt);

private:
    Vector2 scale_, camera_offset_;

    enum { ScaleUniform = 0, OffsetUniform = 1, };
};

} // namespace Magnum::Examples