/** @file Texture.h * @brief Defines a method for loading textures. * * This file gives facilities for easily loading and binding textures. */ #ifndef TEXTURE_H #define TEXTURE_H #include /** * When defined, DEBUG allows extra messages to be printed to the terminal for * debugging purposes. */ #define DEBUG /** * Texture functions are given a namespace for better organization. */ namespace Texture { /** * Loads a texture from the given file name, returning the GLuint used for * later referencing of the texture. */ GLuint loadTexture(std::string fileName); GLuint genColor(Color c); void freeTextures(void); void initColorIndex(); vec2 getIndex(Color c); dim2 imageDim(std::string fileName); } /** * DRAFT texture iterator? */ class TextureIterator { private: std::vector> textures; std::vector>::iterator position; public: TextureIterator(void) { position = std::begin(textures); } TextureIterator(const std::vector &l) { for (const auto &s : l) textures.emplace_back(Texture::loadTexture(s), s); position = std::begin(textures); } void operator++(int) noexcept { if (++position < std::end(textures)) glBindTexture(GL_TEXTURE_2D, (*position).first); else position = std::end(textures) - 1; } void operator--(int) noexcept { if (--position >= std::begin(textures)) glBindTexture(GL_TEXTURE_2D, (*position).first); else position = std::begin(textures); } void operator()(const int &index) { if (index < 0 || index > static_cast(textures.size())) throw std::invalid_argument("texture index out of range"); position = std::begin(textures) + index; glBindTexture(GL_TEXTURE_2D, (*position).first); } const std::string& getTexturePath(const int &index) { if (index < 0 || index > static_cast(textures.size())) throw std::invalid_argument("texture index out of range"); return textures[index].second; } }; /** * The Texturec class. * * This class can handle an array of textures and allows easy binding of those * textures. */ class Texturec{ private: unsigned int texState; public: std::vector image; std::vector texLoc; Texturec(uint amt, ...); Texturec(uint amt,const char **paths); Texturec(std::vectorvec); Texturec(std::initializer_list l); ~Texturec(); void bindNext(); void bindPrev(); void bind(unsigned int); }; #endif //TEXTURE_H