aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/resource_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/resource_manager.h')
-rw-r--r--src/crepe/api/resource_manager.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/crepe/api/resource_manager.h b/src/crepe/api/resource_manager.h
new file mode 100644
index 0000000..1b91524
--- /dev/null
+++ b/src/crepe/api/resource_manager.h
@@ -0,0 +1,59 @@
+#pragma once
+
+
+
+#include <memory>
+#include <string>
+#include <unordered_map>
+#include <utility>
+
+
+#include "api/resource.h"
+#include "fabricator/resource_fabricator.h"
+
+
+ namespace crepe::api{
+
+class ResourceManager{
+
+
+private:
+
+ std::unordered_map< std::string, std::unique_ptr<api::Resource>> m_resources;
+
+
+protected:
+ ResourceManager() = default;
+ ~ResourceManager();
+
+public:
+ ResourceManager(const ResourceManager &) = delete;
+ ResourceManager(ResourceManager &&) = delete;
+ ResourceManager &operator=(const ResourceManager &) = delete;
+ ResourceManager &operator=(ResourceManager &&) = delete;
+
+ static ResourceManager& get_instance();
+
+
+
+public:
+ template<typename T>
+ T* Load(const std::string& file_path){
+
+ if (m_resources.find(file_path) != m_resources.end()) {
+ return static_cast<T*>(m_resources[file_path].get());
+ }
+
+ std::unique_ptr<api::Resource> resource = ResourceFactory::create_resource<T>(file_path);
+ if (resource) {
+ m_resources[file_path] = std::move(resource);
+ return static_cast<T*>(m_resources[file_path].get() );
+ }
+
+ return nullptr;
+ }
+
+ void Unload(const std::string& file_path);
+
+};
+}