blob: d8f74f7d2a2771c79481ee001e8ba85157d324af (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#include "scenery-editor.hpp"
#include "src/anim-atlas.hpp"
#include "loader/loader.hpp"
#include "compat/assert.hpp"
#include "src/world.hpp"
namespace floormat {
using rotation_ = rotation;
using rotation_t = std::underlying_type_t<rotation_>;
scenery_editor::scenery_::operator bool() const noexcept
{
return proto;
}
scenery_editor::scenery_editor() noexcept
{
load_atlases();
}
void scenery_editor::set_rotation(rotation_ r)
{
if (_selected.proto.atlas)
{
(void)_selected.proto.atlas->group(r);
_selected.proto.frame.r = r;
}
}
rotation_ scenery_editor::rotation() const
{
return _selected.proto.frame.r;
}
void scenery_editor::next_rotation()
{
if (_selected)
set_rotation(_selected.proto.atlas->next_rotation_from(_selected.proto.frame.r));
}
void scenery_editor::prev_rotation()
{
if (_selected)
set_rotation(_selected.proto.atlas->next_rotation_from(_selected.proto.frame.r));
}
void scenery_editor::select_tile(const scenery_& s)
{
const auto rot = s.proto.atlas && s.proto.atlas->check_rotation(_selected.proto.frame.r)
? _selected.proto.frame.r
: s.proto.frame.r;
_selected = s;
_selected.proto.frame.r = rot;
}
void scenery_editor::clear_selection()
{
_selected = {};
}
auto scenery_editor::get_selected() const -> const scenery_&
{
return _selected;
}
bool scenery_editor::is_atlas_selected(const std::shared_ptr<anim_atlas>& atlas) const
{
return atlas == _selected.proto.atlas;
}
bool scenery_editor::is_item_selected(const scenery_& s) const
{
return s.name == _selected.name && s.proto.atlas == _selected.proto.atlas;
}
bool scenery_editor::is_anything_selected() const
{
return _selected.proto.atlas != nullptr;
}
void scenery_editor::place_tile(world& w, global_coords pos, const scenery_& s)
{
auto [c, t] = w[pos];
t.scenery() = s.proto;
c.mark_scenery_modified();
}
} // namespace floormat
|