mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
db38400dab
git-svn-id: https://svn.eduke32.com/eduke32@1118 1a8010ca-5511-0410-912e-c29ae57300e0
131 lines
4.8 KiB
C
131 lines
4.8 KiB
C
/*
|
|
Copyright (C) 1994-1995 Apogee Software, Ltd.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
Modifications for JonoF's port by Jonathon Fowler (jonof@edgenetwk.com)
|
|
*/
|
|
/**********************************************************************
|
|
file: MULTIVOC.H
|
|
|
|
author: James R. Dose
|
|
date: December 20, 1993
|
|
|
|
Public header for MULTIVOC.C
|
|
|
|
(c) Copyright 1993 James R. Dose. All Rights Reserved.
|
|
**********************************************************************/
|
|
|
|
#ifndef __MULTIVOC_H
|
|
#define __MULTIVOC_H
|
|
|
|
#define MV_MinVoiceHandle 1
|
|
|
|
extern int MV_ErrorCode;
|
|
|
|
enum MV_Errors
|
|
{
|
|
MV_Warning = -2,
|
|
MV_Error = -1,
|
|
MV_Ok = 0,
|
|
MV_UnsupportedCard,
|
|
MV_NotInstalled,
|
|
MV_NoVoices,
|
|
MV_NoMem,
|
|
MV_VoiceNotFound,
|
|
MV_BlasterError,
|
|
MV_DPMI_Error,
|
|
MV_InvalidVOCFile,
|
|
MV_InvalidWAVFile,
|
|
MV_InvalidOGGFile,
|
|
MV_InvalidMixMode,
|
|
MV_IrqFailure,
|
|
MV_DMAFailure,
|
|
MV_DMA16Failure,
|
|
MV_NullRecordFunction
|
|
};
|
|
|
|
typedef signed short MONO16;
|
|
typedef signed char MONO8;
|
|
|
|
typedef MONO8 VOLUME8[ 256 ];
|
|
typedef MONO16 VOLUME16[ 256 ];
|
|
|
|
char *MV_ErrorString( int ErrorNumber );
|
|
int MV_VoicePlaying( int handle );
|
|
int MV_KillAllVoices( void );
|
|
int MV_Kill( int handle );
|
|
int MV_VoicesPlaying( void );
|
|
int MV_VoiceAvailable( int priority );
|
|
int MV_SetPitch( int handle, int pitchoffset );
|
|
int MV_SetFrequency( int handle, int frequency );
|
|
int MV_EndLooping( int handle );
|
|
int MV_SetPan( int handle, int vol, int left, int right );
|
|
int MV_Pan3D( int handle, int angle, int distance );
|
|
void MV_SetReverb( int reverb );
|
|
void MV_SetFastReverb( int reverb );
|
|
int MV_GetMaxReverbDelay( void );
|
|
int MV_GetReverbDelay( void );
|
|
void MV_SetReverbDelay( int delay );
|
|
int MV_SetMixMode( int numchannels, int samplebits );
|
|
int MV_StartPlayback( void );
|
|
void MV_StopPlayback( void );
|
|
int MV_StartRecording( int MixRate, void ( *function )( char *ptr, int length ) );
|
|
void MV_StopRecord( void );
|
|
int MV_StartDemandFeedPlayback( void ( *function )( char **ptr, unsigned int *length ),
|
|
int rate, int pitchoffset, int vol, int left, int right,
|
|
int priority, unsigned int callbackval );
|
|
int MV_PlayRaw( char *ptr, unsigned int length,
|
|
unsigned rate, int pitchoffset, int vol, int left,
|
|
int right, int priority, unsigned int callbackval );
|
|
int MV_PlayLoopedRaw( char *ptr, int length,
|
|
char *loopstart, char *loopend, unsigned rate, int pitchoffset,
|
|
int vol, int left, int right, int priority,
|
|
unsigned int callbackval );
|
|
int MV_PlayWAV( char *ptr, int pitchoffset, int vol, int left,
|
|
int right, int priority, unsigned int callbackval );
|
|
int MV_PlayWAV3D( char *ptr, int pitchoffset, int angle, int distance,
|
|
int priority, unsigned int callbackval );
|
|
int MV_PlayLoopedWAV( char *ptr, int loopstart, int loopend,
|
|
int pitchoffset, int vol, int left, int right, int priority,
|
|
unsigned int callbackval );
|
|
int MV_PlayOGG( char *ptr, int pitchoffset, int vol, int left,
|
|
int right, int priority, unsigned int callbackval );
|
|
int MV_PlayOGG3D( char *ptr, int pitchoffset, int angle, int distance,
|
|
int priority, unsigned int callbackval );
|
|
int MV_PlayLoopedOGG( char *ptr, int loopstart, int loopend,
|
|
int pitchoffset, int vol, int left, int right, int priority,
|
|
unsigned int callbackval );
|
|
int MV_PlayVOC3D( char *ptr, int pitchoffset, int angle, int distance,
|
|
int priority, unsigned int callbackval );
|
|
int MV_PlayVOC( char *ptr, int pitchoffset, int vol, int left, int right,
|
|
int priority, unsigned int callbackval );
|
|
int MV_PlayLoopedVOC( char *ptr, int loopstart, int loopend,
|
|
int pitchoffset, int vol, int left, int right, int priority,
|
|
unsigned int callbackval );
|
|
void MV_CreateVolumeTable( int index, int volume, int MaxVolume );
|
|
void MV_SetVolume( int volume );
|
|
int MV_GetVolume( void );
|
|
void MV_SetCallBack( void ( *function )( unsigned int ) );
|
|
void MV_SetReverseStereo( int setting );
|
|
int MV_GetReverseStereo( void );
|
|
int MV_Init( int soundcard, int MixRate, int Voices, int numchannels,
|
|
int samplebits );
|
|
int MV_Shutdown( void );
|
|
|
|
void MV_Update(void);
|
|
|
|
#endif
|