Sounderer.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #include "Sounderer.h"
  2. Sounderer::Sounderer() : m_lastCanal(-1), m_folder(""), m_musicName(""), m_music(0x0)
  3. {}
  4. Sounderer::Sounderer(std::string folder) : m_lastCanal(-1), m_folder(folder), m_musicName(""), m_music(0x0)
  5. {}
  6. Sounderer::~Sounderer()
  7. {
  8. // Musique
  9. if (m_music != 0x0) Mix_FreeMusic(m_music);
  10. // Canaux
  11. for( m_it = m_paquet.begin(); m_it != m_paquet.end(); m_it++ )
  12. if (m_it->second != 0x0)
  13. {
  14. //Libération mémoire
  15. Mix_FreeChunk(m_it->second);
  16. m_it->second = 0x0;
  17. }
  18. }
  19. bool Sounderer::init()
  20. {
  21. ///SDL extend init
  22. SDL_InitSubSystem(SDL_INIT_AUDIO);
  23. ///Implémentation des paramètres
  24. m_rate = 22050;
  25. m_format = AUDIO_S16SYS;
  26. m_nbChannels = 2;
  27. m_bufferSize = 4096;
  28. ///Démarrage du mixer avec les paramètres désirés
  29. if ( Mix_OpenAudio(m_rate, m_format, m_nbChannels, m_bufferSize) != 0 ) {
  30. std::cout <<"Impossible d'initialiser le système audio SDL_mixer avec les paramètres définis : "<<Mix_GetError()<< std::endl;
  31. return false;
  32. }
  33. ///Initialisation terminée
  34. return true;
  35. }
  36. bool Sounderer::preLoad(std::string nom, short extension)
  37. {
  38. /// Cherche le son dans le tableau
  39. m_it = m_paquet.find(nom);
  40. /// Si le son est déjà chargé, pas beson de le refaire
  41. if (m_it != m_paquet.end())
  42. {
  43. if (m_paquet[nom] == 0x0) return false;
  44. else return true;
  45. }
  46. /// Sinon on le charge
  47. else
  48. {
  49. //Définit l'extension
  50. std::string ext;
  51. if (extension == EXT_OGG) ext = ".ogg";
  52. else ext = ".wav";
  53. //Compose le source puis le charge
  54. std::string source(m_folder + nom + ext);
  55. m_paquet[nom] = Mix_LoadWAV(source.c_str());
  56. //Teste une erreur
  57. if (m_paquet[nom] == 0x0)
  58. {
  59. std::cout << "Le son " <<nom<< ".wav n'a pas pu être chargé : " << Mix_GetError() << std::endl << std::endl;
  60. return false;
  61. }
  62. //Attribut canal libre et réservé
  63. m_lastCanal++;
  64. m_channel[nom] = m_lastCanal;
  65. }
  66. // Fonction terminée
  67. return true;
  68. }
  69. bool Sounderer::play(std::string nom, int repetition)
  70. {
  71. //Capture le canal et joue le son
  72. if (preLoad(nom))
  73. m_channel[nom] = Mix_PlayChannel(m_channel[nom], m_paquet[nom], repetition);
  74. else return false;
  75. if(m_channel[nom] == -1) {
  76. std::cout <<"Impossible de jouer le son ''"<<nom<<"'' : "<<Mix_GetError()<< std::endl;
  77. return false;
  78. }
  79. //Fin
  80. return true;
  81. }
  82. bool Sounderer::fadePlay(std::string nom, int crescendoLenght, int repetition)
  83. {
  84. //Capture le canal et joue le son
  85. if (preLoad(nom))
  86. m_channel[nom] = Mix_FadeInChannel(m_channel[nom], m_paquet[nom], repetition, crescendoLenght);
  87. else return false;
  88. if(m_channel[nom] == -1) {
  89. std::cout <<"Impossible de jouer le son ''"<<nom<<"'' : "<<Mix_GetError()<< std::endl;
  90. return false;
  91. }
  92. //Fin
  93. return true;
  94. }
  95. bool Sounderer::stop(std::string nom)
  96. {
  97. if ( m_paquet.find(nom) != m_paquet.end() )
  98. if ( Mix_Playing(m_channel[nom]) )
  99. {
  100. Mix_HaltChannel(m_channel[nom]);
  101. return true;
  102. }
  103. return false;
  104. }
  105. void Sounderer::stopAll()
  106. {
  107. Mix_HaltChannel(-1);
  108. }
  109. bool Sounderer::startMusic(std::string musicName)
  110. {
  111. /// 1 Sécurité de présence d'une musique
  112. if (m_music == 0x0)
  113. {
  114. if (musicName != "")
  115. {
  116. m_music = Mix_LoadMUS( (m_folder + musicName + ".wav").c_str());
  117. }
  118. if (m_music == 0x0){
  119. std::cout << "Sounderer::startMusic > 1 :" << Mix_GetError() << std::endl;
  120. return false;
  121. }
  122. }
  123. /// 2 Charge si la musique est différente
  124. else if (musicName != m_musicName)
  125. {
  126. // Charge la nouvelle musique
  127. Mix_Music* otherMusic(0x0);
  128. otherMusic = Mix_LoadMUS( (m_folder + musicName + ".wav").c_str());
  129. // Si la nouvelle musique est bien chargée, on l'attribue
  130. if (otherMusic == 0x0)
  131. std::cout << "Sounderer::startMusic > 2 :" << Mix_GetError() << std::endl;
  132. else {
  133. Mix_FreeMusic(m_music);
  134. m_music = otherMusic;
  135. otherMusic = 0x0;
  136. m_musicName = musicName;
  137. }
  138. }
  139. /// 3 Lancement de l'extrait et sécurité
  140. if (Mix_FadeInMusic(m_music, INFINITY_LOOP, 3692) == 0)
  141. return true;
  142. else {
  143. std::cout << "Sounderer::startMusic > 3 :" << Mix_GetError() << std::endl;
  144. return false;
  145. }
  146. }
  147. void Sounderer::assignFolder(std::string folder)
  148. {
  149. m_folder = folder;
  150. }