summaryrefslogtreecommitdiff
path: root/include/llmr/style/style.hpp
blob: fd5f7e2226dc13ca5a66a54b1ee842a86d58d9cf (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
90
91
92
93
94
95
96
97
#ifndef LLMR_STYLE_STYLE
#define LLMR_STYLE_STYLE

#include <cstdint>

#include <llmr/style/style_bucket.hpp>
#include <llmr/util/pbf.hpp>
#include <llmr/geometry/sprite_atlas.hpp>
#include <llmr/util/transition.hpp>
#include <llmr/util/uv.hpp>
#include <llmr/style/class_dictionary.hpp>

#include <map>
#include <unordered_map>
#include <vector>
#include <set>
#include <memory>

namespace llmr {

class Sprite;

class StyleLayer;
typedef std::vector<std::shared_ptr<StyleLayer>> StyleLayerGroup;

class StyleLayer {
public:
    typedef std::shared_ptr<StyleLayer> Ptr;

public:
    template <typename T> const T &getProperties() {
        if (style.is<T>()) {
            return style.get<T>();
        } else {
            return defaultStyleProperties<T>();
        }
    }

public:
    std::string id;
    StyleBucket::Ptr bucket;
    std::map<ClassID, ClassProperties> styles;
    StyleProperties style;
    std::unique_ptr<RasterizeProperties> rasterize;
    std::shared_ptr<StyleLayerGroup> layers;
};



class Style {
public:
    struct exception : std::runtime_error { exception(const char *msg) : std::runtime_error(msg) {} };

public:
    Style();

    void reset();

    void loadJSON(const uint8_t *const data);

    size_t layerCount() const;
    void cascade(float z);

    bool needsTransition() const;
    void updateTransitions(timestamp now);
    void cancelTransitions();

    void setDefaultTransitionDuration(uint64_t duration_milliseconds = 0);

    void updateSources();
    const std::set<std::shared_ptr<Source>> getActiveSources() const;

    const std::vector<std::string> &getAppliedClasses() const;
    void toggleClass(const std::string &name);

public:
    std::shared_ptr<Sprite> sprite;
    std::shared_ptr<StyleLayerGroup> layers;
    std::shared_ptr<StyleLayer> background;
    std::vector<std::string> appliedClasses;


private:
    void updateSources(const std::shared_ptr<StyleLayerGroup> &layers);
    void cascade(const std::shared_ptr<StyleLayerGroup> &layers, float z);

private:
    std::set<std::shared_ptr<Source>> activeSources;
    uint64_t default_transition_duration = 0;
    bool initial_render_complete = false;

    mutable uv::rwlock mtx;
};

}

#endif