blob: ea65a23f1e3349262adbf277a6df4298d04f79fb (
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
50
|
#pragma once
#include "src/light-falloff.hpp"
#include "src/object.hpp"
#include <Magnum/Magnum.h>
#include <Magnum/Math/Vector2.h>
#include <Magnum/Math/Color.h>
namespace floormat {
struct light_proto : object_proto
{
~light_proto() noexcept override;
light_proto();
light_proto(const light_proto&);
light_proto& operator=(const light_proto&);
light_proto(light_proto&&) noexcept;
light_proto& operator=(light_proto&&) noexcept;
bool operator==(const light_proto&) const;
float max_distance = 0;
Color4ub color{255, 255, 255, 255};
light_falloff falloff = light_falloff::linear;
bool enabled = true;
};
struct light final : object
{
float max_distance;
Color4ub color;
light_falloff falloff : 2;
bool enabled : 1;
light(object_id id, class chunk& c, const light_proto& proto);
Vector2 ordinal_offset(Vector2b offset) const override;
float depth_offset() const override;
object_type type() const noexcept override;
void update(size_t& i, const Ns& dt) override;
bool is_dynamic() const override;
bool is_virtual() const override;
explicit operator light_proto() const;
friend class world;
};
template<> struct object_type_<struct light> : std::integral_constant<object_type, object_type::light> {};
template<> struct object_type_<struct light_proto> : std::integral_constant<object_type, object_type::light> {};
} // namespace floormat
|