2004-08-23 00:15:46 +00:00
/*
Copyright ( C ) 1996 - 1997 Id Software , Inc .
This program is free software ; you can redistribute it and / or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation ; either version 2
of the License , or ( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
See the GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*/
2009-11-04 21:16:50 +00:00
struct client_s ;
struct edict_s ;
2004-08-23 00:15:46 +00:00
# define MAX_PROGS 64
# define MAXADDONS 16
2011-05-20 04:10:46 +00:00
void SVQ1_CvarChanged ( cvar_t * var ) ;
2004-08-23 00:15:46 +00:00
# define NewGetEdictFieldValue GetEdictFieldValue
void Q_SetProgsParms ( qboolean forcompiler ) ;
2012-11-29 13:37:48 +00:00
void PR_Deinit ( void ) ; //server shutting down
void PR_Shutdown ( void ) ; //server quitting
2015-01-02 05:20:56 +00:00
void PR_LoadGlabalStruct ( qboolean muted ) ;
2004-08-23 00:15:46 +00:00
void Q_InitProgs ( void ) ;
2016-10-22 07:06:51 +00:00
void PR_SpawnInitialEntities ( const char * file ) ;
2004-08-23 00:15:46 +00:00
void PR_RegisterFields ( void ) ;
void PR_Init ( void ) ;
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéíóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
void QDECL ED_Spawned ( struct edict_s * ent , int loading ) ;
2017-04-18 11:12:17 +00:00
void SSQC_MapEntityEdited ( int modelidx , int idx , const char * newdata ) ;
2018-10-11 10:31:23 +00:00
void SV_SetEntityButtons ( struct edict_s * ent , unsigned int buttonbits ) ;
2009-11-04 21:16:50 +00:00
qboolean SV_RunFullQCMovement ( struct client_s * client , usercmd_t * ucmd ) ;
2017-08-14 16:38:44 +00:00
qboolean PR_KrimzonParseCommand ( const char * s ) ;
qboolean PR_ParseClusterEvent ( const char * dest , const char * source , const char * cmd , const char * info ) ;
qboolean PR_UserCmd ( const char * cmd ) ;
2013-08-21 07:14:39 +00:00
qboolean PR_ConsoleCmd ( const char * cmd ) ;
2004-08-23 00:15:46 +00:00
2010-12-18 17:02:47 +00:00
void PRSV_RunThreads ( void ) ;
2004-08-23 00:15:46 +00:00
# define PR_MAINPROGS 0 //this is a constant that should really be phased out. But seeing as QCLIB requires some sort of master progs due to extern funcs...
//maybe go through looking for extern funcs, and remember which were not allocated. It would then be a first come gets priority. Not too bad I supppose.
extern int compileactive ;
2015-08-22 02:59:01 +00:00
typedef enum { PROG_NONE , PROG_QW , PROG_NQ , PROG_H2 , PROG_PREREL , PROG_TENEBRAE , PROG_UNKNOWN } progstype_t ; //unknown obtains NQ behaviour
2004-08-23 00:15:46 +00:00
extern progstype_t progstype ;
2016-07-12 00:40:13 +00:00
# include "progslib.h"
2004-08-23 00:15:46 +00:00
typedef struct edict_s
{
2005-03-28 00:11:59 +00:00
//these 5 shared with qclib
2016-07-12 00:40:13 +00:00
enum ereftype_e ereftype ;
float freetime ; // sv.time when the object was freed
int entnum ;
unsigned int fieldsize ;
pbool readonly ; //world
2009-11-04 21:16:50 +00:00
# ifdef VM_Q1
stdentvars_t * v ;
2007-09-02 19:55:17 +00:00
extentvars_t * xv ;
2009-11-04 21:16:50 +00:00
# else
union {
stdentvars_t * v ;
stdentvars_t * xv ;
} ;
2007-09-02 19:55:17 +00:00
# endif
2009-11-04 21:16:50 +00:00
/*qc lib doesn't care about the rest*/
2004-08-23 00:15:46 +00:00
2009-11-04 21:16:50 +00:00
/*these are shared with csqc*/
2017-08-29 02:29:06 +00:00
# ifdef USEAREAGRID
areagridlink_t gridareas [ AREAGRIDPERENT ] ; //on overflow, use the inefficient overflow list.
size_t gridareasequence ; //used to avoid iterrating the same ent twice.
# else
2009-11-04 21:16:50 +00:00
link_t area ;
2017-08-29 02:29:06 +00:00
# endif
2013-05-07 19:40:44 +00:00
pvscache_t pvsinfo ;
2016-07-12 00:40:13 +00:00
int lastruntime ;
int solidsize ;
2015-02-02 08:01:53 +00:00
# ifdef USERBE
2018-07-22 11:49:37 +00:00
entityrbe_t rbe ;
2009-11-04 21:16:50 +00:00
# endif
/*csqc doesn't reference the rest*/
2004-08-23 00:15:46 +00:00
added r_meshpitch cvar that allows for fixing the unfixable mesh pitch bug from vanilla... needs a better name... do note that this will break pretty much any mod, so this is really only for TCs designed to use it. Its likely that I missed places.
nqsv: added support for spectators with nq clients. the angles are a bit rough, but hey. need to do something about frags so nq clients know who's a spectator. use 'cmd observe' to get an nq client to spectate on an fte server (then attack/jump behave the same as in qw clients).
nqsv: rewrote EF_MUZZLEFLASH handling, so svc_muzzleflash is now translated properly to EF_MUZZLEFLASH, and vice versa. No more missing muzzleflashes!
added screenshot_cubemap, so you can actually pre-generate cubemaps with fte (which can be used for reflections or whatever).
misc fixes (server crash, a couple of other less important ones).
external files based on a model's name will now obey r_replacemodels properly, instead of needing to use foo.mdl_0.skin for foo.md3.
identify <playernum> should now use the correct masked ip, instead of abrubtly failing (reported by kt)
vid_toggle console command should now obey vid_width and vid_height when switching to fullscreen, but only if vid_fullscreen is actually set, which should make it seem better behaved (reported by kt).
qcc: cleaned up sym->symboldata[sym->ofs] to be more consistent at all stages.
qcc: typedef float vec4[4]; now works to define a float array with 4 elements (however, it will be passed by-value rather than by-reference).
qcc: cleaned up optional vs __out ordering issues.
qccgui: shift+f3 searches backwards
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5064 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-02-27 09:34:35 +00:00
# ifdef NQPROT
float muzzletime ; //nq clients need special handling to retain EF_MUZZLEFLASH while not breaking qw clients running nq mods.
# endif
2004-08-23 00:15:46 +00:00
entity_state_t baseline ;
// other fields from progs come immediately after
} edict_t ;
added r_meshpitch cvar that allows for fixing the unfixable mesh pitch bug from vanilla... needs a better name... do note that this will break pretty much any mod, so this is really only for TCs designed to use it. Its likely that I missed places.
nqsv: added support for spectators with nq clients. the angles are a bit rough, but hey. need to do something about frags so nq clients know who's a spectator. use 'cmd observe' to get an nq client to spectate on an fte server (then attack/jump behave the same as in qw clients).
nqsv: rewrote EF_MUZZLEFLASH handling, so svc_muzzleflash is now translated properly to EF_MUZZLEFLASH, and vice versa. No more missing muzzleflashes!
added screenshot_cubemap, so you can actually pre-generate cubemaps with fte (which can be used for reflections or whatever).
misc fixes (server crash, a couple of other less important ones).
external files based on a model's name will now obey r_replacemodels properly, instead of needing to use foo.mdl_0.skin for foo.md3.
identify <playernum> should now use the correct masked ip, instead of abrubtly failing (reported by kt)
vid_toggle console command should now obey vid_width and vid_height when switching to fullscreen, but only if vid_fullscreen is actually set, which should make it seem better behaved (reported by kt).
qcc: cleaned up sym->symboldata[sym->ofs] to be more consistent at all stages.
qcc: typedef float vec4[4]; now works to define a float array with 4 elements (however, it will be passed by-value rather than by-reference).
qcc: cleaned up optional vs __out ordering issues.
qccgui: shift+f3 searches backwards
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5064 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-02-27 09:34:35 +00:00
2004-08-23 00:15:46 +00:00
2016-07-12 00:40:13 +00:00
2004-08-23 00:15:46 +00:00
# undef pr_global_struct
2011-10-27 16:16:29 +00:00
# define pr_global_struct *pr_global_ptrs
2005-06-22 17:10:13 +00:00
2011-10-27 16:16:29 +00:00
extern globalptrs_t * pr_global_ptrs ;
2004-08-23 00:15:46 +00:00
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéíóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
extern pubprogfuncs_t * svprogfuncs ; //instance
2004-08-23 00:15:46 +00:00
extern progparms_t svprogparms ;
extern progsnum_t svmainprogs ;
extern progsnum_t clmainprogs ;
2009-03-03 01:52:30 +00:00
# define HLEDICT_FROM_AREA(l) STRUCT_FROM_LINK(l,hledict_t,area)
2004-08-23 00:15:46 +00:00
# define Q2EDICT_FROM_AREA(l) STRUCT_FROM_LINK(l,q2edict_t,area)
2005-08-26 22:56:51 +00:00
# define Q3EDICT_FROM_AREA(l) STRUCT_FROM_LINK(l,q3serverEntity_t,area)
2004-08-23 00:15:46 +00:00
extern func_t SpectatorConnect ;
extern func_t SpectatorThink ;
extern func_t SpectatorDisconnect ;
extern func_t SV_PlayerPhysicsQC ;
extern func_t EndFrameQC ;
qboolean PR_QCChat ( char * text , int say_type ) ;
2004-08-31 23:54:54 +00:00
void PR_ClientUserInfoChanged ( char * name , char * oldivalue , char * newvalue ) ;
void PR_LocalInfoChanged ( char * name , char * oldivalue , char * newvalue ) ;
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéíóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
void PF_InitTempStrings ( pubprogfuncs_t * prinst ) ;
2006-01-28 02:35:40 +00:00
2014-03-30 08:55:06 +00:00
# ifdef VM_LUA
qboolean PR_LoadLua ( void ) ;
# endif
2007-09-03 22:37:13 +00:00
# ifdef VM_Q1
2014-09-17 03:04:08 +00:00
# define VMFSID_Q1QVM 57235 //the q1qvm zone tag that is freed when the module is purged.
2007-09-03 22:37:13 +00:00
struct client_s ;
2017-10-12 12:02:25 +00:00
void Q1QVM_Shutdown ( qboolean notifygame ) ;
2007-09-03 22:37:13 +00:00
qboolean PR_LoadQ1QVM ( void ) ;
void Q1QVM_ClientConnect ( struct client_s * cl ) ;
qboolean Q1QVM_GameConsoleCommand ( void ) ;
qboolean Q1QVM_ClientSay ( edict_t * player , qboolean team ) ;
qboolean Q1QVM_UserInfoChanged ( edict_t * player ) ;
void Q1QVM_PlayerPreThink ( void ) ;
void Q1QVM_RunPlayerThink ( void ) ;
void Q1QVM_PostThink ( void ) ;
2017-10-12 12:02:25 +00:00
void Q1QVM_StartFrame ( qboolean botsarespecialsnowflakes ) ;
2007-09-03 22:37:13 +00:00
void Q1QVM_Blocked ( void ) ;
void Q1QVM_SetNewParms ( void ) ;
void Q1QVM_SetChangeParms ( void ) ;
2015-06-20 14:22:06 +00:00
qboolean Q1QVM_ClientCommand ( void ) ;
2009-07-14 23:42:54 +00:00
void Q1QVM_GameCodePausedTic ( float pausedduration ) ;
2007-09-03 22:37:13 +00:00
void Q1QVM_DropClient ( struct client_s * cl ) ;
void Q1QVM_ChainMoved ( void ) ;
void Q1QVM_EndFrame ( void ) ;
# endif