input.hh 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_INPUT_HH
  9. #define G1_INPUT_HH
  10. #include "device/device.hh"
  11. #include "device/keys.hh"
  12. #include "player_type.hh"
  13. #include "time/time.hh"
  14. // This class will gather global key presses and store only those relavant to the game.
  15. // This should also allow playstation input to be inserted at this level.
  16. // Ussage :
  17. // if (g1_input.active(g1_input_class::LEFT))
  18. // move_to_the_left();
  19. class i4_key_matchup_class;
  20. class g1_input_class : public i4_event_handler_class
  21. {
  22. i4_key_matchup_class *matchup;
  23. public:
  24. enum in_type
  25. { LEFT =0,
  26. RIGHT,
  27. UP,
  28. DOWN,
  29. BUTTON_1,
  30. BUTTON_2,
  31. BUTTON_3,
  32. STRAFE_LEFT,
  33. STRAFE_RIGHT,
  34. STRAFE_MODIFIER,
  35. ZOOM_IN,
  36. ZOOM_OUT,
  37. ZOOM_UP,
  38. ZOOM_DOWN,
  39. ZOOM_LEFT,
  40. ZOOM_RIGHT,
  41. NUM_STANK_CONTROLS,
  42. };
  43. enum input_state { NOT_PRESSED,
  44. PRESSED,
  45. PRESSED_AND_RELEASED }; // this state is so we don't miss a button between
  46. // frames
  47. private:
  48. w8 in[NUM_STANK_CONTROLS];
  49. i4_time_class time_down[NUM_STANK_CONTROLS]; // time the key was pressed
  50. w32 time_qued[NUM_STANK_CONTROLS]; // milli secs of unprocessed time
  51. sw8 keys[I4_NUM_KEYS];
  52. g1_player_type command_player_num;
  53. i4_bool esc, cont;
  54. enum {CHEATCODE_BUFFERSIZE = 16};
  55. char cheat_code_buffer[CHEATCODE_BUFFERSIZE]; //keeps a buffer of the last 16 keys for whatever reason
  56. public:
  57. enum { MOUSE_SCROLL_LEFT=1,
  58. MOUSE_SCROLL_RIGHT=2,
  59. MOUSE_SCROLL_UP=4,
  60. MOUSE_SCROLL_DOWN=8 };
  61. int mouse_scroll_flags;
  62. i4_bool key_pressed;
  63. virtual void receive_event(i4_event *ev);
  64. void que_keys(i4_time_class cur_time);
  65. void commands_are_for_player(g1_player_type pl) { command_player_num=pl; }
  66. void acknowledge(); // called by game after it has examined all the key states
  67. // g1_input then changes all PRESSED_AND_RELEASED to NOT_PRESSED
  68. void init();
  69. char *grab_cheat_keys() { return cheat_code_buffer; }
  70. void clear_cheat_keys() { memset(cheat_code_buffer,0,CHEATCODE_BUFFERSIZE); }
  71. w32 deque_time(in_type t);
  72. i4_bool strafe_active() { return (i4_bool)(in[STRAFE_MODIFIER]); }
  73. i4_bool strafe_left() { return (i4_bool)(in[STRAFE_LEFT] || (in[LEFT] && strafe_active())); }
  74. i4_bool strafe_right() { return (i4_bool)(in[STRAFE_RIGHT] || (in[RIGHT] && strafe_active())); }
  75. i4_bool left() { return (i4_bool)(in[LEFT] && !strafe_active()); }
  76. i4_bool right() { return (i4_bool)(in[RIGHT] && !strafe_active()); }
  77. i4_bool up() { return in[UP]; }
  78. i4_bool down() { return in[DOWN]; }
  79. i4_bool button_1() { return in[BUTTON_1]; }
  80. i4_bool button_2() { return in[BUTTON_2]; }
  81. i4_bool button_3() { return in[BUTTON_3]; }
  82. i4_bool zoom_in() { return in[ZOOM_IN]; }
  83. i4_bool zoom_out() { return in[ZOOM_OUT]; }
  84. i4_bool zoom_up() { return in[ZOOM_UP]; }
  85. i4_bool zoom_down() { return in[ZOOM_DOWN]; }
  86. i4_bool zoom_left() { return in[ZOOM_LEFT]; }
  87. i4_bool zoom_right() { return in[ZOOM_RIGHT]; }
  88. i4_bool esc_pressed() { return esc; }
  89. void reset_esc() { esc=i4_F; }
  90. void uninit();
  91. char *name() { return "g1_input"; }
  92. };
  93. extern g1_input_class g1_input;
  94. #endif