aboutsummaryrefslogtreecommitdiff
path: root/include/ResourceLoader.hpp
blob: 746208a66b010cd5e0f9823d4389f656df3a6df0 (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
#pragma once

namespace mgl {
    class Font;
    class Texture;
}

namespace QuickMedia {
    void set_resource_loader_root_path(const char *resource_root);
    const char* get_resource_loader_root_path();
}

namespace QuickMedia::FontLoader {
    enum class FontType {
        LATIN,
        LATIN_BOLD,
        LATIN_MONOSPACE,
        CJK,
        SYMBOLS
    };

    // Note: not thread-safe
    mgl::Font* get_font(FontType font_type, unsigned int character_size);
}

namespace QuickMedia::TextureLoader {
    // Note: not thread-safe. Filepath is relative to the resource loader root path
    mgl::Texture* get_texture(const char *filepath, bool pixel_coordinates = false);
}