summaryrefslogtreecommitdiff
path: root/src/mbgl/style/source_impl.cpp
blob: 98433a8c866e3e63af3afde884807b31209d2f0e (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
#include <mbgl/style/source_impl.hpp>
#include <mbgl/util/constants.hpp>
#include <mbgl/util/logging.hpp>

namespace mbgl {
namespace style {

namespace {
void WarnIfOverscaleFactorCapsPrefetchDelta(const optional<uint8_t>& overscale, const optional<uint8_t>& prefetch) {
    const uint8_t prefetchDelta = std::max<uint8_t>(util::DEFAULT_PREFETCH_ZOOM_DELTA, prefetch.value_or(0u));
    if (overscale && *overscale < prefetchDelta) {
        Log::Warning(Event::Style, "Parent tile overscale factor will cap prefetch delta to %d", int(*overscale));
    }
}
} // namespace

Source::Impl::Impl(SourceType type_, std::string id_)
    : type(type_),
      id(std::move(id_)) {
}

void Source::Impl::setPrefetchZoomDelta(optional<uint8_t> delta) noexcept {
    prefetchZoomDelta = std::move(delta);
    WarnIfOverscaleFactorCapsPrefetchDelta(maxOverscaleFactor, prefetchZoomDelta);
}

optional<uint8_t> Source::Impl::getPrefetchZoomDelta() const noexcept {
    return prefetchZoomDelta;
}

void Source::Impl::setMaxOverscaleFactorForParentTiles(optional<uint8_t> overscaleFactor) noexcept {
    maxOverscaleFactor = std::move(overscaleFactor);
    WarnIfOverscaleFactorCapsPrefetchDelta(maxOverscaleFactor, prefetchZoomDelta);
}

optional<uint8_t> Source::Impl::getMaxOverscaleFactorForParentTiles() const noexcept {
    return maxOverscaleFactor;
}

} // namespace style
} // namespace mbgl