OSDN Git Service

wwww
[proj16/16.git] / 16 / src / lib / lib_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 #ifndef _LIBHEAD_H_
24 #define _LIBHEAD_H_
25 #include <i86.h>
26 #include <dos.h>
27 #include <stdio.h>
28 #include <conio.h> // just for wait
29 #include <time.h> // just for wait
30 #include <stdlib.h>
31 #include <ctype.h>
32 #include "src/lib/types.h"
33
34 /* Control codes for all keys on the keyboard */
35 //here temperarly
36 /*
37 #define KEY_A           (0x1E)
38 #define KEY_B           (0x30)
39 #define KEY_C           (0x2E)
40 #define KEY_D           (0x20)
41 #define KEY_E           (0x12)
42 #define KEY_F           (0x21)
43 #define KEY_G           (0x22)
44 #define KEY_H           (0x23)
45 #define KEY_I           (0x17)
46 #define KEY_J           (0x24)
47 #define KEY_K           (0x25)
48 #define KEY_L           (0x26)
49 #define KEY_M           (0x32)
50 #define KEY_N           (0x31)
51 #define KEY_O           (0x18)
52 #define KEY_P           (0x19)
53 #define KEY_Q           (0x10)
54 #define KEY_R           (0x13)
55 #define KEY_S           (0x1F)
56 #define KEY_T           (0x14)
57 #define KEY_U           (0x16)
58 #define KEY_V           (0x2F)
59 #define KEY_W           (0x11)
60 #define KEY_X           (0x2D)
61 #define KEY_Y           (0x15)
62 #define KEY_Z           (0x2C)
63 #define KEY_1           (0x02)
64 #define KEY_2           (0x03)
65 #define KEY_3           (0x04)
66 #define KEY_4           (0x05)
67 #define KEY_5           (0x06)
68 #define KEY_6           (0x07)
69 #define KEY_7           (0x08)
70 #define KEY_8           (0x09)
71 #define KEY_9           (0x0A)
72 #define KEY_0           (0x0B)
73 #define KEY_DASH                (0x0C)  // -_
74 #define KEY_EQUAL               (0x0D)  // =+
75 #define KEY_LBRACKET    (0x1A)  // [{
76 #define KEY_RBRACKET    (0x1B)  // ]}
77 #define KEY_SEMICOLON   (0x27)  // ;:
78 #define KEY_RQUOTE      (0x28)  // '"
79 #define KEY_LQUOTE      (0x29)  // `~
80 #define KEY_PERIOD      (0x33)  // .>
81 #define KEY_COMMA               (0x34)  // ,<
82 #define KEY_SLASH               (0x35)  // /?
83 #define KEY_BACKSLASH   (0x2B)  // \|
84 #define KEY_F1          (0x3B)
85 #define KEY_F2          (0x3C)
86 #define KEY_F3          (0x3D)
87 #define KEY_F4          (0x3E)
88 #define KEY_F5          (0x3F)
89 #define KEY_F6          (0x40)
90 #define KEY_F7          (0x41)
91 #define KEY_F8          (0x42)
92 #define KEY_F9          (0x43)
93 #define KEY_F10         (0x44)
94 #define KEY_ESC         (0x01)
95 #define KEY_BACKSPACE   (0x0E)
96 #define KEY_TAB         (0x0F)
97 #define KEY_ENTER               (0x1C)
98 #define KEY_CONTROL     (0x1D)
99 #define KEY_LSHIFT      (0x2A)
100 #define KEY_RSHIFT      (0x36)
101 #define KEY_PRTSC               (0x37)
102 #define KEY_ALT         (0x38)
103 #define KEY_SPACE               (0x39)
104 #define KEY_CAPSLOCK    (0x3A)
105 #define KEY_NUMLOCK     (0x45)
106 #define KEY_SCROLLLOCK  (0x46)
107 #define KEY_HOME                (0x47)
108 #define KEY_UP          (0x48)
109 #define KEY_PGUP                (0x49)
110 #define KEY_MINUS               (0x4A)
111 #define KEY_LEFT                (0x4B)
112 #define KEY_CENTER      (0x4C)
113 #define KEY_RIGHT               (0x4D)
114 #define KEY_PLUS                (0x4E)
115 #define KEY_END         (0x4F)
116 #define KEY_DOWN                (0x50)
117 #define KEY_PGDOWN      (0x51)
118 #define KEY_INS         (0x52)
119 #define KEY_DEL         (0x53)
120
121 #define KEY_LWIN                (0x73)
122 #define KEY_RWIN                (0x74)
123 #define KEY_MENU                (0x75)
124 */
125
126 static dword far* clockdw= (dword far*) 0x046C; /* 18.2hz clock */
127
128 #define nil     ((void *)0)
129
130 #define peekb(segm,ofs) (*(byte far*)MK_FP((segm),(ofs)))\r
131 #define peekw(segm,ofs) (*(word far*)MK_FP((segm),(ofs)))\r
132 #define pokeb(segm,ofs,value) (peekb((segm),(ofs)) = (byte)(value))\r
133 #define pokew(segm,ofs,value) (peekw((segm),(ofs)) = (word)(value))\r
134
135 typedef union REGPACK   regs_t;
136 typedef enum    {false,true}    boolean;
137
138 void wait(clock_t wait);
139 void* AllocateLargestFreeBlock(size_t* Size);
140 size_t GetFreeSize(void);
141 long int filesize(FILE *fp);
142 int US_CheckParm(char *parm,char **strings);
143
144 #endif/*_LIBHEAD_H_*/