#include <ResourcesManager.hxx>
Definition at line 11 of file ResourcesManager.hxx.
◆ ResourcesManager() [1/2]
◆ ResourcesManager() [2/2]
ResourcesManager::ResourcesManager |
( |
| ) |
|
|
private |
◆ ~ResourcesManager()
ResourcesManager::~ResourcesManager |
( |
| ) |
|
|
private |
◆ createSurfaceFromFile()
SDL_Surface * ResourcesManager::createSurfaceFromFile |
( |
const std::string & |
fileName | ) |
|
|
private |
◆ createTextureFromSurface()
SDL_Texture * ResourcesManager::createTextureFromSurface |
( |
SDL_Surface * |
surface | ) |
|
|
private |
◆ flush()
void ResourcesManager::flush |
( |
| ) |
|
|
private |
Delete everything. Should be called from the destuctor only.
Definition at line 102 of file ResourcesManager.cxx.
106 SDL_FreeSurface(it.second);
112 SDL_DestroyTexture(it.second);
118 for (
const auto &ita : it.second)
120 SDL_DestroyTexture(ita.second);
◆ getColorOfPixelInSurface()
SDL_Color ResourcesManager::getColorOfPixelInSurface |
( |
const std::string & |
tileID, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
Get the Color Of Pixel In Surface object at a given coordinate.
- Parameters
-
tileID | The tileID of object to check |
x | x ccoordinate within the surface |
y | y ccoordinate within the surface |
- Returns
- SDL_Color at the given coordinate
Definition at line 126 of file ResourcesManager.cxx.
128 SDL_Color Color{0, 0, 0, SDL_ALPHA_TRANSPARENT};
132 const int bpp = surface->format->BytesPerPixel;
133 Uint8 *p = &
static_cast<Uint8 *
>(surface->pixels)[y * surface->pitch + x * bpp];
134 const Uint32 pixel = *
reinterpret_cast<Uint32 *
>(p);
136 SDL_GetRGBA(pixel, surface->format, &Color.r, &Color.g, &Color.b, &Color.a);
◆ getTileSurface()
SDL_Surface * ResourcesManager::getTileSurface |
( |
const std::string & |
id | ) |
|
◆ getTileTexture()
SDL_Texture * ResourcesManager::getTileTexture |
( |
const std::string & |
id | ) |
|
Retrieves Color of a specific tileID at coordinates with the texture
Definition at line 59 of file ResourcesManager.cxx.
◆ getUITexture()
SDL_Texture * ResourcesManager::getUITexture |
( |
const std::string & |
uiElement | ) |
|
◆ loadTexture()
◆ loadUITexture()
void ResourcesManager::loadUITexture |
( |
| ) |
|
|
private |
Load Texture in to Texture Map, if an entry for this tile ID does not yet exist.
Keep in Mind that the texture id is unique and there can't be two textures with the same id. If colorkey is set - Use Magic Pink (255,255,0) for transparency
- Exceptions
-
Definition at line 26 of file ResourcesManager.cxx.
29 const json uiDataJSON = json::parse(jsonFileContent,
nullptr,
false);
32 if (uiDataJSON.is_discarded())
35 for (
const auto &tileID : uiDataJSON.items())
37 for (
auto it = uiDataJSON[tileID.key()].begin(); it != uiDataJSON[tileID.key()].end(); ++it)
◆ operator=()
◆ m_surfaceMap
std::unordered_map<std::string, SDL_Surface *> ResourcesManager::m_surfaceMap |
|
private |
◆ m_tileTextureMap
std::unordered_map<std::string, SDL_Texture *> ResourcesManager::m_tileTextureMap |
|
private |
◆ m_uiTextureMap
std::unordered_map<std::string, std::unordered_map<std::string, SDL_Texture *> > ResourcesManager::m_uiTextureMap |
|
private |
◆ Singleton< ResourcesManager >
The documentation for this class was generated from the following files: