summaryrefslogtreecommitdiff
path: root/include/mbgl/style/property_value.hpp
blob: 1b0f3d2ab05a4e178ecdb5f5229853c2506cca1c (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
#pragma once

#include <mbgl/util/variant.hpp>
#include <mbgl/style/undefined.hpp>
#include <mbgl/style/property_expression.hpp>

namespace mbgl {
namespace style {

template <class T>
class PropertyValue {
private:
    using Value = variant<Undefined, T, PropertyExpression<T>>;
    Value value;

    friend bool operator==(const PropertyValue& lhs, const PropertyValue& rhs) {
        return lhs.value == rhs.value;
    }

    friend bool operator!=(const PropertyValue& lhs, const PropertyValue& rhs) {
        return !(lhs == rhs);
    }

public:
    PropertyValue()
        : value() {}

    PropertyValue(T constant)
        : value(constant) {}

    PropertyValue(PropertyExpression<T> expression)
        : value(expression) {
        assert(expression.isFeatureConstant());
    }

    bool isUndefined()      const { return value.which() == 0; }
    bool isConstant()       const { return value.which() == 1; }
    bool isExpression()     const { return value.which() == 2; }
    bool isDataDriven()     const { return false; }

    const                    T & asConstant()   const { return value.template get<                   T >(); }
    const PropertyExpression<T>& asExpression() const { return value.template get<PropertyExpression<T>>(); }

    template <typename Evaluator>
    auto evaluate(const Evaluator& evaluator, TimePoint = {}) const {
        return Value::visit(value, evaluator);
    }

    bool hasDataDrivenPropertyDifference(const PropertyValue<T>&) const {
        return false;
    }
};

} // namespace style
} // namespace mbgl