2013-06-21 16:49:29 +00:00
|
|
|
#include "TextureResource.h"
|
|
|
|
#include "../Log.h"
|
|
|
|
#include "../platform.h"
|
|
|
|
#include GLHEADER
|
|
|
|
#include "../ImageIO.h"
|
|
|
|
#include "../Renderer.h"
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
std::map< std::string, std::weak_ptr<TextureResource> > TextureResource::sTextureMap;
|
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
TextureResource::TextureResource(const std::string& path) :
|
|
|
|
mTextureID(0), mPath(path), mTextureSize(Eigen::Vector2i::Zero())
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
reload(ResourceManager::getInstance());
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextureResource::~TextureResource()
|
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
}
|
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
void TextureResource::unload(std::shared_ptr<ResourceManager>& rm)
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
}
|
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
void TextureResource::reload(std::shared_ptr<ResourceManager>& rm)
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
|
|
|
if(!mPath.empty())
|
2013-10-04 23:09:54 +00:00
|
|
|
initFromResource(rm->getFileData(mPath));
|
2013-07-09 05:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextureResource::initFromResource(const ResourceData data)
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
|
|
|
//make sure we aren't going to leak an old texture
|
|
|
|
deinit();
|
|
|
|
|
|
|
|
size_t width, height;
|
2013-07-09 05:44:24 +00:00
|
|
|
std::vector<unsigned char> imageRGBA = ImageIO::loadFromMemoryRGBA32(const_cast<unsigned char*>(data.ptr.get()), data.length, width, height);
|
2013-06-21 16:49:29 +00:00
|
|
|
|
|
|
|
if(imageRGBA.size() == 0)
|
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
LOG(LogError) << "Could not initialize texture (invalid resource data)!";
|
2013-06-21 16:49:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//now for the openGL texture stuff
|
|
|
|
glGenTextures(1, &mTextureID);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, mTextureID);
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, imageRGBA.data());
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
|
|
2013-07-10 11:29:43 +00:00
|
|
|
mTextureSize << width, height;
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextureResource::initFromScreen()
|
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
|
|
|
|
int width = Renderer::getScreenWidth();
|
|
|
|
int height = Renderer::getScreenHeight();
|
|
|
|
|
|
|
|
glGenTextures(1, &mTextureID);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, mTextureID);
|
|
|
|
|
|
|
|
glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 0, 0, width, height, 0);
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
|
|
2013-07-10 11:29:43 +00:00
|
|
|
mTextureSize[0] = height;
|
|
|
|
mTextureSize[1] = height;
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
2013-07-09 05:44:24 +00:00
|
|
|
|
2013-09-20 23:55:05 +00:00
|
|
|
void TextureResource::initFromMemory(const char* data, size_t length)
|
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
|
|
|
|
size_t width, height;
|
|
|
|
std::vector<unsigned char> imageRGBA = ImageIO::loadFromMemoryRGBA32((const unsigned char*)(data), length, width, height);
|
|
|
|
|
|
|
|
if(imageRGBA.size() == 0)
|
|
|
|
{
|
|
|
|
LOG(LogError) << "Could not initialize texture from memory (invalid data)!";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//now for the openGL texture stuff
|
|
|
|
glGenTextures(1, &mTextureID);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, mTextureID);
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, imageRGBA.data());
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
|
|
|
|
|
mTextureSize << width, height;
|
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
void TextureResource::deinit()
|
|
|
|
{
|
|
|
|
if(mTextureID != 0)
|
|
|
|
{
|
|
|
|
glDeleteTextures(1, &mTextureID);
|
|
|
|
mTextureID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 11:29:43 +00:00
|
|
|
Eigen::Vector2i TextureResource::getSize() const
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
|
|
|
return mTextureSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureResource::bind() const
|
|
|
|
{
|
|
|
|
if(mTextureID != 0)
|
|
|
|
glBindTexture(GL_TEXTURE_2D, mTextureID);
|
|
|
|
else
|
|
|
|
LOG(LogError) << "Tried to bind uninitialized texture!";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
std::shared_ptr<TextureResource> TextureResource::get(const std::string& path)
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
std::shared_ptr<ResourceManager>& rm = ResourceManager::getInstance();
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
if(path.empty())
|
2013-08-07 04:35:06 +00:00
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
std::shared_ptr<TextureResource> tex(new TextureResource(""));
|
|
|
|
rm->addReloadable(tex); //make sure we're deinitialized even though we do nothing on reinitialization
|
2013-08-07 04:35:06 +00:00
|
|
|
return tex;
|
|
|
|
}
|
2013-07-09 05:44:24 +00:00
|
|
|
|
|
|
|
auto foundTexture = sTextureMap.find(path);
|
|
|
|
if(foundTexture != sTextureMap.end())
|
|
|
|
{
|
|
|
|
if(!foundTexture->second.expired())
|
|
|
|
{
|
|
|
|
return foundTexture->second.lock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
std::shared_ptr<TextureResource> tex = std::shared_ptr<TextureResource>(new TextureResource(path));
|
2013-07-09 05:44:24 +00:00
|
|
|
sTextureMap[path] = std::weak_ptr<TextureResource>(tex);
|
2013-10-04 23:09:54 +00:00
|
|
|
rm->addReloadable(tex);
|
2013-07-09 05:44:24 +00:00
|
|
|
return tex;
|
|
|
|
}
|