OSDN Git Service

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