human.cc 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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 "human.hh"
  9. #include "resources.hh"
  10. #include "g1_speed.hh"
  11. #include "input.hh"
  12. #include "objs/stank.hh"
  13. #include "map.hh"
  14. #include "map_man.hh"
  15. #include "controller.hh"
  16. #include "cwin_man.hh"
  17. #include "time/profile.hh"
  18. #include "player.hh"
  19. #include "sfx_id.hh"
  20. #include "lisp/lisp.hh"
  21. #include "objs/path_object.hh"
  22. g1_human_class *g1_human = 0;
  23. void g1_human_class::load(g1_loader_class *fp)
  24. {
  25. }
  26. class g1_human_def_class : public g1_team_api_definition_class
  27. {
  28. public:
  29. g1_human_def_class()
  30. : g1_team_api_definition_class("human") {}
  31. virtual g1_team_api_class *create(g1_loader_class *f)
  32. {
  33. if (!g1_human)
  34. own_team_api(new g1_human_class(f));
  35. return g1_human;
  36. }
  37. } g1_human_def;
  38. g1_human_class::g1_human_class(g1_loader_class *f)
  39. {
  40. mouse_look_increment_x = 0;
  41. mouse_look_increment_y = 0;
  42. g1_human = this;
  43. }
  44. g1_human_class::~g1_human_class()
  45. {
  46. g1_human = 0;
  47. }
  48. void g1_human_class::send_selected_units(i4_float x, i4_float y)
  49. {
  50. if (selected_object.get())
  51. deploy_unit(selected_object->global_id, x,y);
  52. }
  53. static li_symbol_ref allow_follow_mode("allow_follow_mode");
  54. static li_symbol_ref supergun("supergun");
  55. void g1_human_class::clicked_on_object(g1_object_class *o)
  56. {
  57. if (o && g1_path_object_class::cast(o))
  58. set_current_target(o->global_id);
  59. }
  60. w8 g1_human_class::determine_cursor(g1_object_class *object_mouse_is_on)
  61. {
  62. if (selected_object.valid())
  63. {
  64. if (selected_object->id == g1_get_object_type(supergun.get()))
  65. return G1_TARGET_CURSOR;
  66. else
  67. return G1_MOVE_CURSOR;
  68. }
  69. else if (object_mouse_is_on)
  70. {
  71. if (g1_path_object_class::cast(object_mouse_is_on))
  72. // g1_path_object_class::cast(object_mouse_is_on)->valid_destination)
  73. return G1_MOVE_CURSOR;
  74. else
  75. return G1_DEFAULT_CURSOR;
  76. }
  77. else
  78. return G1_DEFAULT_CURSOR;
  79. }
  80. void g1_human_class::player_clicked(g1_object_class *obj, float gx, float gy)
  81. {
  82. if (obj && obj->player_num==team())
  83. {
  84. if (selected_object.valid())
  85. selected_object->mark_as_unselected();
  86. if (obj == commander())
  87. selected_object = 0;
  88. else
  89. {
  90. selected_object = obj;
  91. selected_object->mark_as_selected();
  92. }
  93. }
  94. else if (selected_object.valid())
  95. send_selected_units(gx,gy);
  96. else if (gx>=0 && gy>=0 && gx<g1_get_map()->width() && gy<g1_get_map()->height())
  97. {
  98. g1_path_object_class *best=0, *best2=0;
  99. float best_dist=10000;
  100. for (g1_path_object_class *o=g1_path_object_list.first(); o; o=o->next)
  101. {
  102. int t=o->total_links(player->get_team());
  103. for (int i=0; i<t; i++)
  104. {
  105. g1_path_object_class *o2=o->get_link(player->get_team(), i);
  106. if (o2 && !o2->get_flag(g1_object_class::SCRATCH_BIT))
  107. {
  108. i4_2d_vector p1(o->x, o->y), p2(o2->x, o2->y);
  109. i4_2d_vector a=p2-p1;
  110. i4_2d_vector x=i4_2d_vector(gx,gy);
  111. g1_path_object_class *use1=0, *use2=0;
  112. float dist;
  113. float alen=a.length();
  114. float t=(x-p1).dot(a)/(alen*alen);
  115. if (t<0)
  116. dist=(x-p1).length();
  117. else if (t>1)
  118. dist=(x-p2).length();
  119. else
  120. dist=i4_fabs(a.perp_dot(x-p1)/a.length());
  121. if (dist<best_dist)
  122. {
  123. best_dist=dist;
  124. best=o;
  125. best2=o2;
  126. }
  127. }
  128. }
  129. }
  130. if (best)
  131. {
  132. set_current_target(best->global_id);
  133. if (best2)
  134. set_current_target(best2->global_id);
  135. }
  136. }
  137. }
  138. int g1_human_class::build_unit(g1_object_type type)
  139. {
  140. return (playback)? G1_BUILD_PLAYBACK : g1_team_api_class::build_unit(type);
  141. }
  142. void g1_human_class::think()
  143. {
  144. i4_bool process_input = i4_T;
  145. if (playback_think())
  146. process_input=i4_F;
  147. g1_player_piece_class *stank = commander();
  148. if ((g1_current_controller->view.get_view_mode()!=G1_ACTION_MODE &&
  149. g1_current_controller->view.get_view_mode()!=G1_FOLLOW_MODE) ||
  150. !stank || stank->health<=0)
  151. process_input=i4_F;
  152. if (!process_input)
  153. {
  154. g1_input.deque_time(g1_input_class::LEFT);
  155. g1_input.deque_time(g1_input_class::RIGHT);
  156. g1_input.deque_time(g1_input_class::UP);
  157. g1_input.deque_time(g1_input_class::DOWN);
  158. g1_input.deque_time(g1_input_class::STRAFE_LEFT);
  159. g1_input.deque_time(g1_input_class::STRAFE_RIGHT);
  160. }
  161. else
  162. {
  163. //keys are buffered in the order pressed, so do a reversed comparison
  164. if (memcmp(g1_input.grab_cheat_keys(),"DOG",3)==0)
  165. {
  166. g1_input.clear_cheat_keys();
  167. stank->toggle_stank_flag(g1_player_piece_class::ST_GODMODE);
  168. }
  169. look(mouse_look_increment_x, mouse_look_increment_y);
  170. mouse_look_increment_y = mouse_look_increment_x = 0;
  171. sw32
  172. left_ms=g1_input.deque_time(g1_input_class::LEFT),
  173. right_ms=g1_input.deque_time(g1_input_class::RIGHT),
  174. up_ms=g1_input.deque_time(g1_input_class::UP),
  175. down_ms=g1_input.deque_time(g1_input_class::DOWN),
  176. sleft_ms=g1_input.deque_time(g1_input_class::STRAFE_LEFT),
  177. sright_ms=g1_input.deque_time(g1_input_class::STRAFE_RIGHT);
  178. turn( g1_resources.player_turn_speed*(left_ms-right_ms)*G1_HZ/1000.0 );
  179. accelerate( (up_ms-down_ms)*G1_HZ/1000.0 );
  180. strafe( (sright_ms-sleft_ms)*G1_HZ/1000.0 );
  181. if (sright_ms>0)
  182. sright_ms=sright_ms+1;
  183. if (g1_input.button_1()) fire0();
  184. if (g1_input.button_2()) fire1();
  185. if (g1_input.button_3()) fire2();
  186. }
  187. if (g1_input.key_pressed)
  188. continue_game();
  189. g1_input.key_pressed=i4_F;
  190. }
  191. //{{{ Emacs Locals
  192. // Local Variables:
  193. // folded-file: t
  194. // End:
  195. //}}}