summaryrefslogtreecommitdiff
path: root/src/map/vector_tile_data.cpp
blob: 051ebb7eac77efbdc4b724a2f67ed92ae0f5e9c7 (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
#include <llmr/map/vector_tile_data.hpp>
#include <llmr/util/std.hpp>
#include <llmr/map/map.hpp>
#include <llmr/style/style_layer.hpp>
#include <llmr/style/style_bucket.hpp>

using namespace llmr;

VectorTileData::VectorTileData(Tile::ID id, Map &map, const std::string url)
    : TileData(id, map, url) {
}

VectorTileData::~VectorTileData() {
    std::shared_ptr<GlyphAtlas> glyphAtlas = map.getGlyphAtlas();
    if (glyphAtlas) {
        glyphAtlas->removeGlyphs(id.to_uint64());
    }
}

void VectorTileData::beforeParse() {
    parser = std::make_unique<TileParser>(data, *this, map.getStyle(), map.getGlyphAtlas(), map.getGlyphStore(), map.getSpriteAtlas());
}

void VectorTileData::parse() {
    if (state != State::loaded) {
        return;
    }

    try {
        // Parsing creates state that is encapsulated in TileParser. While parsing,
        // the TileParser object writes results into this objects. All other state
        // is going to be discarded afterwards.
        parser->parse();
    } catch (const std::exception& ex) {
#if defined(DEBUG)
        fprintf(stderr, "[%p] exception [%d/%d/%d]... failed: %s\n", this, id.z, id.x, id.y, ex.what());
#endif
        cancel();
        return;
    }

    if (state != State::obsolete) {
        state = State::parsed;
    }
}

void VectorTileData::afterParse() {
    parser.reset();
}

void VectorTileData::render(Painter &painter, std::shared_ptr<StyleLayer> layer_desc) {
    if (state == State::parsed && layer_desc->bucket) {
        auto databucket_it = buckets.find(layer_desc->bucket->name);
        if (databucket_it != buckets.end()) {
            assert(databucket_it->second);
            databucket_it->second->render(painter, layer_desc, id);
        }
    }
}

bool VectorTileData::hasData(std::shared_ptr<StyleLayer> layer_desc) const {
    if (state == State::parsed && layer_desc->bucket) {
        auto databucket_it = buckets.find(layer_desc->bucket->name);
        if (databucket_it != buckets.end()) {
            assert(databucket_it->second);
            return databucket_it->second->hasData();    
        }
    }
    return false;
}