mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
114 lines
2.2 KiB
C++
114 lines
2.2 KiB
C++
|
|
#if !defined( INCLUDED_IMAGELIB_H )
|
|
#define INCLUDED_IMAGELIB_H
|
|
|
|
#include "iimage.h"
|
|
#include "iarchive.h"
|
|
#include "idatastream.h"
|
|
#include <stdlib.h>
|
|
|
|
struct RGBAPixel
|
|
{
|
|
unsigned char red, green, blue, alpha;
|
|
};
|
|
|
|
class RGBAImage : public Image
|
|
{
|
|
RGBAImage( const RGBAImage& other );
|
|
RGBAImage& operator=( const RGBAImage& other );
|
|
public:
|
|
RGBAPixel* pixels;
|
|
unsigned int width, height;
|
|
|
|
RGBAImage( unsigned int _width, unsigned int _height )
|
|
: pixels( new RGBAPixel[_width * _height] ), width( _width ), height( _height ){
|
|
}
|
|
~RGBAImage(){
|
|
delete pixels;
|
|
}
|
|
|
|
void release(){
|
|
delete this;
|
|
}
|
|
byte* getRGBAPixels() const {
|
|
return reinterpret_cast<byte*>( pixels );
|
|
}
|
|
unsigned int getWidth() const {
|
|
return width;
|
|
}
|
|
unsigned int getHeight() const {
|
|
return height;
|
|
}
|
|
};
|
|
|
|
class RGBAImageFlags : public RGBAImage
|
|
{
|
|
public:
|
|
int m_surfaceFlags;
|
|
int m_contentFlags;
|
|
int m_value;
|
|
RGBAImageFlags( unsigned short _width, unsigned short _height, int surfaceFlags, short contentFlags, int value ) :
|
|
RGBAImage( _width, _height ), m_surfaceFlags( surfaceFlags ), m_contentFlags( contentFlags ), m_value( value ){
|
|
}
|
|
|
|
int getSurfaceFlags() const {
|
|
return m_surfaceFlags;
|
|
}
|
|
int getContentFlags() const {
|
|
return m_contentFlags;
|
|
}
|
|
int getValue() const {
|
|
return m_value;
|
|
}
|
|
};
|
|
|
|
|
|
inline InputStream::byte_type* ArchiveFile_loadBuffer( ArchiveFile& file, std::size_t& length ){
|
|
InputStream::byte_type* buffer = (InputStream::byte_type*)malloc( file.size() + 1 );
|
|
length = file.getInputStream().read( buffer, file.size() );
|
|
buffer[file.size()] = 0;
|
|
return buffer;
|
|
}
|
|
|
|
inline void ArchiveFile_freeBuffer( InputStream::byte_type* buffer ){
|
|
free( buffer );
|
|
}
|
|
|
|
class ScopedArchiveBuffer
|
|
{
|
|
public:
|
|
std::size_t length;
|
|
InputStream::byte_type* buffer;
|
|
|
|
ScopedArchiveBuffer( ArchiveFile& file ){
|
|
buffer = ArchiveFile_loadBuffer( file, length );
|
|
}
|
|
~ScopedArchiveBuffer(){
|
|
ArchiveFile_freeBuffer( buffer );
|
|
}
|
|
};
|
|
|
|
class PointerInputStream : public InputStream
|
|
{
|
|
const byte* m_read;
|
|
public:
|
|
PointerInputStream( const byte* pointer )
|
|
: m_read( pointer ){
|
|
}
|
|
std::size_t read( byte* buffer, std::size_t length ){
|
|
const byte* end = m_read + length;
|
|
while ( m_read != end )
|
|
{
|
|
*buffer++ = *m_read++;
|
|
}
|
|
return length;
|
|
}
|
|
void seek( std::size_t offset ){
|
|
m_read += offset;
|
|
}
|
|
const byte* get(){
|
|
return m_read;
|
|
}
|
|
};
|
|
|
|
#endif
|