2001-04-24 22:19:42 +00:00
|
|
|
/*
|
|
|
|
plugin.h
|
|
|
|
|
|
|
|
QuakeForge plugin API structures and prototypes
|
|
|
|
|
|
|
|
Copyright (C) 2001 Jeff Teunissen <deek@dusknet.dhs.org>
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __QF_plugin_h_
|
|
|
|
#define __QF_plugin_h_
|
|
|
|
|
|
|
|
#define QFPLUGIN_VERSION "1.0"
|
|
|
|
|
2001-10-08 05:54:46 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
# ifdef DLL_EXPORT
|
|
|
|
# define QFPLUGIN __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define QFPLUGIN
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define QFPLUGIN
|
|
|
|
#endif
|
2001-04-24 22:19:42 +00:00
|
|
|
|
|
|
|
#include <QF/qtypes.h>
|
2001-06-01 22:55:33 +00:00
|
|
|
#include <QF/plugin/cd.h>
|
2001-07-16 20:41:10 +00:00
|
|
|
#include <QF/plugin/console.h>
|
2001-04-24 22:19:42 +00:00
|
|
|
#include <QF/plugin/general.h>
|
|
|
|
#include <QF/plugin/input.h>
|
2001-08-23 04:01:46 +00:00
|
|
|
#include <QF/plugin/snd_output.h>
|
|
|
|
#include <QF/plugin/snd_render.h>
|
2001-04-24 22:19:42 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
qfp_null = 0, // Not real
|
|
|
|
qfp_input, // Input (pointing devices, joysticks, etc)
|
2001-06-01 22:55:33 +00:00
|
|
|
qfp_cd, // CD Audio
|
2001-07-16 20:41:10 +00:00
|
|
|
qfp_console, // Console `driver'
|
2001-08-23 04:01:46 +00:00
|
|
|
qfp_snd_output, // Sound output (OSS, ALSA, Win32)
|
|
|
|
qfp_snd_render, // Sound mixing
|
2001-04-24 22:19:42 +00:00
|
|
|
} plugin_type_t;
|
|
|
|
|
|
|
|
typedef struct plugin_funcs_s {
|
|
|
|
general_funcs_t *general;
|
|
|
|
input_funcs_t *input;
|
2001-06-01 22:55:33 +00:00
|
|
|
cd_funcs_t *cd;
|
2001-07-16 20:41:10 +00:00
|
|
|
console_funcs_t *console;
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_output_funcs_t *snd_output;
|
|
|
|
snd_render_funcs_t *snd_render;
|
2001-04-24 22:19:42 +00:00
|
|
|
} plugin_funcs_t;
|
|
|
|
|
|
|
|
typedef struct plugin_data_s {
|
|
|
|
general_data_t *general;
|
|
|
|
input_data_t *input;
|
2001-07-16 23:17:52 +00:00
|
|
|
cd_data_t *cd;
|
2001-07-16 20:41:10 +00:00
|
|
|
console_data_t *console;
|
2001-08-23 04:01:46 +00:00
|
|
|
snd_output_data_t *snd_output;
|
|
|
|
snd_render_data_t *snd_render;
|
2001-04-24 22:19:42 +00:00
|
|
|
} plugin_data_t;
|
|
|
|
|
|
|
|
typedef struct plugin_s {
|
|
|
|
plugin_type_t type;
|
|
|
|
void *handle;
|
|
|
|
char *api_version;
|
|
|
|
char *plugin_version;
|
|
|
|
char *description;
|
|
|
|
char *copyright;
|
|
|
|
plugin_funcs_t *functions;
|
|
|
|
plugin_data_t *data;
|
|
|
|
} plugin_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
General plugin info return function type
|
|
|
|
*/
|
|
|
|
typedef plugin_t * (*P_PluginInfo) (void);
|
|
|
|
|
2001-10-10 05:52:14 +00:00
|
|
|
typedef struct plugin_list_s {
|
|
|
|
const char *name;
|
|
|
|
P_PluginInfo info;
|
|
|
|
} plugin_list_t;
|
|
|
|
|
2001-04-24 22:19:42 +00:00
|
|
|
/*
|
|
|
|
Plugin system variables
|
|
|
|
*/
|
2001-05-31 03:41:35 +00:00
|
|
|
extern struct cvar_s *fs_pluginpath;
|
2001-04-24 22:19:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Function prototypes
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
plugin_t *PI_LoadPlugin (const char *, const char *);
|
2001-04-24 22:19:42 +00:00
|
|
|
qboolean PI_UnloadPlugin (plugin_t *);
|
2001-10-10 16:22:41 +00:00
|
|
|
void PI_RegisterPlugins (plugin_list_t *);
|
2001-04-24 22:19:42 +00:00
|
|
|
void PI_Init (void);
|
|
|
|
void PI_Shutdown (void);
|
|
|
|
|
2001-08-23 04:01:46 +00:00
|
|
|
// FIXME: we need a generic function to initialize unused fields
|
|
|
|
|
2001-04-24 22:19:42 +00:00
|
|
|
#endif // __QF_plugin_h_
|