summaryrefslogtreecommitdiffhomepage
path: root/editor/scenery-editor.hpp
blob: 999e9e15fec1143f53645415fd5ccc822a189654 (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/scenery.hpp"
#include <map>
#include <memory>
#include <Corrade/Containers/String.h>

namespace floormat {

class anim_atlas;
struct global_coords;
struct world;
struct app;

class scenery_editor final
{
public:
    struct scenery_ final {
        String name, descr;
        scenery_proto proto;
        explicit 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, app& a);

    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