mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-10-04 13:27:14 +00:00
initial commit. This is icculus version 5542b94cae02a6333845854bbbd1abe0a259f1a4
This commit is contained in:
commit
3096eaf5e2
2519 changed files with 816064 additions and 0 deletions
98
BBGE/Texture.h
Normal file
98
BBGE/Texture.h
Normal file
|
@ -0,0 +1,98 @@
|
|||
/*
|
||||
Copyright (C) 2007, 2010 - Bit-Blot
|
||||
|
||||
This file is part of Aquaria.
|
||||
|
||||
Aquaria is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#ifndef __texture__
|
||||
#define __texture__
|
||||
|
||||
#include "Resource.h"
|
||||
|
||||
struct ImageTGA
|
||||
{
|
||||
int channels; // The channels in the image (3 = RGB : 4 = RGBA)
|
||||
int sizeX; // The width of the image in pixels
|
||||
int sizeY; // The height of the image in pixels
|
||||
unsigned char *data; // The image pixel data
|
||||
};
|
||||
|
||||
enum TexErr
|
||||
{
|
||||
TEXERR_OK = 0,
|
||||
TEXERR_FILENOTFOUND = 1,
|
||||
TEXERR_MAX
|
||||
};
|
||||
|
||||
class Texture : public Resource
|
||||
{
|
||||
public:
|
||||
Texture();
|
||||
~Texture();
|
||||
|
||||
void load(std::string file);
|
||||
void apply(bool repeatOverride=false);
|
||||
void unbind();
|
||||
void unload();
|
||||
void setLayer(int layer);
|
||||
|
||||
int getPixelWidth();
|
||||
int getPixelHeight();
|
||||
|
||||
void destroy();
|
||||
|
||||
|
||||
int width, height;
|
||||
|
||||
static ImageTGA *TGAload(const char* filename);
|
||||
|
||||
static bool useMipMaps;
|
||||
bool repeat;
|
||||
|
||||
int components;
|
||||
#ifdef BBGE_BUILD_OPENGL
|
||||
static GLint filter;
|
||||
static GLint format;
|
||||
void setID (int id);
|
||||
GLuint textures[1];
|
||||
#endif
|
||||
#ifdef BBGE_BUILD_DIRECTX
|
||||
LPDIRECT3DTEXTURE9 d3dTexture;
|
||||
#endif
|
||||
//void setImageData(imageData);
|
||||
// HACK:
|
||||
unsigned char *imageData;
|
||||
void reload();
|
||||
|
||||
static TexErr textureError;
|
||||
|
||||
void write(int tx, int ty, int w, int h, const unsigned char *pixels);
|
||||
void read(int tx, int ty, int w, int h, unsigned char *pixels);
|
||||
protected:
|
||||
std::string loadName;
|
||||
int layer;
|
||||
// internal load functions
|
||||
void loadPNG(const std::string &file);
|
||||
void loadTGA(const std::string &file);
|
||||
|
||||
int ow, oh;
|
||||
|
||||
};
|
||||
|
||||
#define UNREFTEX(x) if (x) {x->removeRef(); x=0;}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue