blob: 23a11a7cf6e8a1c9103e22893480d939fb9c6925 (
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
52
53
|
#pragma once
#include <fstream>
#include <string>
#include <map>
#include <experimental/filesystem>
#include <nlohmann/json.hpp>
#include "Texture.hpp"
struct Asset {
std::string name = "";
std::string hash = "";
union AssetData{
Texture *texture;
} data;
size_t size = 0;
enum AssetType {
Unknown,
Texture,
Sound,
Model,
Lang,
} type = Unknown;
bool isParsed();
~Asset();
};
class AssetManager_old {
AssetManager_old();
~AssetManager_old();
AssetManager_old(const AssetManager_old &);
AssetManager_old &operator=(const AssetManager_old &);
std::map<std::string, Asset> assets;
static AssetManager_old &instance() {
static AssetManager_old assetManager;
return assetManager;
}
static std::string GetPathToAsset(std::string AssetName);
public:
static Asset &GetAsset(std::string AssetName);
static void LoadAsset(std::string AssetName);
static std::string GetAssetNameByBlockId(unsigned short id);
};
|