Fmod.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:63k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. /* ========================================================================================== */
  2. /* FMOD Main header file. Copyright (c), Firelight Technologies Pty, Ltd 1999-2002.           */
  3. /* ========================================================================================== */
  4. #ifndef _FMOD_H_
  5. #define _FMOD_H_
  6. /* ========================================================================================== */
  7. /* DEFINITIONS                                                                                */
  8. /* ========================================================================================== */
  9. #if (!defined(WIN32) && !defined(__WIN32__) && !defined(_WIN32_WCE)) || (defined(__GNUC__) && defined(WIN32))
  10.     #ifndef _cdecl
  11.         #define _cdecl 
  12.     #endif
  13.     #ifndef _stdcall
  14.         #define _stdcall
  15.     #endif
  16. #endif 
  17. #define F_API _stdcall
  18. #define F_CALLBACKAPI _cdecl
  19. #ifdef DLL_EXPORTS
  20.     #define DLL_API __declspec(dllexport)
  21. #else
  22.     #if defined(__LCC__) || defined(__MINGW32__) || defined(__CYGWIN32__)
  23.         #define DLL_API F_API
  24.     #else
  25.         #define DLL_API
  26.     #endif /* __LCC__ ||  __MINGW32__ || __CYGWIN32__ */
  27. #endif /* DLL_EXPORTS */
  28. #define FMOD_VERSION    3.61f
  29. /* 
  30.     FMOD defined types 
  31. */
  32. typedef struct FSOUND_SAMPLE    FSOUND_SAMPLE;
  33. typedef struct FSOUND_STREAM    FSOUND_STREAM;
  34. typedef struct FSOUND_DSPUNIT   FSOUND_DSPUNIT;
  35. typedef struct FMUSIC_MODULE    FMUSIC_MODULE;
  36. /* 
  37.     Callback types
  38. */
  39. typedef void *      (F_CALLBACKAPI *FSOUND_DSPCALLBACK)    (void *originalbuffer, void *newbuffer, int length, int param);
  40. typedef signed char (F_CALLBACKAPI *FSOUND_STREAMCALLBACK) (FSOUND_STREAM *stream, void *buff, int len, int param);
  41. typedef void        (F_CALLBACKAPI *FMUSIC_CALLBACK)       (FMUSIC_MODULE *mod, unsigned char param);
  42. typedef unsigned int(F_CALLBACKAPI *FSOUND_OPENCALLBACK)   (const char *name);
  43. typedef void        (F_CALLBACKAPI *FSOUND_CLOSECALLBACK)  (unsigned int handle);
  44. typedef int         (F_CALLBACKAPI *FSOUND_READCALLBACK)   (void *buffer, int size, unsigned int handle);
  45. typedef int         (F_CALLBACKAPI *FSOUND_SEEKCALLBACK)   (unsigned int handle, int pos, signed char mode);
  46. typedef int         (F_CALLBACKAPI *FSOUND_TELLCALLBACK)   (unsigned int handle);
  47. typedef void *      (F_CALLBACKAPI *FSOUND_ALLOCCALLBACK)  (unsigned int size);
  48. typedef void *      (F_CALLBACKAPI *FSOUND_REALLOCCALLBACK)(void *ptr, unsigned int size);
  49. typedef void        (F_CALLBACKAPI *FSOUND_FREECALLBACK)   (void *ptr);
  50. /*
  51. [ENUM]
  52. [
  53.     [DESCRIPTION]   
  54.     On failure of commands in FMOD, use FSOUND_GetError to attain what happened.
  55.     
  56.     [SEE_ALSO]      
  57.     FSOUND_GetError
  58. ]
  59. */
  60. enum FMOD_ERRORS 
  61. {
  62.     FMOD_ERR_NONE,             /* No errors */
  63.     FMOD_ERR_BUSY,             /* Cannot call this command after FSOUND_Init.  Call FSOUND_Close first. */
  64.     FMOD_ERR_UNINITIALIZED,    /* This command failed because FSOUND_Init or FSOUND_SetOutput was not called */
  65.     FMOD_ERR_INIT,             /* Error initializing output device. */
  66.     FMOD_ERR_ALLOCATED,        /* Error initializing output device, but more specifically, the output device is already in use and cannot be reused. */
  67.     FMOD_ERR_PLAY,             /* Playing the sound failed. */
  68.     FMOD_ERR_OUTPUT_FORMAT,    /* Soundcard does not support the features needed for this soundsystem (16bit stereo output) */
  69.     FMOD_ERR_COOPERATIVELEVEL, /* Error setting cooperative level for hardware. */
  70.     FMOD_ERR_CREATEBUFFER,     /* Error creating hardware sound buffer. */
  71.     FMOD_ERR_FILE_NOTFOUND,    /* File not found */
  72.     FMOD_ERR_FILE_FORMAT,      /* Unknown file format */
  73.     FMOD_ERR_FILE_BAD,         /* Error loading file */
  74.     FMOD_ERR_MEMORY,           /* Not enough memory or resources */
  75.     FMOD_ERR_VERSION,          /* The version number of this file format is not supported */
  76.     FMOD_ERR_INVALID_PARAM,    /* An invalid parameter was passed to this function */
  77.     FMOD_ERR_NO_EAX,           /* Tried to use an EAX command on a non EAX enabled channel or output. */
  78.     FMOD_ERR_CHANNEL_ALLOC,    /* Failed to allocate a new channel */
  79.     FMOD_ERR_RECORD,           /* Recording is not supported on this machine */
  80.     FMOD_ERR_MEDIAPLAYER,      /* Windows Media Player not installed so cannot play wma or use internet streaming. */
  81.     FMOD_ERR_CDDEVICE          /* An error occured trying to open the specified CD device */
  82. };
  83. /*
  84. [ENUM]
  85. [
  86.     [DESCRIPTION]   
  87.     These output types are used with FSOUND_SetOutput, to choose which output driver to use.
  88.     
  89.     FSOUND_OUTPUT_DSOUND will not support hardware 3d acceleration if the sound card driver 
  90.     does not support DirectX 6 Voice Manager Extensions.
  91.     FSOUND_OUTPUT_WINMM is recommended for NT and CE.
  92.     [SEE_ALSO]      
  93.     FSOUND_SetOutput
  94.     FSOUND_GetOutput
  95. ]
  96. */
  97. enum FSOUND_OUTPUTTYPES
  98. {
  99.     FSOUND_OUTPUT_NOSOUND,    /* NoSound driver, all calls to this succeed but do nothing. */
  100.     FSOUND_OUTPUT_WINMM,      /* Windows Multimedia driver. */
  101.     FSOUND_OUTPUT_DSOUND,     /* DirectSound driver.  You need this to get EAX2 or EAX3 support, or FX api support. */
  102.     FSOUND_OUTPUT_A3D,        /* A3D driver. */
  103.     FSOUND_OUTPUT_OSS,        /* Linux/Unix OSS (Open Sound System) driver, i.e. the kernel sound drivers. */
  104.     FSOUND_OUTPUT_ESD,        /* Linux/Unix ESD (Enlightment Sound Daemon) driver. */
  105.     FSOUND_OUTPUT_ALSA,       /* Linux Alsa driver. */
  106.     FSOUND_OUTPUT_ASIO,       /* Low latency ASIO driver */
  107.     FSOUND_OUTPUT_XBOX,       /* Xbox driver */
  108.     FSOUND_OUTPUT_PS2,        /* PlayStation 2 driver */
  109.     FSOUND_OUTPUT_MAC,        /* Mac SoundManager driver */
  110.     FSOUND_OUTPUT_GC,         /* Gamecube driver */
  111.     FSOUND_OUTPUT_NOSOUND_NONREALTIME   /* This is the same as nosound, but the sound generation is driven by FSOUND_Update */
  112. };
  113. /*
  114. [ENUM]
  115. [
  116.     [DESCRIPTION]   
  117.     These mixer types are used with FSOUND_SetMixer, to choose which mixer to use, or to act 
  118.     upon for other reasons using FSOUND_GetMixer.
  119.     It is not nescessary to set the mixer.  FMOD will autodetect the best mixer for you.
  120.     [SEE_ALSO]      
  121.     FSOUND_SetMixer
  122.     FSOUND_GetMixer
  123. ]
  124. */
  125. enum FSOUND_MIXERTYPES
  126. {
  127.     FSOUND_MIXER_AUTODETECT,        /* CE/PS2/GC Only - Non interpolating/low quality mixer. */
  128.     FSOUND_MIXER_BLENDMODE,         /* Removed / obsolete. */
  129.     FSOUND_MIXER_MMXP5,             /* Removed / obsolete. */
  130.     FSOUND_MIXER_MMXP6,             /* Removed / obsolete. */
  131.     FSOUND_MIXER_QUALITY_AUTODETECT,/* All platforms - Autodetect the fastest quality mixer based on your cpu. */
  132.     FSOUND_MIXER_QUALITY_FPU,       /* Win32/Linux only - Interpolating/volume ramping FPU mixer.  */
  133.     FSOUND_MIXER_QUALITY_MMXP5,     /* Win32/Linux only - Interpolating/volume ramping P5 MMX mixer.  */
  134.     FSOUND_MIXER_QUALITY_MMXP6,     /* Win32/Linux only - Interpolating/volume ramping ppro+ MMX mixer. */
  135.     FSOUND_MIXER_MONO,              /* CE/PS2/GC only - MONO non interpolating/low quality mixer. For speed*/
  136.     FSOUND_MIXER_QUALITY_MONO,      /* CE/PS2/GC only - MONO Interpolating mixer.  For speed */
  137.     FSOUND_MIXER_MAX
  138. };
  139. /*
  140. [ENUM]
  141. [
  142.     [DESCRIPTION]   
  143.     These definitions describe the type of song being played.
  144.     [SEE_ALSO]      
  145.     FMUSIC_GetType  
  146. ]
  147. */
  148. enum FMUSIC_TYPES
  149. {
  150.     FMUSIC_TYPE_NONE,       
  151.     FMUSIC_TYPE_MOD,        /* Protracker / Fasttracker */
  152.     FMUSIC_TYPE_S3M,        /* ScreamTracker 3 */
  153.     FMUSIC_TYPE_XM,         /* FastTracker 2 */
  154.     FMUSIC_TYPE_IT,         /* Impulse Tracker. */
  155.     FMUSIC_TYPE_MIDI        /* MIDI file */
  156. };
  157. /*
  158. [DEFINE_START] 
  159. [
  160.     [NAME] 
  161.     FSOUND_DSP_PRIORITIES
  162.     [DESCRIPTION]   
  163.     These default priorities are used by FMOD internal system DSP units.  They describe the 
  164.     position of the DSP chain, and the order of how audio processing is executed.
  165.     You can actually through the use of FSOUND_DSP_GetxxxUnit (where xxx is the name of the DSP
  166.     unit), disable or even change the priority of a DSP unit.
  167.     [SEE_ALSO]      
  168.     FSOUND_DSP_Create
  169.     FSOUND_DSP_SetPriority
  170.     FSOUND_DSP_GetSpectrum
  171. ]
  172. */
  173. #define FSOUND_DSP_DEFAULTPRIORITY_CLEARUNIT        0       /* DSP CLEAR unit - done first */
  174. #define FSOUND_DSP_DEFAULTPRIORITY_SFXUNIT          100     /* DSP SFX unit - done second */
  175. #define FSOUND_DSP_DEFAULTPRIORITY_MUSICUNIT        200     /* DSP MUSIC unit - done third */
  176. #define FSOUND_DSP_DEFAULTPRIORITY_USER             300     /* User priority, use this as reference */
  177. #define FSOUND_DSP_DEFAULTPRIORITY_FFTUNIT          900     /* This reads data for FSOUND_DSP_GetSpectrum, so it comes after user units */
  178. #define FSOUND_DSP_DEFAULTPRIORITY_CLIPANDCOPYUNIT  1000    /* DSP CLIP AND COPY unit - last */
  179. /* [DEFINE_END] */
  180. /*
  181. [DEFINE_START] 
  182. [
  183.     [NAME] 
  184.     FSOUND_CAPS
  185.     [DESCRIPTION]   
  186.     Driver description bitfields.  Use FSOUND_Driver_GetCaps to determine if a driver enumerated
  187.     has the settings you are after.  The enumerated driver depends on the output mode, see
  188.     FSOUND_OUTPUTTYPES
  189.     [SEE_ALSO]
  190.     FSOUND_GetDriverCaps
  191.     FSOUND_OUTPUTTYPES
  192. ]
  193. */
  194. #define FSOUND_CAPS_HARDWARE                0x1     /* This driver supports hardware accelerated 3d sound. */
  195. #define FSOUND_CAPS_EAX2                    0x2     /* This driver supports EAX 2 reverb */
  196. #define FSOUND_CAPS_EAX3                    0x10    /* This driver supports EAX 3 reverb */
  197. /* [DEFINE_END] */
  198. /*
  199. [DEFINE_START] 
  200. [
  201.     [NAME] 
  202.     FSOUND_MODES
  203.     
  204.     [DESCRIPTION]   
  205.     Sample description bitfields, OR them together for loading and describing samples.
  206.     NOTE.  If the file format being loaded already has a defined format, such as WAV or MP3, then 
  207.     trying to override the pre-defined format with a new set of format flags will not work.  For
  208.     example, an 8 bit WAV file will not load as 16bit if you specify FSOUND_16BITS.  It will just
  209.     ignore the flag and go ahead loading it as 8bits.  For these type of formats the only flags
  210.     you can specify that will really alter the behaviour of how it is loaded, are the following.
  211.     FSOUND_LOOP_OFF     
  212.     FSOUND_LOOP_NORMAL  
  213.     FSOUND_LOOP_BIDI    
  214.     FSOUND_HW3D
  215.     FSOUND_2D
  216.     FSOUND_STREAMABLE   
  217.     FSOUND_LOADMEMORY   
  218.     FSOUND_LOADRAW          
  219.     FSOUND_MPEGACCURATE     
  220.     See flag descriptions for what these do.
  221. ]
  222. */
  223. #define FSOUND_LOOP_OFF     0x00000001  /* For non looping samples. */
  224. #define FSOUND_LOOP_NORMAL  0x00000002  /* For forward looping samples. */
  225. #define FSOUND_LOOP_BIDI    0x00000004  /* For bidirectional looping samples.  (no effect if in hardware). */
  226. #define FSOUND_8BITS        0x00000008  /* For 8 bit samples. */
  227. #define FSOUND_16BITS       0x00000010  /* For 16 bit samples. */
  228. #define FSOUND_MONO         0x00000020  /* For mono samples. */
  229. #define FSOUND_STEREO       0x00000040  /* For stereo samples. */
  230. #define FSOUND_UNSIGNED     0x00000080  /* For user created source data containing unsigned samples. */
  231. #define FSOUND_SIGNED       0x00000100  /* For user created source data containing signed data. */
  232. #define FSOUND_DELTA        0x00000200  /* For user created source data stored as delta values. */
  233. #define FSOUND_IT214        0x00000400  /* For user created source data stored using IT214 compression. */
  234. #define FSOUND_IT215        0x00000800  /* For user created source data stored using IT215 compression. */
  235. #define FSOUND_HW3D         0x00001000  /* Attempts to make samples use 3d hardware acceleration. (if the card supports it) */
  236. #define FSOUND_2D           0x00002000  /* Tells software (not hardware) based sample not to be included in 3d processing. */
  237. #define FSOUND_STREAMABLE   0x00004000  /* For a streamimg sound where you feed the data to it. */
  238. #define FSOUND_LOADMEMORY   0x00008000  /* "name" will be interpreted as a pointer to data for streaming and samples. */
  239. #define FSOUND_LOADRAW      0x00010000  /* Will ignore file format and treat as raw pcm. */
  240. #define FSOUND_MPEGACCURATE 0x00020000  /* For FSOUND_Stream_OpenFile - for accurate FSOUND_Stream_GetLengthMs/FSOUND_Stream_SetTime.  WARNING, see FSOUND_Stream_OpenFile for inital opening time performance issues. */
  241. #define FSOUND_FORCEMONO    0x00040000  /* For forcing stereo streams and samples to be mono - needed if using FSOUND_HW3D and stereo data - incurs a small speed hit for streams */
  242. #define FSOUND_HW2D         0x00080000  /* 2D hardware sounds.  allows hardware specific effects */
  243. #define FSOUND_ENABLEFX     0x00100000  /* Allows DX8 FX to be played back on a sound.  Requires DirectX 8 - Note these sounds cannot be played more than once, be 8 bit, be less than a certain size, or have a changing frequency */
  244. #define FSOUND_MPEGHALFRATE 0x00200000  /* For FMODCE only - decodes mpeg streams using a lower quality decode, but faster execution */
  245. #define FSOUND_XADPCM       0x00400000  /* For XBOX only - Contents are compressed as XADPCM  */
  246. #define FSOUND_VAG          0x00800000  /* For PS2 only - Contents are compressed as Sony VAG format */
  247. #define FSOUND_NONBLOCKING  0x01000000  /* For FSOUND_Stream_OpenFile - Causes stream to open in the background and not block the foreground app - stream functions only work when ready.  Poll any stream function determine when it IS ready. */
  248. #define FSOUND_GCADPCM      0x02000000  /* For Gamecube only - Contents are compressed as Gamecube DSP-ADPCM format */
  249. #define FSOUND_NORMAL       (FSOUND_16BITS | FSOUND_SIGNED | FSOUND_MONO)      
  250. /* [DEFINE_END] */
  251. /*
  252. [DEFINE_START] 
  253. [
  254.     [NAME] 
  255.     FSOUND_CDPLAYMODES
  256.     
  257.     [DESCRIPTION]   
  258.     Playback method for a CD Audio track, with FSOUND_CD_SetPlayMode
  259.     [SEE_ALSO]    
  260.     FSOUND_CD_SetPlayMode  
  261.     FSOUND_CD_Play
  262. ]
  263. */
  264. #define FSOUND_CD_PLAYCONTINUOUS    0   /* Starts from the current track and plays to end of CD. */
  265. #define FSOUND_CD_PLAYONCE          1   /* Plays the specified track then stops. */
  266. #define FSOUND_CD_PLAYLOOPED        2   /* Plays the specified track looped, forever until stopped manually. */
  267. #define FSOUND_CD_PLAYRANDOM        3   /* Plays tracks in random order */
  268. /* [DEFINE_END] */
  269. /*
  270. [DEFINE_START] 
  271. [
  272.     [NAME] 
  273.     FSOUND_MISC_VALUES
  274.     
  275.     [DESCRIPTION]
  276.     Miscellaneous values for FMOD functions.
  277.     [SEE_ALSO]
  278.     FSOUND_PlaySound
  279.     FSOUND_PlaySoundEx
  280.     FSOUND_Sample_Alloc
  281.     FSOUND_Sample_Load
  282.     FSOUND_SetPan
  283. ]
  284. */
  285. #define FSOUND_FREE             -1      /* value to play on any free channel, or to allocate a sample in a free sample slot. */
  286. #define FSOUND_UNMANAGED        -2      /* value to allocate a sample that is NOT managed by FSOUND or placed in a sample slot. */
  287. #define FSOUND_ALL              -3      /* for a channel index , this flag will affect ALL channels available!  Not supported by every function. */
  288. #define FSOUND_STEREOPAN        -1      /* value for FSOUND_SetPan so that stereo sounds are not played at half volume.  See FSOUND_SetPan for more on this. */
  289. #define FSOUND_SYSTEMCHANNEL    -1000   /* special 'channel' ID for all channel based functions that want to alter the global FSOUND software mixing output channel */
  290. #define FSOUND_SYSTEMSAMPLE     -1000   /* special 'sample' ID for all sample based functions that want to alter the global FSOUND software mixing output sample */
  291. /* [DEFINE_END] */
  292. /*
  293. [STRUCTURE] 
  294. [
  295.     [DESCRIPTION]
  296.     Structure defining a reverb environment.
  297.     For more indepth descriptions of the reverb properties under win32, please see the EAX2 and EAX3
  298.     documentation at http://developer.creative.com/ under the 'downloads' section.
  299.     If they do not have the EAX3 documentation, then most information can be attained from
  300.     the EAX2 documentation, as EAX3 only adds some more parameters and functionality on top of 
  301.     EAX2.
  302.     Note the default reverb properties are the same as the FSOUND_PRESET_GENERIC preset.
  303.     Note that integer values that typically range from -10,000 to 1000 are represented in 
  304.     decibels, and are of a logarithmic scale, not linear, wheras float values are typically linear.
  305.     PORTABILITY: Each member has the platform it supports in braces ie (win32/xbox).  
  306.     Some reverb parameters are only supported in win32 and some only on xbox. If all parameters are set then
  307.     the reverb should product a similar effect on either platform.
  308.     Only Win32 supports the reverb api.
  309.     
  310.     The numerical values listed below are the maximum, minimum and default values for each variable respectively.
  311.     [SEE_ALSO]
  312.     FSOUND_Reverb_SetProperties
  313.     FSOUND_Reverb_GetProperties
  314.     FSOUND_REVERB_PRESETS
  315.     FSOUND_REVERB_FLAGS
  316. ]
  317. */
  318. typedef struct _FSOUND_REVERB_PROPERTIES /* MIN     MAX    DEFAULT   DESCRIPTION */
  319. {                                   
  320.     unsigned int Environment;            /* 0     , 25    , 0      , sets all listener properties (win32/ps2 only) */
  321.     float        EnvSize;                /* 1.0   , 100.0 , 7.5    , environment size in meters (win32 only) */
  322.     float        EnvDiffusion;           /* 0.0   , 1.0   , 1.0    , environment diffusion (win32/xbox) */
  323.     int          Room;                   /* -10000, 0     , -1000  , room effect level (at mid frequencies) (win32/xbox/ps2) */
  324.     int          RoomHF;                 /* -10000, 0     , -100   , relative room effect level at high frequencies (win32/xbox) */
  325.     int          RoomLF;                 /* -10000, 0     , 0      , relative room effect level at low frequencies (win32 only) */
  326.     float        DecayTime;              /* 0.1   , 20.0  , 1.49   , reverberation decay time at mid frequencies (win32/xbox) */
  327.     float        DecayHFRatio;           /* 0.1   , 2.0   , 0.83   , high-frequency to mid-frequency decay time ratio (win32/xbox) */
  328.     float        DecayLFRatio;           /* 0.1   , 2.0   , 1.0    , low-frequency to mid-frequency decay time ratio (win32 only) */
  329.     int          Reflections;            /* -10000, 1000  , -2602  , early reflections level relative to room effect (win32/xbox) */
  330.     float        ReflectionsDelay;       /* 0.0   , 0.3   , 0.007  , initial reflection delay time (win32/xbox) */
  331.     float        ReflectionsPan[3];      /*       ,       , [0,0,0], early reflections panning vector (win32 only) */
  332.     int          Reverb;                 /* -10000, 2000  , 200    , late reverberation level relative to room effect (win32/xbox) */
  333.     float        ReverbDelay;            /* 0.0   , 0.1   , 0.011  , late reverberation delay time relative to initial reflection (win32/xbox) */
  334.     float        ReverbPan[3];           /*       ,       , [0,0,0], late reverberation panning vector (win32 only) */
  335.     float        EchoTime;               /* .075  , 0.25  , 0.25   , echo time (win32 only) */
  336.     float        EchoDepth;              /* 0.0   , 1.0   , 0.0    , echo depth (win32 only) */
  337.     float        ModulationTime;         /* 0.04  , 4.0   , 0.25   , modulation time (win32 only) */
  338.     float        ModulationDepth;        /* 0.0   , 1.0   , 0.0    , modulation depth (win32 only) */
  339.     float        AirAbsorptionHF;        /* -100  , 0.0   , -5.0   , change in level per meter at high frequencies (win32 only) */
  340.     float        HFReference;            /* 1000.0, 20000 , 5000.0 , reference high frequency (hz) (win32/xbox) */
  341.     float        LFReference;            /* 20.0  , 1000.0, 250.0  , reference low frequency (hz) (win32 only) */
  342.     float        RoomRolloffFactor;      /* 0.0   , 10.0  , 0.0    , like FSOUND_3D_SetRolloffFactor but for room effect (win32/xbox) */
  343.     float        Diffusion;              /* 0.0   , 100.0 , 100.0  , Value that controls the echo density in the late reverberation decay. (xbox only) */
  344.     float        Density;                /* 0.0   , 100.0 , 100.0  , Value that controls the modal density in the late reverberation decay (xbox only) */
  345.     unsigned int Flags;                  /* FSOUND_REVERB_FLAGS - modifies the behavior of above properties (win32 only) */
  346. } FSOUND_REVERB_PROPERTIES;
  347. /*
  348. [DEFINE_START] 
  349. [
  350.     [NAME] 
  351.     FSOUND_REVERB_FLAGS
  352.     
  353.     [DESCRIPTION]
  354.     Values for the Flags member of the FSOUND_REVERB_PROPERTIES structure.
  355.     [SEE_ALSO]
  356.     FSOUND_REVERB_PROPERTIES
  357. ]
  358. */
  359. #define FSOUND_REVERB_FLAGS_DECAYTIMESCALE        0x00000001 /* 'EnvSize' affects reverberation decay time */
  360. #define FSOUND_REVERB_FLAGS_REFLECTIONSSCALE      0x00000002 /* 'EnvSize' affects reflection level */
  361. #define FSOUND_REVERB_FLAGS_REFLECTIONSDELAYSCALE 0x00000004 /* 'EnvSize' affects initial reflection delay time */
  362. #define FSOUND_REVERB_FLAGS_REVERBSCALE           0x00000008 /* 'EnvSize' affects reflections level */
  363. #define FSOUND_REVERB_FLAGS_REVERBDELAYSCALE      0x00000010 /* 'EnvSize' affects late reverberation delay time */
  364. #define FSOUND_REVERB_FLAGS_DECAYHFLIMIT          0x00000020 /* AirAbsorptionHF affects DecayHFRatio */
  365. #define FSOUND_REVERB_FLAGS_ECHOTIMESCALE         0x00000040 /* 'EnvSize' affects echo time */
  366. #define FSOUND_REVERB_FLAGS_MODULATIONTIMESCALE   0x00000080 /* 'EnvSize' affects modulation time */
  367. #define FSOUND_REVERB_FLAGS_CORE0                 0x00000100 /* PS2 Only - Reverb is applied to CORE0 (hw voices 0-23) */
  368. #define FSOUND_REVERB_FLAGS_CORE1                 0x00000200 /* PS2 Only - Reverb is applied to CORE1 (hw voices 24-47) */
  369. #define FSOUND_REVERB_FLAGS_DEFAULT              (FSOUND_REVERB_FLAGS_DECAYTIMESCALE |        
  370.                                                   FSOUND_REVERB_FLAGS_REFLECTIONSSCALE |      
  371.                                                   FSOUND_REVERB_FLAGS_REFLECTIONSDELAYSCALE | 
  372.                                                   FSOUND_REVERB_FLAGS_REVERBSCALE |           
  373.                                                   FSOUND_REVERB_FLAGS_REVERBDELAYSCALE |      
  374.                                                   FSOUND_REVERB_FLAGS_DECAYHFLIMIT |          
  375.                                                   FSOUND_REVERB_FLAGS_CORE0 |                 
  376.                                                   FSOUND_REVERB_FLAGS_CORE1 )
  377. /* [DEFINE_END] */
  378. /*
  379. [DEFINE_START] 
  380. [
  381.     [NAME] 
  382.     FSOUND_REVERB_PRESETS
  383.     
  384.     [DESCRIPTION]   
  385.     A set of predefined environment PARAMETERS, created by Creative Labs
  386.     These are used to initialize an FSOUND_REVERB_PROPERTIES structure statically.
  387.     ie 
  388.     FSOUND_REVERB_PROPERTIES prop = FSOUND_PRESET_GENERIC;
  389.     [SEE_ALSO]
  390.     FSOUND_Reverb_SetProperties
  391. ]
  392. */
  393. /*                                     Env  Size    Diffus  Room   RoomHF  RmLF DecTm   DecHF  DecLF   Refl  RefDel  RefPan               Revb  RevDel  ReverbPan           EchoTm  EchDp  ModTm  ModDp  AirAbs  HFRef    LFRef  RRlOff Diffus  Densty  FLAGS */
  394. #define FSOUND_PRESET_OFF              {0, 7.5f, 1.00f, -10000, -10000, 0,   1.00f,  1.00f, 1.0f,  -2602, 0.007f, { 0.0f,0.0f,0.0f },   200, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,   0.0f,   0.0f, 0x33f }
  395. #define FSOUND_PRESET_GENERIC          {0, 7.5f, 1.00f, -1000,  -100,   0,   1.49f,  0.83f, 1.0f,  -2602, 0.007f, { 0.0f,0.0f,0.0f },   200, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  396. #define FSOUND_PRESET_PADDEDCELL       {1, 1.4f, 1.00f, -1000,  -6000,  0,   0.17f,  0.10f, 1.0f,  -1204, 0.001f, { 0.0f,0.0f,0.0f },   207, 0.002f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  397. #define FSOUND_PRESET_ROOM             {2, 1.9f, 1.00f, -1000,  -454,   0,   0.40f,  0.83f, 1.0f,  -1646, 0.002f, { 0.0f,0.0f,0.0f },    53, 0.003f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  398. #define FSOUND_PRESET_BATHROOM         {3, 1.4f, 1.00f, -1000,  -1200,  0,   1.49f,  0.54f, 1.0f,   -370, 0.007f, { 0.0f,0.0f,0.0f },  1030, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f,  60.0f, 0x3f }
  399. #define FSOUND_PRESET_LIVINGROOM       {4, 2.5f, 1.00f, -1000,  -6000,  0,   0.50f,  0.10f, 1.0f,  -1376, 0.003f, { 0.0f,0.0f,0.0f }, -1104, 0.004f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  400. #define FSOUND_PRESET_STONEROOM        {5, 11.6f, 1.00f, -1000,  -300,   0,   2.31f,  0.64f, 1.0f,   -711, 0.012f, { 0.0f,0.0f,0.0f },    83, 0.017f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  401. #define FSOUND_PRESET_AUDITORIUM       {6, 21.6f, 1.00f, -1000,  -476,   0,   4.32f,  0.59f, 1.0f,   -789, 0.020f, { 0.0f,0.0f,0.0f },  -289, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  402. #define FSOUND_PRESET_CONCERTHALL      {7, 19.6f, 1.00f, -1000,  -500,   0,   3.92f,  0.70f, 1.0f,  -1230, 0.020f, { 0.0f,0.0f,0.0f },    -2, 0.029f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  403. #define FSOUND_PRESET_CAVE             {8, 14.6f, 1.00f, -1000,  0,      0,   2.91f,  1.30f, 1.0f,   -602, 0.015f, { 0.0f,0.0f,0.0f },  -302, 0.022f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x1f }
  404. #define FSOUND_PRESET_ARENA            {9, 36.2f, 1.00f, -1000,  -698,   0,   7.24f,  0.33f, 1.0f,  -1166, 0.020f, { 0.0f,0.0f,0.0f },    16, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  405. #define FSOUND_PRESET_HANGAR           {10, 50.3f, 1.00f, -1000,  -1000,  0,   10.05f, 0.23f, 1.0f,   -602, 0.020f, { 0.0f,0.0f,0.0f },   198, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  406. #define FSOUND_PRESET_CARPETTEDHALLWAY {11, 1.9f, 1.00f, -1000,  -4000,  0,   0.30f,  0.10f, 1.0f,  -1831, 0.002f, { 0.0f,0.0f,0.0f }, -1630, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  407. #define FSOUND_PRESET_HALLWAY          {12, 1.8f, 1.00f, -1000,  -300,   0,   1.49f,  0.59f, 1.0f,  -1219, 0.007f, { 0.0f,0.0f,0.0f },   441, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  408. #define FSOUND_PRESET_STONECORRIDOR    {13, 13.5f, 1.00f, -1000,  -237,   0,   2.70f,  0.79f, 1.0f,  -1214, 0.013f, { 0.0f,0.0f,0.0f },   395, 0.020f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  409. #define FSOUND_PRESET_ALLEY         {14, 7.5f, 0.30f, -1000,  -270,   0,   1.49f,  0.86f, 1.0f,  -1204, 0.007f, { 0.0f,0.0f,0.0f },    -4, 0.011f, { 0.0f,0.0f,0.0f }, 0.125f, 0.95f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  410. #define FSOUND_PRESET_FOREST         {15, 38.0f, 0.30f, -1000,  -3300,  0,   1.49f,  0.54f, 1.0f,  -2560, 0.162f, { 0.0f,0.0f,0.0f },  -229, 0.088f, { 0.0f,0.0f,0.0f }, 0.125f, 1.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,  79.0f, 100.0f, 0x3f }
  411. #define FSOUND_PRESET_CITY             {16, 7.5f, 0.50f, -1000,  -800,   0,   1.49f,  0.67f, 1.0f,  -2273, 0.007f, { 0.0f,0.0f,0.0f }, -1691, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,  50.0f, 100.0f, 0x3f }
  412. #define FSOUND_PRESET_MOUNTAINS        {17, 100.0f, 0.27f, -1000,  -2500,  0,   1.49f,  0.21f, 1.0f,  -2780, 0.300f, { 0.0f,0.0f,0.0f }, -1434, 0.100f, { 0.0f,0.0f,0.0f }, 0.250f, 1.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,  27.0f, 100.0f, 0x1f }
  413. #define FSOUND_PRESET_QUARRY           {18, 17.5f, 1.00f, -1000,  -1000,  0,   1.49f,  0.83f, 1.0f, -10000, 0.061f, { 0.0f,0.0f,0.0f },   500, 0.025f, { 0.0f,0.0f,0.0f }, 0.125f, 0.70f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  414. #define FSOUND_PRESET_PLAIN            {19, 42.5f, 0.21f, -1000,  -2000,  0,   1.49f,  0.50f, 1.0f,  -2466, 0.179f, { 0.0f,0.0f,0.0f }, -1926, 0.100f, { 0.0f,0.0f,0.0f }, 0.250f, 1.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,  21.0f, 100.0f, 0x3f }
  415. #define FSOUND_PRESET_PARKINGLOT       {20, 8.3f, 1.00f, -1000,  0,      0,   1.65f,  1.50f, 1.0f,  -1363, 0.008f, { 0.0f,0.0f,0.0f }, -1153, 0.012f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x1f }
  416. #define FSOUND_PRESET_SEWERPIPE        {21, 1.7f, 0.80f, -1000,  -1000,  0,   2.81f,  0.14f, 1.0f,    429, 0.014f, { 0.0f,0.0f,0.0f },  1023, 0.021f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 0.000f, -5.0f, 5000.0f, 250.0f, 0.0f,  80.0f,  60.0f, 0x3f }
  417. #define FSOUND_PRESET_UNDERWATER       {22, 1.8f, 1.00f, -1000,  -4000,  0,   1.49f,  0.10f, 1.0f,   -449, 0.007f, { 0.0f,0.0f,0.0f },  1700, 0.011f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 1.18f, 0.348f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x3f }
  418. /* Non I3DL2 presets */
  419. #define FSOUND_PRESET_DRUGGED          {23, 1.9f, 0.50f, -1000,  0,      0,   8.39f,  1.39f, 1.0f,  -115,  0.002f, { 0.0f,0.0f,0.0f },   985, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 0.25f, 1.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x1f }
  420. #define FSOUND_PRESET_DIZZY            {24, 1.8f, 0.60f, -1000,  -400,   0,   17.23f, 0.56f, 1.0f,  -1713, 0.020f, { 0.0f,0.0f,0.0f },  -613, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 1.00f, 0.81f, 0.310f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x1f }
  421. #define FSOUND_PRESET_PSYCHOTIC        {25, 1.0f, 0.50f, -1000,  -151,   0,   7.56f,  0.91f, 1.0f,  -626,  0.020f, { 0.0f,0.0f,0.0f },   774, 0.030f, { 0.0f,0.0f,0.0f }, 0.250f, 0.00f, 4.00f, 1.000f, -5.0f, 5000.0f, 250.0f, 0.0f, 100.0f, 100.0f, 0x1f }
  422. /* PlayStation 2 Only presets */
  423. #define FSOUND_PRESET_PS2_ROOM         {1, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  424. #define FSOUND_PRESET_PS2_STUDIO_A     {2, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  425. #define FSOUND_PRESET_PS2_STUDIO_B     {3, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  426. #define FSOUND_PRESET_PS2_STUDIO_C     {4, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  427. #define FSOUND_PRESET_PS2_HALL         {5, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  428. #define FSOUND_PRESET_PS2_SPACE        {6, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  429. #define FSOUND_PRESET_PS2_ECHO         {7, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  430. #define FSOUND_PRESET_PS2_DELAY        {8, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  431. #define FSOUND_PRESET_PS2_PIPE         {9, 0,     0,         0,  0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f, { 0.0f,0.0f,0.0f },     0, 0.000f, { 0.0f,0.0f,0.0f }, 0.000f, 0.00f, 0.00f, 0.000f,  0.0f, 0000.0f,   0.0f, 0.0f,   0.0f,   0.0f, 0x31f }
  432. /* [DEFINE_END] */
  433. /*
  434. [STRUCTURE] 
  435. [
  436.     [DESCRIPTION]
  437.     Structure defining the properties for a reverb source, related to a FSOUND channel.
  438.     For more indepth descriptions of the reverb properties under win32, please see the EAX3
  439.     documentation at http://developer.creative.com/ under the 'downloads' section.
  440.     If they do not have the EAX3 documentation, then most information can be attained from
  441.     the EAX2 documentation, as EAX3 only adds some more parameters and functionality on top of 
  442.     EAX2.
  443.     
  444.     Note the default reverb properties are the same as the FSOUND_PRESET_GENERIC preset.
  445.     Note that integer values that typically range from -10,000 to 1000 are represented in 
  446.     decibels, and are of a logarithmic scale, not linear, wheras float values are typically linear.
  447.     PORTABILITY: Each member has the platform it supports in braces ie (win32/xbox).  
  448.     Some reverb parameters are only supported in win32 and some only on xbox. If all parameters are set then
  449.     the reverb should product a similar effect on either platform.
  450.     Linux and FMODCE do not support the reverb api.
  451.     
  452.     The numerical values listed below are the maximum, minimum and default values for each variable respectively.
  453.     [SEE_ALSO]
  454.     FSOUND_Reverb_SetChannelProperties
  455.     FSOUND_Reverb_GetChannelProperties
  456.     FSOUND_REVERB_CHANNELFLAGS
  457. ]
  458. */
  459. typedef struct _FSOUND_REVERB_CHANNELPROPERTIES /* MIN     MAX    DEFAULT */
  460. {                                   
  461.     int    Direct;                              /* -10000, 1000,  0,    direct path level (at low and mid frequencies) (win32/xbox) */
  462.     int    DirectHF;                            /* -10000, 0,     0,    relative direct path level at high frequencies (win32/xbox) */
  463.     int    Room;                                /* -10000, 1000,  0,    room effect level (at low and mid frequencies) (win32/xbox) */
  464.     int    RoomHF;                              /* -10000, 0,     0,    relative room effect level at high frequencies (win32/xbox) */
  465.     int    Obstruction;                         /* -10000, 0,     0,    main obstruction control (attenuation at high frequencies)  (win32/xbox) */
  466.     float  ObstructionLFRatio;                  /* 0.0,    1.0,   0.0,  obstruction low-frequency level re. main control (win32/xbox) */
  467.     int    Occlusion;                           /* -10000, 0,     0,    main occlusion control (attenuation at high frequencies) (win32/xbox) */
  468.     float  OcclusionLFRatio;                    /* 0.0,    1.0,   0.25, occlusion low-frequency level re. main control (win32/xbox) */
  469.     float  OcclusionRoomRatio;                  /* 0.0,    10.0,  1.5,  relative occlusion control for room effect (win32) */
  470.     float  OcclusionDirectRatio;                /* 0.0,    10.0,  1.0,  relative occlusion control for direct path (win32) */
  471.     int    Exclusion;                           /* -10000, 0,     0,    main exlusion control (attenuation at high frequencies) (win32) */
  472.     float  ExclusionLFRatio;                    /* 0.0,    1.0,   1.0,  exclusion low-frequency level re. main control (win32) */
  473.     int    OutsideVolumeHF;                     /* -10000, 0,     0,    outside sound cone level at high frequencies (win32) */
  474.     float  DopplerFactor;                       /* 0.0,    10.0,  0.0,  like DS3D flDopplerFactor but per source (win32) */
  475.     float  RolloffFactor;                       /* 0.0,    10.0,  0.0,  like DS3D flRolloffFactor but per source (win32) */
  476.     float  RoomRolloffFactor;                   /* 0.0,    10.0,  0.0,  like DS3D flRolloffFactor but for room effect (win32/xbox) */
  477.     float  AirAbsorptionFactor;                 /* 0.0,    10.0,  1.0,  multiplies AirAbsorptionHF member of FSOUND_REVERB_PROPERTIES (win32) */
  478.     int    Flags;                               /* FSOUND_REVERB_CHANNELFLAGS - modifies the behavior of properties (win32) */
  479. } FSOUND_REVERB_CHANNELPROPERTIES;
  480. /*
  481. [DEFINE_START] 
  482. [
  483.     [NAME] 
  484.     FSOUND_REVERB_CHANNELFLAGS
  485.     
  486.     [DESCRIPTION]
  487.     Values for the Flags member of the FSOUND_REVERB_CHANNELPROPERTIES structure.
  488.     [SEE_ALSO]
  489.     FSOUND_REVERB_CHANNELPROPERTIES
  490. ]
  491. */
  492. #define FSOUND_REVERB_CHANNELFLAGS_DIRECTHFAUTO  0x00000001 /* Automatic setting of 'Direct'  due to distance from listener */
  493. #define FSOUND_REVERB_CHANNELFLAGS_ROOMAUTO      0x00000002 /* Automatic setting of 'Room'  due to distance from listener */
  494. #define FSOUND_REVERB_CHANNELFLAGS_ROOMHFAUTO    0x00000004 /* Automatic setting of 'RoomHF' due to distance from listener */
  495. #define FSOUND_REVERB_CHANNELFLAGS_DEFAULT       (FSOUND_REVERB_CHANNELFLAGS_DIRECTHFAUTO |   
  496.                                                   FSOUND_REVERB_CHANNELFLAGS_ROOMAUTO|        
  497.                                                   FSOUND_REVERB_CHANNELFLAGS_ROOMHFAUTO)
  498. /* [DEFINE_END] */
  499. /*
  500. [ENUM] 
  501. [
  502.     [DESCRIPTION]
  503.     These values are used with FSOUND_FX_Enable to enable DirectX 8 FX for a channel.
  504.     [SEE_ALSO]
  505.     FSOUND_FX_Enable
  506.     FSOUND_FX_Disable
  507.     FSOUND_FX_SetChorus
  508.     FSOUND_FX_SetCompressor
  509.     FSOUND_FX_SetDistortion
  510.     FSOUND_FX_SetEcho
  511.     FSOUND_FX_SetFlanger
  512.     FSOUND_FX_SetGargle
  513.     FSOUND_FX_SetI3DL2Reverb
  514.     FSOUND_FX_SetParamEQ
  515.     FSOUND_FX_SetWavesReverb
  516. ]
  517. */
  518. enum FSOUND_FX_MODES
  519. {
  520.     FSOUND_FX_CHORUS,
  521.     FSOUND_FX_COMPRESSOR,
  522.     FSOUND_FX_DISTORTION,
  523.     FSOUND_FX_ECHO,
  524.     FSOUND_FX_FLANGER,
  525.     FSOUND_FX_GARGLE,
  526.     FSOUND_FX_I3DL2REVERB,
  527.     FSOUND_FX_PARAMEQ,
  528.     FSOUND_FX_WAVES_REVERB,
  529.     FSOUND_FX_MAX
  530. };
  531. /*
  532. [ENUM]
  533. [
  534.     [DESCRIPTION]   
  535.     These are speaker types defined for use with the FSOUND_SetSpeakerMode command.
  536.     Note - Only reliably works with FSOUND_OUTPUT_DSOUND or FSOUND_OUTPUT_XBOX output modes.  Other output modes will only 
  537.     interpret FSOUND_SPEAKERMODE_MONO and set everything else to be stereo.
  538.     Note - Only reliably works with FSOUND_OUTPUT_DSOUND or FSOUND_OUTPUT_XBOX output modes.  Other output modes will only 
  539.     interpret FSOUND_SPEAKERMODE_MONO and set everything else to be stereo.
  540.     Using either DolbyDigital or DTS will use whatever 5.1 digital mode is available if destination hardware is unsure.
  541.     [SEE_ALSO]
  542.     FSOUND_SetSpeakerMode
  543. ]
  544. */
  545. enum FSOUND_SPEAKERMODES
  546. {
  547.     FSOUND_SPEAKERMODE_DOLBYDIGITAL,  /* The audio is played through a speaker arrangement of surround speakers with a subwoofer. */
  548.     FSOUND_SPEAKERMODE_HEADPHONES,    /* The speakers are headphones. */
  549.     FSOUND_SPEAKERMODE_MONO,          /* The speakers are monaural. */
  550.     FSOUND_SPEAKERMODE_QUAD,          /* The speakers are quadraphonic.  */
  551.     FSOUND_SPEAKERMODE_STEREO,        /* The speakers are stereo (default value). */
  552.     FSOUND_SPEAKERMODE_SURROUND,      /* The speakers are surround sound. */
  553.     FSOUND_SPEAKERMODE_DTS            /* (XBOX Only) The audio is played through a speaker arrangement of surround speakers with a subwoofer. */
  554. };
  555. /*
  556. [DEFINE_START] 
  557. [
  558.     [NAME] 
  559.     FSOUND_INIT_FLAGS
  560.     
  561.     [DESCRIPTION]   
  562.     Initialization flags.  Use them with FSOUND_Init in the flags parameter to change various behaviour.
  563.     
  564.     FSOUND_INIT_ENABLEOUTPUTFX Is an init mode which enables the FSOUND mixer buffer to be affected by DirectX 8 effects.
  565.     Note that due to limitations of DirectSound, FSOUND_Init may fail if this is enabled because the buffersize is too small.
  566.     This can be fixed with FSOUND_SetBufferSize.  Increase the BufferSize until it works.
  567.     When it is enabled you can use the FSOUND_FX api, and use FSOUND_SYSTEMCHANNEL as the channel id when setting parameters.
  568.     [SEE_ALSO]
  569.     FSOUND_Init
  570. ]
  571. */
  572. #define FSOUND_INIT_USEDEFAULTMIDISYNTH     0x01    /* Causes MIDI playback to force software decoding. */
  573. #define FSOUND_INIT_GLOBALFOCUS             0x02    /* For DirectSound output - sound is not muted when window is out of focus. */
  574. #define FSOUND_INIT_ENABLEOUTPUTFX          0x04    /* For DirectSound output - Allows FSOUND_FX api to be used on global software mixer output! */
  575. #define FSOUND_INIT_ACCURATEVULEVELS        0x08    /* This latency adjusts FSOUND_GetCurrentLevels, but incurs a small cpu and memory hit */
  576. #define FSOUND_INIT_PS2_DISABLECORE0REVERB  0x10    /* PS2 only - Disable reverb on CORE 0 to regain SRAM */
  577. #define FSOUND_INIT_PS2_DISABLECORE1REVERB  0x20    /* PS2 only - Disable reverb on CORE 1 to regain SRAM */
  578. #define FSOUND_INIT_PS2_SWAPDMACORES        0x40    /* PS2 only - By default FMOD uses DMA CH0 for mixing, CH1 for uploads, this flag swaps them around */
  579. /* [DEFINE_END] */
  580. /* ========================================================================================== */
  581. /* FUNCTION PROTOTYPES                                                                        */
  582. /* ========================================================================================== */
  583. #ifdef __cplusplus
  584. extern "C" {
  585. #endif
  586. /* ================================== */
  587. /* Initialization / Global functions. */
  588. /* ================================== */
  589. /* 
  590.     PRE - FSOUND_Init functions. These can't be called after FSOUND_Init is 
  591.     called (they will fail). They set up FMOD system functionality. 
  592. */
  593. DLL_API signed char     F_API FSOUND_SetOutput(int outputtype);
  594. DLL_API signed char     F_API FSOUND_SetDriver(int driver);
  595. DLL_API signed char     F_API FSOUND_SetMixer(int mixer);
  596. DLL_API signed char     F_API FSOUND_SetBufferSize(int len_ms);
  597. DLL_API signed char     F_API FSOUND_SetHWND(void *hwnd);
  598. DLL_API signed char     F_API FSOUND_SetMinHardwareChannels(int min);
  599. DLL_API signed char     F_API FSOUND_SetMaxHardwareChannels(int max);
  600. DLL_API signed char     F_API FSOUND_SetMemorySystem(void *pool, 
  601.                                                      int poollen, 
  602.                                                      FSOUND_ALLOCCALLBACK   useralloc,
  603.                                                      FSOUND_REALLOCCALLBACK userrealloc,
  604.                                                      FSOUND_FREECALLBACK    userfree);
  605. /* 
  606.     Main initialization / closedown functions.
  607.     Note : Use FSOUND_INIT_USEDEFAULTMIDISYNTH with FSOUND_Init for software override 
  608.            with MIDI playback.
  609.          : Use FSOUND_INIT_GLOBALFOCUS with FSOUND_Init to make sound audible no matter 
  610.            which window is in focus. (FSOUND_OUTPUT_DSOUND only)
  611. */
  612. DLL_API signed char     F_API FSOUND_Init(int mixrate, int maxsoftwarechannels, unsigned int flags);
  613. DLL_API void            F_API FSOUND_Close();
  614. /* 
  615.     Runtime system level functions 
  616. */
  617. DLL_API void            F_API FSOUND_Update();   /* This is called to update 3d sound / non-realtime output */
  618. DLL_API void            F_API FSOUND_SetSpeakerMode(unsigned int speakermode);
  619. DLL_API void            F_API FSOUND_SetSFXMasterVolume(int volume);
  620. DLL_API void            F_API FSOUND_SetPanSeperation(float pansep);
  621. DLL_API void            F_API FSOUND_File_SetCallbacks(FSOUND_OPENCALLBACK  useropen,
  622.                                                        FSOUND_CLOSECALLBACK userclose,
  623.                                                        FSOUND_READCALLBACK  userread,
  624.                                                        FSOUND_SEEKCALLBACK  userseek,
  625.                                                        FSOUND_TELLCALLBACK  usertell);
  626. /* 
  627.     System information functions. 
  628. */
  629. DLL_API int             F_API FSOUND_GetError();
  630. DLL_API float           F_API FSOUND_GetVersion();
  631. DLL_API int             F_API FSOUND_GetOutput();
  632. DLL_API void *          F_API FSOUND_GetOutputHandle();
  633. DLL_API int             F_API FSOUND_GetDriver();
  634. DLL_API int             F_API FSOUND_GetMixer();
  635. DLL_API int             F_API FSOUND_GetNumDrivers();
  636. DLL_API signed char *   F_API FSOUND_GetDriverName(int id);
  637. DLL_API signed char     F_API FSOUND_GetDriverCaps(int id, unsigned int *caps);
  638. DLL_API int             F_API FSOUND_GetOutputRate();
  639. DLL_API int             F_API FSOUND_GetMaxChannels();
  640. DLL_API int             F_API FSOUND_GetMaxSamples();
  641. DLL_API int             F_API FSOUND_GetSFXMasterVolume();
  642. DLL_API int             F_API FSOUND_GetNumHardwareChannels();
  643. DLL_API int             F_API FSOUND_GetChannelsPlaying();
  644. DLL_API float           F_API FSOUND_GetCPUUsage();
  645. DLL_API void            F_API FSOUND_GetMemoryStats(unsigned int *currentalloced, unsigned int *maxalloced);
  646. /* =================================== */
  647. /* Sample management / load functions. */
  648. /* =================================== */
  649. /* 
  650.     Sample creation and management functions
  651.     Note : Use FSOUND_LOADMEMORY   flag with FSOUND_Sample_Load to load from memory.
  652.            Use FSOUND_LOADRAW      flag with FSOUND_Sample_Load to treat as as raw pcm data.
  653. */
  654. DLL_API FSOUND_SAMPLE * F_API FSOUND_Sample_Load(int index, const char *name_or_data, unsigned int mode, int memlength);
  655. DLL_API FSOUND_SAMPLE * F_API FSOUND_Sample_Alloc(int index, int length, unsigned int mode, int deffreq, int defvol, int defpan, int defpri);
  656. DLL_API void            F_API FSOUND_Sample_Free(FSOUND_SAMPLE *sptr);
  657. DLL_API signed char     F_API FSOUND_Sample_Upload(FSOUND_SAMPLE *sptr, void *srcdata, unsigned int mode);
  658. DLL_API signed char     F_API FSOUND_Sample_Lock(FSOUND_SAMPLE *sptr, int offset, int length, void **ptr1, void **ptr2, unsigned int *len1, unsigned int *len2);
  659. DLL_API signed char     F_API FSOUND_Sample_Unlock(FSOUND_SAMPLE *sptr, void *ptr1, void *ptr2, unsigned int len1, unsigned int len2);
  660. /*
  661.     Sample control functions
  662. */
  663. DLL_API signed char     F_API FSOUND_Sample_SetMode(FSOUND_SAMPLE *sptr, unsigned int mode);
  664. DLL_API signed char     F_API FSOUND_Sample_SetLoopPoints(FSOUND_SAMPLE *sptr, int loopstart, int loopend);
  665. DLL_API signed char     F_API FSOUND_Sample_SetDefaults(FSOUND_SAMPLE *sptr, int deffreq, int defvol, int defpan, int defpri);
  666. DLL_API signed char     F_API FSOUND_Sample_SetMinMaxDistance(FSOUND_SAMPLE *sptr, float min, float max);
  667. DLL_API signed char     F_API FSOUND_Sample_SetMaxPlaybacks(FSOUND_SAMPLE *sptr, int max);
  668. /* 
  669.     Sample information functions
  670. */
  671. DLL_API FSOUND_SAMPLE * F_API FSOUND_Sample_Get(int sampno);
  672. DLL_API char *          F_API FSOUND_Sample_GetName(FSOUND_SAMPLE *sptr);
  673. DLL_API unsigned int    F_API FSOUND_Sample_GetLength(FSOUND_SAMPLE *sptr);
  674. DLL_API signed char     F_API FSOUND_Sample_GetLoopPoints(FSOUND_SAMPLE *sptr, int *loopstart, int *loopend);
  675. DLL_API signed char     F_API FSOUND_Sample_GetDefaults(FSOUND_SAMPLE *sptr, int *deffreq, int *defvol, int *defpan, int *defpri);
  676. DLL_API unsigned int    F_API FSOUND_Sample_GetMode(FSOUND_SAMPLE *sptr);
  677.   
  678. /* ============================ */
  679. /* Channel control functions.   */
  680. /* ============================ */
  681. /* 
  682.     Playing and stopping sounds.  
  683.     Note : Use FSOUND_FREE as the 'channel' variable, to let FMOD pick a free channel for you.
  684.            Use FSOUND_ALL as the 'channel' variable to control ALL channels with one function call!
  685. */
  686. DLL_API int             F_API FSOUND_PlaySound(int channel, FSOUND_SAMPLE *sptr);
  687. DLL_API int             F_API FSOUND_PlaySoundEx(int channel, FSOUND_SAMPLE *sptr, FSOUND_DSPUNIT *dsp, signed char startpaused);
  688. DLL_API signed char     F_API FSOUND_StopSound(int channel);
  689. /* 
  690.     Functions to control playback of a channel.
  691.     Note : FSOUND_ALL can be used on most of these functions as a channel value.
  692. */
  693. DLL_API signed char     F_API FSOUND_SetFrequency(int channel, int freq);
  694. DLL_API signed char     F_API FSOUND_SetVolume(int channel, int vol);
  695. DLL_API signed char     F_API FSOUND_SetVolumeAbsolute(int channel, int vol);
  696. DLL_API signed char     F_API FSOUND_SetPan(int channel, int pan);
  697. DLL_API signed char     F_API FSOUND_SetSurround(int channel, signed char surround);
  698. DLL_API signed char     F_API FSOUND_SetMute(int channel, signed char mute);
  699. DLL_API signed char     F_API FSOUND_SetPriority(int channel, int priority);
  700. DLL_API signed char     F_API FSOUND_SetReserved(int channel, signed char reserved);
  701. DLL_API signed char     F_API FSOUND_SetPaused(int channel, signed char paused);
  702. DLL_API signed char     F_API FSOUND_SetLoopMode(int channel, unsigned int loopmode);
  703. DLL_API signed char     F_API FSOUND_SetCurrentPosition(int channel, unsigned int offset);
  704. /* 
  705.     Channel information functions.
  706. */
  707. DLL_API signed char     F_API FSOUND_IsPlaying(int channel);
  708. DLL_API int             F_API FSOUND_GetFrequency(int channel);
  709. DLL_API int             F_API FSOUND_GetVolume(int channel);
  710. DLL_API int             F_API FSOUND_GetPan(int channel);
  711. DLL_API signed char     F_API FSOUND_GetSurround(int channel);
  712. DLL_API signed char     F_API FSOUND_GetMute(int channel);
  713. DLL_API int             F_API FSOUND_GetPriority(int channel);
  714. DLL_API signed char     F_API FSOUND_GetReserved(int channel);
  715. DLL_API signed char     F_API FSOUND_GetPaused(int channel);
  716. DLL_API unsigned int    F_API FSOUND_GetLoopMode(int channel);
  717. DLL_API unsigned int    F_API FSOUND_GetCurrentPosition(int channel);
  718. DLL_API FSOUND_SAMPLE * F_API FSOUND_GetCurrentSample(int channel);
  719. DLL_API signed char     F_API FSOUND_GetCurrentLevels(int channel, float *l, float *r);
  720. /* =================== */
  721. /* FX functions.       */
  722. /* =================== */
  723. /* 
  724.     Functions to control DX8 only effects processing.
  725.     - FX enabled samples can only be played once at a time, not multiple times at once.
  726.     - Sounds have to be created with FSOUND_HW2D or FSOUND_HW3D for this to work.
  727.     - FSOUND_INIT_ENABLEOUTPUTFX can be used to apply hardware effect processing to the
  728.       global mixed output of FMOD's software channels.
  729.     - FSOUND_FX_Enable returns an FX handle that you can use to alter fx parameters.
  730.     - FSOUND_FX_Enable can be called multiple times in a row, even on the same FX type,
  731.       it will return a unique handle for each FX.
  732.     - FSOUND_FX_Enable cannot be called if the sound is playing or locked.
  733.     - FSOUND_FX_Disable must be called to reset/clear the FX from a channel.
  734. */
  735. DLL_API int             F_API FSOUND_FX_Enable(int channel, unsigned int fx);    /* See FSOUND_FX_MODES */
  736. DLL_API signed char     F_API FSOUND_FX_Disable(int channel);    
  737. DLL_API signed char     F_API FSOUND_FX_SetChorus(int fxid, float WetDryMix, float Depth, float Feedback, float Frequency, int Waveform, float Delay, int Phase);
  738. DLL_API signed char     F_API FSOUND_FX_SetCompressor(int fxid, float Gain, float Attack, float Release, float Threshold, float Ratio, float Predelay);
  739. DLL_API signed char     F_API FSOUND_FX_SetDistortion(int fxid, float Gain, float Edge, float PostEQCenterFrequency, float PostEQBandwidth, float PreLowpassCutoff);
  740. DLL_API signed char     F_API FSOUND_FX_SetEcho(int fxid, float WetDryMix, float Feedback, float LeftDelay, float RightDelay, int PanDelay);
  741. DLL_API signed char     F_API FSOUND_FX_SetFlanger(int fxid, float WetDryMix, float Depth, float Feedback, float Frequency, int Waveform, float Delay, int Phase);
  742. DLL_API signed char     F_API FSOUND_FX_SetGargle(int fxid, int RateHz, int WaveShape);
  743. DLL_API signed char     F_API FSOUND_FX_SetI3DL2Reverb(int fxid, int Room, int RoomHF, float RoomRolloffFactor, float DecayTime, float DecayHFRatio, int Reflections, float ReflectionsDelay, int Reverb, float ReverbDelay, float Diffusion, float Density, float HFReference);
  744. DLL_API signed char     F_API FSOUND_FX_SetParamEQ(int fxid, float Center, float Bandwidth, float Gain);
  745. DLL_API signed char     F_API FSOUND_FX_SetWavesReverb(int fxid, float InGain, float ReverbMix, float ReverbTime, float HighFreqRTRatio);  
  746.  
  747. /* =================== */
  748. /* 3D sound functions. */
  749. /* =================== */
  750. /* 
  751.     See also FSOUND_Sample_SetMinMaxDistance (above)
  752.     Note! FSOUND_3D_Update is now called FSOUND_Update.
  753. */
  754. DLL_API void            F_API FSOUND_3D_SetDopplerFactor(float scale);
  755. DLL_API void            F_API FSOUND_3D_SetDistanceFactor(float scale);
  756. DLL_API void            F_API FSOUND_3D_SetRolloffFactor(float scale);
  757. DLL_API signed char     F_API FSOUND_3D_SetAttributes(int channel, float *pos, float *vel);
  758. DLL_API signed char     F_API FSOUND_3D_GetAttributes(int channel, float *pos, float *vel);
  759. DLL_API void            F_API FSOUND_3D_Listener_SetCurrent(int current, int numlisteners);  /* use this if you use multiple listeners / splitscreen */
  760. DLL_API void            F_API FSOUND_3D_Listener_SetAttributes(float *pos, float *vel, float fx, float fy, float fz, float tx, float ty, float tz);
  761. DLL_API void            F_API FSOUND_3D_Listener_GetAttributes(float *pos, float *vel, float *fx, float *fy, float *fz, float *tx, float *ty, float *tz);
  762.  
  763. /* ========================= */
  764. /* File Streaming functions. */
  765. /* ========================= */
  766. /*
  767.     Note : Use FSOUND_LOADMEMORY   flag with FSOUND_Stream_OpenFile to stream from memory.
  768.            Use FSOUND_LOADRAW      flag with FSOUND_Stream_OpenFile to treat stream as raw pcm data.
  769.            Use FSOUND_MPEGACCURATE flag with FSOUND_Stream_OpenFile to open mpegs in 'accurate mode' for settime/gettime/getlengthms.
  770.            Use FSOUND_FREE as the 'channel' variable, to let FMOD pick a free channel for you.
  771. */
  772. DLL_API signed char     F_API FSOUND_Stream_SetBufferSize(int ms);      /* call this before opening streams, not after */
  773. DLL_API FSOUND_STREAM * F_API FSOUND_Stream_OpenFile(const char *filename, unsigned int mode, int memlength);
  774. DLL_API FSOUND_STREAM * F_API FSOUND_Stream_Create(FSOUND_STREAMCALLBACK callback, int length, unsigned int mode, int samplerate, int userdata);
  775. DLL_API signed char     F_API FSOUND_Stream_Close(FSOUND_STREAM *stream);
  776. DLL_API int             F_API FSOUND_Stream_Play(int channel, FSOUND_STREAM *stream);
  777. DLL_API int             F_API FSOUND_Stream_PlayEx(int channel, FSOUND_STREAM *stream, FSOUND_DSPUNIT *dsp, signed char startpaused);
  778. DLL_API signed char     F_API FSOUND_Stream_Stop(FSOUND_STREAM *stream);
  779. DLL_API int             F_API FSOUND_Stream_GetOpenState(FSOUND_STREAM *stream);  /* use with FSOUND_NONBLOCKING opened streams */
  780. DLL_API signed char     F_API FSOUND_Stream_SetPosition(FSOUND_STREAM *stream, unsigned int position);
  781. DLL_API unsigned int    F_API FSOUND_Stream_GetPosition(FSOUND_STREAM *stream);
  782. DLL_API signed char     F_API FSOUND_Stream_SetTime(FSOUND_STREAM *stream, int ms);
  783. DLL_API int             F_API FSOUND_Stream_GetTime(FSOUND_STREAM *stream);
  784. DLL_API int             F_API FSOUND_Stream_GetLength(FSOUND_STREAM *stream);
  785. DLL_API int             F_API FSOUND_Stream_GetLengthMs(FSOUND_STREAM *stream);
  786. DLL_API signed char     F_API FSOUND_Stream_SetLoopPoints(FSOUND_STREAM *stream, unsigned int loopstartpcm, unsigned int loopendpcm);
  787. DLL_API FSOUND_SAMPLE * F_API FSOUND_Stream_GetSample(FSOUND_STREAM *stream);
  788. DLL_API FSOUND_DSPUNIT *F_API FSOUND_Stream_CreateDSP(FSOUND_STREAM *stream, FSOUND_DSPCALLBACK callback, int priority, int param);
  789. DLL_API signed char     F_API FSOUND_Stream_SetEndCallback(FSOUND_STREAM *stream, FSOUND_STREAMCALLBACK callback, int userdata);
  790. DLL_API signed char     F_API FSOUND_Stream_SetSynchCallback(FSOUND_STREAM *stream, FSOUND_STREAMCALLBACK callback, int userdata);
  791. DLL_API int             F_API FSOUND_Stream_AddSynchPoint(FSOUND_STREAM *stream, unsigned int pcmoffset, int userdata);
  792. DLL_API signed char     F_API FSOUND_Stream_DeleteSynchPoint(FSOUND_STREAM *stream, int index);
  793. DLL_API int             F_API FSOUND_Stream_GetNumSynchPoints(FSOUND_STREAM *stream);
  794. DLL_API signed char     F_API FSOUND_Stream_SetSubStream(FSOUND_STREAM *stream, int index);     /* For FMOD .FSB bank files.  Console only currently. */
  795. DLL_API int             F_API FSOUND_Stream_GetNumSubStreams(FSOUND_STREAM *stream);            /* For FMOD .FSB bank files.  Console only currently. */
  796. /* =================== */
  797. /* CD audio functions. */
  798. /* =================== */
  799. /*
  800.     Note : 0 = default cdrom.  Otherwise specify the drive letter, for example. 'D'. 
  801. */
  802. DLL_API signed char     F_API FSOUND_CD_Play(char drive, int track);
  803. DLL_API void            F_API FSOUND_CD_SetPlayMode(char drive, signed char mode);
  804. DLL_API signed char     F_API FSOUND_CD_Stop(char drive);
  805. DLL_API signed char     F_API FSOUND_CD_SetPaused(char drive, signed char paused);
  806. DLL_API signed char     F_API FSOUND_CD_SetVolume(char drive, int volume);
  807. DLL_API signed char     F_API FSOUND_CD_Eject(char drive);
  808. DLL_API signed char     F_API FSOUND_CD_GetPaused(char drive);
  809. DLL_API int             F_API FSOUND_CD_GetTrack(char drive);
  810. DLL_API int             F_API FSOUND_CD_GetNumTracks(char drive);
  811. DLL_API int             F_API FSOUND_CD_GetVolume(char drive);
  812. DLL_API int             F_API FSOUND_CD_GetTrackLength(char drive, int track); 
  813. DLL_API int             F_API FSOUND_CD_GetTrackTime(char drive);
  814. /* ============== */
  815. /* DSP functions. */
  816. /* ============== */
  817. /* 
  818.     DSP Unit control and information functions. 
  819.     These functions allow you access to the mixed stream that FMOD uses to play back sound on.
  820. */
  821. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_Create(FSOUND_DSPCALLBACK callback, int priority, int param);
  822. DLL_API void            F_API FSOUND_DSP_Free(FSOUND_DSPUNIT *unit);
  823. DLL_API void            F_API FSOUND_DSP_SetPriority(FSOUND_DSPUNIT *unit, int priority);
  824. DLL_API int             F_API FSOUND_DSP_GetPriority(FSOUND_DSPUNIT *unit);
  825. DLL_API void            F_API FSOUND_DSP_SetActive(FSOUND_DSPUNIT *unit, signed char active);
  826. DLL_API signed char     F_API FSOUND_DSP_GetActive(FSOUND_DSPUNIT *unit);
  827. /* 
  828.     Functions to get hold of FSOUND 'system DSP unit' handles. 
  829. */
  830. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_GetClearUnit();
  831. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_GetSFXUnit();
  832. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_GetMusicUnit();
  833. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_GetFFTUnit();
  834. DLL_API FSOUND_DSPUNIT *F_API FSOUND_DSP_GetClipAndCopyUnit();
  835. /* 
  836.     Miscellaneous DSP functions 
  837.     Note for the spectrum analysis function to work, you have to enable the FFT DSP unit with 
  838.     the following code FSOUND_DSP_SetActive(FSOUND_DSP_GetFFTUnit(), TRUE);
  839.     It is off by default to save cpu usage.
  840. */
  841. DLL_API signed char     F_API FSOUND_DSP_MixBuffers(void *destbuffer, void *srcbuffer, int len, int freq, int vol, int pan, unsigned int mode);
  842. DLL_API void            F_API FSOUND_DSP_ClearMixBuffer();
  843. DLL_API int             F_API FSOUND_DSP_GetBufferLength();      /* Length of each DSP update */
  844. DLL_API int             F_API FSOUND_DSP_GetBufferLengthTotal(); /* Total buffer length due to FSOUND_SetBufferSize */
  845. DLL_API float *         F_API FSOUND_DSP_GetSpectrum();          /* Array of 512 floats - call FSOUND_DSP_SetActive(FSOUND_DSP_GetFFTUnit(), TRUE)) for this to work. */
  846. /* =================================================================================== */
  847. /* Reverb functions. (eax2/eax3 reverb)  (ONLY SUPPORTED ON WIN32 W/ FSOUND_HW3D FLAG) */
  848. /* =================================================================================== */
  849. /*
  850.     See top of file for definitions and information on the reverb parameters.
  851. */
  852. DLL_API signed char F_API FSOUND_Reverb_SetProperties(FSOUND_REVERB_PROPERTIES *prop);
  853. DLL_API signed char F_API FSOUND_Reverb_GetProperties(FSOUND_REVERB_PROPERTIES *prop);
  854. DLL_API signed char F_API FSOUND_Reverb_SetChannelProperties(int channel, FSOUND_REVERB_CHANNELPROPERTIES *prop);
  855. DLL_API signed char F_API FSOUND_Reverb_GetChannelProperties(int channel, FSOUND_REVERB_CHANNELPROPERTIES *prop);
  856. /* ===================================================== */
  857. /* Recording functions  (ONLY SUPPORTED IN WIN32, WINCE) */
  858. /* ===================================================== */
  859. /*
  860.     Recording initialization functions
  861. */
  862. DLL_API signed char     F_API FSOUND_Record_SetDriver(int outputtype);
  863. DLL_API int             F_API FSOUND_Record_GetNumDrivers();
  864. DLL_API signed char *   F_API FSOUND_Record_GetDriverName(int id);
  865. DLL_API int             F_API FSOUND_Record_GetDriver();
  866. /*
  867.     Recording functionality.  Only one recording session will work at a time.
  868. */
  869. DLL_API signed char     F_API FSOUND_Record_StartSample(FSOUND_SAMPLE *sptr, signed char loop);
  870. DLL_API signed char     F_API FSOUND_Record_Stop();
  871. DLL_API int             F_API FSOUND_Record_GetPosition();  
  872. /* ========================================================================================== */
  873. /* FMUSIC API (MOD,S3M,XM,IT,MIDI PLAYBACK)                                                   */
  874. /* ========================================================================================== */
  875. /* 
  876.     Song management / playback functions.
  877. */
  878. DLL_API FMUSIC_MODULE * F_API FMUSIC_LoadSong(const char *name);
  879. DLL_API FMUSIC_MODULE * F_API FMUSIC_LoadSongMemory(void *data, int length);
  880. DLL_API signed char     F_API FMUSIC_FreeSong(FMUSIC_MODULE *mod);
  881. DLL_API signed char     F_API FMUSIC_PlaySong(FMUSIC_MODULE *mod);
  882. DLL_API signed char     F_API FMUSIC_StopSong(FMUSIC_MODULE *mod);
  883. DLL_API void            F_API FMUSIC_StopAllSongs();
  884. DLL_API signed char     F_API FMUSIC_SetZxxCallback(FMUSIC_MODULE *mod, FMUSIC_CALLBACK callback);
  885. DLL_API signed char     F_API FMUSIC_SetRowCallback(FMUSIC_MODULE *mod, FMUSIC_CALLBACK callback, int rowstep);
  886. DLL_API signed char     F_API FMUSIC_SetOrderCallback(FMUSIC_MODULE *mod, FMUSIC_CALLBACK callback, int orderstep);
  887. DLL_API signed char     F_API FMUSIC_SetInstCallback(FMUSIC_MODULE *mod, FMUSIC_CALLBACK callback, int instrument);
  888. DLL_API signed char     F_API FMUSIC_SetSample(FMUSIC_MODULE *mod, int sampno, FSOUND_SAMPLE *sptr);
  889. DLL_API signed char     F_API FMUSIC_SetUserData(FMUSIC_MODULE *mod, unsigned int userdata);
  890. DLL_API signed char     F_API FMUSIC_OptimizeChannels(FMUSIC_MODULE *mod, int maxchannels, int minvolume);
  891. /*
  892.     Runtime song functions. 
  893. */
  894. DLL_API signed char     F_API FMUSIC_SetReverb(signed char reverb);             /* MIDI only */
  895. DLL_API signed char     F_API FMUSIC_SetLooping(FMUSIC_MODULE *mod, signed char looping);
  896. DLL_API signed char     F_API FMUSIC_SetOrder(FMUSIC_MODULE *mod, int order);
  897. DLL_API signed char     F_API FMUSIC_SetPaused(FMUSIC_MODULE *mod, signed char pause);
  898. DLL_API signed char     F_API FMUSIC_SetMasterVolume(FMUSIC_MODULE *mod, int volume);
  899. DLL_API signed char     F_API FMUSIC_SetMasterSpeed(FMUSIC_MODULE *mode, float speed);
  900. DLL_API signed char     F_API FMUSIC_SetPanSeperation(FMUSIC_MODULE *mod, float pansep);
  901.  
  902. /* 
  903.     Static song information functions.
  904. */
  905. DLL_API char *          F_API FMUSIC_GetName(FMUSIC_MODULE *mod);
  906. DLL_API int             F_API FMUSIC_GetType(FMUSIC_MODULE *mod);
  907. DLL_API int             F_API FMUSIC_GetNumOrders(FMUSIC_MODULE *mod);
  908. DLL_API int             F_API FMUSIC_GetNumPatterns(FMUSIC_MODULE *mod);
  909. DLL_API int             F_API FMUSIC_GetNumInstruments(FMUSIC_MODULE *mod);
  910. DLL_API int             F_API FMUSIC_GetNumSamples(FMUSIC_MODULE *mod);
  911. DLL_API int             F_API FMUSIC_GetNumChannels(FMUSIC_MODULE *mod);
  912. DLL_API FSOUND_SAMPLE * F_API FMUSIC_GetSample(FMUSIC_MODULE *mod, int sampno);
  913. DLL_API int             F_API FMUSIC_GetPatternLength(FMUSIC_MODULE *mod, int orderno);
  914.  
  915. /* 
  916.     Runtime song information.
  917. */
  918. DLL_API signed char     F_API FMUSIC_IsFinished(FMUSIC_MODULE *mod);
  919. DLL_API signed char     F_API FMUSIC_IsPlaying(FMUSIC_MODULE *mod);
  920. DLL_API int             F_API FMUSIC_GetMasterVolume(FMUSIC_MODULE *mod);
  921. DLL_API int             F_API FMUSIC_GetGlobalVolume(FMUSIC_MODULE *mod);
  922. DLL_API int             F_API FMUSIC_GetOrder(FMUSIC_MODULE *mod);
  923. DLL_API int             F_API FMUSIC_GetPattern(FMUSIC_MODULE *mod);
  924. DLL_API int             F_API FMUSIC_GetSpeed(FMUSIC_MODULE *mod);
  925. DLL_API int             F_API FMUSIC_GetBPM(FMUSIC_MODULE *mod);
  926. DLL_API int             F_API FMUSIC_GetRow(FMUSIC_MODULE *mod);
  927. DLL_API signed char     F_API FMUSIC_GetPaused(FMUSIC_MODULE *mod);
  928. DLL_API int             F_API FMUSIC_GetTime(FMUSIC_MODULE *mod);
  929. DLL_API int             F_API FMUSIC_GetRealChannel(FMUSIC_MODULE *mod, int modchannel);
  930. DLL_API unsigned int    F_API FMUSIC_GetUserData(FMUSIC_MODULE *mod);
  931. #ifdef __cplusplus
  932. }
  933. #endif
  934. #endif