]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_tdef.h
165b5fd2f5eba1916dbc80f5c08defe45b23d161
[16.git] / src / lib / 16_tdef.h
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2017 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 #define BDOFSCONV (unsigned __near)\r
41 #define BOFS page[1].data\r
42 #define DOFS page[0].data\r
43 \r
44 #define CONFIGNAME "config.16"\r
45 \r
46 /*\r
47  * typedefs of the game variables!\r
48  */\r
49 typedef struct {\r
50         byte *data;\r
51         word width;\r
52         word height;\r
53         byte *palette;\r
54         word offset;\r
55 } bitmap_t;\r
56 \r
57 typedef struct {\r
58         byte far **data;\r
59         word ntiles;            // the number of tiles\r
60         word twidth;    // width of the tiles\r
61         word theight;   // height of the tiles\r
62         byte *palette;  // palette for the tile set\r
63 } tileset_t;\r
64 \r
65 typedef struct {\r
66         byte far *plane[4];     // 4 planes of image data\r
67         word width;                     // width of the image (spread across 4 planes)\r
68         word height;            // height of the image (spread across 4 planes)\r
69         word pwidth;            // the number of bytes in each plane\r
70         byte *palette;\r
71 } planar_buf_t;\r
72 \r
73 //from 16_sprit.h\r
74 #ifdef  __WATCOMC__\r
75 #include <hw/vga/vrl.h>\r
76 \r
77 typedef struct vrs_container{\r
78         // Size of a .vrs blob in memory\r
79         // minus header\r
80         dword data_size;\r
81         union{\r
82                 byte far *buffer;\r
83                 struct vrs_header far *vrs_hdr;\r
84         };\r
85         // Array of corresponding vrl line offsets\r
86         vrl1_vgax_offset_t **vrl_line_offsets;\r
87 } vrs_container_t;\r
88 \r
89 typedef struct vrl_container{\r
90         // Size of a .vrl blob in memory\r
91         // minus header\r
92         dword data_size;\r
93         union{\r
94                 byte far *buffer;\r
95                 struct vrl1_vgax_header far *vrl_header;\r
96         };\r
97         // Pointer to a corresponding vrl line offsets struct\r
98         vrl1_vgax_offset_t *line_offsets;\r
99 } vrl_container_t;\r
100 \r
101 typedef struct sprite\r
102 {\r
103         // VRS container from which we will extract animation and image data\r
104         vrs_container_t spritesheet;\r
105         // Container for a vrl sprite\r
106         vrl_container_t sprite_vrl_cont;\r
107         // Current sprite id\r
108         int curr_spri_id;\r
109         // Index of a current sprite in an animation sequence\r
110         int curr_anim_spri;\r
111         // Current animation sequence\r
112         struct vrs_animation_list_entry_t *curr_anim_list;\r
113         // Index of current animation in relevant VRS offsets table\r
114         int curr_anim;\r
115         // Delay in time units untill we should change sprite\r
116         int delay;\r
117         // Position of sprite on screen\r
118         int x, y;\r
119 } sprite_t;\r
120 #endif\r
121 \r
122 //newer structs\r
123 typedef struct\r
124 {\r
125         int x; //entity exact position on the viewable map\r
126         int y; //entity exact position on the viewable map\r
127         int tx; //entity tile position on the viewable map\r
128         int ty; //entity tile position on the viewable map\r
129         int triggerx; //entity's trigger box tile position on the viewable map\r
130         int triggery; //entity's trigger box tile position on the viewable map\r
131 //      int sheetsetx; //NOT USED YET! entity sprite sheet set on the image x\r
132 //      int sheetsety; //NOT USED YET! entity sprite sheet set on the image y\r
133         nibble d;               //direction to render sprite!! wwww\r
134         nibble pred;    //prev. direction for animation changing\r
135         word dire;              //sprite in use\r
136         nibble q;               //loop variable for anumation and locking the playing to compleate the animation cycle to prevent issues with misalignment www\r
137         word speed;             //entity speed!\r
138         word spt;               //speed per tile\r
139 #ifdef  __WATCOMC__\r
140         sprite_t spri; // sprite used by entity\r
141 #endif\r
142         sword hp; //hitpoints of the entity\r
143         nibble overdraww, overdrawh;    // how many pixels to "overdraw" so that moving sprites with edge pixels don't leave streaks.\r
144                                                 // if the sprite's edge pixels are clear anyway, you can set this to 0.\r
145         nibble /*int*/ persist_aniframe;    // gonna be increased to 1 before being used, so 0 is ok for default\r
146 } entity_t;\r
147 \r
148 typedef struct\r
149 {\r
150         int x; //entity exact position on the viewable map\r
151         int y; //entity exact position on the viewable map\r
152         int tx; //entity tile position on the viewable map\r
153         int ty; //entity tile position on the viewable map\r
154 \r
155 #ifdef  __WATCOMC__\r
156         sprite_t spri; // sprite used by entity\r
157 #endif\r
158         sword hp; //hitpoints of the entity\r
159 } static_map_entity_t;\r
160 \r
161 //===========================================================================//\r
162 \r
163 //TODO: 16_mm and 16_ca must handle this\r
164 typedef struct {\r
165 #ifdef  __WATCOMC__\r
166         sprite_t *spri;                 // I will probibaly use this --sparky4\r
167 #endif\r
168         word tileHeight, tileWidth;     //defined by mapfile\r
169         unsigned int rows, cols;\r
170         byte    imgname[8];             //image file of tileset (set to 8 because DOS ^^;)\r
171 } tiles_t;      //seems to be the tileset properties\r
172 \r
173 //TODO: 16_mm and 16_ca must handle this\r
174 //TODO: add variables from 16_ca\r
175 typedef struct {\r
176         byte    layername[8];\r
177         byte    *data;                  //TODO: 16_mm and 16_ca must handle this\r
178 } mapl_t;       //map layer array type def\r
179 \r
180 #define MAPPLANES               3\r
181 typedef struct {\r
182         //long          planestart[3];\r
183         //unsigned      planelength[3];\r
184         mapl_t layerdata[MAPPLANES];    // mapdata for multilayer (map index values for rendering which image on the tile)\r
185         tiles_t *tiles;         //TODO: 16_mm and 16_ca must handle this        // tilesets for layers (currently ony 4 can be loaded wwww)\r
186         int width, height;              //this has to be signed!\r
187         byte name[16];\r
188 } map_t;\r
189 \r
190 //===================================//\r
191 \r
192 typedef struct{\r
193         word tw;                                /* screen width in tiles */\r
194         word th;                                /* screen height in tiles */\r
195         word tilesw;                            /* virtual screen width in tiles */\r
196         word tilesh;                            /* virtual screen height in tiles */\r
197         sword tilemidposscreenx;        /* middle tile x position */    /* needed for scroll system to work accordingly */\r
198         sword tilemidposscreeny;        /* middle tile y position */    /* needed for scroll system to work accordingly */\r
199         sword tileplayerposscreenx;     /* player position on screen */ /* needed for scroll and map system to work accordingly */\r
200         sword tileplayerposscreeny;     /* player position on screen */ /* needed for scroll and map system to work accordingly */\r
201 } pagetileinfo_t;\r
202 \r
203 typedef struct {\r
204         nibble/*word*/ id;      /* the Identification number of the page~ For layering~ */\r
205         byte far* data; /* the data for the page */\r
206         pagetileinfo_t ti;      // the tile information of the page\r
207         word dx;                /* col we are viewing on virtual screen (on page[0]) */ /* off screen buffer on the left size */\r
208         word dy;                /* row we are viewing on virtual screen (on page[0]) */ /* off screen buffer on the top size */\r
209         word sw;                /* screen width */      /* resolution */\r
210         word sh;                /* screen heigth */     /* resolution */\r
211         word width;             /* virtual width of the page */\r
212         word height;    /* virtual height of the page */\r
213         word stridew;   /* width/4 */   /* VGA */\r
214         word pagesize;  /* page size */\r
215         word pi;                /* increment page by this much to preserve location */\r
216         int tlx,tly;\r
217 //newer vars\r
218 //TODO: find where they are used\r
219         sword delta;                    // How much should we shift the page for smooth scrolling\r
220 } page_t;\r
221 \r
222 //from 16_in\r
223 //==========================================================================\r
224 #define KeyInt          9       // The keyboard ISR number\r
225 \r
226 //\r
227 // mouse constants\r
228 //\r
229 #define MReset          0\r
230 #define MButtons        3\r
231 #define MDelta          11\r
232 \r
233 #define MouseInt        0x33\r
234 //#define       Mouse(x)        _AX = x,geninterrupt(MouseInt)\r
235 \r
236 //\r
237 // joystick constants\r
238 //\r
239 #define JoyScaleMax             32768\r
240 #define JoyScaleShift   8\r
241 #define MaxJoyValue             5000\r
242 \r
243 #define MaxPlayers      4\r
244 #define MaxKbds         2\r
245 #define MaxJoys         2\r
246 #define NumCodes        128\r
247 \r
248 typedef byte            ScanCode;\r
249 \r
250 typedef enum            {\r
251                                                 //ctrl_None,                            // MDM (GAMERS EDGE) - added\r
252                                                 ctrl_Keyboard,\r
253                                                         ctrl_Keyboard1 = ctrl_Keyboard,ctrl_Keyboard2,\r
254                                                 ctrl_Joystick,\r
255                                                         ctrl_Joystick1 = ctrl_Joystick,ctrl_Joystick2,\r
256                                                 ctrl_Mouse,\r
257                                         } ControlType;\r
258 typedef enum            {\r
259                                                 motion_Left = -1,motion_Up = -1,\r
260                                                 motion_None = 0,\r
261                                                 motion_Right = 1,motion_Down = 1\r
262                                         } Motion;\r
263 typedef enum            {               // Quick lookup for total direction\r
264                                                 /*dir_NorthWest,        */dir_North,/*  dir_NorthEast,*/\r
265                                                 dir_West,               dir_None,       dir_East,\r
266                                                 /*dir_SouthWest,        */dir_South/*,  dir_SouthEast*/\r
267                                         } Direction;\r
268 typedef struct          {\r
269                                                 boolean near    button0,button1,button2,button3;\r
270                                                 int     near            x,y;\r
271                                                 Motion  near    xaxis,yaxis;\r
272                                                 Direction near  dir;\r
273                                         } CursorInfo;\r
274 \r
275 typedef struct          {\r
276                                                 ScanCode near   button0,button1,\r
277                                                                         //upleft,\r
278                                                                         up,\r
279                                                                         down,\r
280                                                                         left,\r
281                                                                         right\r
282                                                                         //upright,\r
283                                                                         //downleft,\r
284                                                                         //,downright\r
285                                                                         ;\r
286                                         } KeyboardDef;\r
287 typedef struct          {\r
288                                                 word    near    joyMinX,joyMinY,\r
289                                                                         threshMinX,threshMinY,\r
290                                                                         threshMaxX,threshMaxY,\r
291                                                                         joyMaxX,joyMaxY,\r
292                                                                         joyMultXL,joyMultYL,\r
293                                                                         joyMultXH,joyMultYH;\r
294                                         } JoystickDef;\r
295 \r
296 typedef struct instat {\r
297         boolean         CapsLock;\r
298         ScanCode        CurCode,LastCode;\r
299 \r
300         boolean         Keyboard[NumCodes];\r
301         boolean         Paused;\r
302         char            LastASCII;\r
303         ScanCode        LastScan;\r
304 } inst_t;\r
305 \r
306 typedef struct// inconfig\r
307 {\r
308         boolean         IN_Started;\r
309 //\r
310 // configuration variables\r
311 //\r
312         boolean         JoysPresent[MaxJoys],\r
313                                         MousePresent,\r
314                                         JoyPadPresent;\r
315 \r
316 //      Global variables\r
317         KeyboardDef     KbdDefs[MaxKbds];\r
318         JoystickDef     JoyDefs[MaxJoys];\r
319         inst_t  *inst;\r
320 } in_info_t;\r
321 \r
322 //==========================================================================\r
323 \r
324 typedef struct\r
325 {\r
326         entity_t near   enti;\r
327 #ifdef  __WATCOMC__\r
328         //struct sprite *spri;  //supposively the sprite sheet data\r
329         //memptr                gr;\r
330 #endif\r
331 //      bitmap_t        *data;          //supposively the sprite sheet data//old format\r
332 //      bitmap_t        bmp;\r
333 \r
334         //input\r
335         byte near               pdir;   //previous direction~ used in IN_16 in IN_ReadControl()\r
336         CursorInfo              info;\r
337         ControlType     Controls;\r
338         word walktype;\r
339 //newer vars\r
340         int dx, dy, delta;      //TODO: what is this? ^^\r
341 } player_t;\r
342 \r
343 //===========================================//\r
344 \r
345 typedef struct\r
346 {\r
347         int profilehandle,debughandle,showmemhandle;\r
348         int heaphandle;\r
349 } loghandle_t;\r
350 \r
351 typedef struct\r
352 {\r
353         word frames_per_second;\r
354         clock_t t;\r
355         dword tiku;             //frames passed\r
356         word clock_start;       //timer start\r
357         word *clock;    //current time on clock\r
358         boolean fpscap; //cap the fps var\r
359         nibble wcpu;    //stored value of cpu type\r
360 } kurokku_t;\r
361 \r
362 //===================================//\r
363 #define PALSIZE                 768     //vga\r
364 #define NUMCHUNKS               416     //keen\r
365 #define MAXSCANLINES    240     // size of ylookup table\r
366 \r
367 #define MAXSHIFTS               4\r
368 #define STARTSPRITES    0       //temp\r
369 \r
370 typedef struct\r
371 {\r
372         int     width,\r
373                 height,\r
374                 orgx,orgy,\r
375                 xl,yl,xh,yh,\r
376                 shifts;\r
377 } spritetabletype;\r
378 \r
379 typedef struct\r
380 {\r
381         unsigned        sourceoffset[MAXSHIFTS];\r
382         unsigned        planesize[MAXSHIFTS];\r
383         unsigned        width[MAXSHIFTS];\r
384         byte            data[];\r
385 } spritetype;           // the memptr for each sprite points to this\r
386 \r
387 typedef struct\r
388 {\r
389         int width,height;\r
390 } pictabletype;\r
391 \r
392 //video\r
393 typedef struct\r
394 {\r
395         word    tileHeight, tileWidth;  //defined by mapfile\r
396         word    quadwh;                 //preproccessed quad size of tilewidth and tileheight\r
397 } tile_dimention_t;\r
398 \r
399 #define MAXSCROLLEDGES 6\r
400 typedef struct\r
401 {\r
402         unsigned        panx,pany;              // panning adjustments inside port in pixels\r
403         unsigned        pansx,pansy;\r
404         unsigned        panadjust;              // panx/pany adjusted by screen resolution\r
405         int             hscrollblocks,vscrollblocks;\r
406         int             hscrolledge[MAXSCROLLEDGES],vscrolledge[MAXSCROLLEDGES];\r
407 } pan_t;\r
408 \r
409 typedef struct\r
410 {\r
411 //----  ylookup[MAXSCANLINES],\r
412         unsigned int offscreen_ofs;\r
413         unsigned int pattern_ofs;\r
414 //+-+-  unsigned        bufferofs,linewidth,displayofs;\r
415         pan_t           pan;\r
416 \r
417 } ofs_t;        //unfinished\r
418 \r
419 typedef struct\r
420 {\r
421 //doslib origi vars\r
422         byte far * omemptr;\r
423         byte vga_draw_stride;\r
424         byte vga_draw_stride_limit;             // further X clipping\r
425 //end of doslib origi vars\r
426         boolean __near rss;             //render sprite switch\r
427         boolean __near bgps;            //bg preservation render switch between old and new\r
428 } vga_state_t;\r
429 \r
430 typedef struct\r
431 {\r
432         boolean VL_Started,VL_Initiated;\r
433         char old_mode;          //old video mode before game!\r
434         sword curr_mode;                //modex curent mode\r
435         byte palette[PALSIZE], dpal[PALSIZE];   //palette array\r
436         page_t page[MAXPAGE];   //can be used as a pointer to root page[0]\r
437         word vmem_remain;       //remaining video memory\r
438         byte num_of_pages;      //number of actual pages\r
439         vga_state_t     vga_state;\r
440         sword __near sprifilei;         //player file's i\r
441         nibble __near p;                        //render page number\r
442         nibble __near sp;                       //show page number(for showpage)\r
443         boolean __near dorender;        //page flip, showpage, or render        if true\r
444         word pr[MAXPAGE][4];    //render sections of pages (this is supposed to be set up to draw sections of the screen if updated)\r
445 \r
446         nibble sfip;            //shinku_fps_indicator_page; // we're on page 1 now, shinku(). follow along please or it will not be visible.\r
447         ofs_t   ofs;            //offset vars used for doslib\r
448         word    vh;             //video combined height\r
449         tile_dimention_t        td;\r
450         //0000word startclk; float clk, tickclk;        //timer\r
451         //wolf3d vars\r
452         boolean screenfaded;\r
453         word            bordercolor;\r
454         boolean fastpalette;\r
455         byte            far     palette1[256][3],far palette2[256][3];\r
456         pictabletype    _seg *pictable;\r
457         //keen/cata vars\r
458 //      spritetabletype _seg *spritetable;\r
459 //      unsigned        *shifttabletable[8];\r
460 } video_t;\r
461 \r
462 //from scroll16\r
463 //==========================================================================\r
464 typedef struct\r
465 {\r
466         map_t *map;\r
467         page_t *page;\r
468         int tx,ty; //appears to be the top left tile position on the viewable screen map\r
469         word dxThresh,dyThresh; //Threshold for physical tile switch\r
470         video_t *video; //pointer to game variables of the video\r
471         kurokku_t *kurokku;     //pointer to game variables of the kurokku\r
472         nibble __near *p;       // pointer to video's render page num\r
473         nibble __near *sp;      // pointer to video's show page num\r
474         int dx, dy;     // draw row and col var\r
475 //newer vars!\r
476         int delta, d;\r
477 } map_view_t;\r
478 /* Map is presumed to:\r
479  * 1. Have all the required layers and tilesets within itself\r
480  * 2. Have a 'fence' around accessible blocks to simplify boundary logic\r
481  * 3. Have a persistent map and tile size among the layers\r
482  * Map view is presumed to:\r
483  * 1. Calculate, store and update a panning info, which includes, but not limited to:\r
484  *      combined layer information, actual map representation (reflecting real state of the game),\r
485  *      pixel shift for smooth tile scrolling.\r
486  * 2. Provide ways to draw a visible part of map. For simplicity with smooth scrolling,\r
487  *      additional row/column is always drawn at the each side of the map. This implies that 'fence'\r
488  *      should have a sprite too. Map is drawn left-to-right, top-to-bottom.\r
489  */\r
490 \r
491 //==========================================================================\r
492 \r
493 //from 16_mm\r
494 //==========================================================================\r
495 \r
496 #define MAXBLOCKS               800//kd=1300 wolf3d=700 cata=600\r
497 \r
498 typedef struct mmblockstruct\r
499 {\r
500         unsigned        start,length;\r
501         unsigned        attributes;\r
502         memptr          *useptr;        // pointer to the segment start\r
503         struct mmblockstruct far *next;\r
504 } mmblocktype;\r
505 \r
506 typedef struct mmshowmemoryinfo\r
507 {\r
508         word x,y;\r
509         mmblocktype far *scan;\r
510 } mmshowmemoryinfo_t;\r
511 \r
512 typedef struct\r
513 {\r
514         dword   nearheap,farheap,EMSmem,XMSmem,mainmem;\r
515 //      boolean         PMStarted, MainPresent, EMSPresent, XMSPresent;\r
516 } mminfotype;\r
517 \r
518 typedef struct\r
519 {\r
520         boolean         mmstarted, bombonerror, mmerror;\r
521         void far        *farheap;\r
522 #ifdef __BORLANDC__\r
523         void            *nearheap;\r
524 #endif\r
525 #ifdef __WATCOMC__\r
526         void __near     *nearheap;\r
527 #endif\r
528 //----  unsigned int            EMSVer;\r
529 //----  word numUMBs,UMBbase[MAXUMBS];\r
530 //----  word                    totalEMSpages, freeEMSpages, EMSpagesmapped, EMSHandle, EMSPageFrame;\r
531 //----  dword   numUMBs,UMBbase[MAXUMBS];\r
532         mmblocktype     far mmblocks[MAXBLOCKS],far *mmhead,far *mmfree,far *mmrover,far *mmnew;\r
533         memptr  bufferseg;      //Allocates bufferseg misc buffer\r
534 } mminfo_t;\r
535 \r
536 //==========================================================================\r
537 \r
538 \r
539 //from 16_pm\r
540 //==========================================================================\r
541 \r
542 //      NOTE! PMPageSize must be an even divisor of EMSPageSize, and >= 1024\r
543 #define EMSPageSize             16384\r
544 #define EMSPageSizeSeg  (EMSPageSize >> 4)\r
545 #define EMSPageSizeKB   (EMSPageSize >> 10)\r
546 #define EMSFrameCount   4\r
547 #define PMPageSize              4096\r
548 #define PMPageSizeSeg   (PMPageSize >> 4)\r
549 #define PMPageSizeKB    (PMPageSize >> 10)\r
550 #define PMEMSSubPage    (EMSPageSize / PMPageSize)\r
551 \r
552 #define PMMinMainMem    10                      // Min acceptable # of pages from main\r
553 #define PMMaxMainMem    100                     // Max number of pages in main memory\r
554 \r
555 #define PMThrashThreshold       1       // Number of page thrashes before panic mode\r
556 #define PMUnThrashThreshold     5       // Number of non-thrashing frames before leaving panic mode\r
557 \r
558 typedef enum\r
559                 {\r
560                         pml_Unlocked,\r
561                         pml_Locked\r
562                 } PMLockType;\r
563 \r
564 typedef enum\r
565                 {\r
566                         pmba_Unused = 0,\r
567                         pmba_Used = 1,\r
568                         pmba_Allocated = 2\r
569                 } PMBlockAttr;\r
570 \r
571 typedef struct\r
572                 {\r
573                         dword   offset;         // Offset of chunk into file\r
574                         word            length;         // Length of the chunk\r
575 \r
576                         int                     xmsPage;        // If in XMS, (xmsPage * PMPageSize) gives offset into XMS handle\r
577 \r
578                         PMLockType      locked;         // If set, this page can't be purged\r
579                         int                     emsPage;        // If in EMS, logical page/offset into page\r
580                         int                     mainPage;       // If in Main, index into handle array\r
581 \r
582                         dword   lastHit;        // Last frame number of hit\r
583                 } PageListStruct;\r
584 \r
585 typedef struct\r
586                 {\r
587                         int                     baseEMSPage;    // Base EMS page for this phys frame\r
588                         dword   lastHit;                // Last frame number of hit\r
589                 } EMSListStruct;\r
590 \r
591 //      Main Mem specific variables\r
592 typedef struct\r
593 {\r
594         boolean                 MainPresent;\r
595         memptr                  MainMemPages[PMMaxMainMem];\r
596         PMBlockAttr             MainMemUsed[PMMaxMainMem];\r
597         int                             MainPagesAvail;\r
598 } pm_mmi_t;\r
599 \r
600 //      EMS specific variables\r
601 typedef struct\r
602 {\r
603         boolean                 EMSPresent;\r
604         unsigned int                    EMSVer;\r
605         word                    EMSAvail,EMSPagesAvail,EMSHandle,\r
606                                         EMSPageFrame,EMSPhysicalPage;\r
607         word                    totalEMSpages, freeEMSpages, EMSpagesmapped;\r
608         EMSListStruct   EMSList[EMSFrameCount];\r
609 } pm_emmi_t;\r
610 \r
611 //      XMS specific variables\r
612 typedef struct\r
613 {\r
614         boolean                 XMSPresent;\r
615         word                    XMSAvail,XMSPagesAvail,XMSHandle;//,XMSVer;\r
616         dword                   XMSDriver;\r
617         int                             XMSProtectPage;// = -1;\r
618 } pm_xmmi_t;\r
619 \r
620 //      File specific variables\r
621 typedef struct\r
622 {\r
623         char                    PageFileName[13];// = {"VSWAP."};\r
624         int                             PageFile;// = -1;\r
625         word                    ChunksInFile;\r
626         word                    PMSpriteStart,PMSoundStart;\r
627 } pm_fi_t;\r
628 \r
629 //      General usage variables\r
630 typedef struct\r
631 {\r
632         boolean                 PMStarted,\r
633                                         PMPanicMode,\r
634                                         PMThrashing;\r
635         word                    XMSPagesUsed,\r
636                                         EMSPagesUsed,\r
637                                         MainPagesUsed,\r
638                                         PMNumBlocks;\r
639         long                    PMFrameCount;\r
640         PageListStruct  far *PMPages,\r
641                                         _seg *PMSegPages;\r
642         pm_mmi_t        mm;\r
643         pm_emmi_t       emm;\r
644         pm_xmmi_t       xmm;\r
645         pm_fi_t fi;\r
646 } pm_t;\r
647 \r
648 //==========================================================================\r
649 \r
650 //for 16_sd\r
651 //==========================================================================\r
652 #pragma pack(push,1)\r
653 typedef struct imf_entry\r
654 {\r
655         byte            reg,data;\r
656         word            delay;\r
657 } imf_entry_t;\r
658 #pragma pack(pop)\r
659 \r
660 typedef struct\r
661 {\r
662         volatile unsigned long irq0_ticks;//=0;\r
663         volatile unsigned int irq0_cnt,irq0_add,irq0_max;//=0;\r
664         imf_entry_t*    imf_music;//=NULL;\r
665         imf_entry_t*    imf_play_ptr;//=NULL;\r
666         imf_entry_t*    imf_music_end;//=NULL;\r
667         word            imf_delay_countdown;//=0;\r
668 } sd_t;\r
669 \r
670 //==========================================================================\r
671 \r
672 //from 16_ca\r
673 //==========================================================================\r
674 \r
675 #define NOMAPS\r
676 #define NOGRAPHICS\r
677 #define NOAUDIO\r
678 \r
679 #define MAPHEADERLINKED\r
680 //#define GRHEADERLINKED\r
681 #define AUDIOHEADERLINKED\r
682 \r
683 #define NUMMAPS         4//39\r
684 #define NUMSNDCHUNKS            4//3\r
685 //#define NUMPICS               4//132//wolf3d wl6\r
686 \r
687 #define STRUCTPIC       0\r
688 #define CASVT           dword   //*start var type\r
689 \r
690 \r
691 #define DATADIR         "data/"\r
692 #define GDICTNAME       DATADIR"vgadict."\r
693 #define GHEADNAME       DATADIR"vgahead."\r
694 #define GFILENAME       DATADIR"vgagraph."\r
695 #define EXTENSION       "hb1"\r
696 \r
697 \r
698 typedef struct\r
699 {\r
700   word bit0,bit1;       // 0-255 is a character, > is a pointer to a node\r
701 } huffnode;\r
702 \r
703 typedef struct\r
704 {\r
705         long            planestart[3];\r
706         unsigned        planelength[3];\r
707         unsigned        width,height;\r
708         char            name[16];\r
709 } maptype;\r
710 \r
711 typedef struct\r
712 {\r
713         int             mapon, mapnum;\r
714         maptype         _seg    *mapheaderseg[NUMMAPS];\r
715 } ca_mapinfo_t;\r
716 \r
717 typedef struct\r
718 {\r
719         int                     maphandle;              // handle to MAPTEMP / GAMEMAPS\r
720         int                     grhandle;               // handle to EGAGRAPH\r
721         int                     audiohandle;    // handle to AUDIOT / AUDIO\r
722 } ca_handle_t;\r
723 /*\r
724 16/wf3d8086/id_ca.c:    grstarts = (long _seg *)FP_SEG(&EGAhead);\r
725 16/wf3d8086/id_ca.c:    tinf = (byte _seg *)FP_SEG(&maphead);\r
726 16/wf3d8086/id_ca.c:            pos = ((mapfiletype     _seg *)tinf)->headeroffsets[i];\r
727 16/wf3d8086/id_ca.c:    audiostarts = (long _seg *)FP_SEG(&audiohead);\r
728 16/wf3d8086/id_ca.c:            ((mapfiletype _seg *)tinf)->RLEWtag);\r
729 16/wf3d8086/id_ca.c:            ((mapfiletype _seg *)tinf)->RLEWtag);\r
730 16/wf3d8086/id_ca.c:                                    source = (byte _seg *)bufferseg+(pos-bufferstart);\r
731 */\r
732 typedef struct  //TODO: USE THIS!!!!\r
733 {\r
734         byte    ca_levelbit,ca_levelnum;\r
735         ca_handle_t             file;           //files to open\r
736         ca_mapinfo_t    camap;\r
737 \r
738         byte            _seg    *tinf;//?? where in the id engine is this used and what is it? --sparky4\r
739         unsigned        _seg    *mapsegs[MAPPLANES];\r
740         void            _seg    *grsegs[NUMCHUNKS];\r
741         byte            far             grneeded[NUMCHUNKS];\r
742         word            _seg *audiosegs[NUMSNDCHUNKS];//long\r
743 \r
744         CASVT           _seg    *grstarts;      // array of offsets in egagraph, -1 for sparse//long\r
745         CASVT           _seg    *audiostarts;   // array of offsets in audio / audiot//long\r
746 \r
747 #ifdef GRHEADERLINKED\r
748         huffnode        *grhuffman;\r
749 #else\r
750         huffnode        grhuffman[255];\r
751 #endif\r
752 \r
753 #ifdef AUDIOHEADERLINKED\r
754         huffnode        *audiohuffman;\r
755 #else\r
756         huffnode        audiohuffman[255];\r
757 #endif\r
758 \r
759         CASVT           chunkcomplen,chunkexplen;//long\r
760 \r
761         sd_t            sd;\r
762         //TODO: extend! and learn from keen/wolf/catacomb's code wwww\r
763         memptr  spribuff;\r
764 } ca_t;\r
765 \r
766 //==========================================================================\r
767 \r
768 //actual global game varables!\r
769 /*typedef struct {\r
770         boolean clearmem;\r
771 } vidsw_t;\r
772 \r
773 typedef struct {\r
774         vidsw_t vsw;\r
775 } sw_t;*/\r
776 \r
777 #ifdef __WATCOMC__\r
778 extern char global_temp_status_text[512];\r
779 extern char global_temp_status_text2[512];\r
780 #endif\r
781 \r
782 typedef struct glob_game_vars\r
783 {\r
784         video_t video;  // video settings variable\r
785         ca_t            ca;     // ca stuff\r
786         pm_t            pm;     // pm stuff\r
787         loghandle_t     handle; //handles for file logging\r
788         kurokku_t       kurokku;        //clock struct\r
789         mminfo_t        mm; mminfotype  mmi;    // mm stuff\r
790         in_info_t       in;             // 16_in info\r
791         player_t        player[MaxPlayers];     // player vars\r
792         map_view_t      mv[4];\r
793 //      sw_t            sw;\r
794         boolean DLStarted;\r
795 } global_game_variables_t;\r
796 \r
797 #endif /* _TYPEDEFSTRUCT_H_ */\r