sound.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. #ifndef PAL_MAX_SAMPLERATE
  25. #define PAL_MAX_SAMPLERATE 48000
  26. #endif
  27. #ifdef __cplusplus
  28. extern "C"
  29. {
  30. #endif
  31. INT
  32. SOUND_OpenAudio(
  33. VOID
  34. );
  35. VOID
  36. SOUND_CloseAudio(
  37. VOID
  38. );
  39. VOID
  40. SOUND_PlayChannel(
  41. INT iSoundNum,
  42. INT iChannel
  43. );
  44. SDL_AudioSpec*
  45. SOUND_GetAudioSpec(
  46. VOID
  47. );
  48. #ifdef __SYMBIAN32__
  49. VOID
  50. SOUND_AdjustVolume(
  51. INT iDirectory
  52. );
  53. #endif
  54. VOID
  55. SOUND_PlayMUS(
  56. INT iNumRIX,
  57. BOOL fLoop,
  58. FLOAT flFadeTime
  59. );
  60. BOOL
  61. SOUND_PlayCDA(
  62. INT iNumTrack
  63. );
  64. #ifdef PAL_CLASSIC
  65. extern int g_iCurrChannel;
  66. #define SOUND_Play(i) SOUND_PlayChannel((i), (g_iCurrChannel ^= 1))
  67. #else
  68. #define SOUND_Play(i) SOUND_PlayChannel((i), 0)
  69. #endif
  70. extern BOOL g_fNoSound;
  71. extern BOOL g_fNoMusic;
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75. #endif