bullet.hh 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 BULLET_HH
  9. #define BULLET_HH
  10. #include "g1_object.hh"
  11. #include "player_type.hh"
  12. #include "path.hh"
  13. #include "objs/model_draw.hh"
  14. class g1_solid_class;
  15. class g1_map_piece_class;
  16. class g1_light_object_class;
  17. class g1_particle_emitter_class;
  18. class g1_bullet_class : public g1_object_class
  19. {
  20. enum { DATA_VERSION=7 };
  21. protected:
  22. void move_forward();
  23. void done(i4_bool hit=i4_F,g1_object_class *hit_object=0);
  24. r1_texture_handle tex;
  25. public:
  26. g1_typed_reference_class<g1_object_class> who_fired_me;
  27. g1_typed_reference_class<g1_light_object_class> light;
  28. g1_typed_reference_class<g1_particle_emitter_class> particle_emitter;
  29. enum { IS_SPRITE=2,
  30. CREATES_ACID=4,
  31. CREATES_NAPALM=8,
  32. MAKE_SMOKE=16,
  33. SPINS=32
  34. };
  35. i4_float range, // how much further we can travel
  36. range_decrement; // hom much range to subtract each tick
  37. i4_3d_vector vel;
  38. virtual i4_float occupancy_radius() const { return 0.1; }
  39. virtual i4_bool move();
  40. g1_bullet_class(g1_object_type id, g1_loader_class *fp);
  41. virtual void save(g1_saver_class *fp);
  42. w32 bullet_flags;
  43. virtual void setup(const i4_3d_vector &start_pos,
  44. const i4_3d_vector &vel,
  45. g1_object_class *this_guy_fired_me,
  46. i4_float range,
  47. w32 flags=0,
  48. r1_texture_handle sprite_texture=0,
  49. g1_light_object_class *light=0);
  50. virtual void draw(g1_draw_context_class *context);
  51. virtual void think();
  52. };
  53. #endif