-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResourceHolder.h
30 lines (22 loc) · 1.2 KB
/
ResourceHolder.h
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
#ifndef TETRIS_RESOURCEHOLDER_H
#define TETRIS_RESOURCEHOLDER_H
#include "SFML/Graphics.hpp"
#include <map>
#include <string>
// Тут пока что находится только Texture holder, однако в будущем будет и реализация Sound Holde'а
// Поэтому файл и называется "ResourceHolder"
class TextureHolder
{
private:
std::map<std::string, sf::Texture*> resourcesMap;
public:
/////////////////////////////////// Конструкторы и деструкторы ///////////////////////////////////
TextureHolder() = default;
~TextureHolder();
/////////////////////////////////// Получение глобального textureholder'а ///////////////////////////////////
static TextureHolder& getInstance();
/////////////////////////////////// Работа с TextureHolder'ом ///////////////////////////////////
void loadFromFile(const std::string &fileName, const std::string &key); // Загрузка в TextureHolder текстуры
sf::Texture* getResource(const std::string &key); // Получение их TextureHolder'а текстуры
};
#endif //TETRIS_RESOURCEHOLDER_H