Sounderer.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef SOUNDERER_H_INCLUDED
  2. #define SOUNDERER_H_INCLUDED
  3. #include <iostream>
  4. #include <string>
  5. #include <map>
  6. #include <SDL.h>
  7. #include <SDL_mixer.h>
  8. #define EXT_WAV 0
  9. #define EXT_OGG 1
  10. #define INFINITY_LOOP -1
  11. class Sounderer
  12. {
  13. public:
  14. Sounderer();
  15. Sounderer(std::string folder);
  16. ~Sounderer();
  17. bool init();// à appeler avant utilisation
  18. // Fonctions de bruitage
  19. bool preLoad(std::string nom, short extension = EXT_WAV);// Précharge le son pour accélerer sa premièrer lecture [!] Dossier et extension auto
  20. bool play(std::string nom, int repetition = 0);// Joue le son choisi, le charge automatiquement si pas encore chargé
  21. bool fadePlay(std::string nom, int crescendoLenght, int repetition = 0);// Démarre le son par un crescendo d'une longueur voulue
  22. bool stop(std::string nom);// Stoppe le son choisi
  23. void stopAll();
  24. // Fonctions de musique
  25. bool startMusic(std::string musicName = "");
  26. // Fonction param
  27. void assignFolder(std::string folder);// Situe le dossier où sont contenus les sons
  28. private:
  29. int m_lastCanal;
  30. std::string m_folder;
  31. std::string m_musicName;
  32. Mix_Music* m_music;
  33. std::map<std::string, int> m_channel;//Channel on which our sound is played
  34. std::map<std::string, Mix_Chunk*>::iterator m_it;
  35. std::map<std::string, Mix_Chunk*> m_paquet;
  36. int m_rate;// = 22050 : Frequency of audio playback
  37. Uint16 m_format;// = AUDIO_S16SYS : Format of the audio we're playing
  38. int m_nbChannels;// = 2 : 2 channels = stereo
  39. int m_bufferSize;// = 4096 : Size of the audio buffers in memory
  40. };
  41. #endif // SOUNDERER_H_INCLUDED