KEY.H 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /*
  2. THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
  3. SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
  4. END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
  5. ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
  6. IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
  7. SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
  8. FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
  9. CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
  10. AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
  11. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
  12. */
  13. /*
  14. * $Source: f:/miner/source/bios/rcs/key.h $
  15. * $Revision: 1.19 $
  16. * $Author: john $
  17. * $Date: 1994/10/24 13:58:12 $
  18. *
  19. * Header for keyboard functions
  20. *
  21. * $Log: key.h $
  22. * Revision 1.19 1994/10/24 13:58:12 john
  23. * Hacked in support for pause key onto code 0x61.
  24. *
  25. * Revision 1.18 1994/10/21 15:17:10 john
  26. * Added KEY_PRINT_SCREEN
  27. *
  28. * Revision 1.17 1994/08/31 12:22:13 john
  29. * Added KEY_DEBUGGED
  30. *
  31. * Revision 1.16 1994/08/24 18:53:50 john
  32. * Made Cyberman read like normal mouse; added dpmi module; moved
  33. * mouse from assembly to c. Made mouse buttons return time_down.
  34. *
  35. * Revision 1.15 1994/08/18 14:56:16 john
  36. * *** empty log message ***
  37. *
  38. * Revision 1.14 1994/08/08 10:43:24 john
  39. * Recorded when a key was pressed for key_inkey_time.
  40. *
  41. * Revision 1.13 1994/06/17 17:17:28 john
  42. * Added keyd_time_last_key_was_pressed or something like that.
  43. *
  44. * Revision 1.12 1994/04/29 12:14:19 john
  45. * Locked all memory used during interrupts so that program
  46. * won't hang when using virtual memory.
  47. *
  48. * Revision 1.11 1994/02/17 15:57:14 john
  49. * Changed key libary to C.
  50. *
  51. * Revision 1.10 1994/01/31 08:34:09 john
  52. * Fixed reversed lshift/rshift keys.
  53. *
  54. * Revision 1.9 1994/01/18 10:58:17 john
  55. * *** empty log message ***
  56. *
  57. * Revision 1.8 1993/10/16 19:24:43 matt
  58. * Added new function key_clear_times() & key_clear_counts()
  59. *
  60. * Revision 1.7 1993/10/15 10:17:09 john
  61. * added keyd_last_key_pressed and released for use with recorder.
  62. *
  63. * Revision 1.6 1993/10/06 16:20:37 john
  64. * fixed down arrow bug
  65. *
  66. * Revision 1.5 1993/10/04 13:26:42 john
  67. * changed the #defines for scan codes.
  68. *
  69. * Revision 1.4 1993/09/28 11:35:20 john
  70. * added key_peekkey
  71. *
  72. * Revision 1.3 1993/09/20 18:36:43 john
  73. * *** empty log message ***
  74. *
  75. * Revision 1.1 1993/07/10 13:10:39 matt
  76. * Initial revision
  77. *
  78. *
  79. */
  80. #ifndef _KEY_H
  81. #define _KEY_H
  82. #include "fix.h"
  83. #include "types.h"
  84. //==========================================================================
  85. // This installs the int9 vector and initializes the keyboard in buffered
  86. // ASCII mode. key_close simply undoes that.
  87. extern void key_init();
  88. extern void key_close();
  89. //==========================================================================
  90. // These are configuration parameters to setup how the buffer works.
  91. // set keyd_buffer_type to 0 for no key buffering.
  92. // set it to 1 and it will buffer scancodes.
  93. extern char keyd_buffer_type;
  94. extern char keyd_repeat; // 1=allow repeating, 0=dont allow repeat
  95. // keyd_editor_mode... 0=game mode, 1=editor mode.
  96. // Editor mode makes key_down_time always return 0 if modifiers are down.
  97. extern char keyd_editor_mode;
  98. // Time in seconds when last key was pressed...
  99. extern volatile int keyd_time_when_last_pressed;
  100. //==========================================================================
  101. // These are the "buffered" keypress routines. Use them by setting the
  102. // "keyd_buffer_type" variable.
  103. extern void key_flush(); // Clears the 256 char buffer
  104. extern int key_checkch(); // Returns 1 if a char is waiting
  105. extern int key_getch(); // Gets key if one waiting other waits for one.
  106. extern int key_inkey(); // Gets key if one, other returns 0.
  107. extern int key_inkey_time(fix *time); // Same as inkey, but returns the time the key was pressed down.
  108. extern int key_peekkey(); // Same as inkey, but doesn't remove key from buffer.
  109. extern char key_to_ascii(int keycode );
  110. extern void key_debug(); // Does an INT3
  111. //==========================================================================
  112. // These are the unbuffered routines. Index by the keyboard scancode.
  113. // Set to 1 if the key is currently down, else 0
  114. extern volatile unsigned char keyd_pressed[];
  115. extern volatile unsigned char keyd_last_pressed;
  116. extern volatile unsigned char keyd_last_released;
  117. // Returns the seconds this key has been down since last call.
  118. extern fix key_down_time(int scancode);
  119. // Returns number of times key has went from up to down since last call.
  120. extern unsigned int key_down_count(int scancode);
  121. // Returns number of times key has went from down to up since last call.
  122. extern unsigned int key_up_count(int scancode);
  123. // Clears the times & counts used by the above functions
  124. // Took out... use key_flush();
  125. //void key_clear_times();
  126. //void key_clear_counts();
  127. #define KEY_SHIFTED 0x100
  128. #define KEY_ALTED 0x200
  129. #define KEY_CTRLED 0x400
  130. #define KEY_DEBUGGED 0x800
  131. #define KEY_0 0x0B
  132. #define KEY_1 0x02
  133. #define KEY_2 0x03
  134. #define KEY_3 0x04
  135. #define KEY_4 0x05
  136. #define KEY_5 0x06
  137. #define KEY_6 0x07
  138. #define KEY_7 0x08
  139. #define KEY_8 0x09
  140. #define KEY_9 0x0A
  141. #define KEY_A 0x1E
  142. #define KEY_B 0x30
  143. #define KEY_C 0x2E
  144. #define KEY_D 0x20
  145. #define KEY_E 0x12
  146. #define KEY_F 0x21
  147. #define KEY_G 0x22
  148. #define KEY_H 0x23
  149. #define KEY_I 0x17
  150. #define KEY_J 0x24
  151. #define KEY_K 0x25
  152. #define KEY_L 0x26
  153. #define KEY_M 0x32
  154. #define KEY_N 0x31
  155. #define KEY_O 0x18
  156. #define KEY_P 0x19
  157. #define KEY_Q 0x10
  158. #define KEY_R 0x13
  159. #define KEY_S 0x1F
  160. #define KEY_T 0x14
  161. #define KEY_U 0x16
  162. #define KEY_V 0x2F
  163. #define KEY_W 0x11
  164. #define KEY_X 0x2D
  165. #define KEY_Y 0x15
  166. #define KEY_Z 0x2C
  167. #define KEY_MINUS 0x0C
  168. #define KEY_EQUAL 0x0D
  169. #define KEY_DIVIDE 0x35
  170. #define KEY_SLASH 0x2B
  171. #define KEY_COMMA 0x33
  172. #define KEY_PERIOD 0x34
  173. #define KEY_SEMICOL 0x27
  174. #define KEY_LBRACKET 0x1A
  175. #define KEY_RBRACKET 0x1B
  176. #define KEY_RAPOSTRO 0x28
  177. #define KEY_LAPOSTRO 0x29
  178. #define KEY_ESC 0x01
  179. #define KEY_ENTER 0x1C
  180. #define KEY_BACKSP 0x0E
  181. #define KEY_TAB 0x0F
  182. #define KEY_SPACEBAR 0x39
  183. #define KEY_NUMLOCK 0x45
  184. #define KEY_SCROLLOCK 0x46
  185. #define KEY_CAPSLOCK 0x3A
  186. #define KEY_LSHIFT 0x2A
  187. #define KEY_RSHIFT 0x36
  188. #define KEY_LALT 0x38
  189. #define KEY_RALT 0xB8
  190. #define KEY_LCTRL 0x1D
  191. #define KEY_RCTRL 0x9D
  192. #define KEY_F1 0x3B
  193. #define KEY_F2 0x3C
  194. #define KEY_F3 0x3D
  195. #define KEY_F4 0x3E
  196. #define KEY_F5 0x3F
  197. #define KEY_F6 0x40
  198. #define KEY_F7 0x41
  199. #define KEY_F8 0x42
  200. #define KEY_F9 0x43
  201. #define KEY_F10 0x44
  202. #define KEY_F11 0x57
  203. #define KEY_F12 0x58
  204. #define KEY_PAD0 0x52
  205. #define KEY_PAD1 0x4F
  206. #define KEY_PAD2 0x50
  207. #define KEY_PAD3 0x51
  208. #define KEY_PAD4 0x4B
  209. #define KEY_PAD5 0x4C
  210. #define KEY_PAD6 0x4D
  211. #define KEY_PAD7 0x47
  212. #define KEY_PAD8 0x48
  213. #define KEY_PAD9 0x49
  214. #define KEY_PADMINUS 0x4A
  215. #define KEY_PADPLUS 0x4E
  216. #define KEY_PADPERIOD 0x53
  217. #define KEY_PADDIVIDE 0xB5
  218. #define KEY_PADMULTIPLY 0x37
  219. #define KEY_PADENTER 0x9C
  220. #define KEY_INSERT 0xD2
  221. #define KEY_HOME 0xC7
  222. #define KEY_PAGEUP 0xC9
  223. #define KEY_DELETE 0xD3
  224. #define KEY_END 0xCF
  225. #define KEY_PAGEDOWN 0xD1
  226. #define KEY_UP 0xC8
  227. #define KEY_DOWN 0xD0
  228. #define KEY_LEFT 0xCB
  229. #define KEY_RIGHT 0xCD
  230. #define KEY_PRINT_SCREEN 0xB7
  231. #define KEY_PAUSE 0x61
  232. #endif
  233.