Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResourcesManager Class Reference

#include <ResourcesManager.hxx>

+ Inheritance diagram for ResourcesManager:
+ Collaboration diagram for ResourcesManager:

Public Member Functions

 ResourcesManager (ResourcesManager const &)=delete
 
ResourcesManageroperator= (ResourcesManager const &)=delete
 
SDL_Texture * getUITexture (const std::string &uiElement)
 retrieves texture for a tileID More...
 
SDL_Texture * getTileTexture (const std::string &id)
 
SDL_Surface * getTileSurface (const std::string &id)
 
void loadTexture (const std::string &id, const std::string &fileName)
 
SDL_Color getColorOfPixelInSurface (const std::string &tileID, int x, int y)
 Get the Color Of Pixel In Surface object at a given coordinate. More...
 

Public Attributes

friend Singleton< ResourcesManager >
 

Private Member Functions

 ResourcesManager ()
 
 ~ResourcesManager ()
 
void loadUITexture ()
 Load Texture in to Texture Map, if an entry for this tile ID does not yet exist. More...
 
void flush ()
 Delete everything. Should be called from the destuctor only. More...
 
SDL_Surface * createSurfaceFromFile (const std::string &fileName)
 
SDL_Texture * createTextureFromSurface (SDL_Surface *surface)
 

Private Attributes

std::unordered_map< std::string, std::unordered_map< std::string, SDL_Texture * > > m_uiTextureMap
 
std::unordered_map< std::string, SDL_Texture * > m_tileTextureMap
 
std::unordered_map< std::string, SDL_Surface * > m_surfaceMap
 

Additional Inherited Members

- Static Public Member Functions inherited from Singleton< ResourcesManager >
static ResourcesManagerinstance (void)
 Get an instance of the singleton. More...
 
- Protected Member Functions inherited from Singleton< ResourcesManager >
 Singleton () noexcept=default
 
 ~Singleton () noexcept=default
 

Detailed Description

Definition at line 11 of file ResourcesManager.hxx.

Constructor & Destructor Documentation

◆ ResourcesManager() [1/2]

ResourcesManager::ResourcesManager ( ResourcesManager const &  )
delete

◆ ResourcesManager() [2/2]

ResourcesManager::ResourcesManager ( )
private

Definition at line 16 of file ResourcesManager.cxx.

16 { loadUITexture(); }
+ Here is the call graph for this function:

◆ ~ResourcesManager()

ResourcesManager::~ResourcesManager ( )
private

Definition at line 18 of file ResourcesManager.cxx.

18 { flush(); }
+ Here is the call graph for this function:

Member Function Documentation

◆ createSurfaceFromFile()

SDL_Surface * ResourcesManager::createSurfaceFromFile ( const std::string fileName)
private

Definition at line 77 of file ResourcesManager.cxx.

78 {
79  string fName = fs::getBasePath() + fileName;
80 
81  if (!fs::fileExists(fName))
82  throw ConfigurationError(TRACE_INFO "File " + fName + " doesn't exist");
83 
84  SDL_Surface *surface = IMG_Load(fName.c_str());
85 
86  if (surface)
87  return surface;
88 
89  throw ConfigurationError(TRACE_INFO "Could not load Texture from file " + fName + ": " + IMG_GetError());
90 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ createTextureFromSurface()

SDL_Texture * ResourcesManager::createTextureFromSurface ( SDL_Surface *  surface)
private

Definition at line 92 of file ResourcesManager.cxx.

93 {
94  SDL_Texture *texture = SDL_CreateTextureFromSurface(WindowManager::instance().getRenderer(), surface);
95 
96  if (texture)
97  return texture;
98 
99  throw UIError(TRACE_INFO "Texture could not be created! SDL Error: " + string{SDL_GetError()});
100 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ flush()

void ResourcesManager::flush ( )
private

Delete everything. Should be called from the destuctor only.

Definition at line 102 of file ResourcesManager.cxx.

103 {
104  for (const auto &it : m_surfaceMap)
105  {
106  SDL_FreeSurface(it.second);
107  }
108  m_surfaceMap.clear();
109 
110  for (const auto &it : m_tileTextureMap)
111  {
112  SDL_DestroyTexture(it.second);
113  }
114  m_tileTextureMap.clear();
115 
116  for (const auto &it : m_uiTextureMap)
117  {
118  for (const auto &ita : it.second)
119  {
120  SDL_DestroyTexture(ita.second);
121  }
122  }
123  m_uiTextureMap.clear();
124 }
+ Here is the caller graph for this function:

◆ 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
tileIDThe tileID of object to check
xx ccoordinate within the surface
yy ccoordinate within the surface
Returns
SDL_Color at the given coordinate

Definition at line 126 of file ResourcesManager.cxx.

127 {
128  SDL_Color Color{0, 0, 0, SDL_ALPHA_TRANSPARENT};
129  // create and initialize a variable within the condition
130  if (SDL_Surface *surface = getTileSurface(tileID); surface)
131  {
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);
135 
136  SDL_GetRGBA(pixel, surface->format, &Color.r, &Color.g, &Color.b, &Color.a);
137  }
138 
139  return Color;
140 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTileSurface()

SDL_Surface * ResourcesManager::getTileSurface ( const std::string id)

Definition at line 68 of file ResourcesManager.cxx.

69 {
70  if (m_surfaceMap.find(id) != m_surfaceMap.end())
71  {
72  return m_surfaceMap.at(id);
73  }
74  throw UIError(TRACE_INFO "No surface found for " + id);
75 }
+ Here is the caller graph for this function:

◆ 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.

60 {
61  if (m_tileTextureMap.find(id) != m_tileTextureMap.end())
62  {
63  return m_tileTextureMap.at(id);
64  }
65  throw UIError(TRACE_INFO "No texture found for " + id);
66 }
+ Here is the caller graph for this function:

◆ getUITexture()

SDL_Texture * ResourcesManager::getUITexture ( const std::string uiElement)

retrieves texture for a tileID

Definition at line 44 of file ResourcesManager.cxx.

45 {
46  std::string texture = "Texture_Default";
47  if (m_uiTextureMap[uiElement].find(texture) != m_uiTextureMap[uiElement].end())
48  {
49  return m_uiTextureMap[uiElement].at(texture);
50  }
51  if (m_uiTextureMap[uiElement].find("Texture_Default") != m_uiTextureMap[uiElement].end())
52  {
53  // If no texture is found, check if there's a default texture
54  return m_uiTextureMap[uiElement].at("Texture_Default");
55  }
56  throw UIError(TRACE_INFO "No texture found for " + uiElement);
57 }
+ Here is the caller graph for this function:

◆ loadTexture()

void ResourcesManager::loadTexture ( const std::string id,
const std::string fileName 
)

Definition at line 20 of file ResourcesManager.cxx.

21 {
22  m_surfaceMap[id] = createSurfaceFromFile(fileName);
24 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ 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
ConfigurationErrorwhen loading configuration results in an error

Definition at line 26 of file ResourcesManager.cxx.

27 {
28  std::string jsonFileContent = fs::readFileAsString(Settings::instance().uiDataJSONFile.get());
29  const json uiDataJSON = json::parse(jsonFileContent, nullptr, false);
30 
31  // check if json file can be parsed
32  if (uiDataJSON.is_discarded())
33  throw ConfigurationError(TRACE_INFO "Error parsing JSON File " + Settings::instance().uiDataJSONFile.get());
34 
35  for (const auto &tileID : uiDataJSON.items())
36  {
37  for (auto it = uiDataJSON[tileID.key()].begin(); it != uiDataJSON[tileID.key()].end(); ++it)
38  {
39  m_uiTextureMap[tileID.key()][it.key()] = createTextureFromSurface(createSurfaceFromFile(it.value()));
40  }
41  }
42 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ operator=()

ResourcesManager& ResourcesManager::operator= ( ResourcesManager const &  )
delete

Member Data Documentation

◆ m_surfaceMap

std::unordered_map<std::string, SDL_Surface *> ResourcesManager::m_surfaceMap
private

Definition at line 60 of file ResourcesManager.hxx.

◆ m_tileTextureMap

std::unordered_map<std::string, SDL_Texture *> ResourcesManager::m_tileTextureMap
private

Definition at line 59 of file ResourcesManager.hxx.

◆ m_uiTextureMap

std::unordered_map<std::string, std::unordered_map<std::string, SDL_Texture *> > ResourcesManager::m_uiTextureMap
private

Definition at line 57 of file ResourcesManager.hxx.

◆ Singleton< ResourcesManager >


The documentation for this class was generated from the following files:
TRACE_INFO
#define TRACE_INFO
Definition: Exception.hxx:12
ConfigurationError
A configuration error.
Definition: Exception.hxx:36
ResourcesManager::getTileSurface
SDL_Surface * getTileSurface(const std::string &id)
Definition: ResourcesManager.cxx:68
UIError
A UI-related error occured.
Definition: Exception.hxx:76
fileExists
bool fileExists(const std::string &filePath)
Check if a file (or folder) exists.
Definition: Filesystem.cxx:62
ResourcesManager::m_tileTextureMap
std::unordered_map< std::string, SDL_Texture * > m_tileTextureMap
Definition: ResourcesManager.hxx:59
ResourcesManager::loadUITexture
void loadUITexture()
Load Texture in to Texture Map, if an entry for this tile ID does not yet exist.
Definition: ResourcesManager.cxx:26
ResourcesManager::m_surfaceMap
std::unordered_map< std::string, SDL_Surface * > m_surfaceMap
Definition: ResourcesManager.hxx:60
readFileAsString
std::string readFileAsString(const std::string &fileName, bool binaryMode)
Read contents from a file as string.
Definition: Filesystem.cxx:12
getBasePath
std::string getBasePath()
Get base path (where Cytopia is being run)
Definition: Filesystem.cxx:77
ResourcesManager::flush
void flush()
Delete everything. Should be called from the destuctor only.
Definition: ResourcesManager.cxx:102
ResourcesManager::createTextureFromSurface
SDL_Texture * createTextureFromSurface(SDL_Surface *surface)
Definition: ResourcesManager.cxx:92
Singleton< WindowManager >::instance
static WindowManager & instance(void)
Get an instance of the singleton.
Definition: Singleton.hxx:15
ResourcesManager::m_uiTextureMap
std::unordered_map< std::string, std::unordered_map< std::string, SDL_Texture * > > m_uiTextureMap
Definition: ResourcesManager.hxx:57
json
nlohmann::json json
Definition: Settings.hxx:12
string
std::string string
Definition: AudioConfig.hxx:14
ResourcesManager::createSurfaceFromFile
SDL_Surface * createSurfaceFromFile(const std::string &fileName)
Definition: ResourcesManager.cxx:77