-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmpq_sfmpq.cpp
104 lines (85 loc) · 1.43 KB
/
mpq_sfmpq.cpp
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
#include "mpq_sfmpq.h"
#include "wowmapview.h"
int _id=1;
MPQArchive::MPQArchive(const char* filename)
{
BOOL succ = SFileOpenArchive(filename, _id++, 0, &handle);
if (succ) {
MPQARCHIVE *ar = (MPQARCHIVE*)(handle);
succ = true;
} else {
gLog("Error opening archive %s\n", filename);
}
}
void MPQArchive::close()
{
SFileCloseArchive(handle);
}
MPQFile::MPQFile(const char* filename)
{
BOOL succ = SFileOpenFile(filename, &handle);
pointer = 0;
if (succ) {
DWORD s = SFileGetFileSize(handle, 0);
buffer = new char[s];
SFileReadFile(handle, buffer, s, 0, 0);
SFileCloseFile(handle);
size = (size_t)s;
eof = false;
} else {
eof = true;
buffer = 0;
}
}
MPQFile::~MPQFile()
{
close();
}
size_t MPQFile::read(void* dest, size_t bytes)
{
if (eof) return 0;
size_t rpos = pointer + bytes;
if (rpos > size) {
bytes = size - pointer;
eof = true;
}
memcpy(dest, &(buffer[pointer]), bytes);
pointer = rpos;
return bytes;
}
bool MPQFile::isEof()
{
return eof;
}
void MPQFile::seek(int offset)
{
pointer = offset;
eof = (pointer >= size);
}
void MPQFile::seekRelative(int offset)
{
pointer += offset;
eof = (pointer >= size);
}
void MPQFile::close()
{
if (buffer) delete[] buffer;
buffer = 0;
eof = true;
}
size_t MPQFile::getSize()
{
return size;
}
size_t MPQFile::getPos()
{
return pointer;
}
char* MPQFile::getBuffer()
{
return buffer;
}
char* MPQFile::getPointer()
{
return buffer + pointer;
}