mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-12-13 14:20:59 +00:00
145 lines
No EOL
1.8 KiB
C
145 lines
No EOL
1.8 KiB
C
#include "../i_sound.h"
|
|
|
|
UINT8 sound_started = 0;
|
|
|
|
void *I_GetSfx(sfxinfo_t *sfx)
|
|
{
|
|
(void)sfx;
|
|
return NULL;
|
|
}
|
|
|
|
void I_FreeSfx(sfxinfo_t *sfx)
|
|
{
|
|
(void)sfx;
|
|
}
|
|
|
|
void I_StartupSound(void){}
|
|
|
|
void I_ShutdownSound(void){}
|
|
|
|
void I_UpdateSound(void){};
|
|
|
|
//
|
|
// SFX I/O
|
|
//
|
|
|
|
INT32 I_StartSound(sfxenum_t id, UINT8 vol, UINT8 sep, UINT8 pitch, UINT8 priority, INT32 channel)
|
|
{
|
|
(void)id;
|
|
(void)vol;
|
|
(void)sep;
|
|
(void)pitch;
|
|
(void)priority;
|
|
(void)channel;
|
|
return -1;
|
|
}
|
|
|
|
void I_StopSound(INT32 handle)
|
|
{
|
|
(void)handle;
|
|
}
|
|
|
|
boolean I_SoundIsPlaying(INT32 handle)
|
|
{
|
|
(void)handle;
|
|
return false;
|
|
}
|
|
|
|
void I_UpdateSoundParams(INT32 handle, UINT8 vol, UINT8 sep, UINT8 pitch)
|
|
{
|
|
(void)handle;
|
|
(void)vol;
|
|
(void)sep;
|
|
(void)pitch;
|
|
}
|
|
|
|
void I_SetSfxVolume(UINT8 volume)
|
|
{
|
|
(void)volume;
|
|
}
|
|
|
|
/// ------------------------
|
|
// MUSIC SYSTEM
|
|
/// ------------------------
|
|
|
|
void I_InitMusic(void){}
|
|
|
|
void I_ShutdownMusic(void){}
|
|
|
|
/// ------------------------
|
|
// MUSIC PROPERTIES
|
|
/// ------------------------
|
|
|
|
musictype_t I_SongType(void)
|
|
{
|
|
return MU_NONE;
|
|
}
|
|
|
|
boolean I_SongPlaying(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
boolean I_SongPaused(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/// ------------------------
|
|
// MUSIC EFFECTS
|
|
/// ------------------------
|
|
|
|
boolean I_SetSongSpeed(float speed)
|
|
{
|
|
(void)speed;
|
|
return false;
|
|
}
|
|
|
|
/// ------------------------
|
|
// MUSIC PLAYBACK
|
|
/// ------------------------
|
|
|
|
boolean I_LoadSong(char *data, size_t len)
|
|
{
|
|
(void)data;
|
|
(void)len;
|
|
return -1;
|
|
}
|
|
|
|
void I_UnloadSong(void)
|
|
{
|
|
(void)handle;
|
|
}
|
|
|
|
boolean I_PlaySong(boolean looping)
|
|
{
|
|
(void)handle;
|
|
(void)looping;
|
|
return false;
|
|
}
|
|
|
|
void I_StopSong(void)
|
|
{
|
|
(void)handle;
|
|
}
|
|
|
|
void I_PauseSong(void)
|
|
{
|
|
(void)handle;
|
|
}
|
|
|
|
void I_ResumeSong(void)
|
|
{
|
|
(void)handle;
|
|
}
|
|
|
|
void I_SetMusicVolume(UINT8 volume)
|
|
{
|
|
(void)volume;
|
|
}
|
|
|
|
boolean I_SetSongTrack(int track)
|
|
{
|
|
(void)track;
|
|
return false;
|
|
} |