mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
91 lines
2 KiB
C++
91 lines
2 KiB
C++
#define _CRT_SECURE_NO_DEPRECATE
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#ifndef MPQ_H
|
|
#define MPQ_H
|
|
|
|
#include "loadlib/loadlib.h"
|
|
#include "libmpq/mpq.h"
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <deque>
|
|
|
|
using namespace std;
|
|
|
|
class MPQArchive
|
|
{
|
|
|
|
public:
|
|
mpq_archive_s *mpq_a;
|
|
|
|
MPQArchive(const char* filename);
|
|
void close();
|
|
|
|
void GetFileListTo(vector<string>& filelist) {
|
|
uint32 filenum;
|
|
if(libmpq__file_number(mpq_a, "(listfile)", &filenum)) return;
|
|
libmpq__off_t size, transferred;
|
|
libmpq__file_unpacked_size(mpq_a, filenum, &size);
|
|
|
|
char *buffer = new char[size];
|
|
|
|
libmpq__file_read(mpq_a, filenum, (unsigned char*)buffer, size, &transferred);
|
|
|
|
char seps[] = "\n";
|
|
char *token;
|
|
|
|
token = strtok( buffer, seps );
|
|
uint32 counter = 0;
|
|
while ((token != NULL) && (counter < size)) {
|
|
//cout << token << endl;
|
|
token[strlen(token) - 1] = 0;
|
|
string s = token;
|
|
filelist.push_back(s);
|
|
counter += strlen(token) + 2;
|
|
token = strtok(NULL, seps);
|
|
}
|
|
|
|
delete[] buffer;
|
|
}
|
|
};
|
|
typedef std::deque<MPQArchive*> ArchiveSet;
|
|
|
|
class MPQFile
|
|
{
|
|
//MPQHANDLE handle;
|
|
bool eof;
|
|
char *buffer;
|
|
libmpq__off_t pointer,size;
|
|
|
|
// disable copying
|
|
MPQFile(const MPQFile &f) {}
|
|
void operator=(const MPQFile &f) {}
|
|
|
|
public:
|
|
MPQFile(const char* filename); // filenames are not case sensitive
|
|
~MPQFile() { close(); }
|
|
size_t read(void* dest, size_t bytes);
|
|
size_t getSize() { return size; }
|
|
size_t getPos() { return pointer; }
|
|
char* getBuffer() { return buffer; }
|
|
char* getPointer() { return buffer + pointer; }
|
|
bool isEof() { return eof; }
|
|
void seek(int offset);
|
|
void seekRelative(int offset);
|
|
void close();
|
|
};
|
|
|
|
inline void flipcc(char *fcc)
|
|
{
|
|
char t;
|
|
t=fcc[0];
|
|
fcc[0]=fcc[3];
|
|
fcc[3]=t;
|
|
t=fcc[1];
|
|
fcc[1]=fcc[2];
|
|
fcc[2]=t;
|
|
}
|
|
|
|
#endif
|