Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Sound.h 871B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*!
  2. * \file include/system/Sound.h
  3. * \brief This is the audio manager Header
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _SOUND_H_
  8. #define _SOUND_H_
  9. class Sound {
  10. public:
  11. static int initialize();
  12. static void shutdown();
  13. static void clear();
  14. static int numBuffers();
  15. static int loadBuffer(unsigned char* buffer, unsigned int length);
  16. static int numSources(bool atListener = false);
  17. static int addSource(int buffer, float volume = 1.0f, bool atListener = false, bool loop = false);
  18. static int sourceAt(int source, float pos[3]);
  19. static void listenAt(float pos[3], float orientation[6]);
  20. static void play(int source, bool atListener = false);
  21. static void stopAll();
  22. static void setEnabled(bool on = true);
  23. static bool getEnabled();
  24. static void setVolume(float vol = 1.0f);
  25. static float getVolume();
  26. };
  27. #endif