2004-01-20 06:58:42 +00:00
|
|
|
/*
|
|
|
|
cd_ogg.c
|
|
|
|
|
|
|
|
ogg music support
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Modified Andrew Pilley, 2004
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static __attribute__ ((unused)) const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "QF/cdaudio.h"
|
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/plugin.h"
|
|
|
|
#include "QF/qargs.h"
|
|
|
|
#include "QF/sound.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/quakefs.h"
|
|
|
|
#include "QF/quakeio.h"
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/qfplist.h"
|
|
|
|
#include "QF/sound.h"
|
|
|
|
#include "snd_render.h"
|
|
|
|
|
|
|
|
#include "compat.h"
|
|
|
|
|
|
|
|
static general_data_t plugin_info_general_data;
|
|
|
|
static general_funcs_t plugin_info_general_funcs;
|
|
|
|
|
|
|
|
static qboolean playing = false;
|
|
|
|
static qboolean wasPlaying = false;
|
|
|
|
static qboolean mus_enabled = false;
|
|
|
|
|
|
|
|
static cvar_t *bgmvolume;
|
|
|
|
|
2004-01-21 02:52:12 +00:00
|
|
|
static channel_t *cd_channel;
|
2004-01-21 19:35:17 +00:00
|
|
|
static sfx_t *cd_sfx;
|
2004-01-20 06:58:42 +00:00
|
|
|
|
|
|
|
/* added by Andrew, for cd_ogg */
|
2004-01-20 22:20:38 +00:00
|
|
|
static cvar_t *mus_ogglist; // contain the filename of the ogglist.
|
|
|
|
static QFile *oggfile = NULL; // filedescriptor with track map
|
|
|
|
static qboolean ogglistvalid = false; // true if a valid ogg list has been
|
|
|
|
// loaded
|
|
|
|
static plitem_t *tracklist = NULL; // the parsed tracklist
|
2004-01-20 06:58:42 +00:00
|
|
|
|
|
|
|
/* end of added variables. */
|
|
|
|
|
2004-01-21 19:35:17 +00:00
|
|
|
static void
|
|
|
|
set_volume (void)
|
|
|
|
{
|
2004-01-28 10:07:31 +00:00
|
|
|
if (cd_channel && cd_channel->sfx) {
|
2004-01-21 19:35:17 +00:00
|
|
|
int vol = bgmvolume->value * 255;
|
|
|
|
|
|
|
|
cd_channel->master_vol = vol;
|
|
|
|
cd_channel->leftvol = cd_channel->rightvol = cd_channel->master_vol;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
/* does nothing */
|
|
|
|
static void
|
|
|
|
I_OGGMus_CloseDoor (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_CloseDoor\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* does nothing. */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Eject (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Eject\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we've opened the trackmap file from the quake resources
|
|
|
|
* go through it, and make ourselves a tracklist map */
|
|
|
|
static int
|
|
|
|
I_OGGMus_GetAudioDiskInfo (void)
|
|
|
|
{
|
|
|
|
/* read the track list, parse it a bit, map it into a list */
|
|
|
|
int size = -1;
|
|
|
|
char *buffile = NULL;
|
|
|
|
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_GetAudioDiskInfo\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
ogglistvalid = false;
|
|
|
|
|
|
|
|
if (oggfile == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rewind the stream */
|
|
|
|
Qseek (oggfile, 0, SEEK_SET);
|
|
|
|
size = Qfilesize (oggfile);
|
|
|
|
buffile = calloc (size + 10, sizeof (char));
|
|
|
|
Qread (oggfile, buffile, size);
|
|
|
|
tracklist = PL_GetPropertyList (buffile);
|
|
|
|
if (!tracklist || tracklist->type != QFDictionary) {
|
|
|
|
Sys_Printf ("Malformed or empty tracklist file. check mus_ogglist\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
free (buffile);
|
|
|
|
|
|
|
|
ogglistvalid = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pause playback of music? */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Pause (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Pause\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
/* pause the ogg playback. */
|
|
|
|
/* just kinda cheat and stop it for the time being */
|
|
|
|
if (tracklist == NULL || !mus_enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!playing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wasPlaying = playing;
|
|
|
|
playing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stop playback of music. */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Stop (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Stop\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
/* okay, stop playing oggs. */
|
|
|
|
if (tracklist == NULL || !mus_enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!playing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wasPlaying = false;
|
|
|
|
playing = false;
|
2004-02-03 03:01:06 +00:00
|
|
|
|
|
|
|
if (cd_sfx) {
|
|
|
|
cd_sfx->close (cd_sfx);
|
|
|
|
cd_channel->sfx = cd_sfx = NULL;
|
|
|
|
}
|
2004-01-20 06:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* start playing, if we've got a trackmap.
|
|
|
|
* cry if we can't find a file to play */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Play (int track, qboolean looping)
|
|
|
|
{
|
|
|
|
plitem_t *trackmap = NULL;
|
|
|
|
dstring_t *trackstring = dstring_new ();
|
2004-01-21 03:16:16 +00:00
|
|
|
wavinfo_t *info = 0;
|
2004-01-20 06:58:42 +00:00
|
|
|
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Play\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
/* alrighty. grab the list, map track to filename. grab filename from data
|
|
|
|
resources, attach sound to play, loop. */
|
2004-01-28 10:07:31 +00:00
|
|
|
|
|
|
|
if (!cd_channel && mus_enabled) { // Shouldn't happen!
|
|
|
|
Sys_Printf ("OGGMus: on fire.\n");
|
|
|
|
mus_enabled = false;
|
|
|
|
}
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
if (tracklist == NULL || !mus_enabled) {
|
|
|
|
free (trackstring);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dsprintf (trackstring, "%i", track);
|
|
|
|
trackmap = PL_ObjectForKey (tracklist, trackstring->str);
|
|
|
|
if (trackmap == NULL || trackmap->type != QFString) {
|
|
|
|
Sys_Printf ("No Track for track number %s.\n", trackstring->str);
|
|
|
|
free (trackstring);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sys_Printf ("Playing: %s.\n", (char *) trackmap->data);
|
2004-01-21 02:52:12 +00:00
|
|
|
if (cd_channel->sfx) {
|
|
|
|
cd_channel->sfx->close (cd_channel->sfx);
|
|
|
|
memset (cd_channel, 0, sizeof (*cd_channel));
|
|
|
|
}
|
|
|
|
|
2004-01-21 19:35:17 +00:00
|
|
|
cd_sfx = S_LoadSound ((char *) trackmap->data);
|
|
|
|
if (cd_sfx) {
|
|
|
|
if (cd_sfx->wavinfo)
|
|
|
|
info = cd_sfx->wavinfo (cd_sfx);
|
|
|
|
if (info)
|
|
|
|
info->loopstart = 0;
|
|
|
|
cd_channel->sfx = cd_sfx->open (cd_sfx);
|
|
|
|
set_volume ();
|
2004-01-21 02:52:12 +00:00
|
|
|
}
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
free (trackstring);
|
|
|
|
playing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* unpause. might just cheat and restart playing */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Resume (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Resume\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
|
|
|
|
if (tracklist == NULL || !mus_enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!wasPlaying)
|
|
|
|
return;
|
|
|
|
playing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
I_OGGMus_Shutdown (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Shutdown\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
/* clean up a bit, destroy the ogg if i have to */
|
|
|
|
|
|
|
|
if (tracklist != NULL) {
|
|
|
|
I_OGGMus_Stop ();
|
|
|
|
PL_Free (tracklist);
|
|
|
|
tracklist = NULL;
|
|
|
|
}
|
|
|
|
if (oggfile != NULL) {
|
|
|
|
Qclose (oggfile);
|
|
|
|
oggfile = NULL;
|
|
|
|
}
|
|
|
|
mus_enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* print out the current track map. */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Info (void)
|
|
|
|
{
|
|
|
|
plitem_t *keylist = NULL;
|
|
|
|
plitem_t *currentmap = NULL;
|
|
|
|
plitem_t *currenttrack = NULL;
|
|
|
|
int iter = 0;
|
|
|
|
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Info\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
if (tracklist != NULL) {
|
|
|
|
|
|
|
|
keylist = PL_D_AllKeys (tracklist);
|
|
|
|
if (keylist == NULL) {
|
2004-01-20 22:20:38 +00:00
|
|
|
Sys_DPrintf ("OGGMus: Didn't get valid plist_t array yet have "
|
|
|
|
"valid tracklist?\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Sys_DPrintf ("OGGMus: number of entries %i.\n",
|
|
|
|
((plarray_t *) (keylist->data))->numvals);
|
|
|
|
Sys_Printf ("\n" "Tracklist loaded from file:\n%s\n"
|
|
|
|
"---------------------------\n", mus_ogglist->string);
|
|
|
|
|
|
|
|
/* loop through the list with PL_ObjectAtIndex() */
|
|
|
|
|
2004-01-20 22:20:38 +00:00
|
|
|
for (iter = 0;
|
|
|
|
iter < ((plarray_t *) (keylist->data))->numvals; iter++) {
|
2004-01-20 06:58:42 +00:00
|
|
|
currentmap = PL_ObjectAtIndex (keylist, iter);
|
|
|
|
if (currentmap == NULL) {
|
|
|
|
Sys_DPrintf ("OGGMus: No track for track number %i.\n", iter);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (currentmap->type != QFString) {
|
|
|
|
Sys_DPrintf ("OGGMus: Track fetched isn't a QFString for: %i\n",
|
|
|
|
iter);
|
|
|
|
continue;
|
|
|
|
}
|
2004-01-20 22:20:38 +00:00
|
|
|
currenttrack = PL_ObjectForKey (tracklist,
|
|
|
|
(char *) currentmap->data);
|
2004-01-20 06:58:42 +00:00
|
|
|
Sys_Printf (" %s - %s\n", (char *) currentmap->data,
|
|
|
|
(char *) currenttrack->data);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PL_Free (keylist);
|
|
|
|
} else {
|
|
|
|
Sys_Printf ("\n" "No Tracklist\n" "------------\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
I_OGG_f (void)
|
|
|
|
{
|
|
|
|
const char *command;
|
|
|
|
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGG_f\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
if (Cmd_Argc () < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
command = Cmd_Argv (1);
|
|
|
|
|
2004-01-28 10:07:31 +00:00
|
|
|
if (!cd_channel) {
|
|
|
|
Sys_Printf ("OGGMus: Don't have a channel.\n");
|
|
|
|
mus_enabled = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
if (strequal (command, "on")) {
|
|
|
|
mus_enabled = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "off")) {
|
|
|
|
if (playing)
|
|
|
|
I_OGGMus_Stop ();
|
|
|
|
mus_enabled = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "reset")) {
|
|
|
|
mus_enabled = true;
|
|
|
|
if (playing)
|
|
|
|
I_OGGMus_Stop ();
|
|
|
|
I_OGGMus_GetAudioDiskInfo ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "remap")) {
|
|
|
|
Sys_Printf ("OGGMus: remap does nothing.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "close")) {
|
|
|
|
I_OGGMus_CloseDoor ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tracklist) {
|
|
|
|
I_OGGMus_GetAudioDiskInfo ();
|
|
|
|
if (!tracklist) {
|
|
|
|
Sys_Printf ("Can't initialize tracklist.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "play")) {
|
|
|
|
CDAudio_Play (atoi (Cmd_Argv (2)), false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "loop")) {
|
|
|
|
CDAudio_Play (atoi (Cmd_Argv (2)), true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "stop")) {
|
|
|
|
I_OGGMus_Stop ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "pause")) {
|
|
|
|
CDAudio_Pause ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "resume")) {
|
|
|
|
CDAudio_Resume ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "eject")) {
|
|
|
|
if (playing)
|
|
|
|
I_OGGMus_Stop ();
|
|
|
|
I_OGGMus_Eject ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (command, "info")) {
|
|
|
|
I_OGGMus_Info ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stubb out, since we don't need */
|
|
|
|
static void
|
|
|
|
I_OGGMus_Update (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* called when the mus_ogglist cvar is changed */
|
|
|
|
static void
|
|
|
|
Mus_OggChange (cvar_t *mus_ogglist)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering Mus_OggChange\n");
|
2004-01-20 06:58:42 +00:00
|
|
|
|
|
|
|
/* make sure we're not playing anything right now, and we've cleaned up */
|
|
|
|
CDAudio_Shutdown ();
|
|
|
|
|
|
|
|
if (strequal (mus_ogglist->string, "none")) {
|
|
|
|
/* bail if we don't have one */
|
2004-01-28 10:07:31 +00:00
|
|
|
mus_enabled = false;
|
2004-01-20 06:58:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = QFS_FOpenFile (mus_ogglist->string, &oggfile);
|
|
|
|
if (size == -1) {
|
|
|
|
Sys_Printf ("Mus_OGGInit: open of file \"%s\" failed\n",
|
|
|
|
mus_ogglist->string);
|
|
|
|
mus_enabled = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (I_OGGMus_GetAudioDiskInfo () == -1) {
|
|
|
|
/* check the info, read it in. done */
|
|
|
|
Sys_Printf ("Mus_OGGInit: invalid track map.\n");
|
|
|
|
ogglistvalid = false;
|
|
|
|
mus_enabled = false;
|
|
|
|
return;
|
|
|
|
}
|
2004-01-28 10:07:31 +00:00
|
|
|
|
|
|
|
if (!cd_channel)
|
|
|
|
mus_enabled = false;
|
|
|
|
else
|
|
|
|
mus_enabled = true;
|
2004-01-20 06:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* change volume on sound object */
|
|
|
|
static void
|
|
|
|
Mus_VolChange (cvar_t *bgmvolume)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering Mus_VolChange\n");
|
2004-01-21 19:35:17 +00:00
|
|
|
set_volume ();
|
2004-01-20 06:58:42 +00:00
|
|
|
}
|
|
|
|
|
2004-02-03 03:01:06 +00:00
|
|
|
static void
|
|
|
|
Mus_gamedir (void)
|
|
|
|
{
|
|
|
|
Mus_OggChange (mus_ogglist);
|
|
|
|
}
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
static void
|
|
|
|
I_OGGMus_Init (void)
|
|
|
|
{
|
2004-01-21 02:59:09 +00:00
|
|
|
Sys_DPrintf ("Entering I_OGGMus_Init\n");
|
2004-01-21 02:52:12 +00:00
|
|
|
|
|
|
|
cd_channel = S_AllocChannel ();
|
|
|
|
|
2004-01-28 10:07:31 +00:00
|
|
|
if (!cd_channel) // We can't fail to load yet... so just disable everything
|
|
|
|
Sys_Printf ("OGGMus: Failed to allocate sound channel.\n");
|
|
|
|
|
2004-01-20 06:58:42 +00:00
|
|
|
/* check list file cvar, open list file, create map, close file. */
|
|
|
|
|
|
|
|
mus_ogglist = Cvar_Get ("mus_ogglist", "tracklist.cfg", CVAR_NONE,
|
|
|
|
Mus_OggChange,
|
|
|
|
"filename of track to music file map");
|
|
|
|
bgmvolume = Cvar_Get ("bgmvolume", "1", CVAR_ARCHIVE, Mus_VolChange,
|
2004-01-28 10:07:31 +00:00
|
|
|
"Volume of CD music");
|
2004-02-03 03:01:06 +00:00
|
|
|
|
|
|
|
QFS_GamedirCallback (Mus_gamedir);
|
2004-01-20 06:58:42 +00:00
|
|
|
}
|
|
|
|
|
2004-01-20 08:34:57 +00:00
|
|
|
static general_funcs_t plugin_info_general_funcs = {
|
|
|
|
I_OGGMus_Init,
|
|
|
|
I_OGGMus_Shutdown,
|
|
|
|
};
|
|
|
|
|
|
|
|
static cd_funcs_t plugin_info_cd_funcs = {
|
|
|
|
I_OGG_f,
|
|
|
|
I_OGGMus_Pause,
|
|
|
|
I_OGGMus_Play,
|
|
|
|
I_OGGMus_Resume,
|
|
|
|
I_OGGMus_Update,
|
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_funcs_t plugin_info_funcs = {
|
|
|
|
&plugin_info_general_funcs,
|
|
|
|
0,
|
|
|
|
&plugin_info_cd_funcs,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_data_t plugin_info_data = {
|
|
|
|
&plugin_info_general_data,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_t plugin_info = {
|
|
|
|
qfp_cd,
|
|
|
|
0,
|
|
|
|
QFPLUGIN_VERSION,
|
|
|
|
"0.1",
|
|
|
|
"OGG Music output\n",
|
2004-01-20 06:58:42 +00:00
|
|
|
"Copyright (C) 2001 contributors of the QuakeForge project\n"
|
2004-01-20 08:34:57 +00:00
|
|
|
"Please see the file \"AUTHORS\" for a list of contributors\n",
|
|
|
|
&plugin_info_funcs,
|
|
|
|
&plugin_info_data,
|
|
|
|
};
|
2004-01-20 06:58:42 +00:00
|
|
|
|
2004-01-20 08:34:57 +00:00
|
|
|
PLUGIN_INFO (cd, file)
|
|
|
|
{
|
2004-01-20 06:58:42 +00:00
|
|
|
return &plugin_info;
|
|
|
|
}
|