controller.hh 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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 CONTROLLER_HH
  9. #define CONTROLLER_HH
  10. // This class is used to display a perspective view from an object. This
  11. // object is tracked and feed input that goes to the controller window.
  12. #include "window/window.hh"
  13. #include "math/num_type.hh"
  14. #include "error/error.hh"
  15. #include "math/transform.hh"
  16. #include "g1_object.hh"
  17. #include "time/time.hh"
  18. #include "g1_render.hh"
  19. #include "map_man.hh"
  20. #include "memory/que.hh"
  21. #include "camera.hh"
  22. #include "draw_context.hh"
  23. #include "time/timedev.hh"
  24. class g1_quad_object_class;
  25. class i4_graphical_style_class;
  26. class g1_player_piece_class;
  27. class g1_map_class;
  28. class r1_render_api_class;
  29. class i4_menu_class;
  30. class g1_map_view_class;
  31. class i4_event_handler_class;
  32. class g1_draw_context_class;
  33. class g1_map_piece_class;
  34. class i4_window_message_class;
  35. class i4_do_command_event_class;
  36. class i4_end_command_event_class;
  37. class g1_loader_class;
  38. class g1_saver_class;
  39. class g1_object_controller_class;
  40. class g1_controller_global_id_reset_notifier : public g1_global_id_reset_notifier
  41. {
  42. public:
  43. g1_object_controller_class *for_who;
  44. g1_controller_global_id_reset_notifier(g1_object_controller_class *for_who)
  45. : for_who(for_who) {}
  46. void reset();
  47. };
  48. class g1_object_controller_class : public i4_parent_window_class
  49. {
  50. protected:
  51. g1_controller_global_id_reset_notifier notifier;
  52. i4_bool first_frame;
  53. g1_draw_context_class g1_context;
  54. void setup_context(i4_draw_context_class &i4_context);
  55. // this is the object we are currently tracking with the camera
  56. g1_player_piece_class *get_track();
  57. g1_map_view_class *radar_view; // maintains the view of the map as seen on radar
  58. enum flag_type {
  59. KEY_FOCUS =1, // if we have keyboard focus
  60. GOT_KEYBOARD =4, // if a keyboard exists on sytem
  61. NEED_CLEAR =8 // if we need to clear the screen the next frame
  62. } ;
  63. w32 flags;
  64. void set_flag(flag_type flag, i4_bool on=i4_T) { if (on) flags|=flag; else flags&=(~flag); }
  65. i4_bool get_flag(flag_type flag) { if (flags & flag) return i4_T; else return i4_F; }
  66. i4_float last_theta, last_h;
  67. i4_float last_x, last_y;
  68. i4_menu_class *context_menu;
  69. i4_graphical_style_class *style;
  70. w32 last_mouse_x, last_mouse_y;
  71. w32 frames_to_count;
  72. i4_float frame_rate;
  73. enum { FRAME_MEASURE_INTERVAL=8 };
  74. void create_context_menu();
  75. void delete_context_menu();
  76. void set_track(g1_player_piece_class *new_track);
  77. void draw_overhead(g1_draw_context_class *context);
  78. // Window Input
  79. void get_keys();
  80. void lose_keys();
  81. void do_command_event(i4_do_command_event_class *ev);
  82. void end_command_event(i4_end_command_event_class *ev);
  83. void window_event(i4_window_message_class *wev);
  84. void key_press(i4_key_press_event_class *ev);
  85. void calc_camera_transform();
  86. void change_mouse_mask(int new_mask);
  87. void draw_counts();
  88. g1_selectable_list selectable_list;
  89. // Clipping
  90. // Worldspace coordinates of the view frustrum
  91. i4_3d_vector camera_point[8];
  92. // View Frustrum bounding box
  93. class bbox_class
  94. {
  95. public:
  96. i4_3d_vector min, max;
  97. } bbox;
  98. class plane_class
  99. // View Frustrum Cutting Planes
  100. {
  101. public:
  102. // Uses the plane equation: normal*x + D = 0
  103. i4_3d_vector normal;
  104. i4_float D;
  105. w8 n,p;
  106. void calc_np()
  107. {
  108. // calculate the index of the most positive(p) & negative(n) corners
  109. // in calculating the plane equation
  110. p = 0;
  111. // p points toward the normal
  112. p |= (normal.x>0) ? 1 : 0;
  113. p |= (normal.y>0) ? 2 : 0;
  114. p |= (normal.z>0) ? 4 : 0;
  115. // n points away from the normal
  116. n = p^7;
  117. }
  118. i4_float evaluate(const i4_3d_vector& point)
  119. {
  120. return normal.dot(point) + D;
  121. }
  122. } plane[4];
  123. // Text Messages
  124. void start_scroll();
  125. void stop_scroll();
  126. i4_time_device_class::id message_scroll_id;
  127. i4_bool scroll_active;
  128. enum { MAX_MESSAGES=3 };
  129. struct message
  130. {
  131. w32 color;
  132. char text[40];
  133. };
  134. message messages[MAX_MESSAGES];
  135. // Spinning status indicators
  136. i4_time_class last_stat_time; // time spin started
  137. i4_float stat_x, stat_y;
  138. int stat_type;
  139. int stat_inc;
  140. sw32 stat_time; // time left in milli for spin
  141. struct spin_event
  142. {
  143. g1_model_id_type model;
  144. enum spin_type { GAINED, LOST} type;
  145. spin_event() { model=0; }
  146. spin_event(g1_model_id_type model, w8 type) : model(model), type((spin_type)type) {}
  147. };
  148. i4_fixed_que<spin_event,8> spin_events; // list of models to spin up
  149. spin_event current_spin;
  150. virtual void reparent(i4_image_class *draw_area, i4_parent_window_class *parent);
  151. public:
  152. void scroll_message(const i4_const_str &message, i4_color color=0xffffff);
  153. void reset_global_ids();
  154. virtual clear_if_cannot_draw() { return i4_T; }
  155. g1_view_state_class view;
  156. void pan(i4_float x, i4_float y, i4_float z);
  157. void rotate(i4_float about_game_z, i4_float up_down);
  158. void zoom(i4_float dist);
  159. i4_bool add_spin_event(char *model_name, w8 lost=0);
  160. i4_transform_class transform; // current transform to go world to screen space
  161. void get_pos(i4_3d_vector& pos);
  162. void setup_clip();
  163. // after transform is valid, setup clipping planes
  164. int test_clip(const i4_3d_vector& min, const i4_3d_vector& max);
  165. // test bounding box for visibility in the view frustrum
  166. // -1 = completely outside
  167. // 0 = on boundary
  168. // 1 = completely within view
  169. w8 cursor_state;
  170. virtual void update_cursor();
  171. g1_typed_reference_class<g1_object_class> follow;
  172. g1_player_type team_on() const;
  173. void update_camera();
  174. void set_exclusive_mode(i4_bool yes_no);
  175. g1_map_class *get_map() { return g1_get_map(); }
  176. i4_time_class last_frame_draw_time; // time last frame draw took place
  177. i4_bool view_to_game(sw32 mouse_x, sw32 mouse_y,
  178. i4_float &game_x, i4_float &game_y,
  179. i4_float &dir_x, i4_float &dir_y);
  180. // converts 2D view coordinates & projects the point onto the game map
  181. // if doesn't intersect map, returns i4_F
  182. // resize will change the width and height of our window and notify our parent of the change
  183. virtual void resize(w16 new_width, w16 new_height);
  184. i4_graphical_style_class *get_style() { return style; }
  185. g1_object_controller_class(w16 w, w16 h,
  186. i4_graphical_style_class *style);
  187. virtual void editor_pre_draw(i4_draw_context_class &context) { ; }
  188. virtual void editor_post_draw(i4_draw_context_class &context) { ; }
  189. virtual void parent_draw(i4_draw_context_class &context);
  190. virtual void receive_event(i4_event *ev);
  191. virtual void show_self(w32 indent)
  192. {
  193. char fmt[50];
  194. sprintf(fmt,"%%%ds object_controller_class",indent);
  195. i4_warning(fmt," ");
  196. }
  197. g1_object_class *find_object_under_mouse(sw32 mx, sw32 my);
  198. enum { MOUSE_LEFT=1,
  199. MOUSE_RIGHT=2 };
  200. w8 mouse_mask;
  201. char *name() { return "g1_object_controller"; }
  202. ~g1_object_controller_class();
  203. };
  204. extern i4_event_handler_reference_class<g1_object_controller_class> g1_current_controller;
  205. #endif