forked from cyxx/rawgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.cpp
214 lines (187 loc) · 3.89 KB
/
file.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
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
/*
* Another World engine rewrite
* Copyright (C) 2004-2005 Gregory Montoir ([email protected])
*/
#include <dirent.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <string.h>
#include "file.h"
#include "util.h"
struct File_impl {
bool _ioErr;
File_impl() : _ioErr(false) {}
virtual ~File_impl() {}
virtual bool open(const char *path, const char *mode) = 0;
virtual void close() = 0;
virtual uint32_t size() = 0;
virtual void seek(int off, int whence) = 0;
virtual int read(void *ptr, uint32_t len) = 0;
virtual int write(void *ptr, uint32_t len) = 0;
};
struct stdFile : File_impl {
FILE *_fp;
stdFile() : _fp(0) {}
bool open(const char *path, const char *mode) {
_ioErr = false;
_fp = fopen(path, mode);
return (_fp != 0);
}
void close() {
if (_fp) {
fclose(_fp);
_fp = 0;
}
}
uint32_t size() {
uint32_t sz = 0;
if (_fp) {
int pos = ftell(_fp);
fseek(_fp, 0, SEEK_END);
sz = ftell(_fp);
fseek(_fp, pos, SEEK_SET);
}
return sz;
}
void seek(int off, int whence) {
if (_fp) {
fseek(_fp, off, whence);
}
}
int read(void *ptr, uint32_t len) {
if (_fp) {
uint32_t r = fread(ptr, 1, len, _fp);
if (r != len) {
_ioErr = true;
}
return r;
}
return 0;
}
int write(void *ptr, uint32_t len) {
if (_fp) {
uint32_t r = fwrite(ptr, 1, len, _fp);
if (r != len) {
_ioErr = true;
}
return r;
}
return 0;
}
};
File::File() {
_impl = new stdFile;
}
File::~File() {
_impl->close();
delete _impl;
}
bool File::open(const char *filepath) {
_impl->close();
return _impl->open(filepath, "rb");
}
static bool getFilePathNoCase(const char *filename, const char *path, char *out) {
bool ret = false;
DIR *d = opendir(path);
if (d) {
dirent *de;
while ((de = readdir(d)) != NULL) {
if (de->d_name[0] == '.') {
continue;
}
if (strcasecmp(de->d_name, filename) == 0) {
sprintf(out, "%s/%s", path, de->d_name);
ret = true;
break;
}
}
closedir(d);
}
return ret;
}
bool File::open(const char *filename, const char *path) {
_impl->close();
char filepath[MAXPATHLEN];
if (getFilePathNoCase(filename, path, filepath)) {
return _impl->open(filepath, "rb");
}
return false;
}
bool File::openForWriting(const char *filepath) {
_impl->close();
return _impl->open(filepath, "wb");
}
void File::close() {
_impl->close();
}
bool File::ioErr() const {
return _impl->_ioErr;
}
uint32_t File::size() {
return _impl->size();
}
void File::seek(int off, int whence) {
_impl->seek(off, whence);
}
int File::read(void *ptr, uint32_t len) {
return _impl->read(ptr, len);
}
uint8_t File::readByte() {
uint8_t b;
read(&b, 1);
return b;
}
uint16_t File::readUint16LE() {
uint8_t lo = readByte();
uint8_t hi = readByte();
return (hi << 8) | lo;
}
uint32_t File::readUint32LE() {
uint16_t lo = readUint16LE();
uint16_t hi = readUint16LE();
return (hi << 16) | lo;
}
uint16_t File::readUint16BE() {
uint8_t hi = readByte();
uint8_t lo = readByte();
return (hi << 8) | lo;
}
uint32_t File::readUint32BE() {
uint16_t hi = readUint16BE();
uint16_t lo = readUint16BE();
return (hi << 16) | lo;
}
int File::write(void *ptr, uint32_t len) {
return _impl->write(ptr, len);
}
void File::writeByte(uint8_t b) {
write(&b, 1);
}
void File::writeUint16LE(uint16_t n) {
writeByte(n & 0xFF);
writeByte(n >> 8);
}
void File::writeUint32LE(uint32_t n) {
writeUint16LE(n & 0xFFFF);
writeUint16LE(n >> 16);
}
void File::writeUint16BE(uint16_t n) {
writeByte(n >> 8);
writeByte(n & 0xFF);
}
void File::writeUint32BE(uint32_t n) {
writeUint16BE(n >> 16);
writeUint16BE(n & 0xFFFF);
}
void dumpFile(const char *filename, const uint8_t *p, int size) {
char path[MAXPATHLEN];
snprintf(path, sizeof(path), "DUMP/%s", filename);
FILE *fp = fopen(filename, "wb");
if (fp) {
const int wr = fwrite(p, 1, size, fp);
if (wr != size) {
warning("Failed to write %d bytes (expected %d)", wr, size);
}
fclose(fp);
}
}