home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / bios / key1.h < prev    next >
C/C++ Source or Header  |  1998-06-08  |  5KB  |  162 lines

  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.1 $
  16.  * $Author: matt $
  17.  * $Date: 1993/07/10 13:10:39 $
  18.  *
  19.  * Header for keyboard functions
  20.  *
  21.  * $Log: key.h $
  22.  * Revision 1.1  1993/07/10  13:10:39  matt
  23.  * Initial revision
  24.  * 
  25.  *
  26.  */
  27.  
  28.  
  29. //==========================================================================
  30. // This installs the int9 vector and initializes the keyboard in buffered
  31. // ASCII mode. key_close simply undoes that.
  32. extern void key_init();
  33. extern void key_close();
  34.  
  35. //==========================================================================
  36. // These are configuration parameters to setup how the buffer works.
  37. // set keyd_buffer_type to 0 for no key buffering.
  38. // set it to 1 and it will buffer scancodes.
  39. extern char keyd_buffer_type;
  40. extern char keyd_repeat;        // 1=allow repeating, 0=dont allow repeat
  41.  
  42.  
  43. //==========================================================================
  44. // These are the "buffered" keypress routines.  Use them by setting the
  45. // "keyd_buffer_type" variable.
  46.  
  47. extern void key_flush();    // Clears the 256 char buffer
  48. extern int key_checkch();   // Returns 1 if a char is waiting
  49. extern int key_getch();     // Gets key if one waiting other waits for one.
  50. extern int key_inkey();     // Gets key if one, other returns 0.
  51.  
  52. extern char key_to_ascii(int keycode );
  53.  
  54. extern void key_debug();    // Does an INT3
  55.  
  56. //==========================================================================
  57. // These are the unbuffered routines. Index by the keyboard scancode.
  58.  
  59. // Set to 1 if the key is currently down, else 0
  60. extern char keyd_pressed[128];
  61.  
  62. // Returns the number of milliseconds this key has been down since last call.
  63. extern unsigned int key_down_time(int scancode);
  64.  
  65. // Returns number of times key has went from up to down since last call.
  66. extern unsigned int key_down_count(int scancode);
  67.  
  68. // Returns number of times key has went from down to up since last call.
  69. extern unsigned int key_up_count(int scancode);
  70.  
  71. #define KEY_SHIFTED  0x100
  72. #define KEY_ALTED    0x200
  73. #define KEY_CTRLED   0x400
  74.  
  75. #define KEY_ESC      0x01
  76. #define KEY_1        0x02
  77. #define KEY_2        0x03
  78. #define KEY_3        0x04
  79. #define KEY_4        0x05
  80. #define KEY_5        0x06
  81. #define KEY_6        0x07
  82. #define KEY_7        0x08
  83. #define KEY_8        0x09
  84. #define KEY_9        0x0A
  85. #define KEY_0        0x0B
  86. #define KEY_MINUS    0x0C
  87. #define KEY_EQUAL    0x0D
  88. #define KEY_BACKSP   0x0E
  89. #define KEY_TAB      0x0F
  90. #define KEY_Q        0x10
  91. #define KEY_W        0x11
  92. #define KEY_E        0x12
  93. #define KEY_R        0x13
  94. #define KEY_T        0x14
  95. #define KEY_Y        0x15
  96. #define KEY_U        0x16
  97. #define KEY_I        0x17
  98. #define KEY_O        0x18
  99. #define KEY_P        0x19
  100. #define KEY_LBRACKET 0x1A
  101. #define KEY_RBRACKET 0x1B
  102. #define KEY_ENTER    0x1C
  103. #define KEY_CTRL     0x1D
  104. #define KEY_A        0x1E
  105. #define KEY_S        0x1F
  106. #define KEY_D        0x20
  107. #define KEY_F        0x21
  108. #define KEY_G        0x22
  109. #define KEY_H        0x23
  110. #define KEY_J        0x24
  111. #define KEY_K        0x25
  112. #define KEY_L        0x26
  113. #define KEY_SEMICOL  0x27
  114. #define KEY_RAPOSTRO 0x28
  115. #define KEY_LAPOSTRO 0x29
  116. #define KEY_LSHIFT   0x2A
  117. #define KEY_SLASH    0x2B
  118. #define KEY_Z        0x2C
  119. #define KEY_X        0x2D
  120. #define KEY_C        0x2E
  121. #define KEY_V        0x2F
  122. #define KEY_B        0x30
  123. #define KEY_N        0x31
  124. #define KEY_M        0x32
  125. #define KEY_COMMA    0x33
  126. #define KEY_PERIOD   0x34
  127. #define KEY_DIVIDE   0x35
  128. #define KEY_RSHIFT   0x36
  129. #define KEY_ASTERIK  0x37
  130. #define KEY_ALT      0x38
  131. #define KEY_SPACEBAR 0x39
  132. #define KEY_CAPSLOCK 0x3A
  133. #define KEY_F1       0x3B
  134. #define KEY_F2       0x3C
  135. #define KEY_F3       0x3D
  136. #define KEY_F4       0x3E
  137. #define KEY_F5       0x3F
  138. #define KEY_F6       0x40
  139. #define KEY_F7       0x41
  140. #define KEY_F8       0x42
  141. #define KEY_F9       0x43
  142. #define KEY_F10      0x44
  143. #define KEY_NUMLOCK  0x45
  144. #define KEY_SCROLLCK 0x46
  145. #define KEY_HOME     0x47
  146. #define KEY_UP       0x48
  147. #define KEY_PGUP     0x49
  148. #define KEY_PADMINUS 0x4A
  149. #define KEY_LEFT     0x4B
  150. #define KEY_PAD5     0x4C
  151. #define KEY_RIGHT    0x4D
  152. #define KEY_PADPLUS  0x4E
  153. #define KEY_END      0x4F
  154. #define KEY_DOWN     0x50
  155. #define KEY_PGDN     0x51
  156. #define KEY_INS      0x52
  157. #define KEY_DEL      0x53
  158. #define KEY_F12      0x58
  159. #define KEY_F11      0x57
  160.  
  161.  
  162.