]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_tdef.h
makefile polished!! it seems everything works reletively ok
[16.git] / src / lib / 16_tdef.h
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 \r
23 #ifndef _TYPEDEFSTRUCT_H_\r
24 #define _TYPEDEFSTRUCT_H_\r
25 \r
26 #include "src/lib/16_t.h"\r
27 \r
28 #define AARED           "\x1b[41;31m"\r
29 #define AABLUE          "\x1b[44;34m"\r
30 #define AAGREEN "\x1b[42;32m"\r
31 #define AAYELLOW        "\x1b[43;33m"\r
32 #define AAGREY          "\x1b[47;37m"\r
33 #define AABLACK "\x1b[40;30m"\r
34 #define AAWHITE         "\x1b[47;37m"\r
35 #define AAMAGENTA       "\x1b[45;35m"\r
36 #define AARESET "\x1b[0m"\r
37 \r
38 #define MAXPAGE 4\r
39 \r
40 /*\r
41  * typedefs of the game variables!\r
42  */\r
43 typedef struct {\r
44         byte *data;\r
45         word width;\r
46         word height;\r
47         byte *palette;\r
48         word offset;\r
49 } bitmap_t;\r
50 \r
51 typedef struct {\r
52         byte far **data;\r
53         word ntiles;   /* the number of tiles */\r
54         word twidth;   /* width of the tiles */\r
55         word theight;  /* height of the tiles */\r
56         byte *palette; /* palette for the tile set */\r
57 } tileset_t;\r
58 \r
59 typedef struct {\r
60         byte far *plane[4];     /* 4 planes of image data */\r
61         word width;         /* width of the image (spread across 4 planes) */\r
62         word height;        /* height of the image (spread across 4 planes) */\r
63         word pwidth;        /* the number of bytes in each plane */\r
64         byte *palette;\r
65 } planar_buf_t;\r
66 \r
67 typedef struct {\r
68         /*nibble*/word id;      /* the Identification number of the page~ For layering~ */\r
69         byte far* data; /* the data for the page */\r
70         word dx;                /* col we are viewing on the virtual screen */  /* off screen buffer on the left size */\r
71         word dy;                /* row we are viewing on the virtual screen */  /* off screen buffer on the top size */\r
72         word sw;                /* screen width */      /* resolution */\r
73         word sh;                /* screen heigth */     /* resolution */\r
74         word tw;                /* screen width in tiles */\r
75         word th;                /* screen height in tiles */\r
76         word width;             /* virtual width of the page */\r
77         word height;    /* virtual height of the page */\r
78         word tilesw;            /* virtual screen width in tiles */\r
79         word tilesh;            /* virtual screen height in tiles */\r
80         sword tilemidposscreenx;        /* middle tile x position */    /* needed for scroll system to work accordingly */\r
81         sword tilemidposscreeny;        /* middle tile y position */    /* needed for scroll system to work accordingly */\r
82         sword tileplayerposscreenx;     /* player position on screen */ /* needed for scroll and map system to work accordingly */\r
83         sword tileplayerposscreeny;     /* player position on screen */ /* needed for scroll and map system to work accordingly */\r
84         word stridew;                   /* width/4 */   /* VGA */\r
85         word pagesize;                  /* page size */\r
86         word pi;                                /* increment page by this much to preserve location */\r
87 //newer vars\r
88 //TODO: find where they are used\r
89         sword delta;                    // How much should we shift the page for smooth scrolling\r
90 } page_t;\r
91 \r
92 //TODO: MAKE THIS WWWW\r
93 typedef struct\r
94 {\r
95         //sprite ....\r
96         boolean wwww;\r
97 } spri_t;\r
98 \r
99 //TODO: MAKE THIS TO WWWW\r
100 typedef struct\r
101 {\r
102         //vrs with sprite ....\r
103         spri_t *spri;\r
104 } vrs_t;\r
105 \r
106 typedef struct\r
107 {\r
108         int profilehandle,debughandle,showmemhandle;\r
109         int heaphandle;\r
110 } loghandle_t;\r
111 \r
112 typedef struct\r
113 {\r
114         word frames_per_second;\r
115         clock_t t;\r
116         dword tiku;             //frames passed\r
117         word clock_start;       //timer start\r
118         word *clock;    //current time on clock\r
119         boolean fpscap; //cap the fps var\r
120 } kurokku_t;\r
121 \r
122 typedef struct\r
123 {\r
124         word    pn;\r
125 } pan_t;\r
126 \r
127 //video\r
128 #define NUMCHUNKS       416     //keen\r
129 \r
130 typedef struct\r
131 {\r
132         char old_mode;          //old video mode before game!\r
133         page_t page[MAXPAGE];   //can be used as a pointer to root page[0]\r
134         word vmem_remain;       //remaining video memory\r
135         byte num_of_pages;      //number of actual pages\r
136         boolean __near p;                       //render page number\r
137         boolean __near r;                       //page flip if true\r
138         word pr[MAXPAGE][4];    //render sections of pages (this is supposed to be set up to draw sections of the screen if updated)\r
139         //0000word startclk; float clk, tickclk;        //timer\r
140 //newer vars\r
141 //TODO: find out how they are used\r
142         byte grneeded[NUMCHUNKS];\r
143 } video_t;\r
144 \r
145 //from 16_mm\r
146 //==========================================================================\r
147 \r
148 #define MAXBLOCKS               1024\r
149 #define MAXUMBS         12\r
150 \r
151 typedef struct mmblockstruct\r
152 {\r
153         word    start,length;\r
154         //word  start;  dword length;\r
155         word    blob;   //for data larger than 64k\r
156         unsigned        attributes;\r
157         memptr          *useptr;        // pointer to the segment start\r
158         struct mmblockstruct far *next;\r
159 } mmblocktype;\r
160 \r
161 typedef struct\r
162 {\r
163         dword   nearheap,farheap,EMSmem,XMSmem,mainmem;\r
164 //      boolean         PMStarted, MainPresent, EMSPresent, XMSPresent;\r
165 } mminfotype;\r
166 \r
167 typedef struct\r
168 {\r
169         memptr bufferseg;\r
170         boolean         mmstarted, bombonerror, mmerror;\r
171         void far        *farheap;\r
172 #ifdef __BORLANDC__\r
173         void    *nearheap;\r
174 #endif\r
175 #ifdef __WATCOMC__\r
176         void __near     *nearheap;\r
177 #endif\r
178         unsigned int            EMSVer;\r
179         word numUMBs,UMBbase[MAXUMBS];\r
180         word                    totalEMSpages, freeEMSpages, EMSpagesmapped, EMSHandle, EMSPageFrame;\r
181         //dword numUMBs,UMBbase[MAXUMBS];\r
182         mmblocktype     far mmblocks[MAXBLOCKS],far *mmhead,far *mmfree,far *mmrover,far *mmnew;\r
183 } mminfo_t;\r
184 \r
185 //==========================================================================\r
186 \r
187 \r
188 //from 16_pm\r
189 //==========================================================================\r
190 \r
191 //      NOTE! PMPageSize must be an even divisor of EMSPageSize, and >= 1024\r
192 #define EMSPageSize             16384\r
193 #define EMSPageSizeSeg  (EMSPageSize >> 4)\r
194 #define EMSPageSizeKB   (EMSPageSize >> 10)\r
195 #define EMSFrameCount   4\r
196 #define PMPageSize              4096\r
197 #define PMPageSizeSeg   (PMPageSize >> 4)\r
198 #define PMPageSizeKB    (PMPageSize >> 10)\r
199 #define PMEMSSubPage    (EMSPageSize / PMPageSize)\r
200 \r
201 #define PMMinMainMem    10                      // Min acceptable # of pages from main\r
202 #define PMMaxMainMem    100                     // Max number of pages in main memory\r
203 \r
204 #define PMThrashThreshold       1       // Number of page thrashes before panic mode\r
205 #define PMUnThrashThreshold     5       // Number of non-thrashing frames before leaving panic mode\r
206 \r
207 typedef enum\r
208                 {\r
209                         pml_Unlocked,\r
210                         pml_Locked\r
211                 } PMLockType;\r
212 \r
213 typedef enum\r
214                 {\r
215                         pmba_Unused = 0,\r
216                         pmba_Used = 1,\r
217                         pmba_Allocated = 2\r
218                 } PMBlockAttr;\r
219 \r
220 typedef struct\r
221                 {\r
222                         dword   offset;         // Offset of chunk into file\r
223                         word            length;         // Length of the chunk\r
224 \r
225                         int                     xmsPage;        // If in XMS, (xmsPage * PMPageSize) gives offset into XMS handle\r
226 \r
227                         PMLockType      locked;         // If set, this page can't be purged\r
228                         int                     emsPage;        // If in EMS, logical page/offset into page\r
229                         int                     mainPage;       // If in Main, index into handle array\r
230 \r
231                         dword   lastHit;        // Last frame number of hit\r
232                 } PageListStruct;\r
233 \r
234 typedef struct\r
235                 {\r
236                         int                     baseEMSPage;    // Base EMS page for this phys frame\r
237                         dword   lastHit;                // Last frame number of hit\r
238                 } EMSListStruct;\r
239 \r
240 //      Main Mem specific variables\r
241 typedef struct\r
242 {\r
243         boolean                 MainPresent;\r
244         memptr                  MainMemPages[PMMaxMainMem];\r
245         PMBlockAttr             MainMemUsed[PMMaxMainMem];\r
246         int                             MainPagesAvail;\r
247 } pm_mmi_t;\r
248 \r
249 //      EMS specific variables\r
250 typedef struct\r
251 {\r
252         boolean                 EMSPresent;\r
253         unsigned int                    EMSVer;\r
254         word                    EMSAvail,EMSPagesAvail,EMSHandle,\r
255                                         EMSPageFrame,EMSPhysicalPage;\r
256         word                    totalEMSpages, freeEMSpages, EMSpagesmapped;\r
257         EMSListStruct   EMSList[EMSFrameCount];\r
258 } pm_emmi_t;\r
259 \r
260 //      XMS specific variables\r
261 typedef struct\r
262 {\r
263         boolean                 XMSPresent;\r
264         word                    XMSAvail,XMSPagesAvail,XMSHandle;//,XMSVer;\r
265         dword                   XMSDriver;\r
266         int                             XMSProtectPage;// = -1;\r
267 } pm_xmmi_t;\r
268 \r
269 //      File specific variables\r
270 typedef struct\r
271 {\r
272         char                    PageFileName[13];// = {"VSWAP."};\r
273         int                             PageFile;// = -1;\r
274         word                    ChunksInFile;\r
275         word                    PMSpriteStart,PMSoundStart;\r
276 } pm_fi_t;\r
277 \r
278 //      General usage variables\r
279 typedef struct\r
280 {\r
281         boolean                 PMStarted,\r
282                                         PMPanicMode,\r
283                                         PMThrashing;\r
284         word                    XMSPagesUsed,\r
285                                         EMSPagesUsed,\r
286                                         MainPagesUsed,\r
287                                         PMNumBlocks;\r
288         long                    PMFrameCount;\r
289         PageListStruct  far *PMPages;\r
290         __SEGA *PMSegPages;\r
291         pm_mmi_t        mm;\r
292         pm_emmi_t       emm;\r
293         pm_xmmi_t       xmm;\r
294         pm_fi_t fi;\r
295 } pm_t;\r
296 \r
297 //==========================================================================\r
298 \r
299 //from 16_ca\r
300 //==========================================================================\r
301 \r
302 #define NUMMAPS         4//39\r
303 #define MAPPLANES               3\r
304 \r
305 typedef struct\r
306 {\r
307   word bit0,bit1;       // 0-255 is a character, > is a pointer to a node\r
308 } huffnode;\r
309 \r
310 typedef struct\r
311 {\r
312         int             mapon, mapnum;\r
313         __SEGA  *mapsegs[4];\r
314         __SEGA  *mapheaderseg[NUMMAPS];\r
315         __SEGA  *tinf;\r
316 } ca_mapinfo_t;\r
317 \r
318 typedef struct\r
319 {\r
320         int                     maphandle[4];           // handle to MAPTEMP / GAMEMAPS\r
321 } ca_handle_t;\r
322 \r
323 typedef struct\r
324 {\r
325         byte            ca_levelbit,ca_levelnum;\r
326         ca_handle_t     file;           //files to open\r
327         ca_mapinfo_t    camap;\r
328         __SEGA  *grsegs[NUMCHUNKS];\r
329         byte            far     grneeded[NUMCHUNKS];\r
330         huffnode huffnode;\r
331 } ca_t;\r
332 \r
333 //==========================================================================\r
334 \r
335 //actual global game varables!\r
336 typedef enum {\r
337         ENGI_EXIT,\r
338         ENGI_QUIT,\r
339         ENGI_RUN,\r
340         ENGI_INPUT,\r
341         ENGI_PAUSE\r
342 } engi_stat_t;\r
343 \r
344 typedef struct\r
345 {\r
346         video_t video;  // video settings variable\r
347         ca_t            ca;     // ca stuff\r
348         pm_t            pm;     // pm stuff\r
349         loghandle_t handle;     //handles for file logging\r
350         kurokku_t kurokku;      //clock struct\r
351         mminfo_t mm; mminfotype mmi;\r
352 } global_game_variables_t;\r
353 \r
354 extern char global_temp_status_text[512];\r
355 #ifdef __WATCOMC__\r
356 #define EINVFMT EMFILE\r
357 #endif\r
358 #endif /* _TYPEDEFSTRUCT_H_ */\r