#include "orxInclude.h"#include "math/orxVector.h"#include "plugin/orxPluginCore.h"Go to the source code of this file.
Defines | |
| #define | orxSOUNDSYSTEM_KZ_CONFIG_RATIO "DimensionRatio" |
| #define | orxSOUNDSYSTEM_KZ_CONFIG_SECTION "SoundSystem" |
Typedefs | |
| typedef struct __orxSOUNDSYSTEM_SAMPLE_t | orxSOUNDSYSTEM_SAMPLE |
| typedef struct __orxSOUNDSYSTEM_SOUND_t | orxSOUNDSYSTEM_SOUND |
Enumerations | |
| enum | orxSOUNDSYSTEM_STATUS { orxSOUNDSYSTEM_STATUS_PLAY = 0, orxSOUNDSYSTEM_STATUS_PAUSE, orxSOUNDSYSTEM_STATUS_STOP, orxSOUNDSYSTEM_STATUS_NUMBER, orxSOUNDSYSTEM_STATUS_NONE = orxENUM_NONE } |
Functions | |
| orxDLLAPI orxSOUNDSYSTEM_SOUND *orxFASTCALL | orxSoundSystem_CreateFromSample (const orxSOUNDSYSTEM_SAMPLE *_pstSample) |
| orxDLLAPI orxSOUNDSYSTEM_SOUND *orxFASTCALL | orxSoundSystem_CreateStreamFromFile (const orxSTRING _zFilename, const orxSTRING _zReference) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Delete (orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI void orxFASTCALL | orxSoundSystem_Exit () |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetAttenuation (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetDuration (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetGlobalVolume () |
| orxDLLAPI orxVECTOR *orxFASTCALL | orxSoundSystem_GetListenerPosition (orxVECTOR *_pvPosition) |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetPitch (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxVECTOR *orxFASTCALL | orxSoundSystem_GetPosition (const orxSOUNDSYSTEM_SOUND *_pstSound, orxVECTOR *_pvPosition) |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetReferenceDistance (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxSOUNDSYSTEM_STATUS orxFASTCALL | orxSoundSystem_GetStatus (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxFLOAT orxFASTCALL | orxSoundSystem_GetVolume (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxBOOL orxFASTCALL | orxSoundSystem_HasRecordingSupport () |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Init () |
| orxDLLAPI orxBOOL orxFASTCALL | orxSoundSystem_IsLooping (const orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxSOUNDSYSTEM_SAMPLE *orxFASTCALL | orxSoundSystem_LoadSample (const orxSTRING _zFilename) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Loop (orxSOUNDSYSTEM_SOUND *_pstSound, orxBOOL _bLoop) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Pause (orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Play (orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetAttenuation (orxSOUNDSYSTEM_SOUND *_pstSound, orxFLOAT _fAttenuation) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetGlobalVolume (orxFLOAT _fGlobalVolume) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetListenerPosition (const orxVECTOR *_pvPosition) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetPitch (orxSOUNDSYSTEM_SOUND *_pstSound, orxFLOAT _fPitch) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetPosition (orxSOUNDSYSTEM_SOUND *_pstSound, const orxVECTOR *_pvPosition) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetReferenceDistance (orxSOUNDSYSTEM_SOUND *_pstSound, orxFLOAT _fDistance) |
| orxDLLAPI void orxFASTCALL | orxSoundSystem_Setup () |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_SetVolume (orxSOUNDSYSTEM_SOUND *_pstSound, orxFLOAT _fVolume) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_StartRecording (const orxCHAR *_zName, orxBOOL _bWriteToFile, orxU32 _u32SampleRate, orxU32 _u32ChannelNumber) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_Stop (orxSOUNDSYSTEM_SOUND *_pstSound) |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_StopRecording () |
| orxDLLAPI orxSTATUS orxFASTCALL | orxSoundSystem_UnloadSample (orxSOUNDSYSTEM_SAMPLE *_pstSample) |
Definition in file orxSoundSystem.h.
1.5.6