sound.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // All rights reserved.
  5. //
  6. // This file is part of SDLPAL.
  7. //
  8. // SDLPAL is free software: you can redistribute it and/or modify
  9. // it under the terms of the GNU General Public License as published by
  10. // the Free Software Foundation, either version 3 of the License, or
  11. // (at your option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // GNU General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU General Public License
  19. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. //
  21. #ifndef SOUND_H
  22. #define SOUND_H
  23. #include "common.h"
  24. #ifdef __cplusplus
  25. extern "C"
  26. {
  27. #endif
  28. INT
  29. AUDIO_OpenDevice(
  30. VOID
  31. );
  32. VOID
  33. AUDIO_CloseDevice(
  34. VOID
  35. );
  36. VOID
  37. AUDIO_PlaySound(
  38. INT iSoundNum
  39. );
  40. SDL_AudioSpec*
  41. AUDIO_GetDeviceSpec(
  42. VOID
  43. );
  44. VOID
  45. AUDIO_AdjustVolume(
  46. INT iDirection
  47. );
  48. VOID
  49. AUDIO_PlayMusic(
  50. INT iNumRIX,
  51. BOOL fLoop,
  52. FLOAT flFadeTime
  53. );
  54. BOOL
  55. AUDIO_PlayCDTrack(
  56. INT iNumTrack
  57. );
  58. VOID
  59. AUDIO_EnableMusic(
  60. BOOL fEnable
  61. );
  62. BOOL
  63. AUDIO_MusicEnabled(
  64. VOID
  65. );
  66. VOID
  67. AUDIO_EnableSound(
  68. BOOL fEnable
  69. );
  70. BOOL
  71. AUDIO_SoundEnabled(
  72. VOID
  73. );
  74. #ifdef PSP
  75. VOID
  76. SOUND_Reload(
  77. VOID
  78. );
  79. #endif
  80. #define AUDIO_IsIntegerConversion(a) ((((a) % gConfig.iSampleRate) | (gConfig.iSampleRate % (a))) == 0)
  81. #ifdef __cplusplus
  82. }
  83. #endif
  84. #endif