aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/ResourceManager.cpp
blob: 7877ed9e572eb2bbe72f5210d35319b14afac707 (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
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdexcept>

#include "util/Log.h"

#include "ResourceManager.h"

using namespace crepe;
using namespace std;

ResourceManager & ResourceManager::get_instance() {
	static ResourceManager instance;
	return instance;
}

ResourceManager::~ResourceManager() { dbg_trace(); }
ResourceManager::ResourceManager() { dbg_trace(); }

void ResourceManager::clear() {
	this->resources.clear();
}

template <typename T>
T & ResourceManager::cache(const Asset & asset) {
	dbg_trace();
	static_assert(is_base_of<Resource, T>::value, "cache must recieve a derivative class of Resource");

	if (!this->resources.contains(asset))
		this->resources[asset] = make_unique<T>(asset);

	Resource * resource = this->resources.at(asset).get();
	T * concrete_resource = dynamic_cast<T *>(resource);

	if (concrete_resource == nullptr)
		throw runtime_error(format("ResourceManager: mismatch between requested type and actual type of resource ({})", asset.get_path()));

	return *concrete_resource;
}

#include "../facade/Sound.h"
template Sound & ResourceManager::cache(const Asset &);