blob: 81be7c4273d3202455665757017dcd5b2d23b2e4 (
plain) (
blame)
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
|
#pragma once
#include <fstream>
#include <string>
#include <SOIL.h>
#include <map>
#include "../json.hpp"
struct Asset {
std::string name = "";
std::string hash = "";
union AssetData{
struct TextureData{
int width;
int height;
unsigned char *imageData;
} texture;
} data;
size_t size = 0;
enum AssetType {
Unknown,
Texture,
Sound,
Model,
Lang,
} type = Unknown;
bool isParsed();
~Asset();
};
class AssetManager {
AssetManager();
~AssetManager();
AssetManager(const AssetManager &);
AssetManager &operator=(const AssetManager &);
std::map<std::string, Asset> assets;
public:
static AssetManager &instance() {
static AssetManager assetManager;
return assetManager;
}
static Asset &GetAsset(std::string AssetName);
static void LoadAsset(std::string AssetName);
};
|