]> 4ch.mooo.com Git - 16.git/blob - src/lib/typdefst.h
pbuf????
[16.git] / src / lib / typdefst.h
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\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/types.h"\r
27 \r
28 \r
29 #define AARED           "\x1b[41;31m"\r
30 #define AABLUE          "\x1b[44;34m"\r
31 #define AAGREEN "\x1b[42;32m"\r
32 #define AAYELLOW        "\x1b[43;33m"\r
33 #define AAGREY          "\x1b[47;37m"\r
34 #define AABLACK "\x1b[40;30m"\r
35 #define AAWHITE         "\x1b[47;37m"\r
36 #define AAMAGENTA       "\x1b[45;35m"\r
37 #define AARESET "\x1b[0m"\r
38 \r
39 /*\r
40  * typedefs of the game variables!\r
41  */\r
42 typedef struct {\r
43         word id;        /* the Identification number of the page~ For layering~ */\r
44         byte far* data; /* the data for the page */\r
45         word dx;                /* col we are viewing on the virtual screen */\r
46         word dy;                /* row we are viewing on the virtual screen */\r
47         word sw;                /* screen width */\r
48         word sh;                /* screen heigth */\r
49         word tilesw;            /* screen width in tiles */\r
50         word tilesh;            /* screen height in tiles */\r
51         word width;             /* virtual width of the page */\r
52         word height;    /* virtual height of the page */\r
53         word tw;\r
54         word th;\r
55         sword tilemidposscreenx;        /* middle tile position */\r
56         sword tilemidposscreeny;        /* middle tile position */\r
57         sword tileplayerposscreenx;     /* player position on screen */\r
58         sword tileplayerposscreeny;     /* player position on screen */\r
59 } page_t;\r
60 \r
61 typedef struct\r
62 {\r
63 //      int showmemhandle;\r
64         int                     profilehandle,debughandle;\r
65         int heaphandle;\r
66 } handle_t;\r
67 \r
68 typedef struct\r
69 {\r
70         word frames_per_second;\r
71         clock_t t;\r
72         dword tiku;             //frames passed\r
73         word clock_start;       //timer start\r
74         word *clock;    //current time on clock\r
75         boolean fpscap; //cap the fps var\r
76 } kurokku_t;\r
77 \r
78 typedef struct\r
79 {\r
80         long old_mode;  //old video mode before game!\r
81         page_t page[4]; //pointer to root page[0]\r
82 } video_t;\r
83 \r
84 typedef struct\r
85 {\r
86         video_t video;  // video settings variable\r
87         byte *pee;              // message for fps\r
88         handle_t handle;        //handles for file logging\r
89         kurokku_t kurokku;      //clock struct\r
90 } global_game_variables_t;\r
91 \r
92 #endif /* _TYPEDEFSTRUCT_H_ */\r