1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/*
** ClanLib SDK
** Copyright (c) 1997-2005 The ClanLib Team
**
** This software is provided 'as-is', without any express or implied
** warranty. In no event will the authors be held liable for any damages
** arising from the use of this software.
**
** Permission is granted to anyone to use this software for any purpose,
** including commercial applications, and to alter it and redistribute it
** freely, subject to the following restrictions:
**
** 1. The origin of this software must not be misrepresented; you must not
** claim that you wrote the original software. If you use this software
** in a product, an acknowledgment in the product documentation would be
** appreciated but is not required.
** 2. Altered source versions must be plainly marked as such, and must not be
** misrepresented as being the original software.
** 3. This notice may not be removed or altered from any source distribution.
**
** Note: Some of the libraries ClanLib may link to may have additional
** requirements or restrictions.
**
** File Author(s):
**
** Magnus Norddahl
** (if your name is missing here, please add it)
*/
#include "Display/display_precomp.h"
#include "pcx_provider_generic.h"
#include "API/Core/System/error.h"
/////////////////////////////////////////////////////////////////////////////
// CL_PCXProvider_Generic construction:
CL_PCXProvider_Generic::CL_PCXProvider_Generic(
std::string _name,
CL_InputSourceProvider *_provider)
{
CL_InputSourceProvider *provider = _provider != NULL ? _provider->clone() : CL_InputSourceProvider::create_file_provider(".");
cl_assert(provider != NULL);
image = NULL;
CL_InputSource *datafile = provider->open_source(_name.c_str());
datafile->set_little_endian_mode();
try
{
read_pcx(_name, datafile);
}
catch (...)
{
delete datafile;
delete provider;
throw;
}
delete datafile;
delete provider;
}
CL_PCXProvider_Generic::~CL_PCXProvider_Generic()
{
delete[] image;
image = NULL;
}
/////////////////////////////////////////////////////////////////////////////
// CL_PCXProvider_Generic implementation:
void CL_PCXProvider_Generic::read_pcx(
std::string _name,
CL_InputSource *_datafile)
{
// make sure its valid
cl_assert(_datafile != NULL);
// Read the file header and initialize the variables
//: This method was created to breakup the PCX decoding code
//: so the initializing code was separated from the actual
//: decoding algorithm
unsigned char header[128];
{
int read = _datafile->read(header, 128);
if (read != 128)
throw CL_Error("File not big enough to read the PCX header");
}
// only the useful fields that will be used more than once
struct PCXHeader {
unsigned char version;
unsigned char encoding;
unsigned char bits_per_pixel_per_plane;
short xmin;
short ymin;
short xmax;
short ymax;
unsigned char color_map[48];
unsigned char nplanes;
unsigned short bytes_per_line;
} pcx_header;
if (header[0] != 10)
throw CL_Error("Not a PCX file");
pcx_header.version = header[1];
pcx_header.encoding = header[2];
pcx_header.bits_per_pixel_per_plane = header[3];
pcx_header.xmin = (header[5] << 8) | header[4];
pcx_header.ymin = (header[7] << 8) | header[6];
pcx_header.xmax = (header[9] << 8) | header[8];
pcx_header.ymax = (header[11] << 8) | header[10];
const int width = (pcx_header.xmax - pcx_header.xmin) + 1;
const int height = (pcx_header.ymax - pcx_header.ymin) + 1;
memcpy(pcx_header.color_map, &header[16], sizeof(pcx_header.color_map));
pcx_header.nplanes = header[65];
pcx_header.bytes_per_line = (header[67] << 8) | header[66];
// both 8bit with palette and 24bit rgb modes require version 5
if (pcx_header.version < 5)
throw CL_Error("PCX version unsupported");
const int total_line_bytes = pcx_header.bytes_per_line * pcx_header.nplanes;
int pitch = 0;
// decide which pixelformat to use (8 bit palette or 24 bit)
if (pcx_header.nplanes == 3 && pcx_header.bits_per_pixel_per_plane == 8)
{
// 24 bit RGB mode
pitch = width * 3;
image = new unsigned char[pitch * height];
cl_assert(image != NULL);
unsigned char *p = image;
const int extra = total_line_bytes - pitch;
// get the data
if (!pcx_header.encoding)
{
// uncompressed
for (int y = 0; y < height; y++)
{
_datafile->read(p, pitch);
if (extra > 0)
_datafile->seek(extra, CL_InputSource::seek_cur);
p += pitch;
}
}
else
{
// compressed
for (int y = 0; y < height; y++)
{
int count;
// first red component
int x = 0, xx = 0, comp = 0;
while (x < total_line_bytes)
{
int ch = _datafile->read_uint8();
if ((ch & 0xC0) == 0xC0)
{
count = ch & 0x3F;
ch = _datafile->read_uint8();
}
else
count = 1;
while (count--)
{
if (xx < width)
image[(y * pitch) + ((xx * 3) + comp)] = ch;
x++;
if (x == pcx_header.bytes_per_line)
{
// blue component now
comp = 1;
xx = 0;
}
else if (x == pcx_header.bytes_per_line*2)
{
// green component now
comp = 2;
xx = 0;
}
else
xx++;
}
}
}
}
CL_PixelBuffer_Generic::format.enable_colorkey(false);
CL_PixelBuffer_Generic::format.set_colorkey(0);
CL_PixelBuffer_Generic::format.set_depth(24);
CL_PixelBuffer_Generic::format.set_red_mask(0x0000ff);
CL_PixelBuffer_Generic::format.set_green_mask(0x00ff00);
CL_PixelBuffer_Generic::format.set_blue_mask(0xff0000);
CL_PixelBuffer_Generic::format.set_alpha_mask(0);
CL_PixelBuffer_Generic::pitch = pitch;
CL_PixelBuffer_Generic::width = width;
CL_PixelBuffer_Generic::height = height;
}
else if (pcx_header.nplanes == 1 && pcx_header.bits_per_pixel_per_plane == 8)
{
// 8 bit indexed mode
pitch = width;
image = new unsigned char[pitch * height];
cl_assert(image != NULL);
unsigned char *p = image;
const int extra = total_line_bytes - pitch;
// get the data
if (!pcx_header.encoding)
{
// uncompressed
for (int y = 0; y < height; y++)
{
_datafile->read(p, pitch);
if (extra > 0)
_datafile->seek(extra, CL_InputSource::seek_cur);
p += pitch;
}
}
else
{
// compressed
for (int y = 0; y < height; y++)
{
int count;
int x = 0;
while (x < total_line_bytes)
{
int ch = _datafile->read_uint8();
if ((ch & 0xC0) == 0xC0)
{
count = ch & 0x3F;
ch = _datafile->read_uint8();
}
else
count = 1;
while (count--)
{
if (x < width)
{
*p = ch;
p++;
}
x++;
}
}
}
}
// read the palette
if (_datafile->read_int8() != 12)
{
delete[] image;
throw CL_Error("Palette not found");
}
for (int i = 0; i < 256; i++)
{
const int r = _datafile->read_uint8();
const int g = _datafile->read_uint8();
const int b = _datafile->read_uint8();
palette[i].set_color(r, g, b);
}
CL_PixelBuffer_Generic::format.enable_colorkey(false);
CL_PixelBuffer_Generic::format.set_colorkey(0);
CL_PixelBuffer_Generic::format.set_depth(8);
CL_PixelBuffer_Generic::format.set_type(pixelformat_index);
CL_PixelBuffer_Generic::pitch = pitch;
CL_PixelBuffer_Generic::width = width;
CL_PixelBuffer_Generic::height = height;
}
else
throw CL_Error("Unsupported PCX format");
}
|