input.cc 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. #include "input.hh"
  9. #include "device/kernel.hh"
  10. #include "resources.hh"
  11. #include "human.hh"
  12. #include "g1_speed.hh"
  13. #include "error/alert.hh"
  14. #include "controller.hh"
  15. #include "device/key_man.hh"
  16. #include "statistics.hh"
  17. #include "app/app.hh"
  18. #include "window/win_evt.hh"
  19. #include "app/app.hh"
  20. #include "lisp/lisp.hh"
  21. enum
  22. {
  23. G1_MAIN_MENU=g1_input_class::NUM_STANK_CONTROLS,
  24. G1_TOGGLE_SHADOWS,
  25. G1_TOGGLE_STATS,
  26. G1_TOGGLE_TEXTURE_LOADING,
  27. G1_SHOW_HELP,
  28. G1_NUM_COMMANDS
  29. };
  30. g1_input_class g1_input;
  31. i4_bool g1_disable_all_drawing = i4_F;
  32. //(OLI)
  33. void (*g1_reload_dll)(void) = NULL;
  34. void g1_input_class::acknowledge()
  35. {
  36. for (w32 i=0; i<NUM_STANK_CONTROLS; i++)
  37. if (in[i]==PRESSED_AND_RELEASED)
  38. in[i]=NOT_PRESSED;
  39. }
  40. void g1_input_class::init()
  41. {
  42. // default to invalid keys (negative)
  43. memset(keys, 0xff, sizeof(keys));
  44. mouse_scroll_flags=0;
  45. i4_key_man.load(i4gets("keys_res_file"));
  46. matchup=new i4_key_matchup_class;
  47. char *cmds[]={"Move Left", // LEFT =0,
  48. "Move Right", // RIGHT,
  49. "Move Forward", // UP,
  50. "Move Backward", // DOWN,
  51. "Main Gun", // BUTTON_1,
  52. "Missiles", // BUTTON_2,
  53. "Chain Gun", // BUTTON_3,
  54. "Strafe Left", // STRAFE_LEFT,
  55. "Strafe Right", // STRAFE_RIGHT,
  56. "Strafe Mode", // STRAFE_MODIFIER,
  57. "Zoom In",
  58. "Zoom Out",
  59. "Zoom Up",
  60. "Zoom Down",
  61. "Zoom Left",
  62. "Zoom Right",
  63. "Main Menu",
  64. "Toggle Shadows",
  65. "Toggle Stats",
  66. "Toggle Texture Loading",
  67. "Help",
  68. 0};
  69. for (int i=0; cmds[i]; i++)
  70. matchup->add(cmds[i], i);
  71. memset(in,0,sizeof(in));
  72. memset(time_qued, 0, sizeof(time_qued));
  73. memset(cheat_code_buffer,0,CHEATCODE_BUFFERSIZE);
  74. esc=0;
  75. cont=i4_F;
  76. }
  77. void g1_input_class::uninit()
  78. {
  79. i4_key_man.uninit();
  80. delete matchup;
  81. matchup=0;
  82. }
  83. void g1_input_class::que_keys(i4_time_class cur_time)
  84. {
  85. for (int i=0; i<NUM_STANK_CONTROLS; i++)
  86. {
  87. if (in[i]==PRESSED)
  88. {
  89. sw32 add=cur_time.milli_diff(time_down[i]);
  90. if (add<0)
  91. // haven't reached the keypress yet
  92. add=0;
  93. if (add>1000/G1_HZ)
  94. add=1000/G1_HZ;
  95. time_qued[i]+=add;
  96. time_down[i].add_milli(add);
  97. }
  98. }
  99. }
  100. w32 g1_input_class::deque_time(in_type t)
  101. {
  102. w32 ret = time_qued[t];
  103. if (ret>1000/G1_HZ)
  104. ret=1000/G1_HZ;
  105. time_qued[t]-=ret;
  106. return ret;
  107. }
  108. void g1_input_class::receive_event(i4_event *ev)
  109. {
  110. if (ev->type()==i4_event::DO_COMMAND)
  111. {
  112. CAST_PTR(kev, i4_do_command_event_class, ev);
  113. int com=matchup->remap(kev->command_id);
  114. if (com>=0 && com<NUM_STANK_CONTROLS)
  115. {
  116. if (in[com]!= PRESSED)
  117. {
  118. time_down[com]=kev->time;
  119. in[com]=PRESSED;
  120. }
  121. }
  122. else if (memcmp(kev->command, "Build ", 6)==0)
  123. g1_human->build_unit(g1_get_object_type(kev->command+6)); // build an object
  124. else
  125. {
  126. switch (com)
  127. {
  128. case G1_MAIN_MENU : esc=i4_T; break;
  129. case G1_TOGGLE_STATS : g1_stat_counter.show(); break;
  130. case G1_SHOW_HELP : i4_kernel.send_event(i4_current_app, ev); break;
  131. }
  132. }
  133. }
  134. else if (ev->type()==i4_event::END_COMMAND)
  135. {
  136. CAST_PTR(kev,i4_end_command_event_class,ev);
  137. int com=matchup->remap(kev->command_id);
  138. if (com>=0 && com<NUM_STANK_CONTROLS)
  139. {
  140. sw32 add=kev->time.milli_diff(time_down[com]);
  141. if (add>0)
  142. {
  143. time_qued[com]+=add;
  144. time_down[com].add_milli(add);
  145. }
  146. if (in[com]==PRESSED)
  147. in[com]=PRESSED_AND_RELEASED;
  148. else
  149. in[com]=NOT_PRESSED;
  150. }
  151. }
  152. else if (ev->type()==i4_event::KEY_PRESS)
  153. {
  154. key_pressed=i4_T; // any key sets continue to true
  155. CAST_PTR(kev,i4_key_press_event_class,ev);
  156. memmove(cheat_code_buffer+1,cheat_code_buffer,CHEATCODE_BUFFERSIZE-1);
  157. cheat_code_buffer[0] = kev->key_code;
  158. }
  159. else if (ev->type()==i4_event::MOUSE_MOVE)
  160. {
  161. CAST_PTR(mev,i4_mouse_move_event_class,ev);
  162. mouse_scroll_flags=0;
  163. #if 0
  164. if (mev->x<g1_resources.mouse_scroll.x1)
  165. mouse_scroll_flags|=MOUSE_SCROLL_LEFT;
  166. if (mev->x>i4_current_app->get_root_window()->width()-g1_resources.mouse_scroll.x2)
  167. mouse_scroll_flags|=MOUSE_SCROLL_RIGHT;
  168. if (mev->y>i4_current_app->get_root_window()->height()-g1_resources.mouse_scroll.y2)
  169. mouse_scroll_flags|=MOUSE_SCROLL_DOWN;
  170. if (mev->y<g1_resources.mouse_scroll.y1)
  171. mouse_scroll_flags|=MOUSE_SCROLL_UP;
  172. #endif
  173. } else if (ev->type()==i4_event::WINDOW_MESSAGE)
  174. {
  175. CAST_PTR(wev, i4_window_message_class, ev);
  176. if (wev->sub_type==i4_window_message_class::LOST_MOUSE_FOCUS)
  177. mouse_scroll_flags=0;
  178. }
  179. }