blob: c23c0c71363dc782e26bfb424928952ea2ec3626 (
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
|
#pragma once
#include "scenery.hpp"
#include <map>
#include <memory>
#include <Corrade/Containers/String.h>
namespace floormat {
struct anim_atlas;
struct global_coords;
struct world;
struct scenery_editor final
{
struct scenery_ final {
String name, descr;
scenery_proto proto;
operator bool() const noexcept;
};
scenery_editor() noexcept;
void set_rotation(enum rotation r);
enum rotation rotation() const;
void next_rotation();
void prev_rotation();
void select_tile(const scenery_& s);
void clear_selection();
const scenery_& get_selected() const;
bool is_atlas_selected(const std::shared_ptr<anim_atlas>& atlas) const;
bool is_item_selected(const scenery_& s) const;
bool is_anything_selected() const;
static void place_tile(world& w, global_coords pos, const scenery_& s);
auto cbegin() const noexcept { return _atlases.cbegin(); }
auto cend() const noexcept { return _atlases.cend(); }
auto begin() const noexcept { return _atlases.cbegin(); }
auto end() const noexcept { return _atlases.cend(); }
private:
void load_atlases();
std::map<StringView, scenery_> _atlases;
scenery_ _selected;
};
} // namespace floormat
|