]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_tdef.h
16_ca needs huge amounts of work and I should remember what needs to be done soon...
[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         spritetabletype _seg *spritetable;\r
458         unsigned        *shifttabletable[8];\r
459 } video_t;\r
460 \r
461 //from scroll16\r
462 //==========================================================================\r
463 typedef struct\r
464 {\r
465         map_t *map;\r
466         page_t *page;\r
467         int tx,ty; //appears to be the top left tile position on the viewable screen map\r
468         word dxThresh,dyThresh; //Threshold for physical tile switch\r
469         video_t *video; //pointer to game variables of the video\r
470         kurokku_t *kurokku;     //pointer to game variables of the kurokku\r
471         nibble __near *p;       // pointer to video's render page num\r
472         nibble __near *sp;      // pointer to video's show page num\r
473         int dx, dy;     // draw row and col var\r
474 //newer vars!\r
475         int delta, d;\r
476 } map_view_t;\r
477 /* Map is presumed to:\r
478  * 1. Have all the required layers and tilesets within itself\r
479  * 2. Have a 'fence' around accessible blocks to simplify boundary logic\r
480  * 3. Have a persistent map and tile size among the layers\r
481  * Map view is presumed to:\r
482  * 1. Calculate, store and update a panning info, which includes, but not limited to:\r
483  *      combined layer information, actual map representation (reflecting real state of the game),\r
484  *      pixel shift for smooth tile scrolling.\r
485  * 2. Provide ways to draw a visible part of map. For simplicity with smooth scrolling,\r
486  *      additional row/column is always drawn at the each side of the map. This implies that 'fence'\r
487  *      should have a sprite too. Map is drawn left-to-right, top-to-bottom.\r
488  */\r
489 \r
490 //==========================================================================\r
491 \r
492 //from 16_mm\r
493 //==========================================================================\r
494 \r
495 #define MAXBLOCKS               800//kd=1300 wolf3d=700 cata=600\r
496 \r
497 typedef struct mmblockstruct\r
498 {\r
499         unsigned        start,length;\r
500         unsigned        attributes;\r
501         memptr          *useptr;        // pointer to the segment start\r
502         struct mmblockstruct far *next;\r
503 } mmblocktype;\r
504 \r
505 typedef struct mmshowmemoryinfo\r
506 {\r
507         word x,y;\r
508         mmblocktype far *scan;\r
509 } mmshowmemoryinfo_t;\r
510 \r
511 typedef struct\r
512 {\r
513         dword   nearheap,farheap,EMSmem,XMSmem,mainmem;\r
514 //      boolean         PMStarted, MainPresent, EMSPresent, XMSPresent;\r
515 } mminfotype;\r
516 \r
517 typedef struct\r
518 {\r
519         boolean         mmstarted, bombonerror, mmerror;\r
520         void far        *farheap;\r
521 #ifdef __BORLANDC__\r
522         void            *nearheap;\r
523 #endif\r
524 #ifdef __WATCOMC__\r
525         void __near     *nearheap;\r
526 #endif\r
527 //----  unsigned int            EMSVer;\r
528 //----  word numUMBs,UMBbase[MAXUMBS];\r
529 //----  word                    totalEMSpages, freeEMSpages, EMSpagesmapped, EMSHandle, EMSPageFrame;\r
530 //----  dword   numUMBs,UMBbase[MAXUMBS];\r
531         mmblocktype     far mmblocks[MAXBLOCKS],far *mmhead,far *mmfree,far *mmrover,far *mmnew;\r
532         memptr  bufferseg;      //Allocates bufferseg misc buffer\r
533 } mminfo_t;\r
534 \r
535 //==========================================================================\r
536 \r
537 \r
538 //from 16_pm\r
539 //==========================================================================\r
540 \r
541 //      NOTE! PMPageSize must be an even divisor of EMSPageSize, and >= 1024\r
542 #define EMSPageSize             16384\r
543 #define EMSPageSizeSeg  (EMSPageSize >> 4)\r
544 #define EMSPageSizeKB   (EMSPageSize >> 10)\r
545 #define EMSFrameCount   4\r
546 #define PMPageSize              4096\r
547 #define PMPageSizeSeg   (PMPageSize >> 4)\r
548 #define PMPageSizeKB    (PMPageSize >> 10)\r
549 #define PMEMSSubPage    (EMSPageSize / PMPageSize)\r
550 \r
551 #define PMMinMainMem    10                      // Min acceptable # of pages from main\r
552 #define PMMaxMainMem    100                     // Max number of pages in main memory\r
553 \r
554 #define PMThrashThreshold       1       // Number of page thrashes before panic mode\r
555 #define PMUnThrashThreshold     5       // Number of non-thrashing frames before leaving panic mode\r
556 \r
557 typedef enum\r
558                 {\r
559                         pml_Unlocked,\r
560                         pml_Locked\r
561                 } PMLockType;\r
562 \r
563 typedef enum\r
564                 {\r
565                         pmba_Unused = 0,\r
566                         pmba_Used = 1,\r
567                         pmba_Allocated = 2\r
568                 } PMBlockAttr;\r
569 \r
570 typedef struct\r
571                 {\r
572                         dword   offset;         // Offset of chunk into file\r
573                         word            length;         // Length of the chunk\r
574 \r
575                         int                     xmsPage;        // If in XMS, (xmsPage * PMPageSize) gives offset into XMS handle\r
576 \r
577                         PMLockType      locked;         // If set, this page can't be purged\r
578                         int                     emsPage;        // If in EMS, logical page/offset into page\r
579                         int                     mainPage;       // If in Main, index into handle array\r
580 \r
581                         dword   lastHit;        // Last frame number of hit\r
582                 } PageListStruct;\r
583 \r
584 typedef struct\r
585                 {\r
586                         int                     baseEMSPage;    // Base EMS page for this phys frame\r
587                         dword   lastHit;                // Last frame number of hit\r
588                 } EMSListStruct;\r
589 \r
590 //      Main Mem specific variables\r
591 typedef struct\r
592 {\r
593         boolean                 MainPresent;\r
594         memptr                  MainMemPages[PMMaxMainMem];\r
595         PMBlockAttr             MainMemUsed[PMMaxMainMem];\r
596         int                             MainPagesAvail;\r
597 } pm_mmi_t;\r
598 \r
599 //      EMS specific variables\r
600 typedef struct\r
601 {\r
602         boolean                 EMSPresent;\r
603         unsigned int                    EMSVer;\r
604         word                    EMSAvail,EMSPagesAvail,EMSHandle,\r
605                                         EMSPageFrame,EMSPhysicalPage;\r
606         word                    totalEMSpages, freeEMSpages, EMSpagesmapped;\r
607         EMSListStruct   EMSList[EMSFrameCount];\r
608 } pm_emmi_t;\r
609 \r
610 //      XMS specific variables\r
611 typedef struct\r
612 {\r
613         boolean                 XMSPresent;\r
614         word                    XMSAvail,XMSPagesAvail,XMSHandle;//,XMSVer;\r
615         dword                   XMSDriver;\r
616         int                             XMSProtectPage;// = -1;\r
617 } pm_xmmi_t;\r
618 \r
619 //      File specific variables\r
620 typedef struct\r
621 {\r
622         char                    PageFileName[13];// = {"VSWAP."};\r
623         int                             PageFile;// = -1;\r
624         word                    ChunksInFile;\r
625         word                    PMSpriteStart,PMSoundStart;\r
626 } pm_fi_t;\r
627 \r
628 //      General usage variables\r
629 typedef struct\r
630 {\r
631         boolean                 PMStarted,\r
632                                         PMPanicMode,\r
633                                         PMThrashing;\r
634         word                    XMSPagesUsed,\r
635                                         EMSPagesUsed,\r
636                                         MainPagesUsed,\r
637                                         PMNumBlocks;\r
638         long                    PMFrameCount;\r
639         PageListStruct  far *PMPages,\r
640                                         _seg *PMSegPages;\r
641         pm_mmi_t        mm;\r
642         pm_emmi_t       emm;\r
643         pm_xmmi_t       xmm;\r
644         pm_fi_t fi;\r
645 } pm_t;\r
646 \r
647 //==========================================================================\r
648 \r
649 //for 16_sd\r
650 //==========================================================================\r
651 #pragma pack(push,1)\r
652 typedef struct imf_entry\r
653 {\r
654         byte            reg,data;\r
655         word            delay;\r
656 } imf_entry_t;\r
657 #pragma pack(pop)\r
658 \r
659 typedef struct\r
660 {\r
661         volatile unsigned long irq0_ticks;//=0;\r
662         volatile unsigned int irq0_cnt,irq0_add,irq0_max;//=0;\r
663         imf_entry_t*    imf_music;//=NULL;\r
664         imf_entry_t*    imf_play_ptr;//=NULL;\r
665         imf_entry_t*    imf_music_end;//=NULL;\r
666         word            imf_delay_countdown;//=0;\r
667 } sd_t;\r
668 \r
669 //==========================================================================\r
670 \r
671 //from 16_ca\r
672 //==========================================================================\r
673 \r
674 #define NOMAPS\r
675 //#define NOGRAPHICS\r
676 #define NOAUDIO\r
677 \r
678 #define MAPHEADERLINKED\r
679 //#define GRHEADERLINKED\r
680 #define AUDIOHEADERLINKED\r
681 \r
682 #define NUMMAPS         4//39\r
683 #define NUMSNDCHUNKS            4//3\r
684 //#define NUMPICS               4//132//wolf3d wl6\r
685 \r
686 #define STRUCTPIC       0\r
687 #define CASVT           dword   //*start var type\r
688 \r
689 \r
690 #define DATADIR         "data/"\r
691 #define GDICTNAME       DATADIR"vgadict."\r
692 #define GHEADNAME       DATADIR"vgahead."\r
693 #define GFILENAME       DATADIR"vgagraph."\r
694 #define EXTENSION       "hb1"\r
695 \r
696 \r
697 typedef struct\r
698 {\r
699   word bit0,bit1;       // 0-255 is a character, > is a pointer to a node\r
700 } huffnode;\r
701 \r
702 typedef struct\r
703 {\r
704         long            planestart[3];\r
705         unsigned        planelength[3];\r
706         unsigned        width,height;\r
707         char            name[16];\r
708 } maptype;\r
709 \r
710 typedef struct\r
711 {\r
712         int             mapon, mapnum;\r
713         maptype         _seg    *mapheaderseg[NUMMAPS];\r
714 } ca_mapinfo_t;\r
715 \r
716 typedef struct\r
717 {\r
718         int                     maphandle;              // handle to MAPTEMP / GAMEMAPS\r
719         int                     grhandle;               // handle to EGAGRAPH\r
720         int                     audiohandle;    // handle to AUDIOT / AUDIO\r
721 } ca_handle_t;\r
722 /*\r
723 16/wf3d8086/id_ca.c:    grstarts = (long _seg *)FP_SEG(&EGAhead);\r
724 16/wf3d8086/id_ca.c:    tinf = (byte _seg *)FP_SEG(&maphead);\r
725 16/wf3d8086/id_ca.c:            pos = ((mapfiletype     _seg *)tinf)->headeroffsets[i];\r
726 16/wf3d8086/id_ca.c:    audiostarts = (long _seg *)FP_SEG(&audiohead);\r
727 16/wf3d8086/id_ca.c:            ((mapfiletype _seg *)tinf)->RLEWtag);\r
728 16/wf3d8086/id_ca.c:            ((mapfiletype _seg *)tinf)->RLEWtag);\r
729 16/wf3d8086/id_ca.c:                                    source = (byte _seg *)bufferseg+(pos-bufferstart);\r
730 */\r
731 typedef struct  //TODO: USE THIS!!!!\r
732 {\r
733         byte    ca_levelbit,ca_levelnum;\r
734         ca_handle_t             file;           //files to open\r
735         ca_mapinfo_t    camap;\r
736 \r
737         byte            _seg    *tinf;//?? where in the id engine is this used and what is it? --sparky4\r
738         unsigned        _seg    *mapsegs[MAPPLANES];\r
739         void            _seg    *grsegs[NUMCHUNKS];\r
740         byte            far             grneeded[NUMCHUNKS];\r
741         word            _seg *audiosegs[NUMSNDCHUNKS];//long\r
742 \r
743         CASVT           _seg    *grstarts;      // array of offsets in egagraph, -1 for sparse//long\r
744         CASVT           _seg    *audiostarts;   // array of offsets in audio / audiot//long\r
745 \r
746 #ifdef GRHEADERLINKED\r
747         huffnode        *grhuffman;\r
748 #else\r
749         huffnode        grhuffman[255];\r
750 #endif\r
751 \r
752 #ifdef AUDIOHEADERLINKED\r
753         huffnode        *audiohuffman;\r
754 #else\r
755         huffnode        audiohuffman[255];\r
756 #endif\r
757 \r
758         CASVT           chunkcomplen,chunkexplen;//long\r
759 \r
760         sd_t            sd;\r
761         //TODO: extend! and learn from keen/wolf/catacomb's code wwww\r
762         memptr  spribuff;\r
763 } ca_t;\r
764 \r
765 //==========================================================================\r
766 \r
767 //actual global game varables!\r
768 /*typedef struct {\r
769         boolean clearmem;\r
770 } vidsw_t;\r
771 \r
772 typedef struct {\r
773         vidsw_t vsw;\r
774 } sw_t;*/\r
775 \r
776 #ifdef __WATCOMC__\r
777 extern char global_temp_status_text[512];\r
778 extern char global_temp_status_text2[512];\r
779 #endif\r
780 \r
781 typedef struct glob_game_vars\r
782 {\r
783         video_t video;  // video settings variable\r
784         ca_t            ca;     // ca stuff\r
785         pm_t            pm;     // pm stuff\r
786         loghandle_t     handle; //handles for file logging\r
787         kurokku_t       kurokku;        //clock struct\r
788         mminfo_t        mm; mminfotype  mmi;    // mm stuff\r
789         in_info_t       in;             // 16_in info\r
790         player_t        player[MaxPlayers];     // player vars\r
791         map_view_t      mv[4];\r
792 //      sw_t            sw;\r
793         boolean DLStarted;\r
794 } global_game_variables_t;\r
795 \r
796 #endif /* _TYPEDEFSTRUCT_H_ */\r