map_view.hh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 MAP_VIEW_HH
  9. #define MAP_VIEW_HH
  10. #include "arch.hh"
  11. #include "math/vector.hh"
  12. class i4_parent_window_class;
  13. enum
  14. {
  15. G1_RADAR_CLICK_HOLDS_VIEW =1,
  16. G1_RADAR_DRAW_ALL_PATHS =2,
  17. G1_RADAR_DRAW_UNHIDDEN_PATHS =4,
  18. G1_RADAR_USE_DIRTIES =8,
  19. G1_RADAR_CLICK_SELECTS_PATH =16,
  20. G1_RADAR_INTERLACED =32,
  21. G1_RADAR_USE_ICONS =64
  22. };
  23. i4_parent_window_class *g1_create_radar_view(int max_w, int max_h, int flags);
  24. // this will re-render and area of the radar map
  25. void g1_radar_refresh(int game_x1, int game_y1, int game_x2, int game_y2);
  26. // tell the radar where the view is, so we can show screen position
  27. void g1_radar_looking_at(float x1, float y1, float x2, float y2);
  28. // when the map is changed by the editor/or a new level, call this
  29. void g1_radar_recalculate_backgrounds();
  30. // callled when radar should redraw (probably once 1-per second)
  31. void g1_radar_update();
  32. void g1_unfog_radius(const i4_3d_vector &v, float r);
  33. #endif