2007-06-30 19:24:05 +03:00
|
|
|
#ifndef CLODHANDLER_H
|
|
|
|
#define CLODHANDLER_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include "zlib.h"
|
2007-07-01 15:54:59 +03:00
|
|
|
#include "CDefHandler.h"
|
|
|
|
|
|
|
|
enum Epcxformat {PCX8B, PCX24B};
|
2007-06-30 19:24:05 +03:00
|
|
|
|
|
|
|
namespace NLoadHandlerHelp
|
|
|
|
{
|
|
|
|
const int dmHelp=0, dmNoExtractingMask=1;
|
|
|
|
//std::string P1,P2,CurDir;
|
|
|
|
const int fCHUNK = 50000;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Entry
|
|
|
|
{
|
|
|
|
unsigned char name[12], //filename
|
|
|
|
hlam_1[4], //
|
|
|
|
hlam_2[4]; //
|
|
|
|
int offset, //from beginning
|
|
|
|
realSize, //size without compression
|
|
|
|
size; //and with
|
|
|
|
};
|
2007-07-01 15:54:59 +03:00
|
|
|
class CPCXConv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
unsigned char * pcx, *bmp;
|
|
|
|
int pcxs, bmps;
|
|
|
|
void fromFile(std::string path);
|
|
|
|
void saveBMP(std::string path);
|
|
|
|
void openPCX(char * PCX, int len);
|
|
|
|
void openPCX();
|
|
|
|
void convert();
|
|
|
|
CPCXConv(){pcx=bmp=NULL;pcxs=bmps=0;};
|
|
|
|
~CPCXConv(){if (pcxs) delete pcx; if(bmps) delete bmp;}
|
|
|
|
};
|
2007-06-30 19:24:05 +03:00
|
|
|
class CLodHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<Entry> entries;
|
|
|
|
unsigned int totalFiles;
|
|
|
|
|
|
|
|
int readNormalNr (unsigned char* bufor, int bytCon, bool cyclic=false); //lod header reading helper
|
|
|
|
int decompress (unsigned char * source, int size, int realSize, std::ofstream & dest); //main decompression function
|
|
|
|
int decompress (unsigned char * source, int size, int realSize, std::string & dest); //main decompression function
|
|
|
|
int infm(FILE *source, FILE *dest, int wBits = 15); //zlib handler
|
|
|
|
void extract(std::string FName);
|
|
|
|
void init(std::string lodFile);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //CLODHANDLER_H
|