1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\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
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
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
23 #ifndef _TYPEDEFSTRUCT_H_
\r
24 #define _TYPEDEFSTRUCT_H_
\r
26 #include "src/lib/16_t.h"
\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
41 * typedefs of the game variables!
\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
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
67 //TODO: 16_mm and 16_ca must handle this
\r
69 bitmap_t far *btdata; //old
\r
70 planar_buf_t far *data; //old
\r
71 word tileHeight, tileWidth;
\r
72 unsigned int rows, cols;
\r
74 // boolean debug_text; //show the value of the tile! wwww
\r
75 // byte *debug_data;
\r
79 //TODO: 16_mm and 16_ca must handle this
\r
80 //TODO: add variables from 16_ca
\r
82 //long planestart[3];
\r
83 //unsigned planelength[3];
\r
84 byte *data; //TODO: 16_mm and 16_ca must handle this
\r
85 byte * far *layerdata; //TODO: 16_mm and 16_ca must handle this
\r
86 tiles_t *tiles; //TODO: 16_mm and 16_ca must handle this
\r
87 tiles_t * far *layertile; //TODO: 16_mm and 16_ca must handle this
\r
88 int width, height; //this has to be signed!
\r
92 //TODO USE THIS tile info
\r
94 word tw; /* screen width in tiles */
\r
95 word th; /* screen height in tiles */
\r
96 word tilesw; /* virtual screen width in tiles */
\r
97 word tilesh; /* virtual screen height in tiles */
\r
98 sword tilemidposscreenx; /* middle tile x position */ /* needed for scroll system to work accordingly */
\r
99 sword tilemidposscreeny; /* middle tile y position */ /* needed for scroll system to work accordingly */
\r
100 sword tileplayerposscreenx; /* player position on screen */ /* needed for scroll and map system to work accordingly */
\r
101 sword tileplayerposscreeny; /* player position on screen */ /* needed for scroll and map system to work accordingly */
\r
105 nibble/*word*/ id; /* the Identification number of the page~ For layering~ */
\r
106 byte far* data; /* the data for the page */
\r
107 word dx; /* col we are viewing on virtual screen (on page[0]) */ /* off screen buffer on the left size */
\r
108 word dy; /* row we are viewing on virtual screen (on page[0]) */ /* off screen buffer on the top size */
\r
109 word sw; /* screen width */ /* resolution */
\r
110 word sh; /* screen heigth */ /* resolution */
\r
111 word tw; /* screen width in tiles */
\r
112 word th; /* screen height in tiles */
\r
113 word width; /* virtual width of the page */
\r
114 word height; /* virtual height of the page */
\r
115 word tilesw; /* virtual screen width in tiles */
\r
116 word tilesh; /* virtual screen height in tiles */
\r
117 sword tilemidposscreenx; /* middle tile x position */ /* needed for scroll system to work accordingly */
\r
118 sword tilemidposscreeny; /* middle tile y position */ /* needed for scroll system to work accordingly */
\r
119 sword tileplayerposscreenx; /* player position on screen */ /* needed for scroll and map system to work accordingly */
\r
120 sword tileplayerposscreeny; /* player position on screen */ /* needed for scroll and map system to work accordingly */
\r
121 word stridew; /* width/4 */ /* VGA */
\r
122 word pagesize; /* page size */
\r
123 word pi; /* increment page by this much to preserve location */
\r
125 //TODO: find where they are used
\r
126 sword delta; // How much should we shift the page for smooth scrolling
\r
132 int x; //entity exact position on the viewable map
\r
133 int y; //entity exact position on the viewable map
\r
134 int tx; //entity tile position on the viewable map
\r
135 int ty; //entity tile position on the viewable map
\r
136 int triggerx; //entity's trigger box tile position on the viewable map
\r
137 int triggery; //entity's trigger box tile position on the viewable map
\r
138 int sheetsetx; //NOT USED YET! entity sprite sheet set on the image x
\r
139 int sheetsety; //NOT USED YET! entity sprite sheet set on the image y
\r
140 nibble d; //direction to render sprite!! wwww
\r
141 nibble pred; //prev. direction for animation changing
\r
142 word dire; //sprite in use
\r
143 nibble q; //loop variable for anumation and locking the playing to compleate the animation cycle to prevent issues with misalignment www
\r
144 word speed; //entity speed!
\r
145 word spt; //speed per tile
\r
146 struct sprite *spri; // sprite used by entity
\r
147 sword hp; //hitpoints of the entity
\r
148 nibble overdraww, overdrawh; // how many pixels to "overdraw" so that moving sprites with edge pixels don't leave streaks.
\r
149 // if the sprite's edge pixels are clear anyway, you can set this to 0.
\r
150 nibble /*int*/ persist_aniframe; // gonna be increased to 1 before being used, so 0 is ok for default
\r
153 //TODO: MAKE THIS WWWW
\r
160 //TODO: MAKE THIS TO WWWW
\r
163 //vrs with sprite ....
\r
168 //==========================================================================
\r
169 typedef byte ScanCode;
\r
172 //ctrl_None, // MDM (GAMERS EDGE) - added
\r
174 ctrl_Keyboard1 = ctrl_Keyboard,ctrl_Keyboard2,
\r
176 ctrl_Joystick1 = ctrl_Joystick,ctrl_Joystick2,
\r
180 motion_Left = -1,motion_Up = -1,
\r
182 motion_Right = 1,motion_Down = 1
\r
185 dir_North,//dir_NorthEast,
\r
186 dir_West,//dir_Nortinest,
\r
188 dir_East,//,dir_SouthEast,
\r
189 dir_South,//dir_Soutinest,
\r
192 boolean near button0,button1,button2,button3;
\r
194 Motion near xaxis,yaxis;
\r
195 Direction near dir;
\r
199 ScanCode near button0,button1,
\r
211 word near joyMinX,joyMinY,
\r
212 threshMinX,threshMinY,
\r
213 threshMaxX,threshMaxY,
\r
215 joyMultXL,joyMultYL,
\r
216 joyMultXH,joyMultYH;
\r
219 //==========================================================================
\r
223 entity_t near enti;
\r
225 //struct sprite *spri; //supposively the sprite sheet data
\r
228 bitmap_t *data; //supposively the sprite sheet data//old format
\r
232 byte near pdir; //previous direction~ used in IN_16 in IN_ReadControl()
\r
234 ControlType Controls;
\r
237 int dx, dy, delta; //TODO: what is this? ^^
\r
240 //===========================================//
\r
244 int profilehandle,debughandle,showmemhandle;
\r
250 word frames_per_second;
\r
252 dword tiku; //frames passed
\r
253 word clock_start; //timer start
\r
254 word *clock; //current time on clock
\r
255 boolean fpscap; //cap the fps var
\r
259 #define NUMCHUNKS 416 //keen
\r
263 char old_mode; //old video mode before game!
\r
264 byte palette[768]; //palette array
\r
265 page_t page[MAXPAGE]; //can be used as a pointer to root page[0]
\r
266 word vmem_remain; //remaining video memory
\r
267 byte num_of_pages; //number of actual pages
\r
268 //doslib origi vars
\r
269 byte far * omemptr;
\r
270 byte vga_draw_stride;
\r
271 byte vga_draw_stride_limit; // further X clipping
\r
272 //end of doslib origi vars
\r
273 boolean __near rss; //render sprite switch
\r
274 sword __near sprifilei; //player file's i
\r
275 boolean __near p; //render page number //BLEH
\r
276 boolean __near r; //page flip, showpage, or render if true
\r
277 word pr[MAXPAGE][4]; //render sections of pages (this is supposed to be set up to draw sections of the screen if updated)
\r
279 nibble sfip; //shinku_fps_indicator_page; // we're on page 1 now, shinku(). follow along please or it will not be visible.
\r
280 nibble panp; //pan_t replacement
\r
281 word vh; //video combined height
\r
282 //0000word startclk; float clk, tickclk; //timer
\r
284 //TODO: find out how they are used
\r
285 byte grneeded[NUMCHUNKS];
\r
289 //==========================================================================
\r
291 #define MAXBLOCKS 1024
\r
294 typedef struct mmblockstruct
\r
297 //word start; dword length;
\r
298 word blob; //for data larger than 64k
\r
299 unsigned attributes;
\r
300 memptr *useptr; // pointer to the segment start
\r
301 struct mmblockstruct far *next;
\r
306 dword nearheap,farheap,EMSmem,XMSmem,mainmem;
\r
307 // boolean PMStarted, MainPresent, EMSPresent, XMSPresent;
\r
313 boolean mmstarted, bombonerror, mmerror;
\r
315 #ifdef __BORLANDC__
\r
319 void __near *nearheap;
\r
321 unsigned int EMSVer;
\r
322 word numUMBs,UMBbase[MAXUMBS];
\r
323 word totalEMSpages, freeEMSpages, EMSpagesmapped, EMSHandle, EMSPageFrame;
\r
324 //dword numUMBs,UMBbase[MAXUMBS];
\r
325 mmblocktype far mmblocks[MAXBLOCKS],far *mmhead,far *mmfree,far *mmrover,far *mmnew;
\r
328 //==========================================================================
\r
332 //==========================================================================
\r
334 // NOTE! PMPageSize must be an even divisor of EMSPageSize, and >= 1024
\r
335 #define EMSPageSize 16384
\r
336 #define EMSPageSizeSeg (EMSPageSize >> 4)
\r
337 #define EMSPageSizeKB (EMSPageSize >> 10)
\r
338 #define EMSFrameCount 4
\r
339 #define PMPageSize 4096
\r
340 #define PMPageSizeSeg (PMPageSize >> 4)
\r
341 #define PMPageSizeKB (PMPageSize >> 10)
\r
342 #define PMEMSSubPage (EMSPageSize / PMPageSize)
\r
344 #define PMMinMainMem 10 // Min acceptable # of pages from main
\r
345 #define PMMaxMainMem 100 // Max number of pages in main memory
\r
347 #define PMThrashThreshold 1 // Number of page thrashes before panic mode
\r
348 #define PMUnThrashThreshold 5 // Number of non-thrashing frames before leaving panic mode
\r
365 dword offset; // Offset of chunk into file
\r
366 word length; // Length of the chunk
\r
368 int xmsPage; // If in XMS, (xmsPage * PMPageSize) gives offset into XMS handle
\r
370 PMLockType locked; // If set, this page can't be purged
\r
371 int emsPage; // If in EMS, logical page/offset into page
\r
372 int mainPage; // If in Main, index into handle array
\r
374 dword lastHit; // Last frame number of hit
\r
379 int baseEMSPage; // Base EMS page for this phys frame
\r
380 dword lastHit; // Last frame number of hit
\r
383 // Main Mem specific variables
\r
386 boolean MainPresent;
\r
387 memptr MainMemPages[PMMaxMainMem];
\r
388 PMBlockAttr MainMemUsed[PMMaxMainMem];
\r
389 int MainPagesAvail;
\r
392 // EMS specific variables
\r
395 boolean EMSPresent;
\r
396 unsigned int EMSVer;
\r
397 word EMSAvail,EMSPagesAvail,EMSHandle,
\r
398 EMSPageFrame,EMSPhysicalPage;
\r
399 word totalEMSpages, freeEMSpages, EMSpagesmapped;
\r
400 EMSListStruct EMSList[EMSFrameCount];
\r
403 // XMS specific variables
\r
406 boolean XMSPresent;
\r
407 word XMSAvail,XMSPagesAvail,XMSHandle;//,XMSVer;
\r
409 int XMSProtectPage;// = -1;
\r
412 // File specific variables
\r
415 char PageFileName[13];// = {"VSWAP."};
\r
416 int PageFile;// = -1;
\r
418 word PMSpriteStart,PMSoundStart;
\r
421 // General usage variables
\r
432 PageListStruct far *PMPages;
\r
433 __SEGA *PMSegPages;
\r
440 //==========================================================================
\r
443 //==========================================================================
\r
445 #define NUMMAPS 4//39
\r
446 #define MAPPLANES 3
\r
450 word bit0,bit1; // 0-255 is a character, > is a pointer to a node
\r
456 __SEGA *mapsegs[4];
\r
457 __SEGA *mapheaderseg[NUMMAPS];
\r
463 int maphandle[4]; // handle to MAPTEMP / GAMEMAPS
\r
468 byte ca_levelbit,ca_levelnum;
\r
469 ca_handle_t file; //files to open
\r
470 ca_mapinfo_t camap;
\r
471 __SEGA *grsegs[NUMCHUNKS];
\r
472 byte far grneeded[NUMCHUNKS];
\r
476 //==========================================================================
\r
478 //actual global game varables!
\r
489 video_t video; // video settings variable
\r
490 ca_t ca; // ca stuff
\r
491 pm_t pm; // pm stuff
\r
492 loghandle_t handle; //handles for file logging
\r
493 kurokku_t kurokku; //clock struct
\r
494 mminfo_t mm; mminfotype mmi;
\r
495 } global_game_variables_t;
\r
497 extern char global_temp_status_text[512];
\r
499 #define EINVFMT EMFILE
\r
501 #endif /* _TYPEDEFSTRUCT_H_ */
\r