]> 4ch.mooo.com Git - 16.git/blob - 16/exmmtest/16_head.h
making a universal version ^^
[16.git] / 16 / exmmtest / 16_head.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22
23 /*
24 #if !defined(__LARGE__) && !defined(__COMPACT__) && !defined(__HUGE__)
25 #error Invalid memory model for compiling project 16
26 #endif
27 */
28
29 #if !defined(__i86__) && defined(__i386__)
30 #error i8088 only
31 #endif
32
33 #ifndef _LIBHEAD_H_
34 #define _LIBHEAD_H_
35 #include <io.h>
36 #include <dos.h>
37 #include <stdio.h>
38 #include <conio.h> // just for wait
39 #include <time.h> // just for wait
40 #include <stdlib.h>
41 #include <malloc.h>
42 #include <ctype.h>
43 //#include <unistd.h>
44 #include <fcntl.h>\r
45 #include <sys/stat.h>
46 #include <mem.h>
47 #include "../../src/lib/types.h"
48
49 /* Control codes for all keys on the keyboard */
50 //here temperarly
51 /*
52 #define KEY_A           (0x1E)
53 #define KEY_B           (0x30)
54 #define KEY_C           (0x2E)
55 #define KEY_D           (0x20)
56 #define KEY_E           (0x12)
57 #define KEY_F           (0x21)
58 #define KEY_G           (0x22)
59 #define KEY_H           (0x23)
60 #define KEY_I           (0x17)
61 #define KEY_J           (0x24)
62 #define KEY_K           (0x25)
63 #define KEY_L           (0x26)
64 #define KEY_M           (0x32)
65 #define KEY_N           (0x31)
66 #define KEY_O           (0x18)
67 #define KEY_P           (0x19)
68 #define KEY_Q           (0x10)
69 #define KEY_R           (0x13)
70 #define KEY_S           (0x1F)
71 #define KEY_T           (0x14)
72 #define KEY_U           (0x16)
73 #define KEY_V           (0x2F)
74 #define KEY_W           (0x11)
75 #define KEY_X           (0x2D)
76 #define KEY_Y           (0x15)
77 #define KEY_Z           (0x2C)
78 #define KEY_1           (0x02)
79 #define KEY_2           (0x03)
80 #define KEY_3           (0x04)
81 #define KEY_4           (0x05)
82 #define KEY_5           (0x06)
83 #define KEY_6           (0x07)
84 #define KEY_7           (0x08)
85 #define KEY_8           (0x09)
86 #define KEY_9           (0x0A)
87 #define KEY_0           (0x0B)
88 #define KEY_DASH                (0x0C)  // -_
89 #define KEY_EQUAL               (0x0D)  // =+
90 #define KEY_LBRACKET    (0x1A)  // [{
91 #define KEY_RBRACKET    (0x1B)  // ]}
92 #define KEY_SEMICOLON   (0x27)  // ;:
93 #define KEY_RQUOTE      (0x28)  // '"
94 #define KEY_LQUOTE      (0x29)  // `~
95 #define KEY_PERIOD      (0x33)  // .>
96 #define KEY_COMMA               (0x34)  // ,<
97 #define KEY_SLASH               (0x35)  // /?
98 #define KEY_BACKSLASH   (0x2B)  // \|
99 #define KEY_F1          (0x3B)
100 #define KEY_F2          (0x3C)
101 #define KEY_F3          (0x3D)
102 #define KEY_F4          (0x3E)
103 #define KEY_F5          (0x3F)
104 #define KEY_F6          (0x40)
105 #define KEY_F7          (0x41)
106 #define KEY_F8          (0x42)
107 #define KEY_F9          (0x43)
108 #define KEY_F10         (0x44)
109 #define KEY_ESC         (0x01)
110 #define KEY_BACKSPACE   (0x0E)
111 #define KEY_TAB         (0x0F)
112 #define KEY_ENTER               (0x1C)
113 #define KEY_CONTROL     (0x1D)
114 #define KEY_LSHIFT      (0x2A)
115 #define KEY_RSHIFT      (0x36)
116 #define KEY_PRTSC               (0x37)
117 #define KEY_ALT         (0x38)
118 #define KEY_SPACE               (0x39)
119 #define KEY_CAPSLOCK    (0x3A)
120 #define KEY_NUMLOCK     (0x45)
121 #define KEY_SCROLLLOCK  (0x46)
122 #define KEY_HOME                (0x47)
123 #define KEY_UP          (0x48)
124 #define KEY_PGUP                (0x49)
125 #define KEY_MINUS               (0x4A)
126 #define KEY_LEFT                (0x4B)
127 #define KEY_CENTER      (0x4C)
128 #define KEY_RIGHT               (0x4D)
129 #define KEY_PLUS                (0x4E)
130 #define KEY_END         (0x4F)
131 #define KEY_DOWN                (0x50)
132 #define KEY_PGDOWN      (0x51)
133 #define KEY_INS         (0x52)
134 #define KEY_DEL         (0x53)
135
136 #define KEY_LWIN                (0x73)
137 #define KEY_RWIN                (0x74)
138 #define KEY_MENU                (0x75)
139 */
140
141 static dword far* clockdw= (dword far*) 0x046C; /* 18.2hz clock */
142 //static dword clockdw=0;
143 extern  int                     profilehandle,debughandle;      //make it into game global
144
145 #define nil     ((void *)0)
146
147 #define __DEBUG__
148
149 //#define peekb(segm,ofs) (*(byte far*)MK_FP((segm),(ofs)))\r
150 //#define peekw(segm,ofs) (*(word far*)MK_FP((segm),(ofs)))\r
151 //#define pokeb(segm,ofs,value) (peekb((segm),(ofs)) = (byte)(value))\r
152 //#define pokew(segm,ofs,value) (peekw((segm),(ofs)) = (word)(value))\r
153
154 //typedef union REGPACK regs_t;
155 typedef enum    {false,true}    boolean;
156 //I hope this is correct!
157 //__self
158 typedef void _seg * memptr;
159 //typedef void __based(__self) * memptr;
160 //typedef __segment * memptr;
161 typedef struct
162 {\r
163         int old_mode;   //old video mode before game!
164 } global_game_variables_t;
165
166 /* local function */\r
167 void wait(clock_t wait);
168 void* AllocateLargestFreeBlock(size_t* Size);
169 size_t GetFreeSize(void);
170 void far *AllocateLargestFarFreeBlock(size_t* Size);
171 size_t GetFarFreeSize(void);
172 long int filesize(FILE *fp);
173 int US_CheckParm(char *parm,char **strings);
174
175 extern void CA_OpenDebug (void);\r
176 extern void CA_CloseDebug (void);
177
178 #endif/*_LIBHEAD_H_*/