summaryrefslogtreecommitdiff
path: root/include/mbgl/style/function/camera_function.hpp
blob: 0fd5bcb078714e0368e6c4d9794224d67c16d878 (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
#pragma once

#include <mbgl/style/function/exponential_stops.hpp>
#include <mbgl/style/function/interval_stops.hpp>
#include <mbgl/util/interpolate.hpp>
#include <mbgl/util/variant.hpp>

namespace mbgl {
namespace style {

template <class T>
class CameraFunction {
public:
    using Stops = std::conditional_t<
        util::Interpolatable<T>,
        variant<
            ExponentialStops<T>,
            IntervalStops<T>>,
        variant<
            IntervalStops<T>>>;

    CameraFunction(Stops stops_)
        : stops(std::move(stops_)) {
    }

    T evaluate(float zoom) const {
        return stops.match([&] (const auto& s) {
            return s.evaluate(zoom).value_or(T());
        });
    }
    
    friend bool operator==(const CameraFunction& lhs,
                           const CameraFunction& rhs) {
        return lhs.stops == rhs.stops;
    }

    Stops stops;
    bool useIntegerZoom = false;
};

} // namespace style
} // namespace mbgl