aboutsummaryrefslogtreecommitdiffstats
path: root/include/texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/texture.hpp')
-rw-r--r--include/texture.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/texture.hpp b/include/texture.hpp
index 7f22a79..7426a46 100644
--- a/include/texture.hpp
+++ b/include/texture.hpp
@@ -35,6 +35,42 @@ namespace Texture {
dim2 imageDim(std::string fileName);
}
+class SpriteLoader {
+private:
+ std::unordered_map<uint64_t, GLuint> sprites;
+ std::unordered_map<std::string, uint64_t> spritesLoc;
+
+ uint64_t freeID = 0;
+ uint64_t increaseID() {
+ uint64_t id_t = 0;
+ while (1) {
+ try {
+ sprites.at(id_t);
+ } catch (const std::out_of_range& oor) {
+ freeID = id_t;
+ return freeID;
+ }
+ id_t++;
+ }
+ }
+public:
+ uint64_t loadSprite(std::string s) {
+ uint64_t tex_e;
+ try {
+ tex_e = spritesLoc.at(s);
+ } catch (const std::out_of_range& oor) {
+ sprites.emplace(increaseID(), Texture::loadTexture (s));
+ spritesLoc.emplace(s, freeID);
+ return freeID;
+ }
+ return tex_e;
+ }
+
+ GLuint getSprite(uint64_t id) {
+ return sprites.at(id);
+ }
+};
+
/**
* DRAFT texture iterator?
*/