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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
|
/*
* qfiles.java
* Copyright (C) 2003
*
* $Id: qfiles.java,v 1.1 2004-07-07 19:59:34 hzi Exp $
*/
/*
Copyright (C) 1997-2001 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.
*/
package jake2.qcommon;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import jake2.*;
import jake2.client.*;
import jake2.game.*;
import jake2.render.*;
import jake2.server.*;
/**
* qfiles
*
* @author cwei
*/
public class qfiles {
//
// qfiles.h: quake file formats
// This file must be identical in the quake and utils directories
//
/*
========================================================================
The .pak files are just a linear collapse of a directory tree
========================================================================
*/
/*
========================================================================
PCX files are used for as many images as possible
========================================================================
*/
public static class pcx_t {
// size of byte arrays
static final int PALETTE_SIZE = 48;
static final int FILLER_SIZE = 58;
public byte manufacturer;
public byte version;
public byte encoding;
public byte bits_per_pixel;
public int xmin, ymin, xmax, ymax; // unsigned short
public int hres, vres; // unsigned short
public byte[] palette; //unsigned byte; size 48
public byte reserved;
public byte color_planes;
public int bytes_per_line; // unsigned short
public int palette_type; // unsigned short
public byte[] filler; // size 58
public ByteBuffer data; //unbounded data
public pcx_t(byte[] dataBytes) {
this(ByteBuffer.wrap(dataBytes));
}
public pcx_t(ByteBuffer b) {
// is stored as little endian
b.order(ByteOrder.LITTLE_ENDIAN);
// fill header
manufacturer = b.get();
version = b.get();
encoding = b.get();
bits_per_pixel = b.get();
xmin = b.getShort() & 0xffff;
ymin = b.getShort() & 0xffff;
xmax = b.getShort() & 0xffff;
ymax = b.getShort() & 0xffff;
hres = b.getShort() & 0xffff;
vres = b.getShort() & 0xffff;
b.get(palette = new byte[PALETTE_SIZE]);
reserved = b.get();
color_planes = b.get();
bytes_per_line = b.getShort() & 0xffff;
palette_type = b.getShort() & 0xffff;
b.get(filler = new byte[FILLER_SIZE]);
// fill data
data = b.slice();
}
}
/*
========================================================================
.MD2 triangle model file format
========================================================================
*/
public static final int IDALIASHEADER = (('2'<<24)+('P'<<16)+('D'<<8)+'I');
public static final int ALIAS_VERSION = 8;
public static final int MAX_TRIANGLES = 4096;
public static final int MAX_VERTS = 2048;
public static final int MAX_FRAMES = 512;
public static final int MAX_MD2SKINS = 32;
public static final int MAX_SKINNAME = 64;
public static class dstvert_t {
public short s;
public short t;
public dstvert_t(ByteBuffer b) {
s = b.getShort();
t = b.getShort();
}
}
public static class dtriangle_t {
public short index_xyz[] = { 0, 0, 0 };
public short index_st[] = { 0, 0, 0 };
public dtriangle_t(ByteBuffer b) {
index_xyz[0] = b.getShort();
index_xyz[1] = b.getShort();
index_xyz[2] = b.getShort();
index_st[0] = b.getShort();
index_st[1] = b.getShort();
index_st[2] = b.getShort();
}
}
public static class dtrivertx_t {
public int v[] = { 0, 0, 0 }; // byte 0..255 scaled byte to fit in frame mins/maxs
public int lightnormalindex; // byte 0 .. 255;
public dtrivertx_t(ByteBuffer b) {
v[0] = b.get() & 0xff; // unsigned byte
v[1] = b.get() & 0xff; // unsigned byte
v[2] = b.get() & 0xff; // unsigned byte
lightnormalindex = b.get() & 0xff; // unsigned byte
}
}
public static final int DTRIVERTX_V0 = 0;
public static final int DTRIVERTX_V1 = 1;
public static final int DTRIVERTX_V2 = 2;
public static final int DTRIVERTX_LNI = 3;
public static final int DTRIVERTX_SIZE = 4;
public static class daliasframe_t {
public float[] scale = {0, 0, 0}; // multiply byte verts by this
public float[] translate = {0, 0, 0}; // then add this
public String name; // frame name from grabbing (size 16)
public dtrivertx_t[] verts; // variable sized
public daliasframe_t(ByteBuffer b) {
scale[0] = b.getFloat(); scale[1] = b.getFloat(); scale[2] = b.getFloat();
translate[0] = b.getFloat(); translate[1] = b.getFloat(); translate[2] = b.getFloat();
byte[] nameBuf = new byte[16];
b.get(nameBuf);
name = new String(nameBuf).trim();
}
}
// the glcmd format:
// a positive integer starts a tristrip command, followed by that many
// vertex structures.
// a negative integer starts a trifan command, followed by -x vertexes
// a zero indicates the end of the command list.
// a vertex consists of a floating point s, a floating point t,
// and an integer vertex index.
public static class dmdl_t {
public int ident;
public int version;
public int skinwidth;
public int skinheight;
public int framesize; // byte size of each frame
public int num_skins;
public int num_xyz;
public int num_st; // greater than num_xyz for seams
public int num_tris;
public int num_glcmds; // dwords in strip/fan command list
public int num_frames;
public int ofs_skins; // each skin is a MAX_SKINNAME string
public int ofs_st; // byte offset from start for stverts
public int ofs_tris; // offset for dtriangles
public int ofs_frames; // offset for first frame
public int ofs_glcmds;
public int ofs_end; // end of file
// wird extra gebraucht
public String[] skinNames;
public dstvert_t[] stVerts;
public dtriangle_t[] triAngles;
public int[] glCmds;
public daliasframe_t[] aliasFrames;
public dmdl_t(ByteBuffer b) {
ident = b.getInt();
version = b.getInt();
skinwidth = b.getInt();
skinheight = b.getInt();
framesize = b.getInt(); // byte size of each frame
num_skins = b.getInt();
num_xyz = b.getInt();
num_st = b.getInt(); // greater than num_xyz for seams
num_tris = b.getInt();
num_glcmds = b.getInt(); // dwords in strip/fan command list
num_frames = b.getInt();
ofs_skins = b.getInt(); // each skin is a MAX_SKINNAME string
ofs_st = b.getInt(); // byte offset from start for stverts
ofs_tris = b.getInt(); // offset for dtriangles
ofs_frames = b.getInt(); // offset for first frame
ofs_glcmds = b.getInt();
ofs_end = b.getInt(); // end of file
}
}
/*
========================================================================
.SP2 sprite file format
========================================================================
*/
// little-endian "IDS2"
public static final int IDSPRITEHEADER = (('2'<<24)+('S'<<16)+('D'<<8)+'I');
public static final int SPRITE_VERSION = 2;
public static class dsprframe_t {
public int width, height;
public int origin_x, origin_y; // raster coordinates inside pic
public String name; // name of pcx file (MAX_SKINNAME)
public dsprframe_t(ByteBuffer b) {
width = b.getInt();
height = b.getInt();
origin_x = b.getInt();
origin_y = b.getInt();
byte[] nameBuf = new byte[MAX_SKINNAME];
b.get(nameBuf);
name = new String(nameBuf).trim();
}
}
public static class dsprite_t {
public int ident;
public int version;
public int numframes;
public dsprframe_t frames[]; // variable sized
public dsprite_t(ByteBuffer b) {
ident = b.getInt();
version = b.getInt();
numframes = b.getInt();
frames = new dsprframe_t[numframes];
for (int i=0; i < numframes; i++) {
frames[i] = new dsprframe_t(b);
}
}
}
/*
==============================================================================
.WAL texture file format
==============================================================================
*/
public static class miptex_t {
static final int MIPLEVELS = 4;
static final int NAME_SIZE = 32;
public String name; // char name[32];
public int width, height;
public int[] offsets = new int[MIPLEVELS]; // 4 mip maps stored
// next frame in animation chain
public String animname; // char animname[32];
public int flags;
public int contents;
public int value;
public miptex_t(byte[] dataBytes) {
this(ByteBuffer.wrap(dataBytes));
}
public miptex_t(ByteBuffer b) {
// is stored as little endian
b.order(ByteOrder.LITTLE_ENDIAN);
byte[] nameBuf = new byte[NAME_SIZE];
// fill header
b.get(nameBuf);
name = new String(nameBuf).trim();
width = b.getInt();
height = b.getInt();
offsets[0] = b.getInt();
offsets[1] = b.getInt();
offsets[2] = b.getInt();
offsets[3] = b.getInt();
b.get(nameBuf);
animname = new String(nameBuf).trim();
flags = b.getInt();
contents = b.getInt();
value = b.getInt();
}
}
/*
==============================================================================
.BSP file format
==============================================================================
*/
public static final int IDBSPHEADER = (('P'<<24)+('S'<<16)+('B'<<8)+'I');
// =============================================================================
public static class dheader_t {
public dheader_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
this.ident = bb.getInt();
this.version = bb.getInt();
for (int n = 0; n < Defines.HEADER_LUMPS; n++)
lumps[n] = new lump_t(bb.getInt(), bb.getInt());
}
public int ident;
public int version;
public lump_t lumps[] = new lump_t[Defines.HEADER_LUMPS];
}
public static class dmodel_t {
public dmodel_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
for (int j = 0; j < 3; j++)
mins[j] = bb.getFloat();
for (int j = 0; j < 3; j++)
maxs[j] = bb.getFloat();
for (int j = 0; j < 3; j++)
origin[j] = bb.getFloat();
headnode = bb.getInt();
firstface = bb.getInt();
numfaces = bb.getInt();
}
public float mins[] = { 0, 0, 0 };
public float maxs[] = { 0, 0, 0 };
public float origin[] = { 0, 0, 0 }; // for sounds or lights
public int headnode;
public int firstface, numfaces; // submodels just draw faces
// without walking the bsp tree
public static int SIZE = 3 * 4 + 3 * 4 + 3 * 4 + 4 + 8;
}
public static class dvertex_t {
public static final int SIZE = 3 * 4; // 3 mal 32 bit float
public float[] point = { 0, 0, 0 };
public dvertex_t(ByteBuffer b) {
point[0] = b.getFloat();
point[1] = b.getFloat();
point[2] = b.getFloat();
}
}
// planes (x&~1) and (x&~1)+1 are always opposites
public static class dplane_t {
public dplane_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
normal[0] = (bb.getFloat());
normal[1] = (bb.getFloat());
normal[2] = (bb.getFloat());
dist = (bb.getFloat());
type = (bb.getInt());
}
public float normal[] = { 0, 0, 0 };
public float dist;
public int type; // PLANE_X - PLANE_ANYZ ?remove? trivial to regenerate
public static final int SIZE = 3 * 4 + 4 + 4;
}
public static class dnode_t {
public dnode_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
planenum = bb.getInt();
children[0] = bb.getInt();
children[1] = bb.getInt();
for (int j = 0; j < 3; j++)
mins[j] = bb.getShort();
for (int j = 0; j < 3; j++)
maxs[j] = bb.getShort();
firstface = bb.getShort() & 0xffff;
numfaces = bb.getShort() & 0xffff;
}
public int planenum;
public int children[] = { 0, 0 };
// negative numbers are -(leafs+1), not nodes
public short mins[] = { 0, 0, 0 }; // for frustom culling
public short maxs[] = { 0, 0, 0 };
/*
unsigned short firstface;
unsigned short numfaces; // counting both sides
*/
public int firstface;
public int numfaces;
public static int SIZE = 4 + 8 + 6 + 6 + 2 + 2; // counting both sides
}
// note that edge 0 is never used, because negative edge nums are used for
// counterclockwise use of the edge in a face
public static class dedge_t {
// unsigned short v[2];
int v[] = { 0, 0 };
}
public static class dface_t {
public static final int SIZE =
4 * Defines.SIZE_OF_SHORT
+ 2 * Defines.SIZE_OF_INT
+ Defines.MAXLIGHTMAPS;
//unsigned short planenum;
public int planenum;
public short side;
public int firstedge; // we must support > 64k edges
public short numedges;
public short texinfo;
// lighting info
public byte styles[] = new byte[Defines.MAXLIGHTMAPS];
public int lightofs; // start of [numstyles*surfsize] samples
public dface_t(ByteBuffer b) {
planenum = b.getShort() & 0xFFFF;
side = b.getShort();
firstedge = b.getInt();
numedges = b.getShort();
texinfo = b.getShort();
b.get(styles);
lightofs = b.getInt();
}
}
public static class dleaf_t {
public dleaf_t(byte[] cmod_base, int i, int j) {
this(ByteBuffer.wrap(cmod_base, i, j).order(ByteOrder.LITTLE_ENDIAN));
}
public dleaf_t(ByteBuffer bb) {
contents = bb.getInt();
cluster = bb.getShort();
area = bb.getShort();
mins[0] = bb.getShort();
mins[1] = bb.getShort();
mins[2] = bb.getShort();
maxs[0] = bb.getShort();
maxs[1] = bb.getShort();
maxs[2] = bb.getShort();
firstleafface = bb.getShort() & 0xffff;
numleaffaces = bb.getShort() & 0xffff;
firstleafbrush = bb.getShort() & 0xffff;
numleafbrushes = bb.getShort() & 0xffff;
}
public static final int SIZE = 4 + 8 * 2 + 4 * 2;
public int contents; // OR of all brushes (not needed?)
public short cluster;
public short area;
public short mins[] = { 0, 0, 0 }; // for frustum culling
public short maxs[] = { 0, 0, 0 };
public int firstleafface; // unsigned short
public int numleaffaces; // unsigned short
public int firstleafbrush; // unsigned short
public int numleafbrushes; // unsigned short
}
public static class dbrushside_t {
public dbrushside_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
planenum = bb.getShort() & 0xffff;
texinfo = bb.getShort();
}
//unsigned short planenum;
int planenum; // facing out of the leaf
short texinfo;
public static int SIZE = 4;
}
public static class dbrush_t {
public dbrush_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
firstside = bb.getInt();
numsides = bb.getInt();
contents = bb.getInt();
}
public static int SIZE = 3 * 4;
int firstside;
int numsides;
int contents;
}
// #define ANGLE_UP -1
// #define ANGLE_DOWN -2
// the visibility lump consists of a header with a count, then
// byte offsets for the PVS and PHS of each cluster, then the raw
// compressed bit vectors
// #define DVIS_PVS 0
// #define DVIS_PHS 1
public static class dvis_t {
public dvis_t(ByteBuffer bb) {
numclusters = bb.getInt();
bitofs = new int[numclusters][2];
for (int i = 0; i < numclusters; i++) {
bitofs[i][0] = bb.getInt();
bitofs[i][1] = bb.getInt();
}
}
public int numclusters;
public int bitofs[][] = new int[8][2]; // bitofs[numclusters][2]
}
// each area has a list of portals that lead into other areas
// when portals are closed, other areas may not be visible or
// hearable even if the vis info says that it should be
public static class dareaportal_t {
public dareaportal_t() {
}
public dareaportal_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
portalnum = bb.getShort();
otherarea = bb.getShort();
}
int portalnum;
int otherarea;
public static int SIZE = 8;
}
public static class darea_t {
public darea_t(ByteBuffer bb) {
bb.order(ByteOrder.LITTLE_ENDIAN);
numareaportals = bb.getInt();
firstareaportal = bb.getInt();
}
int numareaportals;
int firstareaportal;
public static int SIZE = 8;
}
}
|