spingle/source/bgmusic.h

43 lines
1.3 KiB
C
Raw Normal View History

2019-11-24 20:45:15 -08:00
/*
* Background music handling for Quakespasm (adapted from uHexen2)
* Handles streaming music as raw sound samples and runs the midi driver
*
* Copyright (C) 1999-2005 Id Software, Inc.
* Copyright (C) 2010-2012 O.Sezer <sezero@users.sourceforge.net>
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
2019-12-02 07:00:56 -08:00
#ifndef spingle__bgmusic_h
#define spingle__bgmusic_h
2019-11-24 20:45:15 -08:00
2019-12-07 09:10:06 -08:00
extern bool bgm_loop;
2019-11-25 17:40:18 -08:00
extern cvar_t bgm_extmusic;
2019-11-24 20:45:15 -08:00
2019-12-12 19:10:12 -08:00
void BGM_Init(void);
2019-11-25 17:40:18 -08:00
void BGM_Shutdown(void);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
void BGM_Play(const char *filename);
void BGM_Stop(void);
void BGM_Update(void);
void BGM_Pause(void);
void BGM_Resume(void);
2019-11-24 20:45:15 -08:00
2019-12-07 09:10:06 -08:00
void BGM_PlayCDTrack(byte track, bool looping);
2019-11-24 20:45:15 -08:00
2019-12-02 07:00:56 -08:00
#endif