summaryrefslogtreecommitdiffhomepage
path: root/shaders/tile-shader.hpp
blob: c0f0c6561f034acce58f185772f4de16b4554b2d (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
37
38
#pragma once
#include <Magnum/GL/AbstractShaderProgram.h>
#include <Magnum/Math/Vector2.h>
#include <Magnum/Math/Vector3.h>
#include <Magnum/Math/Vector4.h>

namespace Magnum::Examples {

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

    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);
    Vector4 tint() const { return tint_; }
    tile_shader& set_tint(const Vector4& tint);

    static constexpr Vector2 project(Vector3 pt);

private:
    Vector2 scale_, camera_offset_;
    Vector4 tint_;

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

constexpr Vector2 tile_shader::project(const Vector3 pt)
{
    float x = -pt[1], y = -pt[0], z = pt[2];
    return { x-y, (x+y+z*2)*.75f };
}

} // namespace Magnum::Examples