blob: 50402030c879e901ada31705779f77be7f29c4e8 (
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
39
40
41
42
43
44
45
46
47
48
49
|
#pragma once
#include <Magnum/GL/AbstractShaderProgram.h>
#include <Magnum/Math/Vector2.h>
#include <Magnum/Math/Vector3.h>
#include <Magnum/Math/Vector4.h>
namespace floormat {
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);
Vector2d camera_offset() const { return _camera_offset; }
tile_shader& set_camera_offset(Vector2d camera_offset);
Vector4 tint() const { return _tint; }
tile_shader& set_tint(const Vector4& tint);
static constexpr Vector2d project(Vector3d pt);
static constexpr Vector2d unproject(Vector2d px);
private:
void on_draw();
Vector2d _camera_offset;
Vector4 _tint;
Vector2 _scale;
Vector2i _real_camera_offset;
enum { ScaleUniform = 0, OffsetUniform = 1, TintUniform = 2, };
};
constexpr Vector2d tile_shader::project(const Vector3d pt)
{
const auto x = -pt[0]*.5, y = pt[1]*.5, z = pt[2];
return { (x-y), (x+y+z)*.59 };
}
constexpr Vector2d tile_shader::unproject(const Vector2d px)
{
const auto X = px[0], Y = px[1];
return { X/2 + 50 * Y / 59, 50 * Y / 59 - X/2 };
}
} // namespace floormat
|