summaryrefslogtreecommitdiff
path: root/include/mbgl/map/sprite.hpp
blob: d4b54ba1b561f756333a34b36525018c970a29f2 (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
71
72
73
74
75
76
77
78
79
#ifndef MBGL_STYLE_SPRITE
#define MBGL_STYLE_SPRITE

#include <mbgl/util/image.hpp>
#include <mbgl/util/noncopyable.hpp>
#include <mbgl/util/ptr.hpp>

#include <cstdint>
#include <atomic>
#include <iosfwd>
#include <string>
#include <unordered_map>
#include <future>

namespace mbgl {

class FileSource;

class SpritePosition {
public:
    explicit SpritePosition() {}
    explicit SpritePosition(uint16_t x, uint16_t y, uint16_t width, uint16_t height, float pixelRatio, bool sdf);

    operator bool() const {
        return !(width == 0 && height == 0 && x == 0 && y == 0);
    }

    uint16_t x = 0, y = 0;
    uint16_t width = 0, height = 0;
    float pixelRatio = 1.0f;
    bool sdf = false;
};

class Sprite : public std::enable_shared_from_this<Sprite>, private util::noncopyable {
private:
    struct Key {};
    void load(FileSource& fileSource);

public:
    Sprite(const Key &, const std::string& base_url, float pixelRatio);
    static util::ptr<Sprite> Create(const std::string& base_url, float pixelRatio, FileSource& fileSource);

    const SpritePosition &getSpritePosition(const std::string& name) const;

    void waitUntilLoaded() const;
    bool isLoaded() const;

    operator bool() const;

private:
    const bool valid;

public:
    const float pixelRatio;
    const std::string spriteURL;
    const std::string jsonURL;
    std::unique_ptr<util::Image> raster;

private:
    void parseJSON();
    void parseImage();
    void complete();

private:
    std::string body;
    std::string image;
    std::atomic<bool> loadedImage;
    std::atomic<bool> loadedJSON;
    std::unordered_map<std::string, SpritePosition> pos;
    const SpritePosition empty;

    std::promise<void> promise;
    std::future<void> future;

};

}

#endif