camera.hh 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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_CAMERA_HH
  9. #define G1_CAMERA_HH
  10. #include "math/num_type.hh"
  11. #include "math/vector.hh"
  12. #include "reference.hh"
  13. #include "g1_object.hh"
  14. class g1_loader_class; // golg/saver.hh
  15. class g1_saver_class; // golg/saver.hh
  16. class i4_transform_class; // i4/math/transform.hh
  17. class g1_object_class; // golg/g1_object.hh
  18. enum g1_view_mode_type
  19. {
  20. G1_EDIT_MODE, // camera is set exactly by someone without outside influence
  21. G1_STRATEGY_MODE, // camera looks down from fixed hieght above ground
  22. G1_ACTION_MODE, // camera follow objects from 1st person
  23. G1_FOLLOW_MODE, // camera follows objects from 3rd person
  24. G1_CAMERA_MODE, // camera follows spline set down by the editor
  25. G1_WATCH_MODE, // camera wanders around looking at interesting things
  26. G1_CIRCLE_WAIT // camera is circling an object/location until the user presses a key
  27. };
  28. enum g1_watch_type // priorities for the camera
  29. {
  30. G1_WATCH_INVALID, // indicates camera event is not in use
  31. G1_WATCH_IDLE, // lowest priority, vehicles moving
  32. G1_WATCH_EVENT, // heli take off, bridge assembly, etc.
  33. G1_WATCH_FIRE, // shots fired
  34. G1_WATCH_HIT, // someone got hit
  35. G1_WATCH_EXPLOSION, // someone blew up
  36. G1_WATCH_USER, // user wants top look here
  37. G1_WATCH_FORCE // force the camera here (base blown up)
  38. };
  39. struct g1_camera_info_struct
  40. {
  41. i4_float gx, gy, gz;
  42. i4_float ground_x_rotate, ground_y_rotate;
  43. i4_float ground_rotate, // rotation about game z
  44. horizon_rotate, // rotation up/down
  45. roll;
  46. void defaults();
  47. g1_camera_info_struct() { defaults(); }
  48. void load(g1_loader_class *fp);
  49. void save(g1_saver_class *fp);
  50. };
  51. struct g1_camera_event
  52. {
  53. g1_typed_reference_class<g1_object_class> camera_at;
  54. g1_watch_type type; // type of camera shot this is
  55. // object we are sort of tracking (0 if not tracking)
  56. g1_typed_reference_class<g1_object_class> follow_object;
  57. int min_time, max_time; // min/max times to sustain camera shot (in ticks)
  58. int time_elapsed; // time that we've spent on this shot already (in ticks)
  59. g1_camera_event();
  60. void object_ids_changed(); // call after level is reloaded
  61. };
  62. struct g1_view_state_class
  63. {
  64. enum { DATA_VERSION=1 };
  65. i4_3d_vector move_offset; // next time the camera updates it will move this distance (not z)
  66. struct circle_info
  67. {
  68. float zvel,
  69. theta, theta_vel,
  70. dist, dist_vel;
  71. i4_3d_vector looking_at;
  72. } circle;
  73. g1_typed_reference_class<g1_object_class> camera1, camera2;
  74. g1_camera_event next_cam, current_cam;
  75. w32 follow_object_id;
  76. w32 ticks_to_watch_spot;
  77. g1_view_mode_type view_mode;
  78. g1_watch_type watch_type;
  79. g1_camera_info_struct start, // when the camera is zooming from one location to another
  80. end;
  81. // where is the camera between start and end? 1.0 = end, 0.0 = start
  82. float start_end_interpolate_fraction;
  83. // how much is added to the above fraction in each tick, calculated by how many ticks
  84. // you want the camera to take to get to it's destination
  85. float start_end_interpolate_fraction_step;
  86. // do not set this directly, it is calculated from start and end
  87. g1_camera_info_struct current;
  88. i4_bool start_invalid; // when the game first starts, the start camera is invalid
  89. void defaults();
  90. void update_circle_mode();
  91. void update_follow_mode();
  92. void update_action_mode();
  93. void update_watch_mode();
  94. void update_camera_mode();
  95. void update_strategy_mode();
  96. void update_edit_mode();
  97. void use_next_cam();
  98. public:
  99. i4_transform_class *get_transform();
  100. void get_camera_pos(i4_3d_vector &v);
  101. // returns the sqaured distance to the camera
  102. float dist_sqrd(const i4_3d_vector &v);
  103. void load(g1_loader_class *fp);
  104. void save(g1_saver_class *fp);
  105. g1_view_state_class();
  106. g1_camera_info_struct *get_camera(); // calculates current and returns a pointer to it
  107. void update(); // should be called after every tick, updates end camera pos
  108. g1_view_mode_type get_view_mode() { return view_mode; }
  109. void set_view_mode(g1_view_mode_type mode) { view_mode=mode; }
  110. void calc_transform(i4_transform_class &t);
  111. void suggest_camera_mode(g1_view_mode_type mode,
  112. w32 follow_object_global_id=0);
  113. // called by radar map
  114. void set_camera_position(float game_x, float game_y);
  115. void suggest_camera_event(g1_camera_event &event);
  116. void rotate(i4_float about_game_z, i4_float up_down);
  117. void pan(i4_float x, i4_float y, i4_float z);
  118. void zoom(float dist);
  119. };
  120. g1_view_state_class *g1_current_view_state();
  121. #endif