]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_ca.h
bd762016703d70179be9fd93338d0d0198f64d36
[16.git] / src / lib / 16_ca.h
1 /* Catacomb Apocalypse Source Code\r
2  * Copyright (C) 1993-2014 Flat Rock Software\r
3  *\r
4  * This program is free software; you can redistribute it and/or modify\r
5  * it under the terms of the GNU General Public License as published by\r
6  * the Free Software Foundation; either version 2 of the License, or\r
7  * (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License along\r
15  * with this program; if not, write to the Free Software Foundation, Inc.,\r
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
17  */\r
18 \r
19 // ID_CA.H\r
20 #ifndef __16_CA__\r
21 #define __16_CA__\r
22 \r
23 #ifndef __16_MM__\r
24 #include "src/lib/16_head.h"\r
25 #include "src/lib/16_mm.h"\r
26 #endif\r
27 \r
28 //===========================================================================\r
29 \r
30 //#define NOMAPS\r
31 #define NOGRAPHICS\r
32 #define NOAUDIO\r
33 \r
34 #define MAPHEADERLINKED\r
35 //#define GRHEADERLINKED\r
36 #define AUDIOHEADERLINKED\r
37 \r
38 //#define NUMMAPS               39\r
39 //#define MAPPLANES             3\r
40 //++++#define PROFILE//++++\r
41 \r
42 //===========================================================================\r
43 \r
44 /*typedef struct\r
45 {\r
46         unsigned        RLEWtag;\r
47         long            headeroffsets[100];\r
48         byte            tileinfo[];\r
49 } mapfiletype;\r
50 \r
51 typedef struct\r
52 {\r
53         long            planestart[3];\r
54         unsigned        planelength[3];\r
55         unsigned        width,height;\r
56         char            name[16];\r
57 } maptype;*/\r
58 \r
59 //===========================================================================\r
60 \r
61 /*extern        byte            _seg    *tinf;\r
62 extern  int                     mapon;\r
63 \r
64 extern  unsigned        _seg    *mapsegs[3];\r
65 extern  maptype         _seg    *mapheaderseg[NUMMAPS];\r
66 extern  byte            _seg    *audiosegs[NUMSNDCHUNKS];\r
67 extern  void            _seg    *grsegs[NUMCHUNKS];\r
68 \r
69 extern  byte            far     grneeded[NUMCHUNKS];\r
70 extern  byte            ca_levelbit,ca_levelnum;\r
71 \r
72 extern  char            *titleptr[8];*/\r
73 \r
74 //extern\r
75 \r
76 //\r
77 // hooks for custom cache dialogs\r
78 //\r
79 extern  void    (*drawcachebox)         (char *title, unsigned numcache);\r
80 extern  void    (*updatecachebox)       (void);\r
81 extern  void    (*finishcachebox)       (void);\r
82 \r
83 //===========================================================================\r
84 \r
85 // just for the score box reshifting\r
86 \r
87 //void CAL_ShiftSprite (unsigned segment,unsigned source,unsigned dest,unsigned width, unsigned height, unsigned pixshift, boolean domask);\r
88 \r
89 //===========================================================================\r
90 \r
91 void CA_OpenDebug (global_game_variables_t *gvar);\r
92 void CA_CloseDebug (global_game_variables_t *gvar);\r
93 boolean CA_FarRead (int handle, byte far *dest, dword length, global_game_variables_t *gvar);\r
94 boolean CA_FarWrite (int handle, byte far *source, dword length, global_game_variables_t *gvar);\r
95 \r
96 boolean CA_ReadFile (char *filename, memptr *ptr, global_game_variables_t *gvar);\r
97 boolean CA_WriteFile (char *filename, void far *ptr, long length, global_game_variables_t *gvar);\r
98 boolean CA_LoadFile (char *filename, memptr *ptr, global_game_variables_t *gvar);\r
99 \r
100 long CA_RLEWCompress (unsigned far *source, long length, unsigned far *dest,unsigned rlewtag);\r
101 \r
102 void CA_RLEWexpand (unsigned far *source, unsigned far *dest,long length,unsigned rlewtag);\r
103 \r
104 void CA_Startup (global_game_variables_t *gvar);\r
105 void CA_Shutdown (global_game_variables_t *gvar);\r
106 \r
107 //void CA_CacheAudioChunk (int chunk);\r
108 //void CA_LoadAllSounds (void);\r
109 \r
110 /*void CA_UpLevel (void);\r
111 void CA_DownLevel (void);*/\r
112 \r
113 void CA_SetGrPurge (global_game_variables_t *gvar);\r
114 void CA_SetAllPurge (global_game_variables_t *gvar);\r
115 \r
116 void CA_ClearMarks (global_game_variables_t *gvar);\r
117 void CA_ClearAllMarks (global_game_variables_t *gvar);\r
118 \r
119 /*#define CA_MarkGrChunk(chunk) grneeded[chunk]|=ca_levelbit\r
120 \r
121 void CA_CacheGrChunk (int chunk);\r
122 void CA_CacheMap (int mapnum);\r
123 \r
124 void CA_CacheMarks (char *title);*/\r
125 #endif\r