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;
|
|
|
|
|
|
|
|
TextureResource::TextureResource(const ResourceManager& rm, const std::string& path) : mTextureID(0), mPath(path)
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
reload(rm);
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextureResource::~TextureResource()
|
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
void TextureResource::unload(const ResourceManager& rm)
|
|
|
|
{
|
|
|
|
deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureResource::reload(const ResourceManager& rm)
|
|
|
|
{
|
|
|
|
if(!mPath.empty())
|
|
|
|
initFromResource(rm.getFileData(mPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
mTextureSize.x = width;
|
|
|
|
mTextureSize.y = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
mTextureSize.x = height;
|
|
|
|
mTextureSize.y = height;
|
|
|
|
}
|
2013-07-09 05:44:24 +00:00
|
|
|
|
|
|
|
void TextureResource::deinit()
|
|
|
|
{
|
|
|
|
if(mTextureID != 0)
|
|
|
|
{
|
|
|
|
glDeleteTextures(1, &mTextureID);
|
|
|
|
mTextureID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector2u TextureResource::getSize() const
|
|
|
|
{
|
|
|
|
return mTextureSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureResource::bind() const
|
|
|
|
{
|
|
|
|
if(mTextureID != 0)
|
|
|
|
glBindTexture(GL_TEXTURE_2D, mTextureID);
|
|
|
|
else
|
|
|
|
LOG(LogError) << "Tried to bind uninitialized texture!";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<TextureResource> TextureResource::get(ResourceManager& rm, const std::string& path)
|
|
|
|
{
|
|
|
|
if(path.empty())
|
|
|
|
return std::shared_ptr<TextureResource>(new TextureResource(rm, path));
|
|
|
|
|
|
|
|
auto foundTexture = sTextureMap.find(path);
|
|
|
|
if(foundTexture != sTextureMap.end())
|
|
|
|
{
|
|
|
|
if(!foundTexture->second.expired())
|
|
|
|
{
|
|
|
|
return foundTexture->second.lock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<TextureResource> tex = std::shared_ptr<TextureResource>(new TextureResource(rm, path));
|
|
|
|
sTextureMap[path] = std::weak_ptr<TextureResource>(tex);
|
|
|
|
rm.addReloadable(tex);
|
|
|
|
return tex;
|
|
|
|
}
|