music.hh 976 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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_MUSIC_HH
  9. #define G1_MUSIC_HH
  10. #include "arch.hh"
  11. class i4_stream_wav_player;
  12. class g1_music_manager_class
  13. {
  14. i4_bool no_songs;
  15. sw32 song_on;
  16. sw32 total_songs;
  17. sw32 total_missing;
  18. i4_stream_wav_player *stream;
  19. i4_bool playing;
  20. void next_song();
  21. public:
  22. void init();
  23. void uninit();
  24. void poll(); // called by main game once per game loop
  25. void start();
  26. void stop();
  27. };
  28. extern g1_music_manager_class g1_music_man;
  29. #endif