#include #include #include #include #include #include #include #include #include "sndserver.h" #include "wadread.h" int *sfxlengths; typedef struct wadinfo_struct { char identification[4]; int numlumps; int infotableofs; } wadinfo_t; typedef struct filelump_struct { int filepos; int size; char name[8]; } filelump_t; typedef struct lumpinfo_struct { int handle; int filepos; int size; char name[8]; } lumpinfo_t; lumpinfo_t *lumpinfo; int numlumps; void **lumpcache; #define strcmpi strcasecmp #ifndef __BIG_ENDIAN__ #define LONG(x) (x) #define SHORT(x) (x) #else #define LONG(x) ((long)SwapLONG((unsigned long) (x))) #define SHORT(x) ((short)SwapSHORT((unsigned short) (x))) unsigned long SwapLONG(unsigned long x) { return (x>>24) | ((x>>8) & 0xff00) | ((x<<8) & 0xff0000) | (x<<24); } unsigned short SwapSHORT(unsigned short x) { return (x>>8) | (x<<8); } #endif static void derror(char *msg) { fprintf(stderr, "\nwadread error: %s\n", msg); exit(-1); } void strupr (char *s) { while (*s) *s++ = toupper(*s); } int filelength (int handle) { struct stat fileinfo; if (fstat (handle,&fileinfo) == -1) fprintf (stderr, "Error fstating\n"); return fileinfo.st_size; } void openwad(char *wadname) { int wadfile, tableoffset, tablelength, tablefilelength; int i; wadinfo_t header; filelump_t *filetable; // open and read the wadfile header wadfile = open(wadname, O_RDONLY); if (wadfile < 0) derror("Could not open wadfile"); read(wadfile, &header, sizeof header); if (strncmp(header.identification, "IWAD", 4)) derror("wadfile has weirdo header"); numlumps = LONG(header.numlumps); tableoffset = LONG(header.infotableofs); tablelength = numlumps * sizeof(lumpinfo_t); tablefilelength = numlumps * sizeof(filelump_t); lumpinfo = (lumpinfo_t *) malloc(tablelength); filetable = (filelump_t *) ((char*)lumpinfo + tablelength - tablefilelength); // get the lumpinfo table lseek(wadfile, tableoffset, SEEK_SET); read(wadfile, filetable, tablefilelength); // process the table to make the endianness right and shift it down for (i=0 ; i