sfx_obj.hh 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 G1_TAKEOVER_PAD_HH
  9. #define G1_TAKEOVER_PAD_HH
  10. #include "g1_object.hh"
  11. #include "objs/model_draw.hh"
  12. class i4_stream_wav_player;
  13. extern g1_object_type g1_sfx_obj_type;
  14. class g1_sfx_obj_class : public g1_object_class
  15. {
  16. enum { DATA_VERSION=1 };
  17. public:
  18. static g1_sfx_obj_class *cast(g1_object_class *obj)
  19. {
  20. if (!obj || obj->id != g1_sfx_obj_type)
  21. {
  22. #ifdef I4_CAST_WARN
  23. i4_warning("bad cast to sfx_obj!\n");
  24. #endif
  25. return 0;
  26. }
  27. return (g1_sfx_obj_class *)obj;
  28. }
  29. i4_stream_wav_player *stream;
  30. i4_str *filename;
  31. w16 max_volume;
  32. w32 max_hearable_distance;
  33. w32 restart_delay;
  34. w32 random_restart_delay;
  35. w32 current_delay; // time to count down until next sound is played
  36. float dist_from_camera_sqrd; // calculated by g1_sound_man
  37. g1_sfx_obj_class *next_sfx;
  38. g1_sfx_obj_class(g1_object_type id, g1_loader_class *fp);
  39. ~g1_sfx_obj_class();
  40. virtual void save(g1_saver_class *fp);
  41. i4_str *get_context_string();
  42. void set_filename(const i4_const_str &fname);
  43. // adds self to sound_manager
  44. i4_bool occupy_location();
  45. // remove self from sound_manager
  46. void unoccupy_location();
  47. virtual void draw(g1_draw_context_class *context);
  48. virtual void think();
  49. };
  50. #endif