damager.cc 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 "object_definer.hh"
  9. #include "lisp/li_init.hh"
  10. #include "lisp/li_class.hh"
  11. #include "li_objref.hh"
  12. #include "map_man.hh"
  13. #include "map.hh"
  14. #include "math/pi.hh"
  15. #include "objs/model_draw.hh"
  16. #include "math/angle.hh"
  17. #include "li_objref.hh"
  18. #include "g1_render.hh"
  19. #include "lisp/li_vect.hh"
  20. #include "tick_count.hh"
  21. static li_int_class_member ticks_to_think("ticks_to_think"),
  22. damage_per_tick("damage_per_tick");
  23. static li_object_class_member person_being_damaged("person_being_damaged"),
  24. person_giving_damage("person_giving_damage"),
  25. attach_pos("attach_pos");
  26. static li_symbol_class_member smoke_type("smoke_type");
  27. static li_symbol_ref acid("acid"), napalm("napalm");
  28. static r1_texture_ref acid_smoke("acid");
  29. class g1_damager_class : public g1_object_class
  30. {
  31. public:
  32. g1_damager_class(g1_object_type id, g1_loader_class *fp)
  33. : g1_object_class(id, fp)
  34. {
  35. draw_params.setup("trigger");
  36. }
  37. void draw(g1_draw_context_class *context)
  38. {
  39. if (smoke_type()==acid.get())
  40. {
  41. float size=0.4;
  42. float sw=size*0.25, sh=size;
  43. i4_3d_vector pos(i4_interpolate(lx,x, g1_render.frame_ratio),
  44. i4_interpolate(ly,y, g1_render.frame_ratio),
  45. i4_interpolate(lh,h, g1_render.frame_ratio)+sh/2.0), t_pos;
  46. context->transform->transform(pos, t_pos);
  47. g1_render.render_sprite(t_pos, acid_smoke.get(), sw, sh,
  48. (g1_tick_counter%4)*0.25, 0,
  49. (g1_tick_counter%4)*0.25+0.25, 1);
  50. }
  51. }
  52. void think()
  53. {
  54. g1_object_class *hurt_this_guy = li_g1_ref::get(person_being_damaged(),0)->value();
  55. g1_object_class *this_guys_hurting_him = li_g1_ref::get(person_giving_damage(),0)->value();
  56. if (!this_guys_hurting_him)
  57. this_guys_hurting_him=this;
  58. if (ticks_to_think() && hurt_this_guy && hurt_this_guy->valid())
  59. {
  60. unoccupy_location();
  61. grab_old();
  62. i4_3d_vector ap=li_vect::get(attach_pos(),0)->value();
  63. x=hurt_this_guy->x+ap.x;
  64. y=hurt_this_guy->y+ap.y;
  65. h=hurt_this_guy->h+ap.z;
  66. occupy_location();
  67. ticks_to_think()--;
  68. hurt_this_guy->damage(this_guys_hurting_him, damage_per_tick(), i4_3d_vector(0,0,1));
  69. if (this_guys_hurting_him)
  70. this_guys_hurting_him->notify_damage(hurt_this_guy, damage_per_tick());
  71. request_think();
  72. }
  73. else
  74. {
  75. unoccupy_location();
  76. request_remove();
  77. }
  78. }
  79. };
  80. g1_object_definer<g1_damager_class>
  81. g1_damager_def("damager", g1_object_definition_class::EDITOR_SELECTABLE);
  82. g1_object_class *g1_create_damager_object(const i4_3d_vector &pos,
  83. int _damage_per_tick, int _ticks,
  84. g1_object_class *_person_giving_damage,
  85. g1_object_class *_person_being_damaged,
  86. li_symbol *_smoke_type)
  87. {
  88. g1_damager_class *d=(g1_damager_class *)g1_create_object(g1_damager_def.type);
  89. if (!d) return 0;
  90. d->x=d->lx=pos.x;
  91. d->y=d->ly=pos.y;
  92. d->h=d->lh=pos.z;
  93. d->vars->get(attach_pos)=new li_vect(i4_3d_vector(pos.x-_person_being_damaged->x,
  94. pos.y-_person_being_damaged->y,
  95. pos.z-_person_being_damaged->h));
  96. d->vars->get(damage_per_tick)=_damage_per_tick;
  97. d->vars->get(person_being_damaged)=new li_g1_ref(_person_being_damaged->global_id);
  98. if (_person_giving_damage)
  99. d->vars->get(person_giving_damage)=new li_g1_ref(_person_giving_damage->global_id);
  100. else
  101. d->vars->get(person_giving_damage)=new li_g1_ref(g1_global_id.invalid_id());
  102. d->vars->get(smoke_type)=_smoke_type;
  103. d->vars->get(ticks_to_think)=_ticks;
  104. d->occupy_location();
  105. d->request_think();
  106. return d;
  107. }