music.cc 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 "music.hh"
  9. #include "music/stream.hh"
  10. #include "string/string.hh"
  11. #include "file/file.hh"
  12. #include "memory/malloc.hh"
  13. g1_music_manager_class g1_music_man;
  14. void g1_music_manager_class::next_song()
  15. {
  16. if (no_songs) return;
  17. song_on++;
  18. if (song_on>=total_songs)
  19. song_on=0;
  20. if (stream)
  21. {
  22. delete stream;
  23. stream=0;
  24. }
  25. i4_const_str *slist=i4_string_man.get_array("songs");
  26. if (!slist[song_on].null())
  27. {
  28. i4_file_class *fp=i4_open(slist[song_on], I4_SUPPORT_ASYNC | I4_READ);
  29. if (fp)
  30. {
  31. stream = new i4_stream_wav_player(fp, 512*1024,
  32. i4_F, // don't loop the song
  33. i4_F); // first load is not async
  34. if (stream)
  35. {
  36. stream->set_volume(I4_SOUND_VOLUME_LEVELS*2/4);
  37. if (!stream->poll()) // music probably doesn't work if we can't poll() once
  38. {
  39. delete stream;
  40. stream=0;
  41. total_missing++;
  42. if (total_missing==total_songs) no_songs = i4_T;
  43. }
  44. }
  45. }
  46. else
  47. {
  48. total_missing++;
  49. if (total_missing==total_songs) no_songs = i4_T;
  50. }
  51. }
  52. i4_free(slist);
  53. }
  54. void g1_music_manager_class::init()
  55. {
  56. playing=i4_F;
  57. no_songs=i4_F;
  58. stream=0;
  59. song_on=-1;
  60. i4_const_str *slist=i4_string_man.get_array("songs");
  61. total_missing = 0;
  62. total_songs = 0;
  63. for (sw32 i=0; !slist[i].null(); i++) total_songs++;
  64. if (total_songs==0) no_songs = i4_T;
  65. i4_free(slist);
  66. }
  67. void g1_music_manager_class::poll()
  68. {
  69. if (stream)
  70. {
  71. if (//playing &&
  72. !stream->poll())
  73. next_song();
  74. }
  75. else
  76. next_song();
  77. }
  78. void g1_music_manager_class::uninit()
  79. {
  80. stop();
  81. }
  82. void g1_music_manager_class::start()
  83. {
  84. if (!stream)
  85. {
  86. next_song();
  87. if (stream)
  88. playing=i4_T;
  89. }
  90. }
  91. void g1_music_manager_class::stop()
  92. {
  93. if (stream)
  94. {
  95. delete stream;
  96. stream=0;
  97. }
  98. playing=i4_F;
  99. }