cheat.cc 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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 "lisp/lisp.hh"
  9. #include "lisp/li_init.hh"
  10. #include "app/app.hh"
  11. #include "lisp/li_dialog.hh"
  12. #include "lisp/li_class.hh"
  13. #include "window/style.hh"
  14. #include "player.hh"
  15. #include "gui/button.hh"
  16. #include "gui/image_win.hh"
  17. #include "loaders/load.hh"
  18. #include "window/wmanager.hh"
  19. #include "objs/stank.hh"
  20. #include "map_man.hh"
  21. #include "objs/stank.hh"
  22. #include "border_frame.hh"
  23. i4_event_handler_reference_class<i4_parent_window_class> g1_cheat_window;
  24. static int team_editing;
  25. enum { CHEAT_MONEY,
  26. CHEAT_STANK_INVINSIBILITY,
  27. CHEAT_TROOP_INVINSIBILITY,
  28. CHEAT_NUKE };
  29. static char *cheats[]={"bitmaps/cheats/mo_money.jpg",
  30. "bitmaps/cheats/invulnerable.jpg",
  31. "bitmaps/cheats/group_invulnerable.jpg",
  32. "bitmaps/cheats/nuke.jpg", 0};
  33. class cheat_handler_class : public i4_event_handler_class
  34. {
  35. public:
  36. void receive_event(i4_event *ev)
  37. {
  38. if (!g1_map_is_loaded())
  39. return;
  40. CAST_PTR(uev, i4_user_message_event_class, ev);
  41. switch(uev->sub_type)
  42. {
  43. case CHEAT_MONEY :
  44. g1_player_man.get_local()->money()+=5000;
  45. break;
  46. case CHEAT_STANK_INVINSIBILITY :
  47. {
  48. g1_player_piece_class *stank=g1_player_man.get_local()->get_commander();
  49. if (stank)
  50. stank->stank_flags ^= g1_player_piece_class::ST_GODMODE;
  51. } break;
  52. case CHEAT_NUKE :
  53. {
  54. g1_player_piece_class *stank=g1_player_man.get_local()->get_commander();
  55. if (stank)
  56. {
  57. for (int i=0; i<g1_player_piece_class::MAX_WEAPONS-1; i++)
  58. {
  59. int mx=stank->ammo[i].ammo_type->max_amount;
  60. stank->ammo[i].amount=mx;
  61. }
  62. }
  63. } break;
  64. }
  65. }
  66. char *name() { return "cheat_handler"; }
  67. } cheat_handler;
  68. li_object *g1_cheat_menu(li_object *o, li_environment *env)
  69. {
  70. if (g1_cheat_window.get())
  71. i4_kernel.delete_handler(g1_cheat_window.get());
  72. else
  73. {
  74. i4_graphical_style_class *s=i4_current_app->get_style();
  75. i4_color_window_class *cw=new i4_color_window_class(0,0,0,s);
  76. int id=0;
  77. for (char **a=cheats; *a; a++, id++)
  78. {
  79. i4_image_class *im=i4_load_image(*a);
  80. if (im)
  81. {
  82. i4_button_class *b=new i4_button_class(0, new i4_image_window_class(im, i4_T), s,
  83. new i4_event_reaction_class(&cheat_handler, id));
  84. b->set_popup(i4_T);
  85. cw->add_child(0,0, b);
  86. }
  87. }
  88. cw->arrange_right_down();
  89. cw->resize_to_fit_children();
  90. i4_window_manager_class *wm=i4_current_app->get_window_manager();
  91. wm->add_child(wm->width()-cw->width()-1,
  92. wm->height()-cw->height()-1, cw);
  93. g1_cheat_window=cw;
  94. }
  95. return 0;
  96. }
  97. li_automatic_add_function(g1_cheat_menu, "Cheat Menu");
  98. li_object *g1_upgrade_level_0(li_object *o, li_environment *env)
  99. {
  100. g1_player_piece_class *p=g1_player_man.get_local()->get_commander();
  101. if (p && g1_border.get())
  102. {
  103. g1_player_man.get_local()->supertank_upgrade_level=0;
  104. p->find_weapons();
  105. }
  106. return 0;
  107. }
  108. li_object *g1_upgrade_level_1(li_object *o, li_environment *env)
  109. {
  110. g1_player_piece_class *p=g1_player_man.get_local()->get_commander();
  111. if (p && g1_border.get())
  112. {
  113. g1_player_man.get_local()->supertank_upgrade_level=1;
  114. p->find_weapons();
  115. }
  116. return 0;
  117. }
  118. li_object *g1_upgrade_level_2(li_object *o, li_environment *env)
  119. {
  120. g1_player_piece_class *p=g1_player_man.get_local()->get_commander();
  121. if (p && g1_border.get())
  122. {
  123. g1_player_man.get_local()->supertank_upgrade_level=2;
  124. p->find_weapons();
  125. }
  126. return 0;
  127. }
  128. li_automatic_add_function(g1_upgrade_level_0, "upgrade_level_0");
  129. li_automatic_add_function(g1_upgrade_level_1, "upgrade_level_1");
  130. li_automatic_add_function(g1_upgrade_level_2, "upgrade_level_2");