summaryrefslogtreecommitdiffstats
path: root/src/graphics/AssetManager_old.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/AssetManager_old.hpp')
-rw-r--r--src/graphics/AssetManager_old.hpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/graphics/AssetManager_old.hpp b/src/graphics/AssetManager_old.hpp
new file mode 100644
index 0000000..23a11a7
--- /dev/null
+++ b/src/graphics/AssetManager_old.hpp
@@ -0,0 +1,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);
+};
+