sound.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. #define SOUND_IsIntegerConversion(a) ((((a) % gpGlobals->iSampleRate) | (gpGlobals->iSampleRate % (a))) == 0)
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76. #endif