cwin_man.cc 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 "cwin_man.hh"
  9. #include "resources.hh"
  10. #include "controller.hh"
  11. #include "border_frame.hh"
  12. #include "map_view.hh"
  13. #include "player.hh"
  14. #include "image/image.hh"
  15. #include "window/win_evt.hh"
  16. #include "device/kernel.hh"
  17. #include "window/style.hh"
  18. #include "gui/deco_win.hh"
  19. #include "map.hh"
  20. #include "r1_win.hh"
  21. #include "g1_render.hh"
  22. #include "objs/stank.hh"
  23. #include "saver.hh"
  24. #include "math/pi.hh"
  25. #include "device/key_man.hh"
  26. #include "input.hh"
  27. #include "map_man.hh"
  28. #include "lisp/lisp.hh"
  29. g1_cwin_man_class *g1_cwin_man=0;
  30. void g1_change_key_context(w8 view_mode)
  31. {
  32. switch (view_mode)
  33. {
  34. case G1_EDIT_MODE :
  35. i4_key_man.set_context("editor"); break;
  36. case G1_STRATEGY_MODE :
  37. i4_key_man.set_context("strategy"); break;
  38. case G1_ACTION_MODE :
  39. i4_key_man.set_context("action"); break;
  40. case G1_FOLLOW_MODE :
  41. i4_key_man.set_context("follow"); break;
  42. case G1_WATCH_MODE :
  43. i4_key_man.set_context("strategy"); break;
  44. }
  45. }
  46. void g1_cwin_man_class::save_views(g1_saver_class *fp)
  47. {
  48. fp->mark_section("Game view setting V1");
  49. view_state.save(fp);
  50. }
  51. void g1_cwin_man_class::load_views(g1_loader_class *fp)
  52. {
  53. if (fp && !fp->goto_section("Game view setting V1"))
  54. fp=0; // load defaults if not in file
  55. view_state.load(fp);
  56. }
  57. void g1_cwin_man_class::init(i4_parent_window_class *_parent,
  58. i4_graphical_style_class *_style,
  59. i4_image_class *_root_image,
  60. i4_display_class *display,
  61. i4_window_manager_class *wm)
  62. {
  63. style=_style;
  64. parent=_parent;
  65. root_image=_root_image;
  66. pal=_root_image->get_pal();
  67. }
  68. g1_cwin_man_class::g1_cwin_man_class()
  69. {
  70. parent=0;
  71. root_image=0;
  72. style=0;
  73. }
  74. void g1_cwin_man_class::create_views()
  75. {
  76. if (!g1_border.get())
  77. {
  78. g1_strategy_screen=new g1_strategy_screen_class();
  79. g1_border = new g1_border_frame_class();
  80. // g1_current_controller->view=view_state;
  81. parent->add_child(0,0,g1_border.get());
  82. }
  83. }
  84. void g1_cwin_man_class::destroy_views()
  85. {
  86. if (g1_border.get())
  87. {
  88. i4_kernel.delete_handler(g1_strategy_screen.get());
  89. i4_kernel.delete_handler(g1_border.get());
  90. }
  91. }
  92. void g1_cwin_man_class::receive_event(i4_event *ev)
  93. {
  94. // if (view.get())
  95. // g1_input.receive_event(ev);
  96. }
  97. void g1_cwin_man_class::map_changed()
  98. {
  99. g1_player_type p=g1_default_player;
  100. g1_radar_recalculate_backgrounds();
  101. }