human.hh 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 HUMAN_HH
  9. #define HUMAN_HH
  10. #include "team_api.hh"
  11. #include "memory/que.hh"
  12. class g1_human_class : public g1_team_api_class
  13. {
  14. public:
  15. enum { MAX_COMMANDS = 30 };
  16. g1_human_class(g1_loader_class *f);
  17. ~g1_human_class();
  18. i4_float mouse_look_increment_x, mouse_look_increment_y;
  19. g1_typed_reference_class<g1_object_class> selected_object;
  20. g1_typed_reference_class<g1_object_class> preassigned[10];
  21. void send_selected_units(i4_float x, i4_float y);
  22. void clicked_on_object(g1_object_class *o);
  23. w8 determine_cursor(g1_object_class *object_mouse_is_on);
  24. void player_clicked(g1_object_class *o, float gx=0, float gy=0);
  25. int build_unit(g1_object_type type);
  26. virtual void think();
  27. virtual char *name() { return "Human"; }
  28. virtual void load(g1_loader_class *fp);
  29. };
  30. extern g1_human_class *g1_human;
  31. #endif