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__
|
|
|
|
|
2014-06-25 11:25:36 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#include "doomdef.h"
|
2008-09-14 23:54:38 +00:00
|
|
|
|
|
|
|
class FileReader;
|
2010-09-14 17:28:18 +00:00
|
|
|
struct FOptionValues;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// MUSIC I/O
|
|
|
|
//
|
|
|
|
void I_InitMusic ();
|
2006-05-12 03:14:40 +00:00
|
|
|
void I_ShutdownMusic ();
|
2010-09-14 17:28:18 +00:00
|
|
|
void I_BuildMIDIMenuList (FOptionValues *);
|
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);
|
|
|
|
|
|
|
|
// Registers a song handle to song data.
|
2008-08-03 03:54:48 +00:00
|
|
|
class MusInfo;
|
2014-06-25 11:25:36 +00:00
|
|
|
MusInfo *I_RegisterSong (std::auto_ptr<FileReader> reader, int device);
|
2008-08-03 03:54:48 +00:00
|
|
|
MusInfo *I_RegisterCDSong (int track, int cdid = 0);
|
|
|
|
MusInfo *I_RegisterURLSong (const char *url);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-03 03:54:48 +00:00
|
|
|
// The base music class. Everything is derived from this --------------------
|
|
|
|
|
|
|
|
class MusInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MusInfo ();
|
|
|
|
virtual ~MusInfo ();
|
|
|
|
virtual void MusicVolumeChanged(); // snd_musicvolume changed
|
|
|
|
virtual void TimidityVolumeChanged(); // timidity_mastervolume changed
|
|
|
|
virtual void Play (bool looping, int subsong) = 0;
|
|
|
|
virtual void Pause () = 0;
|
|
|
|
virtual void Resume () = 0;
|
|
|
|
virtual void Stop () = 0;
|
|
|
|
virtual bool IsPlaying () = 0;
|
2010-10-02 04:12:21 +00:00
|
|
|
virtual bool IsMIDI () const;
|
2008-08-03 03:54:48 +00:00
|
|
|
virtual bool IsValid () const = 0;
|
|
|
|
virtual bool SetPosition (unsigned int ms);
|
|
|
|
virtual bool SetSubsong (int subsong);
|
|
|
|
virtual void Update();
|
|
|
|
virtual FString GetStats();
|
|
|
|
virtual MusInfo *GetOPLDumper(const char *filename);
|
|
|
|
virtual MusInfo *GetWaveDumper(const char *filename, int rate);
|
2010-08-15 19:54:59 +00:00
|
|
|
virtual void FluidSettingInt(const char *setting, int value); // FluidSynth settings
|
|
|
|
virtual void FluidSettingNum(const char *setting, double value); // "
|
|
|
|
virtual void FluidSettingStr(const char *setting, const char *value); // "
|
2008-08-03 03:54:48 +00:00
|
|
|
|
2010-09-29 19:29:14 +00:00
|
|
|
void Start(bool loop, float rel_vol = -1.f, int subsong = 0);
|
|
|
|
|
2008-08-03 03:54:48 +00:00
|
|
|
enum EState
|
|
|
|
{
|
|
|
|
STATE_Stopped,
|
|
|
|
STATE_Playing,
|
|
|
|
STATE_Paused
|
|
|
|
} m_Status;
|
|
|
|
bool m_Looping;
|
|
|
|
bool m_NotStartedYet; // Song has been created but not yet played
|
|
|
|
};
|
2010-10-05 22:35:59 +00:00
|
|
|
extern int nomusic;
|
2008-08-03 03:54:48 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#endif //__I_MUSIC_H__
|