-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwad.c
436 lines (367 loc) · 11.6 KB
/
wad.c
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/*
Copyright (C) 1996-1997 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
$Id: wad.c,v 1.20 2007-10-04 14:56:54 dkure Exp $
*/
// wad.c
#include "quakedef.h"
#ifdef GLQUAKE
#include "gl_model.h"
#include "gl_local.h"
#else
#include "r_model.h"
#include "r_local.h"
#endif
#include "wad.h"
#include "crc.h"
static int wad_numlumps;
static int wad_filesize;
static lumpinfo_t *wad_lumps;
static byte *wad_base = NULL;
static void W_InsertOcranaLeds (byte *data);
void SwapPic (qpic_t *pic) {
pic->width = LittleLong(pic->width);
pic->height = LittleLong(pic->height);
}
/*
Lowercases name and pads with spaces and a terminating 0 to the length of lumpinfo_t->name.
Used so lumpname lookups can proceed rapidly by comparing 4 chars at a time
Space padding is so names can be printed nicely in tables. Can safely be performed in place.
*/
void W_CleanupName (char *in, char *out) {
int i, c;
for (i = 0; i < 16; i++) {
c = in[i];
if (!c)
break;
if (c >= 'A' && c <= 'Z')
c += ('a' - 'A');
out[i] = c;
}
for ( ; i < 16; i++)
out[i] = 0;
}
void W_FreeWadFile (void)
{
Q_free (wad_base);
wad_base = NULL;
wad_lumps = NULL;
wad_numlumps = 0;
wad_filesize = 0;
}
void W_LoadWadFile (char *filename) {
lumpinfo_t *lump_p;
wadinfo_t *header;
unsigned i;
int infotableofs;
// only one .wad can be loaded at a time
W_FreeWadFile ();
wad_base = FS_LoadHeapFile (filename, &wad_filesize);
if (!wad_base) {
if (!strcmp(filename, "gfx.wad"))
Sys_Error("Couldn't load gfx.wad.\n"
"This usually happens when you don't have original Quake 1 files in id1 subdirectory.\n"
"Ensure you have pak0.pak and pak1.pak in subdirectory id1.");
else
Sys_Error ("W_LoadWadFile: couldn't load %s", filename);
}
header = (wadinfo_t *)wad_base;
if (memcmp(header->identification, "WAD2", 4))
Sys_Error ("Wad file %s doesn't have WAD2 id\n",filename);
wad_numlumps = LittleLong(header->numlumps);
infotableofs = LittleLong(header->infotableofs);
wad_lumps = (lumpinfo_t *)(wad_base + infotableofs);
if (infotableofs + wad_numlumps * sizeof(lump_t) > wad_filesize)
Sys_Error ("Wad lump table exceeds file size");
for (i = 0, lump_p = wad_lumps; i < wad_numlumps; i++,lump_p++) {
lump_p->filepos = LittleLong(lump_p->filepos);
lump_p->size = LittleLong(lump_p->size);
W_CleanupName (lump_p->name, lump_p->name);
if (lump_p->filepos < sizeof(wadinfo_t) || lump_p->filepos + LittleLong(lump_p->disksize) > wad_filesize)
Sys_Error ("Wad lump %s exceeds file size", lump_p->name);
if (lump_p->type == TYP_QPIC)
SwapPic ( (qpic_t *)(wad_base + lump_p->filepos));
}
}
lumpinfo_t *W_GetLumpinfo (char *name) {
int i;
lumpinfo_t *lump_p;
char clean[16];
W_CleanupName (name, clean);
for (lump_p = wad_lumps, i = 0; i < wad_numlumps; i++,lump_p++) {
if (!strcmp(clean, lump_p->name))
return lump_p;
}
Sys_Error ("W_GetLumpinfo: %s not found", name);
return NULL;
}
void *W_GetLumpName (char *name) {
lumpinfo_t *lump;
lump = W_GetLumpinfo (name);
// Make sure we have a lump.
if(!lump)
return NULL;
// If we got the conchars lump, check if the CRC is the same
// as in the original gfx.wad, and if so, insert leds into it.
if (!strcmp(name, "conchars"))
{
if (lump->filepos + lump->size < wad_filesize
&& CRC_Block (wad_base + lump->filepos, lump->size) == 798)
{
W_InsertOcranaLeds (wad_base + lump->filepos);
}
}
return (void *) (wad_base + lump->filepos);
}
void *W_GetLumpNum (int num) {
lumpinfo_t *lump;
if (num < 0 || num > wad_numlumps)
Sys_Error ("W_GetLumpNum: bad number: %i", num);
lump = wad_lumps + num;
return (void *) (wad_base + lump->filepos);
}
static byte ocrana_leds[4][8][8] = {
{
// green
{0x00,0x38,0x3b,0x3b,0x3b,0x3b,0x35,0x00},
{0x38,0x3b,0x3d,0x3f,0x3f,0x3d,0x38,0x35},
{0x3b,0x3d,0xfe,0x3f,0x3f,0x3f,0x3b,0x35},
{0x3b,0x3f,0x3f,0x3f,0x3f,0x3f,0x3b,0x35},
{0x3b,0x3f,0x3f,0x3f,0x3f,0x3d,0x3b,0x35},
{0x3b,0x3d,0x3f,0x3f,0x3d,0x3b,0x38,0x35},
{0x35,0x38,0x3b,0x3b,0x3b,0x38,0x35,0x35},
{0x00,0x35,0x35,0x35,0x35,0x35,0x35,0x00}
},
{
// red
{0x00,0xf8,0xf9,0xf9,0xf9,0xf9,0x4c,0x00},
{0xf8,0xf9,0xfa,0xfb,0xfb,0xfa,0xf8,0x4c},
{0xf9,0xfa,0xfe,0xfb,0xfb,0xfb,0xf9,0x4c},
{0xf9,0xfb,0xfb,0xfb,0xfb,0xfb,0xf9,0x4c},
{0xf9,0xfb,0xfb,0xfb,0xfb,0xfa,0xf9,0x4c},
{0xf9,0xfa,0xfb,0xfb,0xfa,0xf9,0xf8,0x4c},
{0x4c,0xf8,0xf9,0xf9,0xf9,0xf8,0x4c,0x4c},
{0x00,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x00}
},
{
// yellow
{0x00,0xc8,0xc5,0xc5,0xc5,0xc5,0xcb,0x00},
{0xc8,0xc5,0xc2,0x6f,0x6f,0xc2,0xc8,0xcb},
{0xc5,0xc2,0xfe,0x6f,0x6f,0x6f,0xc5,0xcb},
{0xc5,0x6f,0x6f,0x6f,0x6f,0x6f,0xc5,0xcb},
{0xc5,0x6f,0x6f,0x6f,0x6f,0xc2,0xc5,0xcb},
{0xc5,0xc2,0x6f,0x6f,0xc2,0xc5,0xc8,0xcb},
{0xcb,0xc8,0xc5,0xc5,0xc5,0xc8,0xcb,0xcb},
{0x00,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0x00}
},
{
// blue
{0x00,0xd8,0xd5,0xd5,0xd5,0xd5,0xdc,0x00},
{0xd8,0xd5,0xd2,0xd0,0xd0,0xd2,0xd8,0xdc},
{0xd5,0xd2,0xfe,0xd0,0xd0,0xd0,0xd5,0xdc},
{0xd5,0xd0,0xd0,0xd0,0xd0,0xd0,0xd5,0xdc},
{0xd5,0xd0,0xd0,0xd0,0xd0,0xd2,0xd5,0xdc},
{0xd5,0xd2,0xd0,0xd0,0xd2,0xd5,0xd8,0xdc},
{0xdc,0xd8,0xd5,0xd5,0xd5,0xd8,0xdc,0xdc},
{0x00,0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0x00}
}
};
static void W_InsertOcranaLeds (byte *data) {
byte *leddata;
int i, x, y;
for (i = 0; i < 4; i++) {
leddata = data + (0x80 >> 4 << 10) + (0x06 << 3) + (i << 3);
for (y = 0; y < 8; y++) {
for (x = 0; x < 8; x++)
*leddata++ = ocrana_leds[i][y][x];
leddata += 128 - 8;
}
}
}
/*
=============================================================================
WAD3 Texture Loading for BSP 3.0 Support
=============================================================================
*/
#ifdef GLQUAKE
#define TEXWAD_MAXIMAGES 16384
typedef struct {
char name[MAX_QPATH];
#ifndef WITH_FTE_VFS
FILE *file;
#else
vfsfile_t *file;
#endif
int position;
int size;
} texwadlump_t;
static texwadlump_t texwadlump[TEXWAD_MAXIMAGES];
static int wad3_numlumps = 0;
void WAD3_LoadWadFile (char *filename)
{
lumpinfo_t *lumps, *lump_p;
wadinfo_t header;
int i, j, infotableofs, numlumps, lowmark;
#ifndef WITH_FTE_VFS
FILE *file;
#else
vfsfile_t *file;
vfserrno_t err;
#endif
if (wad3_numlumps == TEXWAD_MAXIMAGES)
return;
#ifndef WITH_FTE_VFS
if (FS_FOpenFile (va("textures/halflife/%s", filename), &file) == -1)
if (FS_FOpenFile (va("textures/wad3/%s", filename), &file) == -1)
if (FS_FOpenFile (va("textures/%s", filename), &file) == -1)
if (FS_FOpenFile (filename, &file) == -1)
#else
if (!(file = FS_OpenVFS(va("textures/halflife/%s", filename), "rb", FS_ANY)))
if (!(file = FS_OpenVFS(va("textures/wad3/%s", filename), "rb", FS_ANY)))
if (!(file = FS_OpenVFS(va("textures/%s", filename), "rb", FS_ANY)))
if (!(file = FS_OpenVFS(filename, "rb", FS_ANY)))
#endif
{
Com_Printf ("WAD3_LoadWadFile: couldn't load halflife wad \"%s\"", filename);
return;
}
#ifndef WITH_FTE_VFS
if (fread(&header, 1, sizeof(wadinfo_t), file) != sizeof(wadinfo_t)) {
#else
if (VFS_READ(file, &header, sizeof(wadinfo_t), &err) != sizeof(wadinfo_t)) {
#endif
Com_Printf ("WAD3_LoadWadFile: unable to read wad header\n");
return;
}
if (memcmp(header.identification, "WAD3", 4)) {
Com_Printf ("WAD3_LoadWadFile: Wad file %s doesn't have WAD3 id\n",filename);
return;
}
numlumps = LittleLong(header.numlumps);
if (numlumps < 1 || numlumps > TEXWAD_MAXIMAGES) {
Com_Printf ("WAD3_LoadWadFile: invalid number of lumps (%i)\n", numlumps);
return;
}
infotableofs = LittleLong(header.infotableofs);
#ifndef WITH_FTE_VFS
if (fseek(file, infotableofs, SEEK_SET)) {
#else
if (VFS_SEEK(file, infotableofs, SEEK_SET)) {
#endif
Com_Printf ("WAD3_LoadWadFile: unable to seek to lump table\n");
return;
}
lowmark = Hunk_LowMark();
if (!(lumps = Hunk_Alloc(sizeof(lumpinfo_t) * numlumps))) {
Com_Printf ("WAD3_LoadWadFile: unable to allocate temporary memory for lump table\n");
return;
}
#ifndef WITH_FTE_VFS
if (fread(lumps, 1, sizeof(lumpinfo_t) * numlumps, file) != sizeof(lumpinfo_t) * numlumps) {
#else
if (VFS_READ(file, lumps, sizeof(lumpinfo_t)*numlumps, &err) != sizeof(lumpinfo_t) * numlumps) {
#endif
Com_Printf ("WAD3_LoadWadFile: unable to read lump table\n");
Hunk_FreeToLowMark(lowmark);
return;
}
for (i = 0, lump_p = lumps; i < numlumps; i++,lump_p++) {
W_CleanupName (lump_p->name, lump_p->name);
for (j = 0; j < wad3_numlumps; j++) {
if (!strcmp(lump_p->name, texwadlump[j].name))
goto skip_duplicate;
}
strlcpy (texwadlump[j].name, lump_p->name, sizeof(texwadlump[j].name));
texwadlump[j].file = file;
texwadlump[j].position = LittleLong(lump_p->filepos);
texwadlump[j].size = LittleLong(lump_p->disksize);
wad3_numlumps++;
if (wad3_numlumps == TEXWAD_MAXIMAGES)
break;
skip_duplicate:;
}
Hunk_FreeToLowMark(lowmark);
//leaves the file open
}
//converts paletted to rgba
byte *ConvertWad3ToRGBA(int width, int height, byte *in, qbool alpha)
{
byte *data, *pal;
int i, p, image_size;
image_size = width * height;
data = Q_malloc (image_size * 4);
pal = (byte *) in + ((image_size * 85) / 64) + 2;
for (i = 0; i < image_size; i++) {
p = *in++;
if (p == 255 && alpha) {
((int *) data)[i] = 0;
} else {
p *= 3;
data[i * 4 + 0] = pal[p];
data[i * 4 + 1] = pal[p + 1];
data[i * 4 + 2] = pal[p + 2];
data[i * 4 + 3] = 255;
}
}
return data;
}
byte *WAD3_LoadTexture (texture_t *tx)
{
int i, j = 0;
miptex_t *mt;
byte *data;
#ifndef WITH_FTE_VFS
FILE *file;
#else
vfsfile_t *file;
vfserrno_t err;
#endif
if (tx->offsets[0])
return ConvertWad3ToRGBA(tx->width, tx->height, (byte *)(tx + 1), (tx->name[0] == '{'));
for (i = 0; i < wad3_numlumps; i++) {
if (strcasecmp(tx->name, texwadlump[i].name))
continue;
file = texwadlump[i].file;
#ifndef WITH_FTE_VFS
if (fseek(file, texwadlump[i].position, SEEK_SET)) {
#else
if (VFS_SEEK(file, texwadlump[i].position, SEEK_SET)) {
#endif
Com_Printf("WAD3_LoadTexture: corrupt WAD3 file\n");
return NULL;
}
mt = Q_malloc(texwadlump[i].size);
#ifndef WITH_FTE_VFS
if (fread(mt, 1, texwadlump[i].size, file) < texwadlump[i].size) {
#else
if (VFS_READ(file, mt, texwadlump[i].size, &err) < texwadlump[i].size) {
#endif
Com_Printf("WAD3_LoadTexture: corrupt WAD3 file\n");
Q_free (mt);
return NULL;
}
mt->width = LittleLong(mt->width);
mt->height = LittleLong(mt->height);
if (mt->width != tx->width || mt->height != tx->height) {
Q_free (mt);
return NULL;
}
for (j = 0;j < MIPLEVELS;j++)
mt->offsets[j] = LittleLong(mt->offsets[j]);
data = ConvertWad3ToRGBA(mt->width, mt->height, (byte *)(mt + 1), (tx->name[0] == '{'));
Q_free (mt);
return data;
}
return NULL;
}
#endif