dxx-rebirth/similar/2d/pcx.cpp

431 lines
11 KiB
C++
Raw Normal View History

2006-03-20 16:43:15 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 16:43:15 +00:00
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
2006-03-20 16:43:15 +00:00
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Routines to read/write pcx images.
2006-03-20 16:43:15 +00:00
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "gr.h"
#include "grdef.h"
2006-03-20 16:43:15 +00:00
#include "u_mem.h"
#include "pcx.h"
#include "physfsx.h"
2013-03-03 01:03:33 +00:00
#include "palette.h"
#include "dxxsconf.h"
#include "dsx-ns.h"
2013-12-21 05:12:38 +00:00
#include "compiler-lengthof.h"
2015-01-20 02:46:42 +00:00
#include "compiler-range_for.h"
2019-07-07 22:00:02 +00:00
#include "d_range.h"
2015-01-20 02:46:42 +00:00
#include "partial_range.h"
2015-12-13 18:00:49 +00:00
namespace dcx {
2018-02-18 00:42:42 +00:00
#if !DXX_USE_OGL && DXX_USE_SCREENSHOT_FORMAT_LEGACY
static int pcx_encode_byte(ubyte byt, ubyte cnt, PHYSFS_File *fid);
static int pcx_encode_line(const uint8_t *inBuff, uint_fast32_t inLen, PHYSFS_File *fp);
2018-02-18 00:42:42 +00:00
#endif
2006-03-20 16:43:15 +00:00
/* PCX Header data type */
struct PCXHeader
{
ubyte Manufacturer;
ubyte Version;
ubyte Encoding;
ubyte BitsPerPixel;
short Xmin;
short Ymin;
short Xmax;
short Ymax;
short Hdpi;
short Vdpi;
ubyte ColorMap[16][3];
ubyte Reserved;
ubyte Nplanes;
short BytesPerLine;
ubyte filler[60];
} __pack__;
#define PCXHEADER_SIZE 128
2006-03-20 16:43:15 +00:00
/*
* reads n PCXHeader structs from a PHYSFS_File
*/
static int PCXHeader_read_n(PCXHeader *ph, int n, PHYSFS_File *fp)
{
int i;
for (i = 0; i < n; i++) {
ph->Manufacturer = PHYSFSX_readByte(fp);
ph->Version = PHYSFSX_readByte(fp);
ph->Encoding = PHYSFSX_readByte(fp);
ph->BitsPerPixel = PHYSFSX_readByte(fp);
ph->Xmin = PHYSFSX_readShort(fp);
ph->Ymin = PHYSFSX_readShort(fp);
ph->Xmax = PHYSFSX_readShort(fp);
ph->Ymax = PHYSFSX_readShort(fp);
ph->Hdpi = PHYSFSX_readShort(fp);
ph->Vdpi = PHYSFSX_readShort(fp);
2013-03-03 01:03:33 +00:00
PHYSFS_read(fp, &ph->ColorMap, 16*3, 1);
ph->Reserved = PHYSFSX_readByte(fp);
ph->Nplanes = PHYSFSX_readByte(fp);
ph->BytesPerLine = PHYSFSX_readShort(fp);
PHYSFS_read(fp, &ph->filler, 60, 1);
}
return i;
}
}
2013-03-03 01:03:33 +00:00
#if defined(DXX_BUILD_DESCENT_I)
2015-12-13 18:00:49 +00:00
namespace dsx {
pcx_result bald_guy_load(const char *const filename, grs_bitmap *const bmp, palette_array_t &palette)
{
PCXHeader header;
int i, count, fsize;
2014-12-02 03:24:38 +00:00
ubyte data, c, xor_value;
unsigned int row, xsize;
unsigned int col, ysize;
auto PCXfile = PHYSFSX_openReadBuffered(filename);
if ( !PCXfile )
return pcx_result::SUCCESS;
PHYSFSX_fseek(PCXfile, -1, SEEK_END);
fsize = PHYSFS_tell(PCXfile);
PHYSFS_read(PCXfile, &xor_value, 1, 1);
xor_value--;
PHYSFSX_fseek(PCXfile, 0, SEEK_SET);
RAIIdmem<uint8_t[]> bguy_data, bguy_data1;
MALLOC(bguy_data, uint8_t[], fsize);
MALLOC(bguy_data1, uint8_t[], fsize);
PHYSFS_read(PCXfile, bguy_data1, 1, fsize);
for (i = 0; i < fsize; i++) {
c = bguy_data1[fsize - i - 1] ^ xor_value;
bguy_data[i] = c;
xor_value--;
}
PCXfile.reset();
auto p = bguy_data.get();
memcpy( &header, p, sizeof(PCXHeader) );
p += sizeof(PCXHeader);
// Is it a 256 color PCX file?
if ((header.Manufacturer != 10)||(header.Encoding != 1)||(header.Nplanes != 1)||(header.BitsPerPixel != 8)||(header.Version != 5)) {
return pcx_result::ERROR_WRONG_VERSION;
}
header.Xmin= INTEL_SHORT(header.Xmin);
header.Xmax = INTEL_SHORT(header.Xmax);
header.Ymin = INTEL_SHORT(header.Ymin);
header.Ymax = INTEL_SHORT(header.Ymax);
// Find the size of the image
xsize = header.Xmax - header.Xmin + 1;
ysize = header.Ymax - header.Ymin + 1;
if ( bmp->bm_data == NULL ) {
2014-07-04 03:45:35 +00:00
*bmp = {};
2014-12-02 03:24:38 +00:00
MALLOC(bmp->bm_mdata, unsigned char, xsize * ysize );
if ( bmp->bm_data == NULL ) {
return pcx_result::ERROR_MEMORY;
}
bmp->bm_w = bmp->bm_rowsize = xsize;
bmp->bm_h = ysize;
bmp->set_type(bm_mode::linear);
}
for (row=0; row< ysize ; row++) {
2014-12-02 03:24:38 +00:00
auto pixdata = &bmp->get_bitmap_data()[bmp->bm_rowsize*row];
for (col=0; col< xsize ; ) {
data = *p;
p++;
if ((data & 0xC0) == 0xC0) {
count = data & 0x3F;
data = *p;
p++;
memset( pixdata, data, count );
pixdata += count;
col += count;
} else {
*pixdata++ = data;
col++;
}
}
}
// Read the extended palette at the end of PCX file
// Read in a character which should be 12 to be extended palette file
p++;
2013-12-17 22:14:43 +00:00
copy_diminish_palette(palette, p);
return pcx_result::SUCCESS;
}
}
2013-03-03 01:03:33 +00:00
#endif
2015-12-13 18:00:49 +00:00
namespace dcx {
2013-03-03 01:03:33 +00:00
struct PCX_PHYSFS_file
{
RAIIPHYSFS_File PCXfile;
2013-03-03 01:03:33 +00:00
};
static pcx_result pcx_read_bitmap_file(struct PCX_PHYSFS_file *const pcxphysfs, grs_main_bitmap &bmp, palette_array_t &palette);
pcx_result pcx_read_bitmap(const char *const filename, grs_main_bitmap &bmp, palette_array_t &palette)
2013-03-03 01:03:33 +00:00
{
PCX_PHYSFS_file pcxphysfs{PHYSFSX_openReadBuffered(filename)};
2013-03-03 01:03:33 +00:00
if (!pcxphysfs.PCXfile)
return pcx_result::ERROR_OPENING;
return pcx_read_bitmap_file(&pcxphysfs, bmp, palette);
2013-03-03 01:03:33 +00:00
}
static int PCX_PHYSFS_read(struct PCX_PHYSFS_file *pcxphysfs, ubyte *data, unsigned size)
{
return PHYSFS_read(pcxphysfs->PCXfile, data, size, sizeof(*data));
}
static pcx_result pcx_read_bitmap_file(struct PCX_PHYSFS_file *const pcxphysfs, grs_main_bitmap &bmp, palette_array_t &palette)
2006-03-20 16:43:15 +00:00
{
PCXHeader header;
// read 128 char PCX header
2013-03-03 01:03:33 +00:00
if (PCXHeader_read_n( &header, 1, pcxphysfs->PCXfile )!=1) {
return pcx_result::ERROR_NO_HEADER;
2006-03-20 16:43:15 +00:00
}
2006-03-20 16:43:15 +00:00
// Is it a 256 color PCX file?
if ((header.Manufacturer != 10)||(header.Encoding != 1)||(header.Nplanes != 1)||(header.BitsPerPixel != 8)||(header.Version != 5)) {
return pcx_result::ERROR_WRONG_VERSION;
2006-03-20 16:43:15 +00:00
}
// Find the size of the image
2019-07-07 22:00:02 +00:00
const unsigned xsize = header.Xmax - header.Xmin + 1;
if (xsize > 3840)
return pcx_result::ERROR_MEMORY;
2019-07-07 22:00:02 +00:00
const unsigned ysize = header.Ymax - header.Ymin + 1;
if (ysize > 2400)
return pcx_result::ERROR_MEMORY;
2006-03-20 16:43:15 +00:00
2019-07-07 22:00:02 +00:00
gr_init_bitmap_alloc(bmp, bm_mode::linear, 0, 0, xsize, ysize, xsize);
2006-03-20 16:43:15 +00:00
2015-07-25 23:10:47 +00:00
{
2019-07-07 22:00:02 +00:00
range_for (const unsigned row, xrange(ysize))
{
2014-12-02 03:35:01 +00:00
auto pixdata = &bmp.get_bitmap_data()[bmp.bm_rowsize*row];
2019-07-07 22:00:02 +00:00
for (unsigned col = 0; col < xsize;)
{
uint8_t data;
2013-03-03 01:03:33 +00:00
if (PCX_PHYSFS_read(pcxphysfs, &data, 1) != 1) {
return pcx_result::ERROR_READING;
2006-03-20 16:43:15 +00:00
}
if ((data & 0xC0) == 0xC0) {
2019-07-07 22:00:02 +00:00
const unsigned count = std::min(data & 0x3Fu, xsize - col);
2013-03-03 01:03:33 +00:00
if (PCX_PHYSFS_read(pcxphysfs, &data, 1) != 1) {
return pcx_result::ERROR_READING;
2006-03-20 16:43:15 +00:00
}
memset( pixdata, data, count );
pixdata += count;
col += count;
} else {
*pixdata++ = data;
col++;
}
}
}
}
// Read the extended palette at the end of PCX file
// Read in a character which should be 12 to be extended palette file
2019-07-07 22:00:02 +00:00
{
uint8_t data;
2013-03-03 01:03:33 +00:00
if (PCX_PHYSFS_read(pcxphysfs, &data, 1) == 1) {
2006-03-20 16:43:15 +00:00
if ( data == 12 ) {
2013-01-06 21:11:53 +00:00
if (PCX_PHYSFS_read(pcxphysfs, reinterpret_cast<ubyte *>(&palette[0]), palette.size() * sizeof(palette[0])) != 1) {
return pcx_result::ERROR_READING;
2006-03-20 16:43:15 +00:00
}
2013-12-17 22:14:43 +00:00
diminish_palette(palette);
2006-03-20 16:43:15 +00:00
}
} else {
return pcx_result::ERROR_NO_PALETTE;
2006-03-20 16:43:15 +00:00
}
2019-07-07 22:00:02 +00:00
}
return pcx_result::SUCCESS;
2006-03-20 16:43:15 +00:00
}
2018-02-18 00:42:42 +00:00
#if !DXX_USE_OGL && DXX_USE_SCREENSHOT_FORMAT_LEGACY
pcx_result pcx_write_bitmap(PHYSFS_File *const PCXfile, const grs_bitmap *const bmp, palette_array_t &palette)
2006-03-20 16:43:15 +00:00
{
int retval;
ubyte data;
2014-07-04 03:46:40 +00:00
PCXHeader header{};
2006-03-20 16:43:15 +00:00
header.Manufacturer = 10;
header.Encoding = 1;
header.Nplanes = 1;
header.BitsPerPixel = 8;
header.Version = 5;
header.Xmax = bmp->bm_w-1;
header.Ymax = bmp->bm_h-1;
header.BytesPerLine = bmp->bm_w;
2006-03-20 16:43:15 +00:00
if (PHYSFS_write(PCXfile, &header, PCXHEADER_SIZE, 1) != 1)
{
return pcx_result::ERROR_WRITING;
2006-03-20 16:43:15 +00:00
}
{
const uint_fast32_t bm_w = bmp->bm_w;
const uint_fast32_t bm_rowsize = bmp->bm_rowsize;
const auto bm_data = bmp->get_bitmap_data();
const auto e = &bm_data[bm_rowsize * bmp->bm_h];
for (auto i = &bm_data[0]; i != e; i += bm_rowsize)
{
if (!pcx_encode_line(i, bm_w, PCXfile))
{
return pcx_result::ERROR_WRITING;
}
2006-03-20 16:43:15 +00:00
}
}
// Mark an extended palette
2006-03-20 16:43:15 +00:00
data = 12;
if (PHYSFS_write(PCXfile, &data, 1, 1) != 1)
{
return pcx_result::ERROR_WRITING;
2006-03-20 16:43:15 +00:00
}
2013-01-06 21:11:53 +00:00
retval = PHYSFS_write(PCXfile, &palette[0], sizeof(palette), 1);
2006-03-20 16:43:15 +00:00
if (retval !=1) {
return pcx_result::ERROR_WRITING;
2006-03-20 16:43:15 +00:00
}
return pcx_result::SUCCESS;
2006-03-20 16:43:15 +00:00
}
// returns number of bytes written into outBuff, 0 if failed
int pcx_encode_line(const uint8_t *inBuff, uint_fast32_t inLen, PHYSFS_File *fp)
{
2015-01-20 02:46:42 +00:00
ubyte last;
int i;
int total;
ubyte runCount; // max single runlength is 63
2006-03-20 16:43:15 +00:00
total = 0;
last = *(inBuff);
2006-03-20 16:43:15 +00:00
runCount = 1;
range_for (const auto ub, unchecked_partial_range(inBuff, 1u, inLen))
2015-01-20 02:46:42 +00:00
{
if (ub == last) {
2006-03-20 16:43:15 +00:00
runCount++; // it encodes
if (runCount == 63) {
if (!(i=pcx_encode_byte(last, runCount, fp)))
return(0);
total += i;
runCount = 0;
}
} else { // this != last
if (runCount) {
if (!(i=pcx_encode_byte(last, runCount, fp)))
return(0);
total += i;
}
last = ub;
2006-03-20 16:43:15 +00:00
runCount = 1;
}
}
2006-03-20 16:43:15 +00:00
if (runCount) { // finish up
if (!(i=pcx_encode_byte(last, runCount, fp)))
return 0;
return total + i;
}
return total;
}
static inline int PHYSFSX_putc(PHYSFS_File *file, uint8_t ch)
{
if (PHYSFS_write(file, &ch, 1, 1) < 1)
return -1;
else
return ch;
}
// subroutine for writing an encoded byte pair
2006-03-20 16:43:15 +00:00
// returns count of bytes written, 0 if error
int pcx_encode_byte(ubyte byt, ubyte cnt, PHYSFS_File *fid)
2006-03-20 16:43:15 +00:00
{
if (cnt) {
if ( (cnt==1) && (0xc0 != (0xc0 & byt)) ) {
if(EOF == PHYSFSX_putc(fid, static_cast<int>(byt)))
2006-03-20 16:43:15 +00:00
return 0; // disk write error (probably full)
return 1;
} else {
if(EOF == PHYSFSX_putc(fid, 0xC0 | cnt))
2006-03-20 16:43:15 +00:00
return 0; // disk write error
if(EOF == PHYSFSX_putc(fid, static_cast<int>(byt)))
2006-03-20 16:43:15 +00:00
return 0; // disk write error
return 2;
}
}
return 0;
}
2018-02-18 00:42:42 +00:00
#endif
2006-03-20 16:43:15 +00:00
//text for error messges
constexpr char pcx_error_messages[] = {
2006-03-20 16:43:15 +00:00
"No error.\0"
"Error opening file.\0"
"Could not read PCX header.\0"
2006-03-20 16:43:15 +00:00
"Unsupported PCX version.\0"
"Error reading data.\0"
"Could not find palette information.\0"
2006-03-20 16:43:15 +00:00
"Error writing data.\0"
};
//function to return pointer to error message
const char *pcx_errormsg(const pcx_result r)
2006-03-20 16:43:15 +00:00
{
const char *p = pcx_error_messages;
2006-03-20 16:43:15 +00:00
unsigned error_number = static_cast<unsigned>(r);
2006-03-20 16:43:15 +00:00
while (error_number--) {
if (p == pcx_error_messages + lengthof(pcx_error_messages)) return NULL;
2006-03-20 16:43:15 +00:00
p += strlen(p)+1;
}
return p;
}
}