2006-02-24 04:48:15 +00:00
|
|
|
/*
|
|
|
|
** i_music.h
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2006-06-11 01:37:00 +00:00
|
|
|
** Copyright 1998-2006 Randy Heit
|
2006-02-24 04:48:15 +00:00
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __I_MUSIC_H__
|
|
|
|
#define __I_MUSIC_H__
|
|
|
|
|
|
|
|
#include "doomdef.h"
|
|
|
|
#include "doomstat.h"
|
|
|
|
#include "files.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// MUSIC I/O
|
|
|
|
//
|
|
|
|
void I_InitMusic ();
|
2006-05-12 03:14:40 +00:00
|
|
|
void I_ShutdownMusic ();
|
2006-02-24 04:48:15 +00:00
|
|
|
void I_BuildMIDIMenuList (struct value_s **values, float *numValues);
|
2008-03-05 03:10:31 +00:00
|
|
|
void I_UpdateMusic ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// Volume.
|
|
|
|
void I_SetMusicVolume (float volume);
|
|
|
|
|
|
|
|
// PAUSE game handling.
|
|
|
|
void I_PauseSong (void *handle);
|
|
|
|
void I_ResumeSong (void *handle);
|
|
|
|
|
|
|
|
// Registers a song handle to song data.
|
2007-09-12 00:20:11 +00:00
|
|
|
void *I_RegisterSong (const char *file, char * musiccache, int offset, int length, int device);
|
2006-02-24 04:48:15 +00:00
|
|
|
void *I_RegisterCDSong (int track, int cdid = 0);
|
|
|
|
|
|
|
|
// Called by anything that wishes to start music.
|
|
|
|
// Plays a song, and when the song is done,
|
|
|
|
// starts playing it again in an endless loop.
|
|
|
|
void I_PlaySong (void *handle, int looping, float relative_vol=1.f);
|
|
|
|
|
|
|
|
// Stops a song.
|
|
|
|
void I_StopSong (void *handle);
|
|
|
|
|
|
|
|
// See above (register), then think backwards
|
|
|
|
void I_UnRegisterSong (void *handle);
|
|
|
|
|
|
|
|
// Set the current order (position) for a MOD
|
|
|
|
bool I_SetSongPosition (void *handle, int order);
|
|
|
|
|
|
|
|
// Is the song still playing?
|
|
|
|
bool I_QrySongPlaying (void *handle);
|
|
|
|
|
|
|
|
#endif //__I_MUSIC_H__
|