2004-09-24 02:45:00 +00:00
//This file should be easily portable.
//The biggest strength of this plugin system is that ALL interactions are performed via
//named functions, this makes it *really* easy to port plugins from one engine to annother.
# include "quakedef.h"
2013-05-03 04:28:08 +00:00
# include "fs.h"
2004-09-24 02:45:00 +00:00
2013-05-11 14:02:55 +00:00
# define PLUG_NONE 0
# define PLUG_NATIVE 1
# define PLUG_QVM 2
# define PLUG_EITHER 3
2004-09-30 22:51:15 +00:00
# ifdef PLUGINS
2004-09-24 02:45:00 +00:00
2015-09-14 15:20:09 +00:00
cvar_t plug_sbar = CVARD ( " plug_sbar " , " 3 " , " Controls whether plugins are allowed to draw the hud, rather than the engine (when allowed by csqc). This is typically used to permit the ezhud plugin without needing to bother unloading it. \n =0: never use hud plugins. \n &1: Use hud plugins in deathmatch. \n &2: Use hud plugins in singleplayer/coop. \n =3: Always use hud plugins (when loaded). " ) ;
2006-02-11 02:09:43 +00:00
cvar_t plug_loaddefault = SCVAR ( " plug_loaddefault " , " 1 " ) ;
2005-01-15 17:46:40 +00:00
2015-02-02 08:01:53 +00:00
qintptr_t Plug_Bullet_Init ( qintptr_t * args ) ;
qintptr_t Plug_ODE_Init ( qintptr_t * args ) ;
struct
{
const char * name ;
qintptr_t ( * initfunction ) ( qintptr_t * args ) ;
} staticplugins [ ] =
{
2015-09-01 04:45:15 +00:00
# if defined(USERBE) && !defined(QUAKETC)
2015-02-02 08:01:53 +00:00
// {"Bullet", Plug_Bullet_Init},
{ " ODE " , Plug_ODE_Init } ,
# endif
{ NULL }
} ;
2009-11-04 21:16:50 +00:00
# ifdef GLQUAKE
2004-10-10 06:32:29 +00:00
# include "glquake.h"
2005-08-01 14:17:27 +00:00
# endif
2004-10-10 06:32:29 +00:00
2005-12-15 19:45:04 +00:00
//custom plugin builtins.
2009-07-18 20:21:02 +00:00
typedef qintptr_t ( EXPORT_FN * Plug_Builtin_t ) ( void * offset , quintptr_t mask , const qintptr_t * arg ) ;
2005-12-21 03:07:33 +00:00
void Plug_RegisterBuiltin ( char * name , Plug_Builtin_t bi , int flags ) ;
2015-02-02 08:01:53 +00:00
# define PLUG_BIF_DLLONLY 1 //WARNING: it is not enough to just specify this flag, but also the builtin code must return if there is an offset passed.
2005-12-15 19:45:04 +00:00
# define PLUG_BIF_QVMONLY 2
2006-01-02 22:55:56 +00:00
# define PLUG_BIF_NEEDSRENDERER 4
2005-12-15 19:45:04 +00:00
2005-11-29 13:32:15 +00:00
# include "netinc.h"
2004-09-24 02:45:00 +00:00
typedef struct plugin_s {
char * name ;
vm_t * vm ;
2005-12-15 19:15:39 +00:00
2006-01-29 03:45:00 +00:00
int blockcloses ;
2009-04-06 00:34:32 +00:00
void * inputptr ;
2015-03-03 00:14:43 +00:00
size_t inputbytes ;
2009-04-06 00:34:32 +00:00
2015-03-03 00:14:43 +00:00
qintptr_t tick ;
qintptr_t executestring ;
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2015-03-03 00:14:43 +00:00
qintptr_t consolelink ;
qintptr_t consolelinkmouseover ;
qintptr_t conexecutecommand ;
qintptr_t menufunction ;
qintptr_t sbarlevel [ 3 ] ; //0 - main sbar, 1 - supplementry sbar sections (make sure these can be switched off), 2 - overlays (scoreboard). menus kill all.
qintptr_t reschange ;
2004-09-24 02:45:00 +00:00
2005-08-03 23:14:59 +00:00
//protocol-in-a-plugin
2015-03-03 00:14:43 +00:00
qintptr_t connectionlessclientpacket ;
2009-04-06 00:34:32 +00:00
//called to discolour console input text if they spelt it wrongly
2015-03-03 00:14:43 +00:00
qintptr_t spellcheckmaskedtext ;
2005-12-15 19:15:39 +00:00
# endif
2015-03-03 00:14:43 +00:00
qintptr_t svmsgfunction ;
qintptr_t chatmsgfunction ;
qintptr_t centerprintfunction ;
qintptr_t shutdown ;
2005-11-30 05:01:43 +00:00
2004-09-24 02:45:00 +00:00
struct plugin_s * next ;
} plugin_t ;
2015-04-14 23:12:17 +00:00
int Plug_SubConsoleCommand ( console_t * con , char * line ) ;
2005-03-10 03:55:18 +00:00
2004-09-24 02:45:00 +00:00
plugin_t * currentplug ;
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
# include "cl_plugin.inc"
# else
void Plug_Client_Init ( void ) { }
void Plug_Client_Close ( plugin_t * plug ) { }
# endif
2004-09-24 02:45:00 +00:00
void Plug_Init ( void ) ;
2005-08-03 23:14:59 +00:00
void Plug_Close ( plugin_t * plug ) ;
2004-09-24 02:45:00 +00:00
void Plug_Tick ( void ) ;
qboolean Plugin_ExecuteString ( void ) ;
static plugin_t * plugs ;
typedef struct {
char * name ;
Plug_Builtin_t func ;
2005-11-30 01:20:53 +00:00
int flags ;
2004-09-24 02:45:00 +00:00
} Plug_Plugins_t ;
Plug_Plugins_t * plugbuiltins ;
int numplugbuiltins ;
void Plug_RegisterBuiltin ( char * name , Plug_Builtin_t bi , int flags )
{
//randomize the order a little.
int newnum ;
2005-12-15 19:15:39 +00:00
2005-12-06 15:39:57 +00:00
newnum = ( rand ( ) % 128 ) + 1 ;
2004-09-24 02:45:00 +00:00
while ( newnum < numplugbuiltins & & plugbuiltins [ newnum ] . func )
newnum + = 128 ;
2004-12-04 16:26:22 +00:00
if ( newnum > = numplugbuiltins )
2004-09-24 02:45:00 +00:00
{
2008-05-09 14:22:37 +00:00
int newbuiltins = newnum + 128 ;
plugbuiltins = BZ_Realloc ( plugbuiltins , sizeof ( Plug_Plugins_t ) * newbuiltins ) ;
memset ( plugbuiltins + numplugbuiltins , 0 , sizeof ( Plug_Plugins_t ) * ( newbuiltins - numplugbuiltins ) ) ;
numplugbuiltins = newbuiltins ;
2004-09-24 02:45:00 +00:00
}
//got an empty number.
2005-12-15 19:15:39 +00:00
Con_DPrintf ( " %s: %i \n " , name , newnum ) ;
2004-09-24 02:45:00 +00:00
plugbuiltins [ newnum ] . name = name ;
plugbuiltins [ newnum ] . func = bi ;
2005-11-30 01:20:53 +00:00
plugbuiltins [ newnum ] . flags = flags ;
2004-09-24 02:45:00 +00:00
}
2013-06-23 02:17:02 +00:00
static qintptr_t VARGS Plug_GetNativePointer ( void * offset , quintptr_t mask , const qintptr_t * args )
{
char * p = ( char * ) VM_POINTER ( args [ 0 ] ) ;
2015-02-02 08:01:53 +00:00
if ( offset ) //QVMs are not allowed to call this
return 0 ;
2013-06-23 02:17:02 +00:00
# ifdef SUPPORT_ICE
2013-06-29 16:01:07 +00:00
if ( ! strcmp ( p , ICE_API_CURRENT ) )
return ( qintptr_t ) & iceapi ;
2013-06-23 02:17:02 +00:00
# endif
return ( qintptr_t ) NULL ;
}
2004-09-24 02:45:00 +00:00
/*
static void Plug_RegisterBuiltinIndex ( char * name , Plug_Builtin_t bi , int flags , int index ) //I d
{
//randomize the order a little.
int newnum ;
2005-12-15 19:15:39 +00:00
2004-09-24 02:45:00 +00:00
newnum = rand ( ) % 128 ;
while ( newnum + 1 < numplugbuiltins & & plugbuiltins [ newnum + 1 ] . func )
newnum + = 128 ;
newnum + + ;
2004-12-04 16:26:22 +00:00
if ( newnum > = numplugbuiltins )
2004-09-24 02:45:00 +00:00
{
numplugbuiltins = newnum + 128 ;
plugbuiltins = BZ_Realloc ( plugbuiltins , sizeof ( Plug_Plugins_t ) * numplugbuiltins ) ;
}
//got an empty number.
plugbuiltins [ newnum ] . name = name ;
plugbuiltins [ newnum ] . func = bi ;
}
*/
2015-02-02 08:01:53 +00:00
static qintptr_t Plug_FindBuiltin ( qboolean native , const char * p )
2004-09-24 02:45:00 +00:00
{
int i ;
for ( i = 0 ; i < numplugbuiltins ; i + + )
if ( plugbuiltins [ i ] . name )
2007-10-11 15:40:28 +00:00
if ( p & & ! strcmp ( plugbuiltins [ i ] . name , p ) )
2005-11-30 01:20:53 +00:00
{
2011-01-29 21:01:40 +00:00
if ( ! native & & plugbuiltins [ i ] . flags & PLUG_BIF_DLLONLY )
2005-11-30 01:20:53 +00:00
return 0 ; //block it, if not native
2011-01-29 21:01:40 +00:00
if ( native & & plugbuiltins [ i ] . flags & PLUG_BIF_QVMONLY )
2005-11-30 01:20:53 +00:00
return 0 ; //block it, if not native
2004-09-24 02:45:00 +00:00
return - i ;
2005-11-30 01:20:53 +00:00
}
2004-09-24 02:45:00 +00:00
return 0 ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_GetBuiltin ( void * offset , quintptr_t mask , const qintptr_t * args )
2011-01-29 21:01:40 +00:00
{
char * p = ( char * ) VM_POINTER ( args [ 0 ] ) ;
return Plug_FindBuiltin ( ! offset , p ) ;
}
2004-09-24 02:45:00 +00:00
2012-10-08 05:10:14 +00:00
static int Plug_SystemCallsVM ( void * offset , quintptr_t mask , int fn , const int * arg )
2004-09-24 02:45:00 +00:00
{
2009-07-18 20:21:02 +00:00
# if FTE_WORDSIZE == 32
# define args arg
# else
qintptr_t args [ 9 ] ;
args [ 0 ] = arg [ 0 ] ;
args [ 1 ] = arg [ 1 ] ;
args [ 2 ] = arg [ 2 ] ;
args [ 3 ] = arg [ 3 ] ;
args [ 4 ] = arg [ 4 ] ;
args [ 5 ] = arg [ 5 ] ;
args [ 6 ] = arg [ 6 ] ;
args [ 7 ] = arg [ 7 ] ;
args [ 8 ] = arg [ 8 ] ;
# endif
2004-09-24 02:45:00 +00:00
fn = fn + 1 ;
if ( fn > = 0 & & fn < numplugbuiltins & & plugbuiltins [ fn ] . func ! = NULL )
2011-06-03 03:10:39 +00:00
return plugbuiltins [ fn ] . func ( offset , mask , ( qintptr_t * ) args ) ;
2009-07-18 20:21:02 +00:00
# undef args
2004-09-24 02:45:00 +00:00
Sys_Error ( " QVM Plugin tried calling invalid builtin %i " , fn ) ;
return 0 ;
}
//I'm not keen on this.
//but dlls call it without saying what sort of vm it comes from, so I've got to have them as specifics
2010-11-02 23:17:25 +00:00
static qintptr_t EXPORT_FN Plug_SystemCallsNative ( qintptr_t arg , . . . )
2004-09-24 02:45:00 +00:00
{
2009-07-18 20:21:02 +00:00
qintptr_t args [ 9 ] ;
2004-09-24 02:45:00 +00:00
va_list argptr ;
va_start ( argptr , arg ) ;
2009-07-18 20:21:02 +00:00
args [ 0 ] = va_arg ( argptr , qintptr_t ) ;
args [ 1 ] = va_arg ( argptr , qintptr_t ) ;
args [ 2 ] = va_arg ( argptr , qintptr_t ) ;
args [ 3 ] = va_arg ( argptr , qintptr_t ) ;
args [ 4 ] = va_arg ( argptr , qintptr_t ) ;
args [ 5 ] = va_arg ( argptr , qintptr_t ) ;
args [ 6 ] = va_arg ( argptr , qintptr_t ) ;
args [ 7 ] = va_arg ( argptr , qintptr_t ) ;
args [ 8 ] = va_arg ( argptr , qintptr_t ) ;
2004-09-24 02:45:00 +00:00
va_end ( argptr ) ;
arg = - arg ;
if ( arg > = 0 & & arg < numplugbuiltins & & plugbuiltins [ arg ] . func )
return plugbuiltins [ arg ] . func ( NULL , ~ 0 , args ) ;
2009-10-06 00:32:28 +00:00
Sys_Error ( " DLL Plugin tried calling invalid builtin %i " , ( int ) arg ) ;
2004-09-24 02:45:00 +00:00
return 0 ;
}
2015-02-02 08:01:53 +00:00
qintptr_t ( QDECL * plugin_syscall ) ( qintptr_t arg , . . . ) = Plug_SystemCallsNative ;
2004-09-24 02:45:00 +00:00
2015-02-02 08:01:53 +00:00
plugin_t * Plug_Load ( const char * file , int type )
2004-09-24 02:45:00 +00:00
{
plugin_t * newplug ;
for ( newplug = plugs ; newplug ; newplug = newplug - > next )
{
2015-02-02 08:01:53 +00:00
if ( ! Q_strcasecmp ( newplug - > name , file ) )
2005-08-03 23:14:59 +00:00
return newplug ;
2004-09-24 02:45:00 +00:00
}
newplug = Z_Malloc ( sizeof ( plugin_t ) + strlen ( file ) + 1 ) ;
newplug - > name = ( char * ) ( newplug + 1 ) ;
strcpy ( newplug - > name , file ) ;
2005-12-15 19:15:39 +00:00
2015-04-14 23:12:17 +00:00
if ( ! newplug - > vm & & ( type & PLUG_NATIVE ) )
newplug - > vm = VM_Create ( va ( " fteplug_%s_ " , file ) , Plug_SystemCallsNative , NULL ) ;
2013-05-11 14:02:55 +00:00
if ( ! newplug - > vm & & ( type & PLUG_NATIVE ) )
newplug - > vm = VM_Create ( va ( " fteplug_%s " , file ) , Plug_SystemCallsNative , NULL ) ;
if ( ! newplug - > vm & & ( type & PLUG_QVM ) )
newplug - > vm = VM_Create ( file , NULL , Plug_SystemCallsVM ) ;
2015-02-02 08:01:53 +00:00
if ( ! newplug - > vm & & ( type & PLUG_NATIVE ) )
{
unsigned int u ;
for ( u = 0 ; staticplugins [ u ] . name ; u + + )
{
if ( ! Q_strcasecmp ( file , staticplugins [ u ] . name ) )
newplug - > vm = VM_CreateBuiltin ( file , Plug_SystemCallsNative , staticplugins [ u ] . initfunction ) ;
break ;
}
}
2013-05-11 14:02:55 +00:00
2004-09-24 02:45:00 +00:00
currentplug = newplug ;
if ( newplug - > vm )
{
2015-02-02 08:01:53 +00:00
Con_DPrintf ( " Created plugin %s \n " , file ) ;
2005-08-03 23:14:59 +00:00
2004-09-24 02:45:00 +00:00
newplug - > next = plugs ;
plugs = newplug ;
2011-01-29 21:01:40 +00:00
if ( ! VM_Call ( newplug - > vm , 0 , Plug_FindBuiltin ( true , " Plug_GetEngineFunction " ) ) )
2005-08-03 23:14:59 +00:00
{
Plug_Close ( newplug ) ;
return NULL ;
}
2004-10-10 06:32:29 +00:00
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2004-10-10 06:32:29 +00:00
if ( newplug - > reschange )
VM_Call ( newplug - > vm , newplug - > reschange , vid . width , vid . height ) ;
2005-12-15 19:15:39 +00:00
# endif
2004-09-24 02:45:00 +00:00
}
else
{
Z_Free ( newplug ) ;
newplug = NULL ;
}
currentplug = NULL ;
return newplug ;
}
2015-02-02 08:01:53 +00:00
static int QDECL Plug_Emumerated ( const char * name , qofs_t size , time_t mtime , void * param , searchpathfuncs_t * spath )
2004-09-24 02:45:00 +00:00
{
char vmname [ MAX_QPATH ] ;
2009-04-01 22:03:56 +00:00
Q_strncpyz ( vmname , name , sizeof ( vmname ) ) ;
2004-09-24 02:45:00 +00:00
vmname [ strlen ( vmname ) - strlen ( param ) ] = ' \0 ' ;
2013-05-11 14:02:55 +00:00
if ( ! Plug_Load ( vmname , PLUG_QVM ) )
2005-12-15 19:15:39 +00:00
Con_Printf ( " Couldn't load plugin %s \n " , vmname ) ;
2004-09-24 02:45:00 +00:00
return true ;
}
2015-02-02 08:01:53 +00:00
static int QDECL Plug_EnumeratedRoot ( const char * name , qofs_t size , time_t mtime , void * param , searchpathfuncs_t * spath )
2013-05-03 04:28:08 +00:00
{
char vmname [ MAX_QPATH ] ;
int len ;
char * dot ;
2013-05-11 14:02:55 +00:00
if ( ! strncmp ( name , " fteplug_ " , 8 ) )
name + = 8 ;
2013-05-03 04:28:08 +00:00
Q_strncpyz ( vmname , name , sizeof ( vmname ) ) ;
len = strlen ( vmname ) ;
len - = strlen ( ARCH_CPU_POSTFIX ARCH_DL_POSTFIX ) ;
if ( ! strcmp ( vmname + len , ARCH_CPU_POSTFIX ARCH_DL_POSTFIX ) )
vmname [ len ] = 0 ;
else
{
dot = strchr ( vmname , ' . ' ) ;
if ( dot )
* dot = 0 ;
}
2015-04-14 23:12:17 +00:00
len = strlen ( vmname ) ;
if ( len > 0 & & vmname [ len - 1 ] = = ' _ ' )
vmname [ len - 1 ] = 0 ;
2013-05-11 14:02:55 +00:00
if ( ! Plug_Load ( vmname , PLUG_NATIVE ) )
2013-05-03 04:28:08 +00:00
Con_Printf ( " Couldn't load plugin %s \n " , vmname ) ;
return true ;
}
2004-09-24 02:45:00 +00:00
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Con_Print ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
2010-02-06 01:25:04 +00:00
// if (qrenderer == QR_NONE)
2007-03-28 13:27:35 +00:00
// return false;
2005-12-15 19:15:39 +00:00
Con_Printf ( " %s " , ( char * ) VM_POINTER ( arg [ 0 ] ) ) ;
2004-09-24 02:45:00 +00:00
return 0 ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Sys_Error ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
Sys_Error ( " %s " , ( char * ) offset + arg [ 0 ] ) ;
return 0 ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Sys_Milliseconds ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
return Sys_DoubleTime ( ) * 1000 ;
}
2015-02-02 08:01:53 +00:00
static qintptr_t VARGS Plug_Sys_LoadLibrary ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
if ( offset )
return 0 ;
return ( qintptr_t ) Sys_LoadLibrary ( VM_POINTER ( arg [ 0 ] ) , VM_POINTER ( arg [ 1 ] ) ) ;
}
static qintptr_t VARGS Plug_Sys_CloseLibrary ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
if ( offset )
return 0 ;
Sys_CloseLibrary ( VM_POINTER ( arg [ 0 ] ) ) ;
return 1 ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_ExportToEngine ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
2004-09-26 00:30:42 +00:00
char * name = ( char * ) VM_POINTER ( arg [ 0 ] ) ;
2015-03-03 00:14:43 +00:00
quintptr_t functionid = arg [ 1 ] ;
2008-05-25 01:08:54 +00:00
2013-06-23 02:17:02 +00:00
if ( ! strcmp ( name , " Tick " ) ) //void(int realtime)
2008-05-25 01:08:54 +00:00
currentplug - > tick = functionid ;
2013-06-23 02:17:02 +00:00
else if ( ! strcmp ( name , " ExecuteCommand " ) ) //bool(isinsecure)
2008-05-25 01:08:54 +00:00
currentplug - > executestring = functionid ;
2013-06-23 02:17:02 +00:00
else if ( ! strcmp ( name , " Shutdown " ) ) //void()
2012-10-08 04:36:10 +00:00
currentplug - > shutdown = functionid ;
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2013-06-23 02:17:02 +00:00
else if ( ! strcmp ( name , " ConsoleLink " ) )
currentplug - > consolelink = functionid ;
2013-11-21 23:02:28 +00:00
else if ( ! strcmp ( name , " ConsoleLinkMouseOver " ) )
currentplug - > consolelinkmouseover = functionid ;
2005-01-13 16:50:37 +00:00
else if ( ! strcmp ( name , " ConExecuteCommand " ) )
2008-05-25 01:08:54 +00:00
currentplug - > conexecutecommand = functionid ;
2004-09-26 00:30:42 +00:00
else if ( ! strcmp ( name , " MenuEvent " ) )
2008-05-25 01:08:54 +00:00
currentplug - > menufunction = functionid ;
2004-10-10 06:32:29 +00:00
else if ( ! strcmp ( name , " UpdateVideo " ) )
2008-05-25 01:08:54 +00:00
currentplug - > reschange = functionid ;
2004-10-13 07:24:59 +00:00
else if ( ! strcmp ( name , " SbarBase " ) ) //basic SBAR.
2008-05-25 01:08:54 +00:00
currentplug - > sbarlevel [ 0 ] = functionid ;
2004-10-13 07:24:59 +00:00
else if ( ! strcmp ( name , " SbarSupplement " ) ) //supplementry stuff - teamplay
2008-05-25 01:08:54 +00:00
currentplug - > sbarlevel [ 1 ] = functionid ;
2004-10-13 07:24:59 +00:00
else if ( ! strcmp ( name , " SbarOverlay " ) ) //overlay - scoreboard type stuff.
2008-05-25 01:08:54 +00:00
currentplug - > sbarlevel [ 2 ] = functionid ;
2005-08-03 23:14:59 +00:00
else if ( ! strcmp ( name , " ConnectionlessClientPacket " ) )
2008-05-25 01:08:54 +00:00
currentplug - > connectionlessclientpacket = functionid ;
2006-01-01 09:01:15 +00:00
else if ( ! strcmp ( name , " ServerMessageEvent " ) )
2008-05-25 01:08:54 +00:00
currentplug - > svmsgfunction = functionid ;
2006-01-01 09:01:15 +00:00
else if ( ! strcmp ( name , " ChatMessageEvent " ) )
2008-05-25 01:08:54 +00:00
currentplug - > chatmsgfunction = functionid ;
2006-01-01 09:01:15 +00:00
else if ( ! strcmp ( name , " CenterPrintMessage " ) )
2008-05-25 01:08:54 +00:00
currentplug - > centerprintfunction = functionid ;
2009-04-06 00:34:32 +00:00
else if ( ! strcmp ( name , " SpellCheckMaskedText " ) )
currentplug - > spellcheckmaskedtext = functionid ;
2005-12-15 19:15:39 +00:00
# endif
2004-09-24 02:45:00 +00:00
else
return 0 ;
return 1 ;
}
2004-10-10 06:32:29 +00:00
2005-12-15 19:15:39 +00:00
//retrieve a plugin's name
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_GetPluginName ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-15 19:15:39 +00:00
{
int plugnum = VM_LONG ( arg [ 0 ] ) ;
plugin_t * plug ;
//int plugnum (0 for current), char *buffer, int bufferlen
if ( VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
return false ;
if ( plugnum < = 0 )
{
Q_strncpyz ( VM_POINTER ( arg [ 1 ] ) , currentplug - > name , VM_LONG ( arg [ 2 ] ) ) ;
return true ;
}
for ( plug = plugs ; plug ; plug = plug - > next )
{
if ( - - plugnum = = 0 )
{
Q_strncpyz ( VM_POINTER ( arg [ 1 ] ) , plug - > name , VM_LONG ( arg [ 2 ] ) ) ;
return true ;
}
}
return false ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_ExportNative ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-11-30 01:20:53 +00:00
{
2012-04-24 07:59:11 +00:00
void * func ;
2005-11-30 01:20:53 +00:00
char * name = ( char * ) VM_POINTER ( arg [ 0 ] ) ;
2015-02-02 08:01:53 +00:00
if ( offset ) //QVMs are not allowed to call this
return 0 ;
2005-11-30 01:20:53 +00:00
arg + + ;
2012-04-24 07:59:11 +00:00
func = ( ( void * * ) arg ) [ 0 ] ;
2005-11-30 01:20:53 +00:00
2006-01-29 03:45:00 +00:00
if ( ! strcmp ( name , " UnsafeClose " ) )
{
//not used by the engine, but stops the user from being able to unload the plugin.
//this is useful for certain things, like if the plugin uses some external networking or direct disk access or whatever.
currentplug - > blockcloses + + ;
}
2013-05-03 04:28:08 +00:00
else if ( ! strncmp ( name , " FS_RegisterArchiveType_ " , 23 ) ) //module as in pak/pk3
2006-01-29 03:45:00 +00:00
{
2013-05-03 04:28:08 +00:00
FS_RegisterFileSystemType ( currentplug , name + 23 , func , true ) ;
2006-01-29 03:45:00 +00:00
}
/*
else if ( ! strncmp ( name , " S_OutputDriver " ) ) //a sound driver (takes higher priority over the built-in ones)
{
S_RegisterOutputDriver ( name + 13 , func ) ;
currentplug - > blockcloses + + ;
}
*/
/*
else if ( ! strncmp ( name , " VID_DisplayDriver " ) ) //a video driver, loaded by name as given by vid_renderer
{
FS_RegisterModuleDriver ( , func ) ;
currentplug - > blockcloses + + ;
}
*/
2012-04-24 07:59:11 +00:00
# if defined(PLUGINS) && !defined(NOMEDIA) && !defined(SERVERONLY)
else if ( ! strcmp ( name , " Media_VideoDecoder " ) )
{
Media_RegisterDecoder ( currentplug , func ) ;
2012-11-27 03:23:19 +00:00
// currentplug->blockcloses++;
}
else if ( ! strcmp ( name , " Media_VideoEncoder " ) )
{
Media_RegisterEncoder ( currentplug , func ) ;
2012-10-10 22:58:51 +00:00
// currentplug->blockcloses++;
2012-04-24 07:59:11 +00:00
}
# endif
2006-01-29 03:45:00 +00:00
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2006-01-29 03:45:00 +00:00
else if ( ! strcmp ( name , " S_LoadSound " ) ) //a hook for loading extra types of sound (wav, mp3, ogg, midi, whatever you choose to support)
{
2006-02-11 14:51:36 +00:00
S_RegisterSoundInputPlugin ( ( void * ) func ) ;
2006-01-29 03:45:00 +00:00
currentplug - > blockcloses + + ;
}
2005-12-15 19:15:39 +00:00
# endif
2006-01-29 03:45:00 +00:00
else
2005-11-30 01:20:53 +00:00
return 0 ;
return 1 ;
}
2015-02-02 08:01:53 +00:00
static qintptr_t VARGS Plug_Cvar_GetNVFDG ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
char * name = VM_POINTER ( arg [ 0 ] ) ;
char * defaultvalue = VM_POINTER ( arg [ 1 ] ) ;
unsigned int flags = VM_LONG ( arg [ 2 ] ) ;
char * description = VM_POINTER ( arg [ 3 ] ) ;
char * groupname = VM_POINTER ( arg [ 4 ] ) ;
2015-04-21 04:12:00 +00:00
if ( ! defaultvalue )
return ( qintptr_t ) Cvar_FindVar ( name ) ;
2015-02-02 08:01:53 +00:00
return ( qintptr_t ) Cvar_Get2 ( name , defaultvalue , flags & 1 , description , groupname ) ;
}
2004-10-10 06:32:29 +00:00
typedef struct {
//Make SURE that the engine has resolved all cvar pointers into globals before this happens.
plugin_t * plugin ;
cvar_t * var ;
} plugincvararray_t ;
int plugincvararraylen ;
plugincvararray_t * plugincvararray ;
//qhandle_t Cvar_Register (char *name, char *defaultval, int flags, char *grouphint);
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_Register ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
char * name = VM_POINTER ( arg [ 0 ] ) ;
char * defaultvalue = VM_POINTER ( arg [ 1 ] ) ;
unsigned int flags = VM_LONG ( arg [ 2 ] ) ;
char * groupname = VM_POINTER ( arg [ 3 ] ) ;
cvar_t * var ;
int i ;
var = Cvar_Get ( name , defaultvalue , flags & 1 , groupname ) ;
for ( i = 0 ; i < plugincvararraylen ; i + + )
{
if ( ! plugincvararray [ i ] . var )
{ //hmm... a gap...
plugincvararray [ i ] . plugin = currentplug ;
plugincvararray [ i ] . var = var ;
return i ;
}
}
2007-09-17 20:35:39 +00:00
i = plugincvararraylen ;
2004-10-10 06:32:29 +00:00
plugincvararraylen + + ;
2007-09-17 20:35:39 +00:00
plugincvararray = BZ_Realloc ( plugincvararray , ( plugincvararraylen ) * sizeof ( plugincvararray_t ) ) ;
plugincvararray [ i ] . plugin = currentplug ;
plugincvararray [ i ] . var = var ;
return i ;
2004-10-10 06:32:29 +00:00
}
//int Cvar_Update, (qhandle_t handle, int modificationcount, char *stringv, float *floatv)); //stringv is 256 chars long, don't expect this function to do anything if modification count is unchanged.
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_Update ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
int handle ;
2013-05-11 05:03:07 +00:00
// int modcount;
2004-10-10 06:32:29 +00:00
char * stringv ; //255 bytes long.
float * floatv ;
cvar_t * var ;
handle = VM_LONG ( arg [ 0 ] ) ;
if ( handle < 0 | | handle > = plugincvararraylen )
return 0 ;
if ( plugincvararray [ handle ] . plugin ! = currentplug )
return 0 ; //I'm not letting you know what annother plugin has registered.
if ( VM_OOB ( arg [ 2 ] , 256 ) | | VM_OOB ( arg [ 3 ] , 4 ) ) //Oi, plugin - you screwed up
return 0 ;
2013-05-11 05:03:07 +00:00
//modcount = VM_LONG(arg[1]); //for future optimisation
2004-10-10 06:32:29 +00:00
stringv = VM_POINTER ( arg [ 2 ] ) ;
floatv = VM_POINTER ( arg [ 3 ] ) ;
var = plugincvararray [ handle ] . var ;
2013-05-11 05:03:07 +00:00
//if (var->modified != modcount) //for future optimisation
{
strcpy ( stringv , var - > string ) ;
* floatv = var - > value ;
}
2004-10-10 06:32:29 +00:00
return var - > modified ;
}
//void Cmd_Args(char *buffer, int buffersize)
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cmd_Args ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
2004-09-26 00:30:42 +00:00
char * buffer = ( char * ) VM_POINTER ( arg [ 0 ] ) ;
2004-09-24 02:45:00 +00:00
char * args ;
args = Cmd_Args ( ) ;
if ( strlen ( args ) + 1 > arg [ 1 ] )
return 0 ;
strcpy ( buffer , args ) ;
return 1 ;
}
2004-10-10 06:32:29 +00:00
//void Cmd_Argv(int num, char *buffer, int buffersize)
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cmd_Argv ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
2004-09-26 00:30:42 +00:00
char * buffer = ( char * ) VM_POINTER ( arg [ 1 ] ) ;
2004-09-24 02:45:00 +00:00
char * args ;
args = Cmd_Argv ( arg [ 0 ] ) ;
if ( strlen ( args ) + 1 > arg [ 2 ] )
return 0 ;
strcpy ( buffer , args ) ;
return 1 ;
}
2004-10-10 06:32:29 +00:00
//int Cmd_Argc(void)
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cmd_Argc ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-09-24 02:45:00 +00:00
{
return Cmd_Argc ( ) ;
}
2004-09-26 00:30:42 +00:00
2004-10-10 06:32:29 +00:00
//void Cvar_SetString (char *name, char *value);
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_SetString ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
char * name = VM_POINTER ( arg [ 0 ] ) ,
* value = VM_POINTER ( arg [ 1 ] ) ;
cvar_t * var = Cvar_Get ( name , value , 0 , " Plugin vars " ) ;
if ( var )
{
Cvar_Set ( var , value ) ;
return 1 ;
}
return 0 ;
}
//void Cvar_SetFloat (char *name, float value);
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_SetFloat ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
char * name = VM_POINTER ( arg [ 0 ] ) ;
float value = VM_FLOAT ( arg [ 1 ] ) ;
cvar_t * var = Cvar_Get ( name , " " , 0 , " Plugin vars " ) ; //"" because I'm lazy
if ( var )
{
Cvar_SetValue ( var , value ) ;
return 1 ;
}
return 0 ;
}
//void Cvar_GetFloat (char *name);
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_GetFloat ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
char * name = VM_POINTER ( arg [ 0 ] ) ;
int ret ;
2013-06-23 02:17:02 +00:00
cvar_t * var ;
# ifndef CLIENTONLY
if ( ! strcmp ( name , " sv.state " ) )
VM_FLOAT ( ret ) = sv . state ;
else
# endif
2004-10-10 06:32:29 +00:00
{
2013-06-23 02:17:02 +00:00
var = Cvar_Get ( name , " " , 0 , " Plugin vars " ) ;
if ( var )
{
VM_FLOAT ( ret ) = var - > value ;
}
else
VM_FLOAT ( ret ) = 0 ;
2004-10-10 06:32:29 +00:00
}
return ret ;
}
//qboolean Cvar_GetString (char *name, char *retstring, int sizeofretstring);
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cvar_GetString ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
char * name , * ret ;
int retsize ;
cvar_t * var ;
if ( VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
{
return false ;
}
name = VM_POINTER ( arg [ 0 ] ) ;
ret = VM_POINTER ( arg [ 1 ] ) ;
retsize = VM_LONG ( arg [ 2 ] ) ;
2013-06-23 02:17:02 +00:00
if ( ! strcmp ( name , " sv.mapname " ) )
{
# ifdef CLIENTONLY
Q_strncpyz ( ret , " " , retsize ) ;
# else
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
Q_strncpyz ( ret , svs . name , retsize ) ;
2013-06-23 02:17:02 +00:00
# endif
}
else
{
var = Cvar_Get ( name , " " , 0 , " Plugin vars " ) ;
if ( strlen ( var - > name ) + 1 > retsize )
return false ;
2004-10-10 06:32:29 +00:00
2013-06-23 02:17:02 +00:00
strcpy ( ret , var - > string ) ;
}
2004-10-10 06:32:29 +00:00
return true ;
}
//void Cmd_AddText (char *text, qboolean insert); //abort the entire engine.
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cmd_AddText ( void * offset , quintptr_t mask , const qintptr_t * arg )
2004-10-10 06:32:29 +00:00
{
if ( VM_LONG ( arg [ 1 ] ) )
2006-02-06 01:06:17 +00:00
Cbuf_InsertText ( VM_POINTER ( arg [ 0 ] ) , RESTRICT_LOCAL , false ) ;
2004-10-10 06:32:29 +00:00
else
Cbuf_AddText ( VM_POINTER ( arg [ 0 ] ) , RESTRICT_LOCAL ) ;
return 1 ;
2004-09-26 00:30:42 +00:00
}
2005-01-15 17:46:40 +00:00
int plugincommandarraylen ;
typedef struct {
plugin_t * plugin ;
char command [ 64 ] ;
} plugincommand_t ;
plugincommand_t * plugincommandarray ;
void Plug_Command_f ( void )
{
int i ;
char * cmd = Cmd_Argv ( 0 ) ;
plugin_t * oldplug = currentplug ;
for ( i = 0 ; i < plugincommandarraylen ; i + + )
{
if ( ! plugincommandarray [ i ] . plugin )
continue ; //don't check commands who's owners died.
if ( stricmp ( plugincommandarray [ i ] . command , cmd ) ) //not the right command
continue ;
currentplug = plugincommandarray [ i ] . plugin ;
if ( currentplug - > executestring )
2013-06-23 02:17:02 +00:00
VM_Call ( currentplug - > vm , currentplug - > executestring , Cmd_IsInsecure ( ) , 0 , 0 , 0 ) ;
2005-01-15 17:46:40 +00:00
break ;
}
currentplug = oldplug ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Cmd_AddCommand ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-01-15 17:46:40 +00:00
{
int i ;
char * name = VM_POINTER ( arg [ 0 ] ) ;
for ( i = 0 ; i < plugincommandarraylen ; i + + )
{
if ( ! plugincommandarray [ i ] . plugin )
break ;
if ( plugincommandarray [ i ] . plugin = = currentplug )
{
if ( ! strcmp ( name , plugincommandarray [ i ] . command ) )
2013-06-23 20:11:58 +00:00
return true ; //already registered
2005-01-15 17:46:40 +00:00
}
}
if ( i = = plugincommandarraylen )
{
plugincommandarraylen + + ;
plugincommandarray = BZ_Realloc ( plugincommandarray , plugincommandarraylen * sizeof ( plugincommand_t ) ) ;
}
Q_strncpyz ( plugincommandarray [ i ] . command , name , sizeof ( plugincommandarray [ i ] . command ) ) ;
2012-05-09 15:30:53 +00:00
if ( ! Cmd_AddCommand ( plugincommandarray [ i ] . command , Plug_Command_f ) )
2005-01-15 17:46:40 +00:00
return false ;
plugincommandarray [ i ] . plugin = currentplug ; //worked
return true ;
}
2012-10-08 05:10:14 +00:00
static void VARGS Plug_FreeConCommands ( plugin_t * plug )
2005-01-15 17:46:40 +00:00
{
int i ;
for ( i = 0 ; i < plugincommandarraylen ; i + + )
{
if ( plugincommandarray [ i ] . plugin = = plug )
{
plugincommandarray [ i ] . plugin = NULL ;
Cmd_RemoveCommand ( plugincommandarray [ i ] . command ) ;
}
}
}
2005-03-01 15:36:23 +00:00
typedef enum {
STREAM_NONE ,
STREAM_SOCKET ,
2013-03-31 04:21:08 +00:00
STREAM_VFS
2005-03-01 15:36:23 +00:00
} plugstream_e ;
typedef struct {
plugin_t * plugin ;
plugstream_e type ;
int socket ;
2013-03-31 04:21:08 +00:00
vfsfile_t * vfs ;
2005-11-30 01:20:53 +00:00
struct {
char filename [ MAX_QPATH ] ;
qbyte * buffer ;
int buflen ;
int curlen ;
int curpos ;
} file ;
2005-03-01 15:36:23 +00:00
} pluginstream_t ;
pluginstream_t * pluginstreamarray ;
int pluginstreamarraylen ;
2012-10-08 05:10:14 +00:00
static int Plug_NewStreamHandle ( plugstream_e type )
2005-03-01 15:36:23 +00:00
{
int i ;
2013-03-31 04:21:08 +00:00
for ( i = 0 ; i < pluginstreamarraylen ; i + + )
2005-03-01 15:36:23 +00:00
{
if ( ! pluginstreamarray [ i ] . plugin )
break ;
}
2012-04-24 07:59:11 +00:00
if ( i > = pluginstreamarraylen )
2005-03-01 15:36:23 +00:00
{
2012-04-24 07:59:11 +00:00
pluginstreamarraylen = i + 16 ;
2005-03-01 15:36:23 +00:00
pluginstreamarray = BZ_Realloc ( pluginstreamarray , pluginstreamarraylen * sizeof ( pluginstream_t ) ) ;
}
memset ( & pluginstreamarray [ i ] , 0 , sizeof ( pluginstream_t ) ) ;
pluginstreamarray [ i ] . plugin = currentplug ;
pluginstreamarray [ i ] . type = type ;
pluginstreamarray [ i ] . socket = - 1 ;
2005-11-30 01:20:53 +00:00
pluginstreamarray [ i ] . file . buffer = NULL ;
* pluginstreamarray [ i ] . file . filename = ' \0 ' ;
2005-03-01 15:36:23 +00:00
return i ;
}
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2005-03-01 15:36:23 +00:00
//EBUILTIN(int, NET_TCPListen, (char *ip, int port, int maxcount));
//returns a new socket with listen enabled.
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Net_TCPListen ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
int handle ;
int sock ;
struct sockaddr_qstorage address ;
int _true = 1 ;
2012-04-24 07:59:11 +00:00
int alen ;
2005-12-15 19:15:39 +00:00
2005-03-01 15:36:23 +00:00
char * localip = VM_POINTER ( arg [ 0 ] ) ;
unsigned short localport = VM_LONG ( arg [ 1 ] ) ;
int maxcount = VM_LONG ( arg [ 2 ] ) ;
netadr_t a ;
2014-09-12 13:14:51 +00:00
if ( ! currentplug )
return - 3 ; //streams depend upon current plugin context. which isn't valid in a thread.
2013-03-12 22:53:23 +00:00
if ( ! localip )
localip = " 0.0.0.0 " ; //pass "[::]" for ipv6
2005-03-01 15:36:23 +00:00
2013-03-12 22:53:23 +00:00
if ( ! NET_StringToAdr ( localip , localport , & a ) )
return - 1 ;
NetadrToSockadr ( & a , & address ) ;
2005-03-01 15:36:23 +00:00
2012-04-24 07:59:11 +00:00
switch ( ( ( struct sockaddr * ) & address ) - > sa_family )
{
case AF_INET :
alen = sizeof ( struct sockaddr_in ) ;
break ;
2012-05-10 12:53:36 +00:00
# ifdef IPPROTO_IPV6
2012-04-24 07:59:11 +00:00
case AF_INET6 :
alen = sizeof ( struct sockaddr_in6 ) ;
break ;
2012-05-10 12:53:36 +00:00
# endif
2012-04-24 07:59:11 +00:00
default :
return - 2 ;
}
2005-03-01 15:36:23 +00:00
if ( ( sock = socket ( ( ( struct sockaddr * ) & address ) - > sa_family , SOCK_STREAM , 0 ) ) = = - 1 )
{
Con_Printf ( " Failed to create socket \n " ) ;
return - 2 ;
}
2011-05-19 13:34:07 +00:00
if ( ioctlsocket ( sock , FIONBIO , ( u_long * ) & _true ) = = - 1 )
2005-03-01 15:36:23 +00:00
{
closesocket ( sock ) ;
return - 2 ;
}
2012-04-24 07:59:11 +00:00
setsockopt ( sock , SOL_SOCKET , SO_REUSEADDR , ( const char * ) & _true , sizeof ( _true ) ) ;
2005-03-01 15:36:23 +00:00
2012-04-24 07:59:11 +00:00
if ( bind ( sock , ( void * ) & address , alen ) = = - 1 )
2005-03-01 15:36:23 +00:00
{
closesocket ( sock ) ;
return - 2 ;
}
2012-04-24 07:59:11 +00:00
if ( listen ( sock , maxcount ) = = - 1 )
2005-03-01 15:36:23 +00:00
{
closesocket ( sock ) ;
return - 2 ;
}
handle = Plug_NewStreamHandle ( STREAM_SOCKET ) ;
pluginstreamarray [ handle ] . socket = sock ;
return handle ;
}
2012-10-08 05:10:14 +00:00
static qintptr_t VARGS Plug_Net_Accept ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
int handle = VM_LONG ( arg [ 0 ] ) ;
struct sockaddr_in address ;
int addrlen ;
int sock ;
int _true = 1 ;
2008-06-08 14:37:57 +00:00
char adr [ MAX_ADR_SIZE ] ;
2005-03-01 15:36:23 +00:00
2014-09-12 13:14:51 +00:00
if ( ! currentplug | | handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug | | pluginstreamarray [ handle ] . type ! = STREAM_SOCKET )
2005-03-01 15:36:23 +00:00
return - 2 ;
sock = pluginstreamarray [ handle ] . socket ;
2012-04-24 07:59:11 +00:00
if ( sock < 0 )
return - 1 ;
2005-03-01 15:36:23 +00:00
addrlen = sizeof ( address ) ;
sock = accept ( sock , ( struct sockaddr * ) & address , & addrlen ) ;
if ( sock < 0 )
return - 1 ;
2011-05-19 13:34:07 +00:00
if ( ioctlsocket ( sock , FIONBIO , ( u_long * ) & _true ) = = - 1 ) //now make it non blocking.
2005-03-01 15:36:23 +00:00
{
closesocket ( sock ) ;
return - 1 ;
}
if ( arg [ 2 ] & & ! VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
{
netadr_t a ;
char * s ;
SockadrToNetadr ( ( struct sockaddr_qstorage * ) & address , & a ) ;
2013-05-03 04:28:08 +00:00
s = NET_AdrToString ( adr , sizeof ( adr ) , & a ) ;
2005-03-01 15:36:23 +00:00
Q_strncpyz ( VM_POINTER ( arg [ 1 ] ) , s , addrlen ) ;
}
handle = Plug_NewStreamHandle ( STREAM_SOCKET ) ;
pluginstreamarray [ handle ] . socket = sock ;
return handle ;
}
//EBUILTIN(int, NET_TCPConnect, (char *ip, int port));
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_Net_TCPConnect ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
2013-03-12 22:53:23 +00:00
char * remoteip = VM_POINTER ( arg [ 0 ] ) ;
unsigned short remoteport = VM_LONG ( arg [ 1 ] ) ;
2005-03-01 15:36:23 +00:00
int handle ;
2013-03-31 04:21:08 +00:00
vfsfile_t * stream = FS_OpenTCP ( remoteip , remoteport ) ;
2014-09-12 13:14:51 +00:00
if ( ! currentplug | | ! stream )
2005-06-18 23:54:34 +00:00
return - 1 ;
2013-03-31 04:21:08 +00:00
handle = Plug_NewStreamHandle ( STREAM_VFS ) ;
pluginstreamarray [ handle ] . vfs = stream ;
return handle ;
2005-03-01 15:36:23 +00:00
2013-03-31 04:21:08 +00:00
}
2005-03-01 15:36:23 +00:00
2013-03-31 04:21:08 +00:00
void Plug_Net_Close_Internal ( int handle ) ;
vfsfile_t * FS_OpenSSL ( const char * hostname , vfsfile_t * source , qboolean server ) ;
# ifdef HAVE_SSL
qintptr_t VARGS Plug_Net_SetTLSClient ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
pluginstream_t * stream ;
int handle = VM_LONG ( arg [ 0 ] ) ;
if ( handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug )
2005-03-01 15:36:23 +00:00
{
2013-03-31 04:21:08 +00:00
Con_Printf ( " Plug_Net_SetTLSClient: socket does not belong to you (or is invalid) \n " ) ;
2005-03-01 15:36:23 +00:00
return - 2 ;
}
2013-03-31 04:21:08 +00:00
stream = & pluginstreamarray [ handle ] ;
if ( stream - > type ! = STREAM_VFS )
{ //not a socket - invalid
Con_Printf ( " Plug_Net_SetTLSClient: Not a socket handle \n " ) ;
2005-03-01 15:36:23 +00:00
return - 2 ;
}
2005-12-15 19:15:39 +00:00
2013-03-31 04:21:08 +00:00
stream - > vfs = FS_OpenSSL ( VM_POINTER ( arg [ 1 ] ) , stream - > vfs , false ) ;
if ( ! stream - > vfs )
2005-03-01 15:36:23 +00:00
{
2013-03-31 04:21:08 +00:00
Plug_Net_Close_Internal ( handle ) ;
2005-03-01 15:36:23 +00:00
return - 1 ;
}
2005-12-15 19:15:39 +00:00
return 0 ;
}
# endif
2012-04-09 19:12:12 +00:00
# endif
2005-12-15 19:15:39 +00:00
2014-10-05 20:04:11 +00:00
qintptr_t VARGS Plug_VFS_Open ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
char * fname = VM_POINTER ( arg [ 0 ] ) ;
vfsfile_t * * handle = VM_POINTER ( arg [ 1 ] ) ;
char * mode = VM_POINTER ( arg [ 2 ] ) ;
2015-02-02 08:01:53 +00:00
* handle = offset ? NULL : FS_OpenVFS ( fname , mode , FS_GAME ) ;
2014-10-05 20:04:11 +00:00
if ( * handle )
return true ;
return false ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_FS_Open ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-11-30 01:20:53 +00:00
{
//modes:
//1: read
//2: write
//char *name, int *handle, int mode
//return value is length of the file.
int handle ;
int * ret ;
2013-03-31 04:21:08 +00:00
//char *data;
char * mode ;
vfsfile_t * f ;
2013-06-23 02:17:02 +00:00
char * fname = VM_POINTER ( arg [ 0 ] ) ;
2005-11-30 01:20:53 +00:00
if ( VM_OOB ( arg [ 1 ] , sizeof ( int ) ) )
return - 2 ;
ret = VM_POINTER ( arg [ 1 ] ) ;
2014-03-30 08:55:06 +00:00
* ret = - 1 ;
2014-09-22 17:49:45 +00:00
if ( ! currentplug )
return - 3 ; //streams depend upon current plugin context. which isn't valid in a thread.
2005-12-15 19:15:39 +00:00
2013-03-31 04:21:08 +00:00
switch ( arg [ 2 ] )
2005-11-30 01:20:53 +00:00
{
2013-03-31 04:21:08 +00:00
case 1 :
mode = " rb " ;
break ;
case 2 :
mode = " wb " ;
break ;
default :
2005-11-30 01:20:53 +00:00
return - 2 ;
2013-03-31 04:21:08 +00:00
}
2013-06-23 02:17:02 +00:00
if ( ! strcmp ( fname , " **plugconfig " ) )
f = FS_OpenVFS ( va ( " %s.cfg " , currentplug - > name ) , mode , FS_ROOT ) ;
2013-11-21 23:02:28 +00:00
else if ( arg [ 2 ] = = 2 )
f = FS_OpenVFS ( fname , mode , FS_GAMEONLY ) ;
2013-06-23 02:17:02 +00:00
else
f = FS_OpenVFS ( fname , mode , FS_GAME ) ;
2013-03-31 04:21:08 +00:00
if ( ! f )
return - 1 ;
handle = Plug_NewStreamHandle ( STREAM_VFS ) ;
pluginstreamarray [ handle ] . vfs = f ;
* ret = handle ;
return VFS_GETLEN ( pluginstreamarray [ handle ] . vfs ) ;
2005-11-30 01:20:53 +00:00
}
2013-05-03 04:28:08 +00:00
qintptr_t VARGS Plug_FS_Seek ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
int handle = arg [ 0 ] ;
unsigned int low = arg [ 1 ] , high = arg [ 2 ] ;
pluginstream_t * stream ;
stream = & pluginstreamarray [ handle ] ;
if ( stream - > type ! = STREAM_VFS )
return - 1 ;
VFS_SEEK ( stream - > vfs , low | ( ( unsigned long long ) high < < 32 ) ) ;
return VFS_TELL ( stream - > vfs ) ;
}
2005-11-30 01:20:53 +00:00
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_memset ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-01 01:21:08 +00:00
{
2007-10-11 15:40:28 +00:00
void * p = VM_POINTER ( arg [ 0 ] ) ;
2005-12-01 01:21:08 +00:00
if ( VM_OOB ( arg [ 0 ] , arg [ 2 ] ) )
return false ;
2007-10-11 15:40:28 +00:00
if ( p )
memset ( p , VM_LONG ( arg [ 1 ] ) , VM_LONG ( arg [ 2 ] ) ) ;
2005-12-01 01:21:08 +00:00
return arg [ 0 ] ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_memcpy ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-01 01:21:08 +00:00
{
2007-10-11 15:40:28 +00:00
void * p1 = VM_POINTER ( arg [ 0 ] ) ;
void * p2 = VM_POINTER ( arg [ 1 ] ) ;
2005-12-01 01:21:08 +00:00
if ( VM_OOB ( arg [ 0 ] , arg [ 2 ] ) )
return false ;
2007-10-11 15:40:28 +00:00
2005-12-01 01:21:08 +00:00
if ( VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
return false ;
2007-10-11 15:40:28 +00:00
if ( p1 & & p2 )
memcpy ( p1 , p2 , VM_LONG ( arg [ 2 ] ) ) ;
2005-12-01 01:21:08 +00:00
return arg [ 0 ] ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_memmove ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-01 01:21:08 +00:00
{
2007-10-11 15:40:28 +00:00
void * p1 = VM_POINTER ( arg [ 0 ] ) ;
void * p2 = VM_POINTER ( arg [ 1 ] ) ;
2005-12-01 01:21:08 +00:00
if ( VM_OOB ( arg [ 0 ] , arg [ 2 ] ) )
return false ;
2007-10-11 15:40:28 +00:00
2005-12-01 01:21:08 +00:00
if ( VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
return false ;
2007-10-11 15:40:28 +00:00
if ( p1 & & p2 )
memmove ( p1 , p2 , VM_LONG ( arg [ 2 ] ) ) ;
2005-12-01 01:21:08 +00:00
return arg [ 0 ] ;
}
2005-11-30 01:20:53 +00:00
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_sqrt ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-06 15:39:57 +00:00
{
int ret ;
VM_FLOAT ( ret ) = sqrt ( VM_FLOAT ( arg [ 0 ] ) ) ;
return ret ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_sin ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-10 00:21:45 +00:00
{
int ret ;
VM_FLOAT ( ret ) = sin ( VM_FLOAT ( arg [ 0 ] ) ) ;
return ret ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_cos ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-10 00:21:45 +00:00
{
int ret ;
VM_FLOAT ( ret ) = cos ( VM_FLOAT ( arg [ 0 ] ) ) ;
return ret ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_atan2 ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-10 00:21:45 +00:00
{
int ret ;
VM_FLOAT ( ret ) = atan2 ( VM_FLOAT ( arg [ 0 ] ) , VM_FLOAT ( arg [ 1 ] ) ) ;
return ret ;
}
2005-12-06 15:39:57 +00:00
2013-03-31 04:21:08 +00:00
void Plug_Net_Close_Internal ( int handle )
{
switch ( pluginstreamarray [ handle ] . type )
{
case STREAM_NONE :
break ;
case STREAM_VFS :
if ( pluginstreamarray [ handle ] . vfs )
VFS_CLOSE ( pluginstreamarray [ handle ] . vfs ) ;
pluginstreamarray [ handle ] . vfs = NULL ;
break ;
case STREAM_SOCKET :
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2013-03-31 04:21:08 +00:00
closesocket ( pluginstreamarray [ handle ] . socket ) ;
# endif
break ;
}
pluginstreamarray [ handle ] . plugin = NULL ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_Net_Recv ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
int read ;
int handle = VM_LONG ( arg [ 0 ] ) ;
void * dest = VM_POINTER ( arg [ 1 ] ) ;
int destlen = VM_LONG ( arg [ 2 ] ) ;
if ( VM_OOB ( arg [ 1 ] , arg [ 2 ] ) )
return - 2 ;
if ( handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug )
return - 2 ;
switch ( pluginstreamarray [ handle ] . type )
{
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2005-03-01 15:36:23 +00:00
case STREAM_SOCKET :
read = recv ( pluginstreamarray [ handle ] . socket , dest , destlen , 0 ) ;
if ( read < 0 )
{
2014-02-07 08:38:40 +00:00
if ( neterrno ( ) = = NET_EWOULDBLOCK )
2005-03-01 15:36:23 +00:00
return - 1 ;
else
return - 2 ;
}
else if ( read = = 0 )
return - 2 ; //closed by remote connection.
return read ;
2012-04-09 19:12:12 +00:00
# endif
2013-03-31 04:21:08 +00:00
case STREAM_VFS :
return VFS_READ ( pluginstreamarray [ handle ] . vfs , dest , destlen ) ;
2005-03-01 15:36:23 +00:00
default :
return - 2 ;
}
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_Net_Send ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-03-01 15:36:23 +00:00
{
int written ;
int handle = VM_LONG ( arg [ 0 ] ) ;
void * src = VM_POINTER ( arg [ 1 ] ) ;
int srclen = VM_LONG ( arg [ 2 ] ) ;
if ( handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug )
return - 2 ;
switch ( pluginstreamarray [ handle ] . type )
{
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2005-03-01 15:36:23 +00:00
case STREAM_SOCKET :
written = send ( pluginstreamarray [ handle ] . socket , src , srclen , 0 ) ;
if ( written < 0 )
{
2014-02-07 08:38:40 +00:00
if ( neterrno ( ) = = NET_EWOULDBLOCK )
2005-03-01 15:36:23 +00:00
return - 1 ;
else
return - 2 ;
}
else if ( written = = 0 )
return - 2 ; //closed by remote connection.
return written ;
2012-04-09 19:12:12 +00:00
# endif
2013-03-31 04:21:08 +00:00
case STREAM_VFS :
return VFS_WRITE ( pluginstreamarray [ handle ] . vfs , src , srclen ) ;
2005-11-30 01:20:53 +00:00
2005-03-01 15:36:23 +00:00
default :
return - 2 ;
}
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_Net_SendTo ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-08-03 23:14:59 +00:00
{
int written ;
int handle = VM_LONG ( arg [ 0 ] ) ;
void * src = VM_POINTER ( arg [ 1 ] ) ;
int srclen = VM_LONG ( arg [ 2 ] ) ;
netadr_t * address = VM_POINTER ( arg [ 3 ] ) ;
struct sockaddr_qstorage sockaddr ;
if ( handle = = - 1 )
{
2013-05-03 04:28:08 +00:00
NET_SendPacket ( NS_CLIENT , srclen , src , address ) ;
2005-08-03 23:14:59 +00:00
return srclen ;
}
NetadrToSockadr ( address , & sockaddr ) ;
if ( handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug )
return - 2 ;
switch ( pluginstreamarray [ handle ] . type )
{
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2005-08-03 23:14:59 +00:00
case STREAM_SOCKET :
written = sendto ( pluginstreamarray [ handle ] . socket , src , srclen , 0 , ( struct sockaddr * ) & sockaddr , sizeof ( sockaddr ) ) ;
if ( written < 0 )
{
2014-02-07 08:38:40 +00:00
if ( neterrno ( ) = = NET_EWOULDBLOCK )
2005-08-03 23:14:59 +00:00
return - 1 ;
else
return - 2 ;
}
else if ( written = = 0 )
return - 2 ; //closed by remote connection.
return written ;
2012-04-09 19:12:12 +00:00
# endif
2005-08-03 23:14:59 +00:00
default :
return - 2 ;
}
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_Net_Close ( void * offset , quintptr_t mask , const qintptr_t * arg )
2005-12-15 19:15:39 +00:00
{
int handle = VM_LONG ( arg [ 0 ] ) ;
if ( handle < 0 | | handle > = pluginstreamarraylen | | pluginstreamarray [ handle ] . plugin ! = currentplug )
return - 2 ;
2005-03-01 15:36:23 +00:00
2005-12-15 19:15:39 +00:00
Plug_Net_Close_Internal ( handle ) ;
2005-03-01 15:36:23 +00:00
return 0 ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_ReadInputBuffer ( void * offset , quintptr_t mask , const qintptr_t * arg )
2009-04-06 00:34:32 +00:00
{
void * buffer = VM_POINTER ( arg [ 0 ] ) ;
int bufferlen = VM_LONG ( arg [ 1 ] ) ;
if ( bufferlen > currentplug - > inputbytes )
bufferlen = currentplug - > inputbytes ;
memcpy ( buffer , currentplug - > inputptr , currentplug - > inputbytes ) ;
return bufferlen ;
}
2009-07-18 20:21:02 +00:00
qintptr_t VARGS Plug_UpdateInputBuffer ( void * offset , quintptr_t mask , const qintptr_t * arg )
2009-04-06 00:34:32 +00:00
{
void * buffer = VM_POINTER ( arg [ 0 ] ) ;
int bufferlen = VM_LONG ( arg [ 1 ] ) ;
if ( bufferlen > currentplug - > inputbytes )
bufferlen = currentplug - > inputbytes ;
memcpy ( currentplug - > inputptr , buffer , currentplug - > inputbytes ) ;
return bufferlen ;
}
2015-03-05 22:14:21 +00:00
# ifdef USERBE
# include "pr_common.h"
//functions useful for rigid body engines.
qintptr_t VARGS Plug_RBE_GetPluginFuncs ( void * offset , quintptr_t mask , const qintptr_t * arg )
{
static rbeplugfuncs_t funcs =
{
RBEPLUGFUNCS_VERSION ,
World_RegisterPhysicsEngine ,
World_UnregisterPhysicsEngine ,
World_GenerateCollisionMesh ,
World_ReleaseCollisionMesh ,
World_LinkEdict ,
VectorAngles ,
AngleVectors
} ;
if ( VM_LONG ( arg [ 0 ] ) > = sizeof ( funcs ) )
return ( qintptr_t ) & funcs ;
else
return 0 ;
}
# endif
2005-01-15 17:46:40 +00:00
void Plug_CloseAll_f ( void ) ;
2005-03-01 15:36:23 +00:00
void Plug_List_f ( void ) ;
2005-01-15 20:50:45 +00:00
void Plug_Close_f ( void ) ;
2005-01-15 17:46:40 +00:00
void Plug_Load_f ( void )
{
2005-06-18 23:54:34 +00:00
char * plugin ;
plugin = Cmd_Argv ( 1 ) ;
if ( ! * plugin )
{
Con_Printf ( " Loads a plugin \n " ) ;
Con_Printf ( " plug_load [pluginpath] \n " ) ;
2013-11-21 23:02:28 +00:00
Con_Printf ( " example pluginpath: blah \n " ) ;
Con_Printf ( " will load fteplug_blah " ARCH_CPU_POSTFIX ARCH_DL_POSTFIX " or $gamedir/plugins/blah.qvm \n " ) ;
2005-06-18 23:54:34 +00:00
return ;
}
2013-05-11 14:02:55 +00:00
if ( ! Plug_Load ( plugin , PLUG_EITHER ) )
2005-06-18 23:54:34 +00:00
{
2013-07-14 12:22:51 +00:00
if ( ! Plug_Load ( va ( " plugins/%s " , plugin ) , PLUG_QVM ) )
2005-06-18 23:54:34 +00:00
Con_Printf ( " Couldn't load plugin %s \n " , Cmd_Argv ( 1 ) ) ;
}
2005-01-15 17:46:40 +00:00
}
2005-08-26 22:56:51 +00:00
/*
2009-07-18 20:21:02 +00:00
static qintptr_t Test_SysCalls_Ex ( void * offset , quintptr_t mask , int fn , qintptr_t * arg )
2005-08-26 22:56:51 +00:00
{
switch ( fn )
{
case 1 :
Con_Printf ( " %s " , VM_POINTER ( arg [ 0 ] ) ) ;
break ;
default :
Con_Printf ( " Can't handle %i \n " , fn ) ;
}
return 0 ;
}
static int EXPORT_FN Test_SysCalls ( int arg , . . . )
{
return 0 ;
}
void VM_Test_f ( void )
{
vm_t * vm ;
2013-05-11 14:02:55 +00:00
vm = VM_Create ( NULL , " vm/test " , com_nogamedirnativecode . ival ? NULL : Test_SysCalls , Test_SysCalls_Ex ) ;
2005-08-26 22:56:51 +00:00
if ( vm )
{
VM_Call ( vm , 0 , " " ) ;
VM_Destroy ( vm ) ;
}
} */
2005-01-15 17:46:40 +00:00
2013-05-03 04:28:08 +00:00
void Plug_Initialise ( qboolean fromgamedir )
{
char nat [ MAX_OSPATH ] ;
if ( ! numplugbuiltins )
{
Cvar_Register ( & plug_sbar , " plugins " ) ;
Cvar_Register ( & plug_loaddefault , " plugins " ) ;
Cmd_AddCommand ( " plug_closeall " , Plug_CloseAll_f ) ;
Cmd_AddCommand ( " plug_close " , Plug_Close_f ) ;
Cmd_AddCommand ( " plug_load " , Plug_Load_f ) ;
Cmd_AddCommand ( " plug_list " , Plug_List_f ) ;
2015-02-02 08:01:53 +00:00
Plug_RegisterBuiltin ( " Plug_GetNativePointer " , Plug_GetNativePointer , PLUG_BIF_DLLONLY ) ; //plugin wishes to get a native interface.
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " Plug_GetEngineFunction " , Plug_GetBuiltin , 0 ) ; //plugin wishes to find a builtin number.
Plug_RegisterBuiltin ( " Plug_ExportToEngine " , Plug_ExportToEngine , 0 ) ; //plugin has a call back that we might be interested in.
Plug_RegisterBuiltin ( " Plug_ExportNative " , Plug_ExportNative , PLUG_BIF_DLLONLY ) ;
Plug_RegisterBuiltin ( " Plug_GetPluginName " , Plug_GetPluginName , 0 ) ;
Plug_RegisterBuiltin ( " Con_Print " , Plug_Con_Print , 0 ) ; //printf is not possible - qvm floats are never doubles, vararg floats in a cdecl call are always converted to doubles.
Plug_RegisterBuiltin ( " Sys_Error " , Plug_Sys_Error , 0 ) ;
Plug_RegisterBuiltin ( " Sys_Milliseconds " , Plug_Sys_Milliseconds , 0 ) ;
Plug_RegisterBuiltin ( " Com_Error " , Plug_Sys_Error , 0 ) ; //make zquake programmers happy.
Plug_RegisterBuiltin ( " Cmd_AddCommand " , Plug_Cmd_AddCommand , 0 ) ;
Plug_RegisterBuiltin ( " Cmd_Args " , Plug_Cmd_Args , 0 ) ;
Plug_RegisterBuiltin ( " Cmd_Argc " , Plug_Cmd_Argc , 0 ) ;
Plug_RegisterBuiltin ( " Cmd_Argv " , Plug_Cmd_Argv , 0 ) ;
Plug_RegisterBuiltin ( " Cmd_AddText " , Plug_Cmd_AddText , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_Register " , Plug_Cvar_Register , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_Update " , Plug_Cvar_Update , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_SetString " , Plug_Cvar_SetString , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_SetFloat " , Plug_Cvar_SetFloat , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_GetString " , Plug_Cvar_GetString , 0 ) ;
Plug_RegisterBuiltin ( " Cvar_GetFloat " , Plug_Cvar_GetFloat , 0 ) ;
2015-02-02 08:01:53 +00:00
Plug_RegisterBuiltin ( " Cvar_GetNVFDG " , Plug_Cvar_GetNVFDG , PLUG_BIF_DLLONLY ) ;
2004-10-10 06:32:29 +00:00
2014-03-30 08:55:06 +00:00
# ifdef HAVE_PACKET
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " Net_TCPListen " , Plug_Net_TCPListen , 0 ) ;
Plug_RegisterBuiltin ( " Net_Accept " , Plug_Net_Accept , 0 ) ;
Plug_RegisterBuiltin ( " Net_TCPConnect " , Plug_Net_TCPConnect , 0 ) ;
2013-03-31 04:21:08 +00:00
# ifdef HAVE_SSL
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " Net_SetTLSClient " , Plug_Net_SetTLSClient , 0 ) ;
2005-12-15 19:15:39 +00:00
# endif
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " Net_Recv " , Plug_Net_Recv , 0 ) ;
Plug_RegisterBuiltin ( " Net_Send " , Plug_Net_Send , 0 ) ;
Plug_RegisterBuiltin ( " Net_SendTo " , Plug_Net_SendTo , 0 ) ;
Plug_RegisterBuiltin ( " Net_Close " , Plug_Net_Close , 0 ) ;
2012-04-09 19:12:12 +00:00
# endif
2005-03-01 15:36:23 +00:00
2014-10-05 20:04:11 +00:00
Plug_RegisterBuiltin ( " VFS_Open " , Plug_VFS_Open , PLUG_BIF_DLLONLY ) ;
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " FS_Open " , Plug_FS_Open , 0 ) ;
Plug_RegisterBuiltin ( " FS_Read " , Plug_Net_Recv , 0 ) ;
Plug_RegisterBuiltin ( " FS_Write " , Plug_Net_Send , 0 ) ;
Plug_RegisterBuiltin ( " FS_Close " , Plug_Net_Close , 0 ) ;
Plug_RegisterBuiltin ( " FS_Seek " , Plug_FS_Seek , 0 ) ;
2005-11-30 01:20:53 +00:00
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " memset " , Plug_memset , 0 ) ;
Plug_RegisterBuiltin ( " memcpy " , Plug_memcpy , 0 ) ;
Plug_RegisterBuiltin ( " memmove " , Plug_memmove , 0 ) ;
Plug_RegisterBuiltin ( " sqrt " , Plug_sqrt , 0 ) ;
Plug_RegisterBuiltin ( " sin " , Plug_sin , 0 ) ;
Plug_RegisterBuiltin ( " cos " , Plug_cos , 0 ) ;
Plug_RegisterBuiltin ( " atan2 " , Plug_atan2 , 0 ) ;
2005-12-01 01:21:08 +00:00
2013-05-03 04:28:08 +00:00
Plug_RegisterBuiltin ( " ReadInputBuffer " , Plug_ReadInputBuffer , 0 ) ;
Plug_RegisterBuiltin ( " UpdateInputBuffer " , Plug_UpdateInputBuffer , 0 ) ;
2005-12-01 01:21:08 +00:00
2015-02-02 08:01:53 +00:00
Plug_RegisterBuiltin ( " Sys_LoadLibrary " , Plug_Sys_LoadLibrary , PLUG_BIF_DLLONLY ) ;
Plug_RegisterBuiltin ( " Sys_CloseLibrary " , Plug_Sys_CloseLibrary , PLUG_BIF_DLLONLY ) ;
2015-03-05 22:14:21 +00:00
# ifdef USERBE
Plug_RegisterBuiltin ( " RBE_GetPluginFuncs " , Plug_RBE_GetPluginFuncs , PLUG_BIF_DLLONLY ) ;
# endif
2013-05-03 04:28:08 +00:00
Plug_Client_Init ( ) ;
}
2005-03-01 15:36:23 +00:00
2014-08-03 14:47:47 +00:00
if ( plug_loaddefault . value )
2005-08-03 23:14:59 +00:00
{
2015-02-02 08:01:53 +00:00
unsigned int u ;
2014-08-03 14:47:47 +00:00
if ( ! fromgamedir )
{
FS_NativePath ( " " , FS_BINARYPATH , nat , sizeof ( nat ) ) ;
Con_DPrintf ( " Loading plugins from \" %s \" \n " , nat ) ;
Sys_EnumerateFiles ( nat , " fteplug_* " ARCH_CPU_POSTFIX ARCH_DL_POSTFIX , Plug_EnumeratedRoot , NULL , NULL ) ;
}
if ( fromgamedir )
2013-05-03 04:28:08 +00:00
{
COM_EnumerateFiles ( " plugins/*.qvm " , Plug_Emumerated , " .qvm " ) ;
}
2015-02-02 08:01:53 +00:00
for ( u = 0 ; staticplugins [ u ] . name ; u + + )
{
Plug_Load ( staticplugins [ u ] . name , PLUG_NATIVE ) ;
}
2005-08-03 23:14:59 +00:00
}
2004-09-24 02:45:00 +00:00
}
void Plug_Tick ( void )
{
2005-01-15 17:46:40 +00:00
plugin_t * oldplug = currentplug ;
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
2004-09-24 02:45:00 +00:00
{
2005-01-15 17:46:40 +00:00
if ( currentplug - > tick )
2004-09-24 02:45:00 +00:00
{
2015-04-21 20:51:18 +00:00
float rt = realtime ;
float st = 0 ;
# ifdef SERVERONLY
2015-04-21 21:15:01 +00:00
st = sv . time ;
2015-04-21 20:51:18 +00:00
# elif defined(CLIENTONLY)
st = cl . time ;
# else
st = sv . state ? sv . time : cl . time ;
# endif
2015-04-21 04:12:00 +00:00
VM_Call ( currentplug - > vm , currentplug - > tick , ( int ) ( realtime * 1000 ) , * ( int * ) & ( rt ) , * ( int * ) & ( st ) ) ;
2004-09-24 02:45:00 +00:00
}
}
2005-01-15 17:46:40 +00:00
currentplug = oldplug ;
2004-09-24 02:45:00 +00:00
}
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2004-10-10 06:32:29 +00:00
void Plug_ResChanged ( void )
{
plugin_t * oldplug = currentplug ;
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > reschange )
VM_Call ( currentplug - > vm , currentplug - > reschange , vid . width , vid . height ) ;
}
currentplug = oldplug ;
}
2005-12-15 19:15:39 +00:00
# endif
2004-10-10 06:32:29 +00:00
2004-09-24 02:45:00 +00:00
qboolean Plugin_ExecuteString ( void )
{
2005-01-15 17:46:40 +00:00
plugin_t * oldplug = currentplug ;
2004-09-24 02:45:00 +00:00
if ( Cmd_Argc ( ) > 0 )
{
2005-01-15 17:46:40 +00:00
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
2004-09-24 02:45:00 +00:00
{
2005-01-15 17:46:40 +00:00
if ( currentplug - > executestring )
2004-09-24 02:45:00 +00:00
{
2005-01-15 17:46:40 +00:00
if ( VM_Call ( currentplug - > vm , currentplug - > executestring , 0 ) )
2005-01-15 20:50:45 +00:00
{
currentplug = oldplug ;
2004-09-24 02:45:00 +00:00
return true ;
2005-01-15 20:50:45 +00:00
}
2004-09-24 02:45:00 +00:00
}
}
}
2005-01-15 17:46:40 +00:00
currentplug = oldplug ;
2004-09-24 02:45:00 +00:00
return false ;
}
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2013-11-21 23:02:28 +00:00
qboolean Plug_ConsoleLinkMouseOver ( float x , float y , char * text , char * info )
{
qboolean result = false ;
plugin_t * oldplug = currentplug ;
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > consolelinkmouseover )
{
char buffer [ 2048 ] ;
Q_strncpyz ( buffer , va ( " \" %s \" \" %s \" " , text , info ) , sizeof ( buffer ) ) ;
Cmd_TokenizeString ( buffer , false , false ) ;
result = VM_Call ( currentplug - > vm , currentplug - > consolelinkmouseover , * ( int * ) & ( x ) , * ( int * ) & ( y ) ) ;
if ( result )
break ;
}
}
currentplug = oldplug ;
return result ;
}
2013-06-23 02:17:02 +00:00
qboolean Plug_ConsoleLink ( char * text , char * info )
{
2013-11-21 23:02:28 +00:00
qboolean result = false ;
2013-06-23 02:17:02 +00:00
plugin_t * oldplug = currentplug ;
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > consolelink )
{
char buffer [ 2048 ] ;
Q_strncpyz ( buffer , va ( " \" %s \" \" %s \" " , text , info ) , sizeof ( buffer ) ) ;
Cmd_TokenizeString ( buffer , false , false ) ;
2013-11-21 23:02:28 +00:00
result = VM_Call ( currentplug - > vm , currentplug - > consolelink ) ;
if ( result )
break ;
2013-06-23 02:17:02 +00:00
}
}
currentplug = oldplug ;
2013-11-21 23:02:28 +00:00
return result ;
2013-06-23 02:17:02 +00:00
}
2015-04-14 23:12:17 +00:00
int Plug_SubConsoleCommand ( console_t * con , char * line )
2005-03-10 03:55:18 +00:00
{
2015-04-14 23:12:17 +00:00
int ret ;
2005-03-10 03:55:18 +00:00
char buffer [ 2048 ] ;
plugin_t * oldplug = currentplug ; //shouldn't really be needed, but oh well
currentplug = con - > userdata ;
2013-06-23 02:17:02 +00:00
Q_strncpyz ( buffer , va ( " \" %s \" %s " , con - > name , line ) , sizeof ( buffer ) ) ;
2005-03-10 03:55:18 +00:00
Cmd_TokenizeString ( buffer , false , false ) ;
2015-04-14 23:12:17 +00:00
ret = VM_Call ( currentplug - > vm , currentplug - > conexecutecommand , 0 ) ;
2005-03-10 03:55:18 +00:00
currentplug = oldplug ;
2015-04-14 23:12:17 +00:00
return ret ;
2005-03-10 03:55:18 +00:00
}
2009-04-06 00:34:32 +00:00
void Plug_SpellCheckMaskedText ( unsigned int * maskedstring , int maskedchars , int x , int y , int cs , int firstc , int charlimit )
{
plugin_t * oldplug = currentplug ;
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > spellcheckmaskedtext )
{
currentplug - > inputptr = maskedstring ;
currentplug - > inputbytes = sizeof ( * maskedstring ) * maskedchars ;
VM_Call ( currentplug - > vm , currentplug - > spellcheckmaskedtext , x , y , cs , firstc , charlimit ) ;
currentplug - > inputptr = NULL ;
currentplug - > inputbytes = 0 ;
}
}
currentplug = oldplug ;
}
2005-12-15 19:15:39 +00:00
# endif
2005-03-10 03:55:18 +00:00
2005-12-15 19:15:39 +00:00
# ifndef SERVERONLY
2004-09-26 00:30:42 +00:00
qboolean Plug_Menu_Event ( int eventtype , int param ) //eventtype = draw/keydown/keyup, param = time/key
{
2005-01-15 20:50:45 +00:00
plugin_t * oc = currentplug ;
qboolean ret ;
2004-10-13 07:24:59 +00:00
2004-09-26 00:30:42 +00:00
if ( ! menuplug )
return false ;
2005-01-15 20:50:45 +00:00
currentplug = menuplug ;
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
ret = VM_Call ( menuplug - > vm , menuplug - > menufunction , eventtype , param , ( int ) mousecursor_x , ( int ) mousecursor_y ) ;
2005-01-15 20:50:45 +00:00
currentplug = oc ;
return ret ;
2004-10-13 07:24:59 +00:00
}
2005-12-15 19:15:39 +00:00
# endif
# ifndef SERVERONLY
2005-08-03 23:14:59 +00:00
int Plug_ConnectionlessClientPacket ( char * buffer , int size )
{
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > connectionlessclientpacket )
{
switch ( VM_Call ( currentplug - > vm , currentplug - > connectionlessclientpacket , buffer , size , & net_from ) )
{
case 0 :
continue ; //wasn't handled
case 1 :
currentplug = NULL ; //was handled with no apparent result
return true ;
case 2 :
# ifndef SERVERONLY
cls . protocol = CP_PLUGIN ; //woo, the plugin wants to connect to them!
protocolclientplugin = currentplug ;
# endif
currentplug = NULL ;
return true ;
}
}
}
return false ;
}
2005-12-15 19:15:39 +00:00
# endif
# ifndef SERVERONLY
2013-06-23 02:17:02 +00:00
void Plug_SBar ( playerview_t * pv )
2004-10-13 07:24:59 +00:00
{
2015-09-01 04:45:15 +00:00
# ifdef QUAKEHUD
2006-01-21 00:06:49 +00:00
extern qboolean sb_showscores , sb_showteamscores ;
2015-09-01 04:45:15 +00:00
# else
# define sb_showscores 0
# define sb_showteamscores 0
# endif
2006-01-21 00:06:49 +00:00
2004-10-13 07:24:59 +00:00
plugin_t * oc = currentplug ;
2013-06-23 02:17:02 +00:00
int ret ;
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
int cleared = false ;
2015-09-14 15:20:09 +00:00
int hudmode ;
2004-10-13 07:24:59 +00:00
2007-02-26 03:00:25 +00:00
if ( ! Sbar_ShouldDraw ( ) )
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
{
SCR_TileClear ( 0 ) ;
2007-02-26 03:00:25 +00:00
return ;
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
}
2007-02-26 03:00:25 +00:00
2006-08-20 01:35:56 +00:00
ret = 0 ;
2015-09-14 15:20:09 +00:00
if ( cl . deathmatch )
hudmode = 1 ;
else
hudmode = 2 ;
if ( ! ( plug_sbar . ival & hudmode ) )
2005-01-15 17:46:40 +00:00
currentplug = NULL ;
else
2004-10-13 07:24:59 +00:00
{
2005-01-15 17:46:40 +00:00
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
2004-10-13 07:24:59 +00:00
{
2005-01-15 17:46:40 +00:00
if ( currentplug - > sbarlevel [ 0 ] )
{
2013-06-23 02:17:02 +00:00
//if you don't use splitscreen, use a full videosize rect.
R2D_ImageColours ( 1 , 1 , 1 , 1 ) ; // ensure menu colors are reset
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
if ( ! cleared )
{
cleared = true ;
SCR_TileClear ( 0 ) ;
}
2015-04-21 04:12:00 +00:00
ret | = VM_Call ( currentplug - > vm , currentplug - > sbarlevel [ 0 ] , pv - cl . playerview , ( int ) r_refdef . vrect . x , ( int ) r_refdef . vrect . y , ( int ) r_refdef . vrect . width , ( int ) r_refdef . vrect . height , sb_showscores + sb_showteamscores * 2 ) ;
2005-01-15 17:46:40 +00:00
break ;
2004-10-13 07:24:59 +00:00
}
}
}
2007-02-26 03:00:25 +00:00
if ( ! ( ret & 1 ) )
2004-10-13 07:24:59 +00:00
{
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
if ( ! cleared )
SCR_TileClear ( sb_lines ) ;
2013-06-23 02:17:02 +00:00
Sbar_Draw ( pv ) ;
2004-10-13 07:24:59 +00:00
}
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > sbarlevel [ 1 ] )
{
2013-06-23 02:17:02 +00:00
R2D_ImageColours ( 1 , 1 , 1 , 1 ) ; // ensure menu colors are reset
ret | = VM_Call ( currentplug - > vm , currentplug - > sbarlevel [ 1 ] , pv - cl . playerview , r_refdef . vrect . x , r_refdef . vrect . y , r_refdef . vrect . width , r_refdef . vrect . height , sb_showscores + sb_showteamscores * 2 ) ;
2004-10-13 07:24:59 +00:00
}
}
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > sbarlevel [ 2 ] )
{
2013-06-23 02:17:02 +00:00
R2D_ImageColours ( 1 , 1 , 1 , 1 ) ; // ensure menu colors are reset
ret | = VM_Call ( currentplug - > vm , currentplug - > sbarlevel [ 2 ] , pv - cl . playerview , r_refdef . vrect . x , r_refdef . vrect . y , r_refdef . vrect . width , r_refdef . vrect . height , sb_showscores + sb_showteamscores * 2 ) ;
2004-10-13 07:24:59 +00:00
}
}
2013-06-23 02:17:02 +00:00
if ( ! ( ret & 2 ) & & pv = = cl . playerview )
2007-02-26 03:00:25 +00:00
{
Sbar_DrawScoreboard ( ) ;
}
2004-10-13 07:24:59 +00:00
currentplug = oc ;
2004-09-26 00:30:42 +00:00
}
2005-12-15 19:15:39 +00:00
# endif
2004-09-26 00:30:42 +00:00
2006-01-01 09:01:15 +00:00
qboolean Plug_ServerMessage ( char * buffer , int messagelevel )
2005-11-30 05:01:43 +00:00
{
2006-01-01 09:01:15 +00:00
qboolean ret = true ;
2007-02-23 00:21:33 +00:00
Cmd_TokenizeString ( buffer , false , false ) ;
Cmd_Args_Set ( buffer ) ;
2006-01-01 09:01:15 +00:00
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > svmsgfunction )
{
2007-02-23 00:21:33 +00:00
ret & = VM_Call ( currentplug - > vm , currentplug - > svmsgfunction , messagelevel ) ;
2006-01-01 09:01:15 +00:00
}
}
2007-02-23 00:21:33 +00:00
Cmd_Args_Set ( NULL ) ;
2006-01-01 09:01:15 +00:00
return ret ; // true to display message, false to supress
}
qboolean Plug_ChatMessage ( char * buffer , int talkernum , int tpflags )
{
qboolean ret = true ;
2007-02-23 00:21:33 +00:00
Cmd_TokenizeString ( buffer , false , false ) ;
Cmd_Args_Set ( buffer ) ;
2006-01-01 09:01:15 +00:00
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
if ( currentplug - > chatmsgfunction )
{
2007-02-23 00:21:33 +00:00
ret & = VM_Call ( currentplug - > vm , currentplug - > chatmsgfunction , talkernum , tpflags ) ;
2006-01-01 09:01:15 +00:00
}
}
2007-02-23 00:21:33 +00:00
Cmd_Args_Set ( NULL ) ;
2006-01-01 09:01:15 +00:00
return ret ; // true to display message, false to supress
}
qboolean Plug_CenterPrintMessage ( char * buffer , int clientnum )
{
qboolean ret = true ;
2007-02-23 00:21:33 +00:00
Cmd_TokenizeString ( buffer , false , false ) ;
Cmd_Args_Set ( buffer ) ;
2005-11-30 05:01:43 +00:00
for ( currentplug = plugs ; currentplug ; currentplug = currentplug - > next )
{
2006-01-01 09:01:15 +00:00
if ( currentplug - > centerprintfunction )
2005-11-30 05:01:43 +00:00
{
2007-02-23 00:21:33 +00:00
ret & = VM_Call ( currentplug - > vm , currentplug - > centerprintfunction , clientnum ) ;
2005-11-30 05:01:43 +00:00
}
}
2007-02-23 00:21:33 +00:00
Cmd_Args_Set ( NULL ) ;
2006-01-01 09:01:15 +00:00
return ret ; // true to display message, false to supress
2005-11-30 05:01:43 +00:00
}
2004-09-24 02:45:00 +00:00
void Plug_Close ( plugin_t * plug )
{
2013-03-31 04:21:08 +00:00
int i ;
2006-01-29 03:45:00 +00:00
if ( plug - > blockcloses )
{
Con_Printf ( " Plugin %s provides driver features, and cannot safely be unloaded \n " , plug - > name ) ;
return ;
}
2004-09-24 02:45:00 +00:00
if ( plugs = = plug )
plugs = plug - > next ;
else
{
plugin_t * prev ;
for ( prev = plugs ; prev ; prev = prev - > next )
{
if ( prev - > next = = plug )
break ;
}
if ( ! prev )
Sys_Error ( " Plug_Close: not linked \n " ) ;
prev - > next = plug - > next ;
}
2015-08-20 03:17:47 +00:00
if ( ! com_workererror )
2015-02-02 08:01:53 +00:00
Con_DPrintf ( " Closing plugin %s \n " , plug - > name ) ;
2013-08-07 14:13:18 +00:00
//ensure any active contexts provided by the plugin are closed (stuff with destroy callbacks)
# if defined(PLUGINS) && !defined(NOMEDIA) && !defined(SERVERONLY)
Media_UnregisterDecoder ( plug , NULL ) ;
Media_UnregisterEncoder ( plug , NULL ) ;
# endif
FS_UnRegisterFileSystemModule ( plug ) ;
2014-05-16 01:34:58 +00:00
Mod_UnRegisterAllModelFormats ( plug ) ;
2013-08-07 14:13:18 +00:00
//tell the plugin that everything is closed and that it should free up any lingering memory/stuff
//it is still allowed to create/have open files.
2013-07-13 12:14:32 +00:00
if ( plug - > shutdown )
{
plugin_t * cp = currentplug ;
currentplug = plug ;
VM_Call ( plug - > vm , plug - > shutdown ) ;
currentplug = cp ;
}
2013-08-07 14:13:18 +00:00
2004-09-24 02:45:00 +00:00
VM_Destroy ( plug - > vm ) ;
2005-01-15 17:46:40 +00:00
2013-08-07 14:13:18 +00:00
//make sure anything else that was left is unlinked (stuff without destroy callbacks).
2013-03-31 04:21:08 +00:00
for ( i = 0 ; i < pluginstreamarraylen ; i + + )
{
if ( pluginstreamarray [ i ] . plugin = = plug )
{
Plug_Net_Close_Internal ( i ) ;
}
}
2005-01-15 17:46:40 +00:00
Plug_FreeConCommands ( plug ) ;
2005-12-15 19:15:39 +00:00
Plug_Client_Close ( plug ) ;
2012-07-05 19:42:36 +00:00
Z_Free ( plug ) ;
2005-12-15 19:15:39 +00:00
2005-01-15 17:46:40 +00:00
if ( currentplug = = plug )
currentplug = NULL ;
2005-01-15 20:50:45 +00:00
}
void Plug_Close_f ( void )
{
plugin_t * plug ;
char * name = Cmd_Argv ( 1 ) ;
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Close which plugin? \n " ) ;
return ;
}
2007-02-23 00:21:33 +00:00
if ( currentplug )
Sys_Error ( " Plug_CloseAll_f called inside a plugin! \n " ) ;
2005-01-15 20:50:45 +00:00
for ( plug = plugs ; plug ; plug = plug - > next )
{
2005-01-24 23:47:32 +00:00
if ( ! strcmp ( plug - > name , name ) )
2005-01-15 20:50:45 +00:00
{
Plug_Close ( plug ) ;
return ;
}
}
2005-06-18 23:54:34 +00:00
name = va ( " plugins/%s " , name ) ;
for ( plug = plugs ; plug ; plug = plug - > next )
{
if ( ! strcmp ( plug - > name , name ) )
{
Plug_Close ( plug ) ;
return ;
}
}
Con_Printf ( " Plugin %s does not appear to be loaded \n " , Cmd_Argv ( 1 ) ) ;
2004-09-24 02:45:00 +00:00
}
2005-01-15 17:46:40 +00:00
void Plug_CloseAll_f ( void )
2004-09-24 02:45:00 +00:00
{
2006-02-02 01:13:52 +00:00
plugin_t * p ;
2005-01-15 17:46:40 +00:00
if ( currentplug )
Sys_Error ( " Plug_CloseAll_f called inside a plugin! \n " ) ;
while ( plugs )
{
2006-02-02 01:13:52 +00:00
p = plugs ;
while ( p - > blockcloses )
{
p = p - > next ;
if ( ! p )
return ;
}
Plug_Close ( p ) ;
2005-01-15 17:46:40 +00:00
}
}
2004-09-24 02:45:00 +00:00
2005-03-01 15:36:23 +00:00
void Plug_List_f ( void )
{
plugin_t * plug ;
for ( plug = plugs ; plug ; plug = plug - > next )
{
2005-11-30 05:01:43 +00:00
VM_PrintInfo ( plug - > vm ) ;
2005-03-01 15:36:23 +00:00
}
}
2013-05-11 14:02:55 +00:00
void Plug_Shutdown ( qboolean preliminary )
2005-01-15 17:46:40 +00:00
{
2013-05-11 14:02:55 +00:00
plugin_t * * p ;
if ( preliminary )
2005-01-15 17:46:40 +00:00
{
2013-05-11 14:02:55 +00:00
//close the non-block-closes plugins first, before most of the rest of the subsystems are down
for ( p = & plugs ; * p ; )
{
if ( ( * p ) - > blockcloses )
p = & ( * p ) - > next ;
else
2015-06-14 08:16:15 +00:00
Plug_Close ( * p ) ;
2013-05-11 14:02:55 +00:00
}
2005-01-15 17:46:40 +00:00
}
2013-05-11 14:02:55 +00:00
else
{
//now that our various handles etc are closed, its safe to terminate the various driver plugins.
while ( plugs )
{
plugs - > blockcloses = 0 ;
Plug_Close ( plugs ) ;
}
2012-07-05 19:42:36 +00:00
2013-05-11 14:02:55 +00:00
BZ_Free ( pluginstreamarray ) ;
pluginstreamarray = NULL ;
pluginstreamarraylen = 0 ;
2013-03-31 04:21:08 +00:00
2013-05-11 14:02:55 +00:00
numplugbuiltins = 0 ;
BZ_Free ( plugbuiltins ) ;
plugbuiltins = NULL ;
2012-07-05 19:42:36 +00:00
2013-05-11 14:02:55 +00:00
plugincvararraylen = 0 ;
BZ_Free ( plugincvararray ) ;
plugincvararray = NULL ;
2012-11-27 03:23:19 +00:00
2013-05-11 14:02:55 +00:00
plugincommandarraylen = 0 ;
BZ_Free ( plugincommandarray ) ;
plugincommandarray = NULL ;
2013-03-31 04:21:08 +00:00
# ifndef SERVERONLY
2013-05-11 14:02:55 +00:00
Plug_Client_Shutdown ( ) ;
2013-03-31 04:21:08 +00:00
# endif
2013-05-11 14:02:55 +00:00
}
2004-09-30 22:51:15 +00:00
}
2015-02-02 08:01:53 +00:00
//for built-in plugins
qboolean Plug_Export ( const char * name , qintptr_t ( QDECL * func ) ( qintptr_t * args ) )
{
qintptr_t args [ ] = { ( qintptr_t ) name , ( qintptr_t ) func } ;
return Plug_ExportToEngine ( NULL , ~ ( size_t ) 0 , args ) ;
}
void * pPlug_GetEngineFunction ( const char * funcname )
{
return ( void * ) Plug_FindBuiltin ( true , funcname ) ;
}
2004-09-30 22:51:15 +00:00
# endif