forked from fabiangreffrath/wolf4sdl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
id_ca.h
60 lines (41 loc) · 1.55 KB
/
id_ca.h
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
#ifndef __ID_CA__
#define __ID_CA__
//===========================================================================
#define NUMMAPS 60
#ifdef USE_FLOORCEILINGTEX
#define MAPPLANES 3
#else
#define MAPPLANES 2
#endif
#define UNCACHEGRCHUNK(chunk) {if(grsegs[chunk]) {free(grsegs[chunk]); grsegs[chunk]=NULL;}}
#define UNCACHEAUDIOCHUNK(chunk) {if(audiosegs[chunk]) {free(audiosegs[chunk]); audiosegs[chunk]=NULL;}}
//===========================================================================
typedef PACKED_STRUCT(
{
int32_t planestart[3];
word planelength[3];
word width,height;
char name[16];
}) maptype;
//===========================================================================
extern int mapon;
extern word *mapsegs[MAPPLANES];
extern byte *audiosegs[NUMSNDCHUNKS];
extern byte *grsegs[NUMCHUNKS];
extern char extension[5];
extern char graphext[5];
extern char audioext[5];
//===========================================================================
boolean CA_LoadFile (const char *filename, memptr *ptr);
boolean CA_WriteFile (const char *filename, void *ptr, int32_t length);
int32_t CA_RLEWCompress (word *source, int32_t length, word *dest, word rlewtag);
void CA_RLEWexpand (word *source, word *dest, int32_t length, word rlewtag);
void CA_Startup (void);
void CA_Shutdown (void);
int32_t CA_CacheAudioChunk (int chunk);
void CA_LoadAllSounds (void);
void CA_CacheGrChunk (int chunk);
void CA_CacheMap (int mapnum);
void CA_CacheScreen (int chunk);
void CA_CannotOpen(const char *name);
#endif