goal.cc 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 "objs/goal.hh"
  9. #include "object_definer.hh"
  10. #include "lisp/li_init.hh"
  11. #include "lisp/li_class.hh"
  12. #include "li_objref.hh"
  13. #include "map_man.hh"
  14. #include "map.hh"
  15. #include "saver.hh"
  16. #include <stdio.h>
  17. static g1_object_type stank;
  18. static void g1_goal_init()
  19. {
  20. stank = g1_get_object_type("stank");
  21. }
  22. g1_object_definer<g1_goal_class>
  23. g1_goal_def("goal", g1_object_definition_class::EDITOR_SELECTABLE, g1_goal_init);
  24. static li_int_class_member type("type");
  25. static li_int_class_member ticks_to_think("ticks_to_think");
  26. static li_int_class_member think_delay("think_delay");
  27. static li_float_class_member range("range");
  28. g1_goal_class::g1_goal_class(g1_object_type id, g1_loader_class *fp)
  29. : g1_object_class(id, fp)
  30. {
  31. draw_params.setup("lightbulb");
  32. }
  33. void g1_goal_class::save(g1_saver_class *fp)
  34. {
  35. g1_object_class::save(fp);
  36. }
  37. void g1_goal_class::draw(g1_draw_context_class *context)
  38. {
  39. g1_editor_model_draw(this, draw_params, context);
  40. }
  41. void g1_goal_class::think()
  42. {
  43. if (ticks_to_think())
  44. ticks_to_think()--;
  45. else
  46. {
  47. #if 0
  48. for (int i=0; i<G1_MAX_PLAYERS; i++)
  49. power[i] = 0;
  50. ticks_to_think() = think_delay();
  51. g1_map_class::range_iterator p;
  52. p.begin(x,y,range());
  53. p.mask(g1_object_class::DANGEROUS);
  54. while (!p.end())
  55. #else
  56. g1_object_class *objs[1024], **p;
  57. int num = g1_get_map()->get_objects_in_range(x, y, range(),
  58. objs, 1024, g1_object_class::DANGEROUS);
  59. p = objs;
  60. for (int i=0; i<num; i++)
  61. #endif
  62. {
  63. g1_object_class *o = *p;
  64. int n= o->player_num;
  65. if (o->id == stank)
  66. power[n] += 10;
  67. else
  68. power[n]++;
  69. ++p;
  70. }
  71. }
  72. request_think();
  73. }