summaryrefslogtreecommitdiff
path: root/src/mbgl/layer/fill_layer.hpp
blob: 3b1c5a84fe1b46fbd75e53ecf96fc3c9ba1e3a76 (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
#ifndef MBGL_FILL_LAYER
#define MBGL_FILL_LAYER

#include <mbgl/style/style_layer.hpp>
#include <mbgl/style/paint_property.hpp>

namespace mbgl {

class FillPaintProperties {
public:
    PaintProperty<bool> antialias { true };
    PaintProperty<float> opacity { 1.0f };
    PaintProperty<Color> color { {{ 0, 0, 0, 1 }} };
    PaintProperty<Color> outlineColor { {{ 0, 0, 0, -1 }} };
    PaintProperty<std::array<float, 2>> translate { {{ 0, 0 }} };
    PaintProperty<TranslateAnchorType> translateAnchor { TranslateAnchorType::Map };
    PaintProperty<std::string, Faded<std::string>> pattern { "" };
};

class FillLayer : public StyleLayer {
public:
    FillLayer() : StyleLayer(Type::Fill) {}
    std::unique_ptr<StyleLayer> clone() const override;

    void parseLayout(const JSValue&) override {};
    void parsePaints(const JSValue&) override;

    void cascade(const StyleCascadeParameters&) override;
    bool recalculate(const StyleCalculationParameters&) override;

    std::unique_ptr<Bucket> createBucket(StyleBucketParameters&) const override;

    FillPaintProperties paint;
};

template <>
inline bool StyleLayer::is<FillLayer>() const {
    return type == Type::Fill;
}

} // namespace mbgl

#endif