2006-12-10 06:49:01 +00:00
//-------------------------------------------------------------------------
/*
2007-02-08 04:19:39 +00:00
Copyright ( C ) 1996 , 2003 - 3 D Realms Entertainment
Copyright ( C ) 2000 , 2003 - Matt Saettler ( EDuke Enhancements )
Copyright ( C ) 2004 , 2007 - EDuke32 developers
2006-12-10 06:49:01 +00:00
This file is part of EDuke32
EDuke32 is free software ; you can redistribute it and / or
modify it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
See the GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*/
//-------------------------------------------------------------------------
# include "duke3d.h"
# include "gamedef.h"
2007-03-04 19:52:57 +00:00
# include "osd.h"
2006-12-10 06:49:01 +00:00
2009-01-07 14:05:13 +00:00
# define _gamevars_c_
# include "gamestructures.c"
2009-01-09 09:29:17 +00:00
extern int32_t OSD_errors ;
2007-02-08 04:19:39 +00:00
2008-11-20 14:06:36 +00:00
void Gv_RefreshPointers ( void ) ;
2009-01-09 09:29:17 +00:00
extern void G_FreeMapState ( int32_t mapnum ) ;
2008-12-13 07:23:13 +00:00
static void Gv_Free ( void ) /* called from Gv_ReadSave() and Gv_ResetVars() */
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
// call this function as many times as needed.
2009-01-09 09:29:17 +00:00
int32_t i = ( MAXGAMEVARS - 1 ) ;
2008-11-20 14:06:36 +00:00
// AddLog("Gv_Free");
2009-02-19 16:47:54 +00:00
for ( ; i > = 0 ; i - - )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_USER_MASK ) & & aGameVars [ i ] . val . plValues )
{
Bfree ( aGameVars [ i ] . val . plValues ) ;
aGameVars [ i ] . val . plValues = NULL ;
}
aGameVars [ i ] . dwFlags | = GAMEVAR_RESET ;
2008-08-10 13:07:07 +00:00
if ( i > = MAXGAMEARRAYS )
continue ;
2008-06-09 23:41:54 +00:00
if ( aGameArrays [ i ] . plValues )
Bfree ( aGameArrays [ i ] . plValues ) ;
aGameArrays [ i ] . plValues = NULL ;
aGameArrays [ i ] . bReset = 1 ;
}
2008-11-20 14:06:36 +00:00
g_gameVarCount = g_gameArrayCount = 0 ;
2009-01-10 07:38:50 +00:00
hash_init ( & gamevarH ) ;
hash_init ( & arrayH ) ;
2008-06-09 23:41:54 +00:00
return ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
static void Gv_Clear ( void )
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
// only call this function ONCE...
2009-01-09 09:29:17 +00:00
int32_t i = ( MAXGAMEVARS - 1 ) ;
2008-06-09 23:41:54 +00:00
2008-11-20 14:06:36 +00:00
//AddLog("Gv_Clear");
2008-06-09 23:41:54 +00:00
2009-02-19 16:47:54 +00:00
for ( ; i > = 0 ; i - - )
2008-06-09 23:41:54 +00:00
{
if ( aGameVars [ i ] . szLabel )
Bfree ( aGameVars [ i ] . szLabel ) ;
aGameVars [ i ] . szLabel = NULL ;
aGameVars [ i ] . dwFlags = 0 ;
2009-03-15 16:02:57 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_USER_MASK ) & & aGameVars [ i ] . val . plValues )
2008-12-21 22:46:55 +00:00
{
Bfree ( aGameVars [ i ] . val . plValues ) ;
aGameVars [ i ] . val . plValues = NULL ;
}
2009-01-21 22:43:44 +00:00
aGameVars [ i ] . val . lValue = 0 ;
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . dwFlags | = GAMEVAR_RESET ;
2008-08-10 13:07:07 +00:00
if ( i > = MAXGAMEARRAYS )
continue ;
2008-06-09 23:41:54 +00:00
if ( aGameArrays [ i ] . szLabel )
Bfree ( aGameArrays [ i ] . szLabel ) ;
aGameArrays [ i ] . szLabel = NULL ;
if ( aGameArrays [ i ] . plValues )
Bfree ( aGameArrays [ i ] . plValues ) ;
aGameArrays [ i ] . plValues = NULL ;
aGameArrays [ i ] . bReset = 1 ;
}
2008-11-20 14:06:36 +00:00
g_gameVarCount = g_gameArrayCount = 0 ;
2009-01-10 07:38:50 +00:00
hash_init ( & gamevarH ) ;
hash_init ( & arrayH ) ;
2008-06-09 23:41:54 +00:00
return ;
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t Gv_ReadSave ( int32_t fil )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i , j ;
2008-06-10 19:32:14 +00:00
intptr_t l ;
2008-07-16 21:21:18 +00:00
char savedstate [ MAXVOLUMES * MAXLEVELS ] ;
Bmemset ( & savedstate , 0 , sizeof ( savedstate ) ) ;
2008-06-09 23:41:54 +00:00
// AddLog("Reading gamevars from savegame");
2008-11-20 14:06:36 +00:00
Gv_Free ( ) ; // nuke 'em from orbit, it's the only way to be sure...
2008-12-15 13:56:30 +00:00
2008-06-09 23:41:54 +00:00
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
// AddLog(g_szBuf);
2008-11-20 14:06:36 +00:00
if ( kdfread ( & g_gameVarCount , sizeof ( g_gameVarCount ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < g_gameVarCount ; i + + )
2008-06-09 23:41:54 +00:00
{
if ( kdfread ( & ( aGameVars [ i ] ) , sizeof ( gamevar_t ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-01-09 09:29:17 +00:00
aGameVars [ i ] . szLabel = Bcalloc ( MAXVARLABEL , sizeof ( uint8_t ) ) ;
if ( kdfread ( aGameVars [ i ] . szLabel , sizeof ( uint8_t ) * MAXVARLABEL , 1 , fil ) ! = 1 ) goto corrupt ;
2009-01-10 07:38:50 +00:00
hash_replace ( & gamevarH , aGameVars [ i ] . szLabel , i ) ;
2008-12-15 08:38:16 +00:00
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERPLAYER )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues = Bcalloc ( MAXPLAYERS , sizeof ( intptr_t ) ) ;
if ( kdfread ( aGameVars [ i ] . val . plValues , sizeof ( intptr_t ) * MAXPLAYERS , 1 , fil ) ! = 1 ) goto corrupt ;
2008-06-09 23:41:54 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERACTOR )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues = Bcalloc ( MAXSPRITES , sizeof ( intptr_t ) ) ;
if ( kdfread ( & aGameVars [ i ] . val . plValues [ 0 ] , sizeof ( intptr_t ) , MAXSPRITES , fil ) ! = MAXSPRITES ) goto corrupt ;
2008-06-09 23:41:54 +00:00
}
}
2008-12-21 22:46:55 +00:00
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
// AddLog(g_szBuf);
Gv_InitWeaponPointers ( ) ;
2008-06-09 23:41:54 +00:00
2008-12-14 22:11:07 +00:00
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
// AddLog(g_szBuf);
2008-11-20 14:06:36 +00:00
Gv_RefreshPointers ( ) ;
2008-06-09 23:41:54 +00:00
2008-11-20 14:06:36 +00:00
if ( kdfread ( & g_gameArrayCount , sizeof ( g_gameArrayCount ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < g_gameArrayCount ; i + + )
2008-06-09 23:41:54 +00:00
{
if ( kdfread ( & ( aGameArrays [ i ] ) , sizeof ( gamearray_t ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-01-09 09:29:17 +00:00
aGameArrays [ i ] . szLabel = Bcalloc ( MAXARRAYLABEL , sizeof ( uint8_t ) ) ;
if ( kdfread ( aGameArrays [ i ] . szLabel , sizeof ( uint8_t ) * MAXARRAYLABEL , 1 , fil ) ! = 1 ) goto corrupt ;
2009-01-10 07:38:50 +00:00
hash_replace ( & arrayH , aGameArrays [ i ] . szLabel , i ) ;
2008-06-09 23:41:54 +00:00
2008-12-21 22:46:55 +00:00
aGameArrays [ i ] . plValues = Bcalloc ( aGameArrays [ i ] . size , sizeof ( intptr_t ) ) ;
2008-06-09 23:41:54 +00:00
if ( kdfread ( aGameArrays [ i ] . plValues , sizeof ( intptr_t ) * aGameArrays [ i ] . size , 1 , fil ) < 1 ) goto corrupt ;
}
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
// AddLog(g_szBuf);
if ( kdfread ( apScriptGameEvent , sizeof ( apScriptGameEvent ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < MAXGAMEEVENTS ; i + + )
2008-06-09 23:41:54 +00:00
if ( apScriptGameEvent [ i ] )
{
2008-06-10 19:32:14 +00:00
l = ( intptr_t ) apScriptGameEvent [ i ] + ( intptr_t ) & script [ 0 ] ;
apScriptGameEvent [ i ] = ( intptr_t * ) l ;
2008-06-09 23:41:54 +00:00
}
// Bsprintf(g_szBuf,"CP:%s %d",__FILE__,__LINE__);
// AddLog(g_szBuf);
2008-07-16 21:21:18 +00:00
if ( kdfread ( & savedstate [ 0 ] , sizeof ( savedstate ) , 1 , fil ) ! = 1 ) goto corrupt ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < ( MAXVOLUMES * MAXLEVELS ) ; i + + )
2008-07-16 21:21:18 +00:00
{
if ( savedstate [ i ] )
{
2008-11-20 14:06:36 +00:00
if ( MapInfo [ i ] . savedstate = = NULL )
MapInfo [ i ] . savedstate = Bcalloc ( 1 , sizeof ( mapstate_t ) ) ;
if ( kdfread ( MapInfo [ i ] . savedstate , sizeof ( mapstate_t ) , 1 , fil ) ! = sizeof ( mapstate_t ) ) goto corrupt ;
2009-02-19 16:47:54 +00:00
for ( j = 0 ; j < g_gameVarCount ; j + + )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
if ( aGameVars [ j ] . dwFlags & GAMEVAR_NORESET ) continue ;
if ( aGameVars [ j ] . dwFlags & GAMEVAR_PERPLAYER )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
if ( ! MapInfo [ i ] . savedstate - > vars [ j ] )
MapInfo [ i ] . savedstate - > vars [ j ] = Bcalloc ( MAXPLAYERS , sizeof ( intptr_t ) ) ;
if ( kdfread ( & MapInfo [ i ] . savedstate - > vars [ j ] [ 0 ] , sizeof ( intptr_t ) * MAXPLAYERS , 1 , fil ) ! = 1 ) goto corrupt ;
2008-07-18 02:46:24 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( aGameVars [ j ] . dwFlags & GAMEVAR_PERACTOR )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
if ( ! MapInfo [ i ] . savedstate - > vars [ j ] )
MapInfo [ i ] . savedstate - > vars [ j ] = Bcalloc ( MAXSPRITES , sizeof ( intptr_t ) ) ;
if ( kdfread ( & MapInfo [ i ] . savedstate - > vars [ j ] [ 0 ] , sizeof ( intptr_t ) , MAXSPRITES , fil ) ! = MAXSPRITES ) goto corrupt ;
2008-07-18 02:46:24 +00:00
}
}
2008-07-16 21:21:18 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( MapInfo [ i ] . savedstate )
2008-07-16 21:21:18 +00:00
{
2008-11-20 14:06:36 +00:00
G_FreeMapState ( i ) ;
2008-07-16 21:21:18 +00:00
}
}
2008-06-09 23:41:54 +00:00
if ( kdfread ( & l , sizeof ( l ) , 1 , fil ) ! = 1 ) goto corrupt ;
if ( kdfread ( g_szBuf , l , 1 , fil ) ! = 1 ) goto corrupt ;
g_szBuf [ l ] = 0 ;
OSD_Printf ( " %s \n " , g_szBuf ) ;
2006-12-10 06:49:01 +00:00
#if 0
2008-06-09 23:41:54 +00:00
{
FILE * fp ;
AddLog ( " Dumping Vars... " ) ;
fp = fopen ( " xxx.txt " , " w " ) ;
if ( fp )
{
2008-11-20 14:06:36 +00:00
Gv_DumpValues ( fp ) ;
2008-06-09 23:41:54 +00:00
fclose ( fp ) ;
}
AddLog ( " Done Dumping... " ) ;
}
2006-12-10 06:49:01 +00:00
# endif
2008-06-09 23:41:54 +00:00
return ( 0 ) ;
2006-12-10 06:49:01 +00:00
corrupt :
2008-06-09 23:41:54 +00:00
return ( 1 ) ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
void Gv_WriteSave ( FILE * fil )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i , j ;
2008-06-10 19:32:14 +00:00
intptr_t l ;
2008-07-16 21:21:18 +00:00
char savedstate [ MAXVOLUMES * MAXLEVELS ] ;
Bmemset ( & savedstate , 0 , sizeof ( savedstate ) ) ;
2008-06-09 23:41:54 +00:00
// AddLog("Saving Game Vars to File");
2008-11-20 14:06:36 +00:00
dfwrite ( & g_gameVarCount , sizeof ( g_gameVarCount ) , 1 , fil ) ;
2008-06-09 23:41:54 +00:00
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < g_gameVarCount ; i + + )
2008-06-09 23:41:54 +00:00
{
dfwrite ( & ( aGameVars [ i ] ) , sizeof ( gamevar_t ) , 1 , fil ) ;
2009-01-09 09:29:17 +00:00
dfwrite ( aGameVars [ i ] . szLabel , sizeof ( uint8_t ) * MAXVARLABEL , 1 , fil ) ;
2008-06-09 23:41:54 +00:00
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERPLAYER )
2008-06-09 23:41:54 +00:00
{
2009-01-09 09:29:17 +00:00
//Bsprintf(g_szBuf,"Writing value array for %s (%d)",aGameVars[i].szLabel,sizeof(int32_t) * MAXPLAYERS);
2008-06-09 23:41:54 +00:00
//AddLog(g_szBuf);
2008-12-21 22:46:55 +00:00
dfwrite ( aGameVars [ i ] . val . plValues , sizeof ( intptr_t ) * MAXPLAYERS , 1 , fil ) ;
2008-06-09 23:41:54 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERACTOR )
2008-06-09 23:41:54 +00:00
{
2009-01-09 09:29:17 +00:00
//Bsprintf(g_szBuf,"Writing value array for %s (%d)",aGameVars[i].szLabel,sizeof(int32_t) * MAXSPRITES);
2008-06-09 23:41:54 +00:00
//AddLog(g_szBuf);
2008-12-21 22:46:55 +00:00
dfwrite ( & aGameVars [ i ] . val . plValues [ 0 ] , sizeof ( intptr_t ) , MAXSPRITES , fil ) ;
2008-06-09 23:41:54 +00:00
}
}
2008-11-20 14:06:36 +00:00
dfwrite ( & g_gameArrayCount , sizeof ( g_gameArrayCount ) , 1 , fil ) ;
2008-06-09 23:41:54 +00:00
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < g_gameArrayCount ; i + + )
2008-06-09 23:41:54 +00:00
{
dfwrite ( & ( aGameArrays [ i ] ) , sizeof ( gamearray_t ) , 1 , fil ) ;
2009-01-09 09:29:17 +00:00
dfwrite ( aGameArrays [ i ] . szLabel , sizeof ( uint8_t ) * MAXARRAYLABEL , 1 , fil ) ;
2008-06-09 23:41:54 +00:00
dfwrite ( aGameArrays [ i ] . plValues , sizeof ( intptr_t ) * aGameArrays [ i ] . size , 1 , fil ) ;
}
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < MAXGAMEEVENTS ; i + + )
2008-06-09 23:41:54 +00:00
if ( apScriptGameEvent [ i ] )
{
2008-06-10 19:32:14 +00:00
l = ( intptr_t ) apScriptGameEvent [ i ] - ( intptr_t ) & script [ 0 ] ;
apScriptGameEvent [ i ] = ( intptr_t * ) l ;
2008-06-09 23:41:54 +00:00
}
dfwrite ( apScriptGameEvent , sizeof ( apScriptGameEvent ) , 1 , fil ) ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < MAXGAMEEVENTS ; i + + )
2008-06-09 23:41:54 +00:00
if ( apScriptGameEvent [ i ] )
{
2008-06-10 19:32:14 +00:00
l = ( intptr_t ) apScriptGameEvent [ i ] + ( intptr_t ) & script [ 0 ] ;
apScriptGameEvent [ i ] = ( intptr_t * ) l ;
2008-06-09 23:41:54 +00:00
}
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < ( MAXVOLUMES * MAXLEVELS ) ; i + + )
2008-11-20 14:06:36 +00:00
if ( MapInfo [ i ] . savedstate ! = NULL )
2008-07-16 21:21:18 +00:00
savedstate [ i ] = 1 ;
dfwrite ( & savedstate [ 0 ] , sizeof ( savedstate ) , 1 , fil ) ;
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < ( MAXVOLUMES * MAXLEVELS ) ; i + + )
2008-11-20 14:06:36 +00:00
if ( MapInfo [ i ] . savedstate )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
dfwrite ( MapInfo [ i ] . savedstate , sizeof ( mapstate_t ) , 1 , fil ) ;
2009-02-19 16:47:54 +00:00
for ( j = 0 ; j < g_gameVarCount ; j + + )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
if ( aGameVars [ j ] . dwFlags & GAMEVAR_NORESET ) continue ;
if ( aGameVars [ j ] . dwFlags & GAMEVAR_PERPLAYER )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
dfwrite ( & MapInfo [ i ] . savedstate - > vars [ j ] [ 0 ] , sizeof ( intptr_t ) * MAXPLAYERS , 1 , fil ) ;
2008-07-18 02:46:24 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( aGameVars [ j ] . dwFlags & GAMEVAR_PERACTOR )
2008-07-18 02:46:24 +00:00
{
2008-11-20 14:06:36 +00:00
dfwrite ( & MapInfo [ i ] . savedstate - > vars [ j ] [ 0 ] , sizeof ( intptr_t ) * MAXSPRITES , 1 , fil ) ;
2008-07-18 02:46:24 +00:00
}
}
}
2008-07-16 21:21:18 +00:00
2008-06-09 23:41:54 +00:00
Bsprintf ( g_szBuf , " EOF: EDuke32 " ) ;
l = strlen ( g_szBuf ) ;
dfwrite ( & l , sizeof ( l ) , 1 , fil ) ;
dfwrite ( g_szBuf , l , 1 , fil ) ;
2006-12-10 06:49:01 +00:00
}
2009-02-02 01:49:14 +00:00
void Gv_DumpValues ( void )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i ;
2008-12-28 23:27:24 +00:00
2009-02-02 01:49:14 +00:00
OSD_Printf ( " // Current Game Definitions \n \n " ) ;
2008-12-28 23:27:24 +00:00
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < g_gameVarCount ; i + + )
2008-06-09 23:41:54 +00:00
{
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_SECRET ) )
2008-06-09 23:41:54 +00:00
continue ; // do nothing...
2008-12-28 23:27:24 +00:00
2009-02-02 01:49:14 +00:00
OSD_Printf ( " gamevar %s " , aGameVars [ i ] . szLabel ) ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_INTPTR ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " %d " , * ( ( int32_t * ) aGameVars [ i ] . val . lValue ) ) ;
2008-12-28 23:27:24 +00:00
else if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_SHORTPTR ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " %d " , * ( ( int16_t * ) aGameVars [ i ] . val . lValue ) ) ;
2008-12-28 23:27:24 +00:00
else if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_CHARPTR ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " %d " , * ( ( char * ) aGameVars [ i ] . val . lValue ) ) ;
2008-06-09 23:41:54 +00:00
else
2009-02-02 01:49:14 +00:00
OSD_Printf ( " % " PRIdPTR " " , aGameVars [ i ] . val . lValue ) ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_PERPLAYER ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " GAMEVAR_PERPLAYER " ) ;
2008-12-28 23:27:24 +00:00
else if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_PERACTOR ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " GAMEVAR_PERACTOR " ) ;
2008-12-28 23:27:24 +00:00
else
2009-02-02 01:49:14 +00:00
OSD_Printf ( " %d " , aGameVars [ i ] . dwFlags /* & (GAMEVAR_USER_MASK)*/ ) ;
OSD_Printf ( " // " ) ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_SYSTEM ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " (system) " ) ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_INTPTR | GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " (pointer) " ) ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_READONLY ) )
2009-02-02 01:49:14 +00:00
OSD_Printf ( " (read only) " ) ;
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_SPECIAL ) )
OSD_Printf ( " (special) " ) ;
OSD_Printf ( " \n " ) ;
2008-06-09 23:41:54 +00:00
}
2009-02-02 01:49:14 +00:00
OSD_Printf ( " \n // end of game definitions \n " ) ;
2006-12-10 06:49:01 +00:00
}
2008-12-13 07:23:13 +00:00
void Gv_ResetVars ( void ) /* this is called during a new game and nowhere else */
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i ;
2008-06-09 23:41:54 +00:00
2008-11-20 14:06:36 +00:00
Gv_Free ( ) ;
2008-08-23 15:37:30 +00:00
OSD_errors = 0 ;
2008-06-09 23:41:54 +00:00
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < MAXGAMEVARS ; i + + )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
if ( aGameVars [ i ] . szLabel ! = NULL & & aGameVars [ i ] . dwFlags & GAMEVAR_RESET )
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aGameVars [ i ] . szLabel , aGameVars [ i ] . lDefault , aGameVars [ i ] . dwFlags ) ;
2008-06-09 23:41:54 +00:00
}
2009-02-19 16:47:54 +00:00
for ( i = 0 ; i < MAXGAMEARRAYS ; i + + )
2008-06-09 23:41:54 +00:00
{
if ( aGameArrays [ i ] . szLabel ! = NULL & & aGameArrays [ i ] . bReset )
2008-12-13 07:23:13 +00:00
Gv_NewArray ( aGameArrays [ i ] . szLabel , aGameArrays [ i ] . size ) ;
2008-06-09 23:41:54 +00:00
}
2008-04-01 02:50:44 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t Gv_NewArray ( const char * pszLabel , int32_t asize )
2008-04-01 02:50:44 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i ;
2008-06-09 23:41:54 +00:00
2008-12-13 07:23:13 +00:00
if ( g_gameArrayCount > = MAXGAMEARRAYS )
{
g_numCompilerErrors + + ;
C_ReportError ( - 1 ) ;
initprintf ( " %s:%d: error: too many arrays! \n " , g_szScriptFileName , g_lineNumber ) ;
return 0 ;
}
2008-06-09 23:41:54 +00:00
if ( Bstrlen ( pszLabel ) > ( MAXARRAYLABEL - 1 ) )
{
2008-11-20 14:06:36 +00:00
g_numCompilerErrors + + ;
C_ReportError ( - 1 ) ;
initprintf ( " %s:%d: error: array name `%s' exceeds limit of %d characters. \n " , g_szScriptFileName , g_lineNumber , pszLabel , MAXARRAYLABEL ) ;
2008-06-09 23:41:54 +00:00
return 0 ;
}
2009-01-10 07:38:50 +00:00
i = hash_find ( & arrayH , pszLabel ) ;
2008-08-25 02:35:15 +00:00
if ( i > = 0 & & ! aGameArrays [ i ] . bReset )
2008-06-09 23:41:54 +00:00
{
2008-08-25 00:49:12 +00:00
// found it it's a duplicate in error
2008-11-20 14:06:36 +00:00
g_numCompilerWarnings + + ;
C_ReportError ( WARNING_DUPLICATEDEFINITION ) ;
2008-08-25 00:49:12 +00:00
return 0 ;
2008-06-09 23:41:54 +00:00
}
2008-12-13 07:23:13 +00:00
2008-11-20 14:06:36 +00:00
i = g_gameArrayCount ;
2008-12-13 07:23:13 +00:00
if ( aGameArrays [ i ] . szLabel = = NULL )
2009-01-09 09:29:17 +00:00
aGameArrays [ i ] . szLabel = Bcalloc ( MAXVARLABEL , sizeof ( uint8_t ) ) ;
2008-12-13 07:23:13 +00:00
if ( aGameArrays [ i ] . szLabel ! = pszLabel )
Bstrcpy ( aGameArrays [ i ] . szLabel , pszLabel ) ;
aGameArrays [ i ] . plValues = Bcalloc ( asize , sizeof ( intptr_t ) ) ;
aGameArrays [ i ] . size = asize ;
2008-12-21 22:46:55 +00:00
aGameArrays [ i ] . bReset = 0 ;
2008-12-13 07:23:13 +00:00
g_gameArrayCount + + ;
2009-01-10 07:38:50 +00:00
hash_replace ( & arrayH , aGameArrays [ i ] . szLabel , i ) ;
2008-12-13 07:23:13 +00:00
return 1 ;
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t Gv_NewVar ( const char * pszLabel , int32_t lValue , uint32_t dwFlags )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i , j ;
2008-06-09 23:41:54 +00:00
2008-12-13 07:23:13 +00:00
//Bsprintf(g_szBuf,"Gv_NewVar(%s, %d, %X)",pszLabel, lValue, dwFlags);
2008-06-09 23:41:54 +00:00
//AddLog(g_szBuf);
2008-12-13 07:23:13 +00:00
if ( g_gameVarCount > = MAXGAMEVARS )
{
g_numCompilerErrors + + ;
C_ReportError ( - 1 ) ;
initprintf ( " %s:%d: error: too many gamevars! \n " , g_szScriptFileName , g_lineNumber ) ;
return 0 ;
}
2008-06-09 23:41:54 +00:00
if ( Bstrlen ( pszLabel ) > ( MAXVARLABEL - 1 ) )
{
2008-11-20 14:06:36 +00:00
g_numCompilerErrors + + ;
C_ReportError ( - 1 ) ;
initprintf ( " %s:%d: error: variable name `%s' exceeds limit of %d characters. \n " , g_szScriptFileName , g_lineNumber , pszLabel , MAXVARLABEL ) ;
2008-06-09 23:41:54 +00:00
return 0 ;
}
2008-12-13 07:23:13 +00:00
2009-01-10 07:38:50 +00:00
i = hash_find ( & gamevarH , pszLabel ) ;
2008-08-26 08:39:45 +00:00
2008-12-21 22:46:55 +00:00
if ( i > = 0 & & ! ( aGameVars [ i ] . dwFlags & GAMEVAR_RESET ) )
2008-06-09 23:41:54 +00:00
{
2008-08-26 08:39:45 +00:00
// found it...
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_INTPTR | GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2008-06-09 23:41:54 +00:00
{
2008-08-26 08:39:45 +00:00
// warning++;
2008-11-20 14:06:36 +00:00
// initprintf("%s:%d: warning: Internal gamevar '%s' cannot be redefined.\n",g_szScriptFileName,g_lineNumber,label+(g_numLabels<<6));
C_ReportError ( - 1 ) ;
initprintf ( " %s:%d: warning: cannot redefine internal gamevar `%s'. \n " , g_szScriptFileName , g_lineNumber , label + ( g_numLabels < < 6 ) ) ;
2008-08-26 08:39:45 +00:00
return 0 ;
}
2008-11-20 14:06:36 +00:00
else if ( ! ( aGameVars [ i ] . dwFlags & GAMEVAR_DEFAULT ) & & ! ( aGameVars [ i ] . dwFlags & GAMEVAR_SYSTEM ) )
2008-08-26 08:39:45 +00:00
{
// it's a duplicate in error
2008-11-20 14:06:36 +00:00
g_numCompilerWarnings + + ;
C_ReportError ( WARNING_DUPLICATEDEFINITION ) ;
2008-08-26 08:39:45 +00:00
return 0 ;
2008-06-09 23:41:54 +00:00
}
}
2008-12-13 07:23:13 +00:00
2008-08-26 08:39:45 +00:00
if ( i = = - 1 )
2008-11-20 14:06:36 +00:00
i = g_gameVarCount ;
2008-08-26 08:39:45 +00:00
2008-08-26 09:05:32 +00:00
// Set values
2008-11-20 14:06:36 +00:00
if ( ( aGameVars [ i ] . dwFlags & GAMEVAR_SYSTEM ) = = 0 )
2008-08-26 09:05:32 +00:00
{
if ( aGameVars [ i ] . szLabel = = NULL )
2009-01-09 09:29:17 +00:00
aGameVars [ i ] . szLabel = Bcalloc ( MAXVARLABEL , sizeof ( uint8_t ) ) ;
2008-08-26 09:05:32 +00:00
if ( aGameVars [ i ] . szLabel ! = pszLabel )
Bstrcpy ( aGameVars [ i ] . szLabel , pszLabel ) ;
aGameVars [ i ] . dwFlags = dwFlags ;
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . dwFlags & GAMEVAR_USER_MASK )
2008-06-09 23:41:54 +00:00
{
// only free if not system
2008-12-28 23:27:24 +00:00
if ( aGameVars [ i ] . val . plValues )
Bfree ( aGameVars [ i ] . val . plValues ) ;
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues = NULL ;
2008-06-09 23:41:54 +00:00
}
}
2008-08-26 09:05:32 +00:00
// if existing is system, they only get to change default value....
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . lDefault = lValue ;
aGameVars [ i ] . dwFlags & = ~ GAMEVAR_RESET ;
2008-08-26 09:05:32 +00:00
2008-12-13 07:23:13 +00:00
if ( i = = g_gameVarCount )
2008-06-09 23:41:54 +00:00
{
2008-08-26 09:05:32 +00:00
// we're adding a new one.
2009-01-10 07:38:50 +00:00
hash_add ( & gamevarH , aGameVars [ i ] . szLabel , g_gameVarCount + + ) ;
2008-08-26 09:05:32 +00:00
}
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERPLAYER )
2008-08-26 09:05:32 +00:00
{
2008-12-21 22:46:55 +00:00
if ( ! aGameVars [ i ] . val . plValues )
aGameVars [ i ] . val . plValues = Bcalloc ( MAXPLAYERS , sizeof ( intptr_t ) ) ;
2009-02-19 16:47:54 +00:00
for ( j = MAXPLAYERS - 1 ; j > = 0 ; j - - )
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues [ j ] = lValue ;
2008-08-26 09:05:32 +00:00
}
2008-11-20 14:06:36 +00:00
else if ( aGameVars [ i ] . dwFlags & GAMEVAR_PERACTOR )
2008-08-26 09:05:32 +00:00
{
2008-12-21 22:46:55 +00:00
if ( ! aGameVars [ i ] . val . plValues )
aGameVars [ i ] . val . plValues = Bcalloc ( MAXSPRITES , sizeof ( intptr_t ) ) ;
2009-02-19 16:47:54 +00:00
for ( j = MAXSPRITES - 1 ; j > = 0 ; j - - )
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues [ j ] = lValue ;
2008-06-09 23:41:54 +00:00
}
2008-12-21 22:46:55 +00:00
else aGameVars [ i ] . val . lValue = lValue ;
2008-08-26 09:05:32 +00:00
return 1 ;
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
void A_ResetVars ( int32_t iActor )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i = ( MAXGAMEVARS - 1 ) ;
2009-02-19 16:47:54 +00:00
for ( ; i > = 0 ; i - - )
2008-11-20 14:06:36 +00:00
if ( ( aGameVars [ i ] . dwFlags & GAMEVAR_PERACTOR ) & & ! ( aGameVars [ i ] . dwFlags & GAMEVAR_NODEFAULT ) )
2008-12-21 22:46:55 +00:00
aGameVars [ i ] . val . plValues [ iActor ] = aGameVars [ i ] . lDefault ;
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
static int32_t Gv_GetVarIndex ( const char * szGameLabel )
2006-12-10 06:49:01 +00:00
{
2009-01-10 07:38:50 +00:00
int32_t i = hash_find ( & gamevarH , szGameLabel ) ;
2008-12-15 13:56:30 +00:00
if ( i = = - 1 )
{
OSD_Printf ( OSD_ERROR " Gv_GetVarDataPtr(): INTERNAL ERROR: couldn't find gamevar %s! \n " , szGameLabel ) ;
return 0 ;
}
return i ;
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t __fastcall Gv_GetVar ( int32_t id , int32_t iActor , int32_t iPlayer )
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
if ( id = = MAXGAMEVARS )
return ( * insptr + + ) ;
2008-06-06 17:18:07 +00:00
2008-06-09 23:41:54 +00:00
if ( id = = g_iThisActorID )
return iActor ;
2008-06-06 17:18:07 +00:00
2008-06-09 23:41:54 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t negateResult = 0 ;
2008-08-10 13:07:07 +00:00
2008-12-13 07:23:13 +00:00
if ( id > = g_gameVarCount | | id < 0 )
2008-06-09 23:41:54 +00:00
{
2008-12-13 07:23:13 +00:00
if ( id & ( MAXGAMEVARS < < 2 ) ) // array
2008-08-10 13:07:07 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t index = Gv_GetVar ( * insptr + + , iActor , iPlayer ) ;
2008-06-06 17:18:07 +00:00
2008-08-10 13:07:07 +00:00
if ( id & ( MAXGAMEVARS < < 1 ) ) // negative array access
2009-01-07 14:05:13 +00:00
negateResult = 1 ;
2008-08-10 13:07:07 +00:00
2009-01-16 06:11:25 +00:00
id & = ( MAXGAMEVARS - 1 ) ; // ~((MAXGAMEVARS<<2)|(MAXGAMEVARS<<1));
2008-12-13 07:23:13 +00:00
2008-08-10 13:07:07 +00:00
if ( index > = aGameArrays [ id ] . size | | index < 0 )
{
2008-11-20 14:06:36 +00:00
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index (%s[%d]) \n " , g_errorLineNum , keyw [ g_tw ] , aGameArrays [ id ] . szLabel , index ) ;
2008-08-10 13:07:07 +00:00
return - 1 ;
}
2009-01-16 06:11:25 +00:00
if ( negateResult ) return ( - aGameArrays [ id ] . plValues [ index ] ) ;
return ( aGameArrays [ id ] . plValues [ index ] ) ;
2009-01-07 14:05:13 +00:00
}
if ( id & ( MAXGAMEVARS < < 3 ) ) // struct shortcut vars
{
2009-01-16 06:11:25 +00:00
int32_t index = Gv_GetVar ( * insptr + + , iActor , iPlayer ) , label ;
if ( id = = g_iActorVarID )
{
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
label = Gv_GetVar ( * insptr + + , index , iPlayer ) ;
2009-02-19 09:39:19 +00:00
// OSD_Printf("actorvar returned %d\n",label);
2009-01-16 06:11:25 +00:00
}
else label = * insptr + + ;
2009-01-07 14:05:13 +00:00
if ( id & ( MAXGAMEVARS < < 1 ) ) // negative array access
negateResult = 1 ;
2009-01-16 06:11:25 +00:00
id & = ( MAXGAMEVARS - 1 ) ; //~((MAXGAMEVARS<<3)|(MAXGAMEVARS<<1));
2009-01-07 14:05:13 +00:00
if ( id = = g_iSpriteVarID )
{
2009-01-09 09:29:17 +00:00
int32_t parm2 = 0 ;
2009-01-07 14:05:13 +00:00
2009-01-16 07:24:15 +00:00
/*OSD_Printf("%d %d %d\n",__LINE__,index,label);*/
2009-01-07 14:05:13 +00:00
if ( ActorLabels [ label ] . flags & LABEL_HASPARM2 )
parm2 = Gv_GetVar ( * insptr + + , iActor , iPlayer ) ;
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessSpriteX ( index , label , parm2 ) ) ;
return ( X_AccessSpriteX ( index , label , parm2 ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iPlayerVarID )
2009-01-07 14:05:13 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t parm2 = 0 ;
2009-01-07 14:05:13 +00:00
if ( PlayerLabels [ label ] . flags & LABEL_HASPARM2 )
parm2 = Gv_GetVar ( * insptr + + , iActor , iPlayer ) ;
if ( index = = vm . g_i ) index = vm . g_p ;
if ( index > = MAXPLAYERS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessPlayerX ( index , label , parm2 ) ) ;
return ( X_AccessPlayerX ( index , label , parm2 ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iActorVarID )
{
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return - label ;
return label ;
}
else if ( id = = g_iSectorVarID )
2009-01-07 14:05:13 +00:00
{
if ( index = = vm . g_i ) index = sprite [ vm . g_i ] . sectnum ;
if ( index > = MAXSECTORS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessSectorX ( index , label ) ) ;
return ( X_AccessSectorX ( index , label ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iWallVarID )
2009-01-07 14:05:13 +00:00
{
if ( index > = MAXWALLS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessWallX ( index , label ) ) ;
return ( X_AccessWallX ( index , label ) ) ;
}
2008-08-10 13:07:07 +00:00
}
if ( ( id & ( MAXGAMEVARS < < 1 ) ) = = 0 )
2008-06-09 23:41:54 +00:00
{
2008-11-20 14:06:36 +00:00
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid gamevar ID (%d) \n " , g_errorLineNum , keyw [ g_tw ] , id ) ;
2008-08-10 13:07:07 +00:00
return - 1 ;
2008-06-09 23:41:54 +00:00
}
2008-06-06 17:18:07 +00:00
2009-01-07 14:05:13 +00:00
negateResult = 1 ;
2008-08-10 13:07:07 +00:00
id & = ~ ( MAXGAMEVARS < < 1 ) ;
2008-06-09 23:41:54 +00:00
}
2008-12-21 22:46:55 +00:00
switch ( aGameVars [ id ] . dwFlags & ( GAMEVAR_USER_MASK | GAMEVAR_INTPTR |
2009-01-04 22:22:33 +00:00
GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
default :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . lValue ) ;
2008-12-21 22:46:55 +00:00
return ( aGameVars [ id ] . val . lValue ) ;
case GAMEVAR_PERPLAYER :
2008-08-10 13:07:07 +00:00
if ( iPlayer < 0 | | iPlayer > = MAXPLAYERS )
{
2008-11-20 14:06:36 +00:00
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid player ID (%d) \n " , g_errorLineNum , keyw [ g_tw ] , iPlayer ) ;
2008-08-10 13:07:07 +00:00
return - 1 ;
}
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . plValues [ iPlayer ] ) ;
2008-12-21 22:46:55 +00:00
return ( aGameVars [ id ] . val . plValues [ iPlayer ] ) ;
case GAMEVAR_PERACTOR :
2008-08-10 13:07:07 +00:00
if ( iActor < 0 | | iActor > = MAXSPRITES )
{
2008-11-20 14:06:36 +00:00
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid sprite ID (%d) \n " , g_errorLineNum , keyw [ g_tw ] , iActor ) ;
2008-08-10 13:07:07 +00:00
return - 1 ;
}
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . plValues [ iActor ] ) ;
2008-12-21 22:46:55 +00:00
return ( aGameVars [ id ] . val . plValues [ iActor ] ) ;
case GAMEVAR_INTPTR :
2009-01-09 09:29:17 +00:00
if ( negateResult ) return ( - ( * ( ( int32_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
return ( ( * ( ( int32_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_SHORTPTR :
2009-01-09 09:29:17 +00:00
if ( negateResult ) return ( - ( * ( ( int16_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
return ( ( * ( ( int16_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_CHARPTR :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - ( * ( ( char * ) aGameVars [ id ] . val . lValue ) ) ) ;
2008-12-21 22:46:55 +00:00
return ( ( * ( ( char * ) aGameVars [ id ] . val . lValue ) ) ) ;
2008-06-09 23:41:54 +00:00
}
}
2006-12-10 06:49:01 +00:00
}
2008-12-13 07:23:13 +00:00
2009-01-09 09:29:17 +00:00
void __fastcall Gv_SetVar ( int32_t id , int32_t lValue , int32_t iActor , int32_t iPlayer )
2006-12-10 06:49:01 +00:00
{
2008-11-20 14:06:36 +00:00
if ( id < 0 | | id > = g_gameVarCount )
2008-06-09 23:41:54 +00:00
{
2009-01-07 14:05:13 +00:00
OSD_Printf ( CON_ERROR " Gv_SetVar(): tried to set invalid gamevar ID (%d) from sprite %d (%d), player %d \n " , g_errorLineNum , keyw [ g_tw ] , id , vm . g_i , sprite [ vm . g_i ] . picnum , vm . g_p ) ;
2008-06-09 23:41:54 +00:00
return ;
}
//Bsprintf(g_szBuf,"SGVI: %d ('%s') to %d for %d %d",id,aGameVars[id].szLabel,lValue,iActor,iPlayer);
//AddLog(g_szBuf);
2008-12-21 22:46:55 +00:00
switch ( aGameVars [ id ] . dwFlags & ( GAMEVAR_USER_MASK | GAMEVAR_INTPTR |
2009-01-04 22:22:33 +00:00
GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
default :
aGameVars [ id ] . val . lValue = lValue ;
return ;
case GAMEVAR_PERPLAYER :
2008-06-09 23:41:54 +00:00
if ( iPlayer < 0 | | iPlayer > MAXPLAYERS - 1 )
{
2009-01-07 14:05:13 +00:00
OSD_Printf ( CON_ERROR " Gv_SetVar(): invalid player (%d) for per-player gamevar %s from sprite %d, player %d \n " , g_errorLineNum , keyw [ g_tw ] , iPlayer , aGameVars [ id ] . szLabel , vm . g_i , vm . g_p ) ;
2008-06-09 23:41:54 +00:00
return ;
}
// for the current player
2008-12-21 22:46:55 +00:00
aGameVars [ id ] . val . plValues [ iPlayer ] = lValue ;
2008-06-09 23:41:54 +00:00
return ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_PERACTOR :
2008-06-09 23:41:54 +00:00
if ( iActor < 0 | | iActor > MAXSPRITES - 1 )
{
2009-01-07 14:05:13 +00:00
OSD_Printf ( CON_ERROR " Gv_SetVar(): invalid sprite (%d) for per-actor gamevar %s from sprite %d (%d), player %d \n " , g_errorLineNum , keyw [ g_tw ] , iActor , aGameVars [ id ] . szLabel , vm . g_i , sprite [ vm . g_i ] . picnum , vm . g_p ) ;
2008-06-09 23:41:54 +00:00
return ;
}
// for the current actor
2008-12-21 22:46:55 +00:00
aGameVars [ id ] . val . plValues [ iActor ] = lValue ;
2008-06-09 23:41:54 +00:00
return ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_INTPTR :
2009-01-09 09:29:17 +00:00
* ( ( int32_t * ) aGameVars [ id ] . val . lValue ) = ( int32_t ) lValue ;
2008-11-20 14:06:36 +00:00
return ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_SHORTPTR :
2009-01-09 09:29:17 +00:00
* ( ( int16_t * ) aGameVars [ id ] . val . lValue ) = ( int16_t ) lValue ;
2008-12-21 22:46:55 +00:00
return ;
case GAMEVAR_CHARPTR :
2009-01-09 09:29:17 +00:00
* ( ( char * ) aGameVars [ id ] . val . lValue ) = ( uint8_t ) lValue ;
2008-06-09 23:41:54 +00:00
return ;
}
2008-12-21 22:46:55 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t __fastcall Gv_GetVarX ( int32_t id )
2008-12-21 22:46:55 +00:00
{
if ( id = = MAXGAMEVARS )
return ( * insptr + + ) ;
if ( id = = g_iThisActorID )
2009-01-07 14:05:13 +00:00
return vm . g_i ;
2008-06-09 23:41:54 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t negateResult = 0 ;
2008-12-21 22:46:55 +00:00
if ( id > = g_gameVarCount | | id < 0 )
{
if ( id & ( MAXGAMEVARS < < 2 ) ) // array
{
2009-01-09 09:29:17 +00:00
int32_t index = Gv_GetVarX ( * insptr + + ) ;
2008-12-21 22:46:55 +00:00
if ( id & ( MAXGAMEVARS < < 1 ) ) // negative array access
2009-01-07 14:05:13 +00:00
negateResult = 1 ;
2008-12-21 22:46:55 +00:00
2009-01-16 06:11:25 +00:00
id & = ( MAXGAMEVARS - 1 ) ; // ~((MAXGAMEVARS<<2)|(MAXGAMEVARS<<1));
2008-12-21 22:46:55 +00:00
if ( index > = aGameArrays [ id ] . size | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index (%s[%d]) \n " , g_errorLineNum , keyw [ g_tw ] , aGameArrays [ id ] . szLabel , index ) ;
return - 1 ;
}
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameArrays [ id ] . plValues [ index ] ) ;
2008-12-21 22:46:55 +00:00
return ( aGameArrays [ id ] . plValues [ index ] ) ;
}
2009-01-07 14:05:13 +00:00
if ( id & ( MAXGAMEVARS < < 3 ) ) // struct shortcut vars
{
2009-01-16 06:11:25 +00:00
int32_t index = Gv_GetVarX ( * insptr + + ) , label ;
2009-01-07 14:05:13 +00:00
if ( id & ( MAXGAMEVARS < < 1 ) ) // negative array access
negateResult = 1 ;
2009-01-16 06:11:25 +00:00
id & = ( MAXGAMEVARS - 1 ) ; // ~((MAXGAMEVARS<<3)|(MAXGAMEVARS<<1));
if ( id = = g_iActorVarID )
{
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
2009-02-19 09:39:19 +00:00
label = Gv_GetVar ( * insptr + + , index , vm . g_p ) ;
2009-01-16 06:11:25 +00:00
}
else label = * insptr + + ;
2009-01-07 14:05:13 +00:00
if ( id = = g_iSpriteVarID )
{
2009-01-09 09:29:17 +00:00
int32_t parm2 = 0 ;
2009-01-07 14:05:13 +00:00
2009-01-16 07:24:15 +00:00
/*OSD_Printf("%d %d %d\n",__LINE__,index,label);*/
2009-01-07 14:05:13 +00:00
if ( ActorLabels [ label ] . flags & LABEL_HASPARM2 )
parm2 = Gv_GetVarX ( * insptr + + ) ;
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
2009-01-18 07:32:35 +00:00
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - X_AccessSpriteX ( index , label , parm2 ) ) ;
return ( X_AccessSpriteX ( index , label , parm2 ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iPlayerVarID )
2009-01-07 14:05:13 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t parm2 = 0 ;
2009-01-07 14:05:13 +00:00
if ( PlayerLabels [ label ] . flags & LABEL_HASPARM2 )
parm2 = Gv_GetVarX ( * insptr + + ) ;
if ( index = = vm . g_i ) index = vm . g_p ;
if ( index > = MAXPLAYERS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessPlayerX ( index , label , parm2 ) ) ;
return ( X_AccessPlayerX ( index , label , parm2 ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iActorVarID )
{
if ( index > = MAXSPRITES | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return - label ;
return label ;
}
else if ( id = = g_iSectorVarID )
2009-01-07 14:05:13 +00:00
{
if ( index = = vm . g_i ) index = sprite [ vm . g_i ] . sectnum ;
if ( index > = MAXSECTORS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessSectorX ( index , label ) ) ;
return ( X_AccessSectorX ( index , label ) ) ;
}
2009-01-16 06:11:25 +00:00
else if ( id = = g_iWallVarID )
2009-01-07 14:05:13 +00:00
{
if ( index > = MAXWALLS | | index < 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid array index \n " , g_errorLineNum , keyw [ g_tw ] ) ;
return - 1 ;
}
if ( negateResult ) return ( - X_AccessWallX ( index , label ) ) ;
return ( X_AccessWallX ( index , label ) ) ;
}
}
2008-12-21 22:46:55 +00:00
if ( ( id & ( MAXGAMEVARS < < 1 ) ) = = 0 )
{
OSD_Printf ( CON_ERROR " Gv_GetVar(): invalid gamevar ID (%d) \n " , g_errorLineNum , keyw [ g_tw ] , id ) ;
return - 1 ;
}
2009-01-07 14:05:13 +00:00
negateResult = 1 ;
2008-12-21 22:46:55 +00:00
id & = ~ ( MAXGAMEVARS < < 1 ) ;
}
switch ( aGameVars [ id ] . dwFlags & ( GAMEVAR_USER_MASK | GAMEVAR_INTPTR |
2009-01-04 22:22:33 +00:00
GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2008-12-21 22:46:55 +00:00
{
default :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . lValue ) ;
2008-12-21 22:46:55 +00:00
return ( aGameVars [ id ] . val . lValue ) ;
case GAMEVAR_PERPLAYER :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . plValues [ vm . g_p ] ) ;
return ( aGameVars [ id ] . val . plValues [ vm . g_p ] ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_PERACTOR :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - aGameVars [ id ] . val . plValues [ vm . g_i ] ) ;
return ( aGameVars [ id ] . val . plValues [ vm . g_i ] ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_INTPTR :
2009-01-09 09:29:17 +00:00
if ( negateResult ) return ( - ( * ( ( int32_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
return ( * ( ( int32_t * ) aGameVars [ id ] . val . lValue ) ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_SHORTPTR :
2009-01-09 09:29:17 +00:00
if ( negateResult ) return ( - ( * ( ( int16_t * ) aGameVars [ id ] . val . lValue ) ) ) ;
return ( * ( ( int16_t * ) aGameVars [ id ] . val . lValue ) ) ;
2008-12-21 22:46:55 +00:00
case GAMEVAR_CHARPTR :
2009-01-07 14:05:13 +00:00
if ( negateResult ) return ( - ( * ( ( char * ) aGameVars [ id ] . val . lValue ) ) ) ;
2008-12-21 22:46:55 +00:00
return ( * ( ( char * ) aGameVars [ id ] . val . lValue ) ) ;
}
2008-06-09 23:41:54 +00:00
}
2008-12-21 22:46:55 +00:00
}
2008-06-09 23:41:54 +00:00
2009-01-09 09:29:17 +00:00
void __fastcall Gv_SetVarX ( int32_t id , int32_t lValue )
2008-12-21 22:46:55 +00:00
{
switch ( aGameVars [ id ] . dwFlags & ( GAMEVAR_USER_MASK | GAMEVAR_INTPTR |
2009-01-04 22:22:33 +00:00
GAMEVAR_SHORTPTR | GAMEVAR_CHARPTR ) )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
default :
aGameVars [ id ] . val . lValue = lValue ;
return ;
case GAMEVAR_PERPLAYER :
2009-01-07 14:05:13 +00:00
aGameVars [ id ] . val . plValues [ vm . g_p ] = lValue ;
2008-12-21 22:46:55 +00:00
return ;
case GAMEVAR_PERACTOR :
2009-01-07 14:05:13 +00:00
aGameVars [ id ] . val . plValues [ vm . g_i ] = lValue ;
2008-12-21 22:46:55 +00:00
return ;
case GAMEVAR_INTPTR :
2009-01-09 09:29:17 +00:00
* ( ( int32_t * ) aGameVars [ id ] . val . lValue ) = ( int32_t ) lValue ;
2008-12-21 22:46:55 +00:00
return ;
case GAMEVAR_SHORTPTR :
2009-01-09 09:29:17 +00:00
* ( ( int16_t * ) aGameVars [ id ] . val . lValue ) = ( int16_t ) lValue ;
2008-12-21 22:46:55 +00:00
return ;
case GAMEVAR_CHARPTR :
2009-01-09 09:29:17 +00:00
* ( ( char * ) aGameVars [ id ] . val . lValue ) = ( uint8_t ) lValue ;
2008-06-09 23:41:54 +00:00
return ;
}
2006-12-10 06:49:01 +00:00
}
2009-01-09 09:29:17 +00:00
int32_t Gv_GetVarByLabel ( const char * szGameLabel , int32_t lDefault , int32_t iActor , int32_t iPlayer )
2006-12-10 06:49:01 +00:00
{
2009-01-10 07:38:50 +00:00
int32_t i = hash_find ( & gamevarH , szGameLabel ) ;
2008-12-13 07:23:13 +00:00
if ( i < 0 )
return lDefault ;
2008-11-20 14:06:36 +00:00
return Gv_GetVar ( i , iActor , iPlayer ) ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
static intptr_t * Gv_GetVarDataPtr ( const char * szGameLabel )
2006-12-10 06:49:01 +00:00
{
2009-01-10 07:38:50 +00:00
int32_t i = hash_find ( & gamevarH , szGameLabel ) ;
2008-06-09 23:41:54 +00:00
2008-12-13 07:23:13 +00:00
if ( i < 0 )
return NULL ;
2008-08-25 00:49:12 +00:00
2008-11-20 14:06:36 +00:00
if ( aGameVars [ i ] . dwFlags & ( GAMEVAR_PERACTOR | GAMEVAR_PERPLAYER ) )
2008-06-09 23:41:54 +00:00
{
2008-12-21 22:46:55 +00:00
if ( ! aGameVars [ i ] . val . plValues )
2008-11-20 14:06:36 +00:00
OSD_Printf ( CON_ERROR " Gv_GetVarDataPtr(): INTERNAL ERROR: NULL array !!! \n " , g_errorLineNum , keyw [ g_tw ] ) ;
2008-12-21 22:46:55 +00:00
return aGameVars [ i ] . val . plValues ;
2008-06-09 23:41:54 +00:00
}
2008-12-13 07:23:13 +00:00
2008-12-21 22:46:55 +00:00
return & ( aGameVars [ i ] . val . lValue ) ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
void Gv_ResetSystemDefaults ( void )
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
// call many times...
2009-01-09 09:29:17 +00:00
int32_t i , j ;
2008-06-09 23:41:54 +00:00
char aszBuf [ 64 ] ;
//AddLog("ResetWeaponDefaults");
2009-02-19 16:47:54 +00:00
for ( j = MAXPLAYERS - 1 ; j > = 0 ; j - - )
2008-06-09 23:41:54 +00:00
{
2009-02-19 16:47:54 +00:00
for ( i = MAX_WEAPONS - 1 ; i > = 0 ; i - - )
2008-06-09 23:41:54 +00:00
{
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponClip [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReload [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFireDelay [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponTotalTime [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponHoldDelay [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFlags [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponShoots [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSpawnTime [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSpawn [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponShotsPerBurst [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponWorksLike [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponInitialSound [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFireSound [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSound2Time [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSound2Sound [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReloadSound1 [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReloadSound2 [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , i ) ;
aplWeaponSelectSound [ i ] [ j ] = Gv_GetVarByLabel ( aszBuf , 0 , - 1 , j ) ;
2008-06-09 23:41:54 +00:00
}
}
2008-11-20 14:06:36 +00:00
g_iReturnVarID = Gv_GetVarIndex ( " RETURN " ) ;
g_iWeaponVarID = Gv_GetVarIndex ( " WEAPON " ) ;
g_iWorksLikeVarID = Gv_GetVarIndex ( " WORKSLIKE " ) ;
g_iZRangeVarID = Gv_GetVarIndex ( " ZRANGE " ) ;
g_iAngRangeVarID = Gv_GetVarIndex ( " ANGRANGE " ) ;
g_iAimAngleVarID = Gv_GetVarIndex ( " AUTOAIMANGLE " ) ;
g_iLoTagID = Gv_GetVarIndex ( " LOTAG " ) ;
g_iHiTagID = Gv_GetVarIndex ( " HITAG " ) ;
g_iTextureID = Gv_GetVarIndex ( " TEXTURE " ) ;
g_iThisActorID = Gv_GetVarIndex ( " THISACTOR " ) ;
2008-06-09 23:41:54 +00:00
2009-01-07 14:05:13 +00:00
g_iSpriteVarID = Gv_GetVarIndex ( " sprite " ) ;
g_iSectorVarID = Gv_GetVarIndex ( " sector " ) ;
g_iWallVarID = Gv_GetVarIndex ( " wall " ) ;
g_iPlayerVarID = Gv_GetVarIndex ( " player " ) ;
g_iActorVarID = Gv_GetVarIndex ( " actorvar " ) ;
2008-11-20 14:06:36 +00:00
Bmemcpy ( & ProjectileData , & DefaultProjectileData , sizeof ( ProjectileData ) ) ;
2008-06-09 23:41:54 +00:00
//AddLog("EOF:ResetWeaponDefaults");
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
static void Gv_AddSystemVars ( void )
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
// only call ONCE
char aszBuf [ 64 ] ;
2008-11-20 14:06:36 +00:00
//AddLog("Gv_AddSystemVars");
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , KNEE_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 7 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 14 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_NOVISIBLE | WEAPON_RANDOMRESTART | WEAPON_AUTOMATIC , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , KNEE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , KNEE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , PISTOL_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 20 : 12 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 50 : 27 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 2 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 5 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? WEAPON_HOLSTER_CLEARS_CLIP : 0 | WEAPON_RELOAD_TIMING , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTSPARK1 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 2 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHELL , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , PISTOL_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , PISTOL_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUN_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 13 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 4 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 30 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_CHECKATRELOAD , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUN , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 24 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUNSHELL , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 7 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUN_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 15 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUN_COCK , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , SHOTGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHOTGUN_COCK , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CHAINGUN_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 12 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_AUTOMATIC | WEAPON_FIREEVERYTHIRD | WEAPON_AMMOPERSHOT | WEAPON_SPAWNTYPE3 | WEAPON_RESET , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CHAINGUN , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 1 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHELL , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CHAINGUN_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , CHAINGUN_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , RPG_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 4 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 20 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , RPG , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , RPG_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , HANDBOMB_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 30 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 6 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 19 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 12 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_THROWIT , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , HEAVYHBOMB , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , HANDBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHRINKER_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 10 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 30 : 12 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_GLOWS , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHRINKER , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SHRINKER_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , SHRINKER_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , DEVISTATOR_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 6 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 5 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_FIREEVERYOTHER | WEAPON_AMMOPERSHOT , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , RPG , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 2 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CAT_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , DEVISTATOR_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , TRIPBOMB_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 16 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 16 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 7 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_STANDSTILL | WEAPON_CHECKATRELOAD , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , HANDHOLDINGLASER , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , TRIPBOMB_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , FREEZE_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 5 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_RESET , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , FREEZEBLAST , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CAT_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , CAT_FIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , FREEZE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
/////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , HANDREMOTE_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 10 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 2 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 10 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_BOMB_TRIGGER | WEAPON_NOVISIBLE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , HANDREMOTE_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
///////////////////////////////////////////////////////
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , GROW_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 3 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 30 : 5 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , WEAPON_GLOWS , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , GROWSPARK , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 2 : 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? SHELL : 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , NAM ? 0 : EXPANDERSHOOT , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , EJECT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , INSERT_CLIP , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
2008-11-20 14:06:36 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , GROW_WEAPON ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( aszBuf , SELECT_WEAPON , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " GRENADE_LIFETIME " , NAM_GRENADE_LIFETIME , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " GRENADE_LIFETIME_VAR " , NAM_GRENADE_LIFETIME_VAR , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " STICKYBOMB_LIFETIME " , NAM_GRENADE_LIFETIME , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " STICKYBOMB_LIFETIME_VAR " , NAM_GRENADE_LIFETIME_VAR , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " TRIPBOMB_CONTROL " , TRIPBOMB_TRIPWIRE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " PIPEBOMB_CONTROL " , NAM ? PIPEBOMB_TIMER : PIPEBOMB_REMOTE , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " RESPAWN_MONSTERS " , ( intptr_t ) & ud . respawn_monsters , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " RESPAWN_ITEMS " , ( intptr_t ) & ud . respawn_items , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " RESPAWN_INVENTORY " , ( intptr_t ) & ud . respawn_inventory , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " MONSTERS_OFF " , ( intptr_t ) & ud . monsters_off , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " MARKER " , ( intptr_t ) & ud . marker , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " FFIRE " , ( intptr_t ) & ud . ffire , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " LEVEL " , ( intptr_t ) & ud . level_number , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " VOLUME " , ( intptr_t ) & ud . volume_number , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " COOP " , ( intptr_t ) & ud . coop , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " MULTIMODE " , ( intptr_t ) & ud . multimode , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " WEAPON " , 0 , GAMEVAR_PERPLAYER | GAMEVAR_READONLY | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " WORKSLIKE " , 0 , GAMEVAR_PERPLAYER | GAMEVAR_READONLY | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " RETURN " , 0 , GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " ZRANGE " , 4 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " ANGRANGE " , 18 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " AUTOAIMANGLE " , 0 , GAMEVAR_PERPLAYER | GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " LOTAG " , 0 , GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " HITAG " , 0 , GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " TEXTURE " , 0 , GAMEVAR_SYSTEM ) ;
Gv_NewVar ( " THISACTOR " , 0 , GAMEVAR_READONLY | GAMEVAR_SYSTEM ) ;
2009-01-07 14:05:13 +00:00
// special vars for struct access
2009-02-02 01:49:14 +00:00
Gv_NewVar ( " sprite " , - 1 , GAMEVAR_READONLY | GAMEVAR_SYSTEM | GAMEVAR_SPECIAL ) ;
Gv_NewVar ( " sector " , - 1 , GAMEVAR_READONLY | GAMEVAR_SYSTEM | GAMEVAR_SPECIAL ) ;
Gv_NewVar ( " wall " , - 1 , GAMEVAR_READONLY | GAMEVAR_SYSTEM | GAMEVAR_SPECIAL ) ;
Gv_NewVar ( " player " , - 1 , GAMEVAR_READONLY | GAMEVAR_SYSTEM | GAMEVAR_SPECIAL ) ;
Gv_NewVar ( " actorvar " , - 1 , GAMEVAR_READONLY | GAMEVAR_SYSTEM | GAMEVAR_SPECIAL ) ;
2009-01-07 14:05:13 +00:00
2008-12-13 07:23:13 +00:00
Gv_NewVar ( " myconnectindex " , ( intptr_t ) & myconnectindex , GAMEVAR_READONLY | GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " screenpeek " , ( intptr_t ) & screenpeek , GAMEVAR_READONLY | GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " currentweapon " , ( intptr_t ) & g_currentweapon , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " gs " , ( intptr_t ) & g_gs , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " looking_arc " , ( intptr_t ) & g_looking_arc , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " gun_pos " , ( intptr_t ) & g_gun_pos , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " weapon_xoffset " , ( intptr_t ) & g_weapon_xoffset , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " weaponcount " , ( intptr_t ) & g_kb , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " looking_angSR1 " , ( intptr_t ) & g_looking_angSR1 , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " xdim " , ( intptr_t ) & xdim , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " ydim " , ( intptr_t ) & ydim , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " windowx1 " , ( intptr_t ) & windowx1 , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " windowx2 " , ( intptr_t ) & windowx2 , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " windowy1 " , ( intptr_t ) & windowy1 , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " windowy2 " , ( intptr_t ) & windowy2 , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " totalclock " , ( intptr_t ) & totalclock , GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " lastvisinc " , ( intptr_t ) & lastvisinc , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " numsectors " , ( intptr_t ) & numsectors , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " current_menu " , ( intptr_t ) & g_currentMenu , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " numplayers " , ( intptr_t ) & numplayers , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " viewingrange " , ( intptr_t ) & viewingrange , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " yxaspect " , ( intptr_t ) & yxaspect , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " gravitationalconstant " , ( intptr_t ) & g_spriteGravity , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " gametype_flags " , ( intptr_t ) & GametypeFlags [ ud . coop ] , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " framerate " , ( intptr_t ) & g_currentFrameRate , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_READONLY | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " CLIPMASK0 " , CLIPMASK0 , GAMEVAR_SYSTEM | GAMEVAR_READONLY ) ;
Gv_NewVar ( " CLIPMASK1 " , CLIPMASK1 , GAMEVAR_SYSTEM | GAMEVAR_READONLY ) ;
Gv_NewVar ( " camerax " , ( intptr_t ) & ud . camerax , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " cameray " , ( intptr_t ) & ud . cameray , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " cameraz " , ( intptr_t ) & ud . cameraz , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " cameraang " , ( intptr_t ) & ud . cameraang , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " camerahoriz " , ( intptr_t ) & ud . camerahoriz , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " camerasect " , ( intptr_t ) & ud . camerasect , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " cameradist " , ( intptr_t ) & g_cameraDistance , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " cameraclock " , ( intptr_t ) & g_cameraClock , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
2009-01-13 12:23:18 +00:00
Gv_NewVar ( " myx " , ( intptr_t ) & my . x , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myy " , ( intptr_t ) & my . y , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myz " , ( intptr_t ) & my . z , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyx " , ( intptr_t ) & omy . x , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyy " , ( intptr_t ) & omy . y , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyz " , ( intptr_t ) & omy . z , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myvelx " , ( intptr_t ) & myvel . x , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myvely " , ( intptr_t ) & myvel . y , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myvelz " , ( intptr_t ) & myvel . z , GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK ) ;
2008-12-13 07:23:13 +00:00
Gv_NewVar ( " myhoriz " , ( intptr_t ) & myhoriz , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myhorizoff " , ( intptr_t ) & myhorizoff , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyhoriz " , ( intptr_t ) & omyhoriz , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyhorizoff " , ( intptr_t ) & omyhorizoff , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myang " , ( intptr_t ) & myang , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " omyang " , ( intptr_t ) & omyang , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " mycursectnum " , ( intptr_t ) & mycursectnum , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myjumpingcounter " , ( intptr_t ) & myjumpingcounter , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myjumpingtoggle " , ( intptr_t ) & myjumpingtoggle , GAMEVAR_SYSTEM | GAMEVAR_CHARPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myonground " , ( intptr_t ) & myonground , GAMEVAR_SYSTEM | GAMEVAR_CHARPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myhardlanding " , ( intptr_t ) & myhardlanding , GAMEVAR_SYSTEM | GAMEVAR_CHARPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " myreturntocenter " , ( intptr_t ) & myreturntocenter , GAMEVAR_SYSTEM | GAMEVAR_CHARPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " display_mirror " , ( intptr_t ) & display_mirror , GAMEVAR_SYSTEM | GAMEVAR_CHARPTR | GAMEVAR_SYNCCHECK ) ;
Gv_NewVar ( " randomseed " , ( intptr_t ) & randomseed , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
Gv_NewVar ( " NUMWALLS " , ( intptr_t ) & numwalls , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " NUMSECTORS " , ( intptr_t ) & numsectors , GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_READONLY ) ;
Gv_NewVar ( " lastsavepos " , ( intptr_t ) & g_lastSaveSlot , GAMEVAR_SYSTEM | GAMEVAR_INTPTR ) ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
void Gv_Init ( void )
2006-12-10 06:49:01 +00:00
{
2008-06-09 23:41:54 +00:00
// only call ONCE
2006-12-10 06:49:01 +00:00
2008-06-09 23:41:54 +00:00
// initprintf("Initializing game variables\n");
2008-11-20 14:06:36 +00:00
//AddLog("Gv_Init");
2006-12-10 06:49:01 +00:00
2008-11-20 14:06:36 +00:00
Gv_Clear ( ) ;
Gv_AddSystemVars ( ) ;
Gv_InitWeaponPointers ( ) ;
Gv_ResetSystemDefaults ( ) ;
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
void Gv_InitWeaponPointers ( void )
2006-12-10 06:49:01 +00:00
{
2009-01-09 09:29:17 +00:00
int32_t i ;
2008-06-09 23:41:54 +00:00
char aszBuf [ 64 ] ;
// called from game Init AND when level is loaded...
2008-11-20 14:06:36 +00:00
//AddLog("Gv_InitWeaponPointers");
2008-06-09 23:41:54 +00:00
2009-02-19 16:47:54 +00:00
for ( i = ( MAX_WEAPONS - 1 ) ; i > = 0 ; i - - )
2008-06-09 23:41:54 +00:00
{
Bsprintf ( aszBuf , " WEAPON%d_CLIP " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponClip [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
if ( ! aplWeaponClip [ i ] )
{
2008-11-20 14:06:36 +00:00
initprintf ( " ERROR: NULL weapon! WTF?! \n " ) ;
// exit(0);
G_Shutdown ( ) ;
2008-06-09 23:41:54 +00:00
}
Bsprintf ( aszBuf , " WEAPON%d_RELOAD " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReload [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIREDELAY " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFireDelay [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_TOTALTIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponTotalTime [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_HOLDDELAY " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponHoldDelay [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FLAGS " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFlags [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOOTS " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponShoots [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWNTIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSpawnTime [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SPAWN " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSpawn [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SHOTSPERBURST " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponShotsPerBurst [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_WORKSLIKE " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponWorksLike [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_INITIALSOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponInitialSound [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_FIRESOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponFireSound [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2TIME " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSound2Time [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_SOUND2SOUND " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponSound2Sound [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND1 " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReloadSound1 [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
Bsprintf ( aszBuf , " WEAPON%d_RELOADSOUND2 " , i ) ;
2008-11-20 14:06:36 +00:00
aplWeaponReloadSound2 [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
Bsprintf ( aszBuf , " WEAPON%d_SELECTSOUND " , i ) ;
aplWeaponSelectSound [ i ] = Gv_GetVarDataPtr ( aszBuf ) ;
2008-06-09 23:41:54 +00:00
}
2006-12-10 06:49:01 +00:00
}
2008-11-20 14:06:36 +00:00
void Gv_RefreshPointers ( void )
2007-04-17 05:54:12 +00:00
{
2008-12-21 22:46:55 +00:00
aGameVars [ Gv_GetVarIndex ( " RESPAWN_MONSTERS " ) ] . val . lValue = ( intptr_t ) & ud . respawn_monsters ;
aGameVars [ Gv_GetVarIndex ( " RESPAWN_ITEMS " ) ] . val . lValue = ( intptr_t ) & ud . respawn_items ;
aGameVars [ Gv_GetVarIndex ( " RESPAWN_INVENTORY " ) ] . val . lValue = ( intptr_t ) & ud . respawn_inventory ;
aGameVars [ Gv_GetVarIndex ( " MONSTERS_OFF " ) ] . val . lValue = ( intptr_t ) & ud . monsters_off ;
aGameVars [ Gv_GetVarIndex ( " MARKER " ) ] . val . lValue = ( intptr_t ) & ud . marker ;
aGameVars [ Gv_GetVarIndex ( " FFIRE " ) ] . val . lValue = ( intptr_t ) & ud . ffire ;
aGameVars [ Gv_GetVarIndex ( " LEVEL " ) ] . val . lValue = ( intptr_t ) & ud . level_number ;
aGameVars [ Gv_GetVarIndex ( " VOLUME " ) ] . val . lValue = ( intptr_t ) & ud . volume_number ;
aGameVars [ Gv_GetVarIndex ( " COOP " ) ] . val . lValue = ( intptr_t ) & ud . coop ;
aGameVars [ Gv_GetVarIndex ( " MULTIMODE " ) ] . val . lValue = ( intptr_t ) & ud . multimode ;
aGameVars [ Gv_GetVarIndex ( " myconnectindex " ) ] . val . lValue = ( intptr_t ) & myconnectindex ;
aGameVars [ Gv_GetVarIndex ( " screenpeek " ) ] . val . lValue = ( intptr_t ) & screenpeek ;
aGameVars [ Gv_GetVarIndex ( " currentweapon " ) ] . val . lValue = ( intptr_t ) & g_currentweapon ;
aGameVars [ Gv_GetVarIndex ( " gs " ) ] . val . lValue = ( intptr_t ) & g_gs ;
aGameVars [ Gv_GetVarIndex ( " looking_arc " ) ] . val . lValue = ( intptr_t ) & g_looking_arc ;
aGameVars [ Gv_GetVarIndex ( " gun_pos " ) ] . val . lValue = ( intptr_t ) & g_gun_pos ;
aGameVars [ Gv_GetVarIndex ( " weapon_xoffset " ) ] . val . lValue = ( intptr_t ) & g_weapon_xoffset ;
aGameVars [ Gv_GetVarIndex ( " weaponcount " ) ] . val . lValue = ( intptr_t ) & g_kb ;
aGameVars [ Gv_GetVarIndex ( " looking_angSR1 " ) ] . val . lValue = ( intptr_t ) & g_looking_angSR1 ;
aGameVars [ Gv_GetVarIndex ( " xdim " ) ] . val . lValue = ( intptr_t ) & xdim ;
aGameVars [ Gv_GetVarIndex ( " ydim " ) ] . val . lValue = ( intptr_t ) & ydim ;
aGameVars [ Gv_GetVarIndex ( " windowx1 " ) ] . val . lValue = ( intptr_t ) & windowx1 ;
aGameVars [ Gv_GetVarIndex ( " windowx2 " ) ] . val . lValue = ( intptr_t ) & windowx2 ;
aGameVars [ Gv_GetVarIndex ( " windowy1 " ) ] . val . lValue = ( intptr_t ) & windowy1 ;
aGameVars [ Gv_GetVarIndex ( " windowy2 " ) ] . val . lValue = ( intptr_t ) & windowy2 ;
aGameVars [ Gv_GetVarIndex ( " totalclock " ) ] . val . lValue = ( intptr_t ) & totalclock ;
aGameVars [ Gv_GetVarIndex ( " lastvisinc " ) ] . val . lValue = ( intptr_t ) & lastvisinc ;
aGameVars [ Gv_GetVarIndex ( " numsectors " ) ] . val . lValue = ( intptr_t ) & numsectors ;
aGameVars [ Gv_GetVarIndex ( " numplayers " ) ] . val . lValue = ( intptr_t ) & numplayers ;
aGameVars [ Gv_GetVarIndex ( " current_menu " ) ] . val . lValue = ( intptr_t ) & g_currentMenu ;
aGameVars [ Gv_GetVarIndex ( " viewingrange " ) ] . val . lValue = ( intptr_t ) & viewingrange ;
aGameVars [ Gv_GetVarIndex ( " yxaspect " ) ] . val . lValue = ( intptr_t ) & yxaspect ;
aGameVars [ Gv_GetVarIndex ( " gravitationalconstant " ) ] . val . lValue = ( intptr_t ) & g_spriteGravity ;
aGameVars [ Gv_GetVarIndex ( " gametype_flags " ) ] . val . lValue = ( intptr_t ) & GametypeFlags [ ud . coop ] ;
aGameVars [ Gv_GetVarIndex ( " framerate " ) ] . val . lValue = ( intptr_t ) & g_currentFrameRate ;
aGameVars [ Gv_GetVarIndex ( " camerax " ) ] . val . lValue = ( intptr_t ) & ud . camerax ;
aGameVars [ Gv_GetVarIndex ( " cameray " ) ] . val . lValue = ( intptr_t ) & ud . cameray ;
aGameVars [ Gv_GetVarIndex ( " cameraz " ) ] . val . lValue = ( intptr_t ) & ud . cameraz ;
aGameVars [ Gv_GetVarIndex ( " cameraang " ) ] . val . lValue = ( intptr_t ) & ud . cameraang ;
aGameVars [ Gv_GetVarIndex ( " camerahoriz " ) ] . val . lValue = ( intptr_t ) & ud . camerahoriz ;
aGameVars [ Gv_GetVarIndex ( " camerasect " ) ] . val . lValue = ( intptr_t ) & ud . camerasect ;
aGameVars [ Gv_GetVarIndex ( " cameradist " ) ] . val . lValue = ( intptr_t ) & g_cameraDistance ;
aGameVars [ Gv_GetVarIndex ( " cameraclock " ) ] . val . lValue = ( intptr_t ) & g_cameraClock ;
2009-01-13 12:23:18 +00:00
aGameVars [ Gv_GetVarIndex ( " myx " ) ] . val . lValue = ( intptr_t ) & my . x ;
aGameVars [ Gv_GetVarIndex ( " myy " ) ] . val . lValue = ( intptr_t ) & my . y ;
aGameVars [ Gv_GetVarIndex ( " myz " ) ] . val . lValue = ( intptr_t ) & my . z ;
aGameVars [ Gv_GetVarIndex ( " omyx " ) ] . val . lValue = ( intptr_t ) & omy . x ;
aGameVars [ Gv_GetVarIndex ( " omyy " ) ] . val . lValue = ( intptr_t ) & omy . y ;
aGameVars [ Gv_GetVarIndex ( " omyz " ) ] . val . lValue = ( intptr_t ) & omy . z ;
aGameVars [ Gv_GetVarIndex ( " myvelx " ) ] . val . lValue = ( intptr_t ) & myvel . x ;
aGameVars [ Gv_GetVarIndex ( " myvely " ) ] . val . lValue = ( intptr_t ) & myvel . y ;
aGameVars [ Gv_GetVarIndex ( " myvelz " ) ] . val . lValue = ( intptr_t ) & myvel . z ;
2008-12-21 22:46:55 +00:00
aGameVars [ Gv_GetVarIndex ( " myhoriz " ) ] . val . lValue = ( intptr_t ) & myhoriz ;
aGameVars [ Gv_GetVarIndex ( " myhorizoff " ) ] . val . lValue = ( intptr_t ) & myhorizoff ;
aGameVars [ Gv_GetVarIndex ( " omyhoriz " ) ] . val . lValue = ( intptr_t ) & omyhoriz ;
aGameVars [ Gv_GetVarIndex ( " omyhorizoff " ) ] . val . lValue = ( intptr_t ) & omyhorizoff ;
aGameVars [ Gv_GetVarIndex ( " myang " ) ] . val . lValue = ( intptr_t ) & myang ;
aGameVars [ Gv_GetVarIndex ( " omyang " ) ] . val . lValue = ( intptr_t ) & omyang ;
aGameVars [ Gv_GetVarIndex ( " mycursectnum " ) ] . val . lValue = ( intptr_t ) & mycursectnum ;
aGameVars [ Gv_GetVarIndex ( " myjumpingcounter " ) ] . val . lValue = ( intptr_t ) & myjumpingcounter ;
aGameVars [ Gv_GetVarIndex ( " myjumpingtoggle " ) ] . val . lValue = ( intptr_t ) & myjumpingtoggle ;
aGameVars [ Gv_GetVarIndex ( " myonground " ) ] . val . lValue = ( intptr_t ) & myonground ;
aGameVars [ Gv_GetVarIndex ( " myhardlanding " ) ] . val . lValue = ( intptr_t ) & myhardlanding ;
aGameVars [ Gv_GetVarIndex ( " myreturntocenter " ) ] . val . lValue = ( intptr_t ) & myreturntocenter ;
aGameVars [ Gv_GetVarIndex ( " display_mirror " ) ] . val . lValue = ( intptr_t ) & display_mirror ;
aGameVars [ Gv_GetVarIndex ( " randomseed " ) ] . val . lValue = ( intptr_t ) & randomseed ;
aGameVars [ Gv_GetVarIndex ( " NUMWALLS " ) ] . val . lValue = ( intptr_t ) & numwalls ;
aGameVars [ Gv_GetVarIndex ( " NUMSECTORS " ) ] . val . lValue = ( intptr_t ) & numsectors ;
aGameVars [ Gv_GetVarIndex ( " lastsavepos " ) ] . val . lValue = ( intptr_t ) & g_lastSaveSlot ;
2007-04-17 05:54:12 +00:00
}