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 included ( GNU . txt ) 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 .
*/
/* ZOID
*
* Player camera tracking in Spectator mode
*
* This takes over player controls for spectator automatic camera .
* Player moves as a spectator , but the camera tracks and enemy player
*/
# include "quakedef.h"
# include "winquake.h"
# define PM_SPECTATORMAXSPEED 500
# define PM_STOPSPEED 100
# define PM_MAXSPEED 320
# define BUTTON_JUMP 2
# define BUTTON_ATTACK 1
# define MAX_ANGLE_TURN 10
char cl_spectatorgroup [ ] = " Spectator Tracking " ;
2015-06-12 14:44:50 +00:00
enum
{
TM_USER , //user hit jump and changed pov explicitly
TM_HIGHTRACK , //tracking the player with the highest frags
TM_KILLER , //switch to the previous person's killer.
TM_MODHINTS , //using the mod's //at hints
TM_STATS //parsing mvd stats and making our own choices
} autotrackmode ;
char * autotrack_statsrule ;
static void QDECL CL_AutoTrackChanged ( cvar_t * v , char * oldval )
{
Cam_AutoTrack_Update ( v - > string ) ;
}
2004-08-23 00:15:46 +00:00
// track high fragger
2015-06-12 14:44:50 +00:00
cvar_t cl_autotrack = CVARCD ( " cl_autotrack " , " auto " , CL_AutoTrackChanged , " Specifies the default tracking mode at the start of the map. Use the 'autotrack' command to reset/apply an auto-tracking mode without changing the default. \n Valid values are: high, ^hkiller^h, mod, user. Other values are treated as weighting scripts for mvd playback, where available. " ) ;
2015-06-15 20:11:27 +00:00
cvar_t cl_hightrack = CVARD ( " cl_hightrack " , " 0 " , " Obsolete. If you want hightrack, use '[cl_]autotrack high' instead. " ) ;
2004-08-23 00:15:46 +00:00
2015-06-12 14:44:50 +00:00
//cvar_t cl_camera_maxpitch = {"cl_camera_maxpitch", "10" };
//cvar_t cl_camera_maxyaw = {"cl_camera_maxyaw", "30" };
2006-02-11 02:09:43 +00:00
cvar_t cl_chasecam = SCVAR ( " cl_chasecam " , " 1 " ) ;
2006-09-17 00:59:22 +00:00
cvar_t cl_selfcam = SCVAR ( " cl_selfcam " , " 1 " ) ;
2004-08-23 00:15:46 +00:00
2015-06-12 14:44:50 +00:00
void Cam_AutoTrack_Update ( const char * mode )
{
if ( ! mode )
mode = cl_autotrack . string ;
Z_Free ( autotrack_statsrule ) ;
autotrack_statsrule = NULL ;
if ( ! * mode | | ! Q_strcasecmp ( mode , " auto " ) )
{
if ( cl_hightrack . ival )
autotrackmode = TM_HIGHTRACK ;
else
autotrackmode = TM_MODHINTS ;
}
else if ( ! Q_strcasecmp ( mode , " high " ) )
autotrackmode = TM_HIGHTRACK ;
else if ( ! Q_strcasecmp ( mode , " killer " ) )
autotrackmode = TM_KILLER ;
else if ( ! Q_strcasecmp ( mode , " mod " ) )
autotrackmode = TM_MODHINTS ;
else if ( ! Q_strcasecmp ( mode , " user " ) | | ! Q_strcasecmp ( mode , " off " ) )
autotrackmode = TM_USER ;
else
{
autotrackmode = TM_STATS ;
autotrack_statsrule = Z_StrDup ( mode ) ;
}
}
static void Cam_AutoTrack_f ( void )
{
if ( * Cmd_Argv ( 1 ) )
Cam_AutoTrack_Update ( Cmd_Argv ( 1 ) ) ;
else
Cam_AutoTrack_Update ( NULL ) ;
}
static float CL_TrackScore ( player_info_t * pl , char * rule )
{
float score = 0 ;
float val ;
int r ;
while ( * rule )
{
r = * rule + + ;
if ( r = = ' f ' )
val = pl - > frags ;
else if ( r = = ' l ' )
val = pl - > ping ;
else if ( r = = ' h ' )
val = pl - > statsf [ STAT_HEALTH ] ;
else if ( r = = ' q ' )
val = ( pl - > stats [ STAT_ITEMS ] & IT_QUAD ) ? 1 : 0 ;
else if ( r = = ' p ' )
val = ( pl - > stats [ STAT_ITEMS ] & IT_INVULNERABILITY ) ? 1 : 0 ;
else if ( r = = ' s ' )
{
int i = strtol ( rule , & rule , 10 ) ;
val = pl - > statsf [ i ] ;
}
else if ( r = = ' # ' )
val = strtod ( rule , & rule ) ;
else
val = 0 ;
if ( * rule = = ' * ' )
{
val * = strtod ( rule + 1 , & rule ) ;
}
score + = val ;
if ( * rule = = ' + ' )
rule + + ;
else
break ;
}
return score ;
}
//returns the player with the highest frags
static int CL_FindHighTrack ( int seat , char * rule )
{
int j = - 1 ;
int i , k ;
float max , score ;
player_info_t * s ;
//set a default to the currently tracked player, to reuse the current player we're tracking if someone lower equalises.
j = cl . playerview [ seat ] . cam_spec_track ;
2015-06-14 01:28:01 +00:00
if ( j > = 0 & & cl . players [ j ] . name [ 0 ] & & ! cl . players [ j ] . spectator )
2015-06-12 14:44:50 +00:00
max = CL_TrackScore ( & cl . players [ j ] , rule ) ;
else
2015-06-14 01:28:01 +00:00
{
2015-06-12 14:44:50 +00:00
max = - 9999 ;
2015-06-14 01:28:01 +00:00
j = - 1 ;
}
2015-06-12 14:44:50 +00:00
for ( i = 0 ; i < cl . allocated_client_slots ; i + + )
{
s = & cl . players [ i ] ;
score = CL_TrackScore ( s , rule ) ;
if ( s - > name [ 0 ] & & ! s - > spectator & & score > max )
{
if ( j = = i ) //this was our default.
continue ;
//skip it if an earlier seat is watching it already
for ( k = 0 ; k < seat ; k + + )
{
if ( Cam_TrackNum ( & cl . playerview [ k ] ) = = i )
break ;
}
if ( cl . teamplay & & seat & & cl . playerview [ 0 ] . cam_spec_track > = 0 & & strcmp ( cl . players [ cl . playerview [ 0 ] . cam_spec_track ] . team , s - > team ) )
continue ; //when using multiview, keep tracking the team
if ( k = = seat )
{
max = CL_TrackScore ( s , rule ) ;
j = i ;
}
}
}
return j ;
}
static int CL_AutoTrack_Choose ( int seat )
{
int best = - 1 ;
if ( autotrackmode = = TM_KILLER )
2015-06-14 01:28:01 +00:00
best = cl . autotrack_killer ;
if ( autotrackmode = = TM_MODHINTS & & seat = = 0 & & cl . autotrack_hint > = 0 )
best = cl . autotrack_hint ;
2015-06-12 14:44:50 +00:00
if ( autotrackmode = = TM_STATS & & cls . demoplayback = = DPB_MVD )
best = CL_FindHighTrack ( seat , autotrack_statsrule ) ;
if ( autotrackmode = = TM_HIGHTRACK | | best = = - 1 )
best = CL_FindHighTrack ( seat , " f " ) ;
//TM_USER should generally avoid autotracking
2015-06-14 01:28:01 +00:00
cl . autotrack_killer = best ; //killer should continue to track whatever is currently tracked until its changed by frag message parsing
2015-06-12 14:44:50 +00:00
return best ;
}
2004-08-23 00:15:46 +00:00
2015-04-14 23:12:17 +00:00
static int Cam_FindSortedPlayer ( int number ) ;
2004-08-23 00:15:46 +00:00
2006-09-17 00:59:22 +00:00
int selfcam = 1 ;
2004-08-23 00:15:46 +00:00
static float vlen ( vec3_t v )
{
return sqrt ( v [ 0 ] * v [ 0 ] + v [ 1 ] * v [ 1 ] + v [ 2 ] * v [ 2 ] ) ;
}
// returns true if weapon model should be drawn in camera mode
2013-06-23 02:17:02 +00:00
qboolean Cam_DrawViewModel ( playerview_t * pv )
2004-08-23 00:15:46 +00:00
{
2006-09-17 00:59:22 +00:00
if ( cl . spectator )
{
2013-06-23 02:17:02 +00:00
if ( pv - > cam_auto & & pv - > cam_locked & & cl_chasecam . ival )
2006-09-17 00:59:22 +00:00
return true ;
return false ;
}
else
{
2010-07-11 02:22:39 +00:00
if ( selfcam = = 1 & & ! r_refdef . externalview )
2006-09-17 00:59:22 +00:00
return true ;
return false ;
}
2004-08-23 00:15:46 +00:00
}
2013-06-23 02:17:02 +00:00
int Cam_TrackNum ( playerview_t * pv )
2004-12-29 03:06:27 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_auto )
2004-12-29 03:06:27 +00:00
return - 1 ;
2013-06-23 02:17:02 +00:00
return pv - > cam_spec_track ;
2004-12-29 03:06:27 +00:00
}
2013-06-23 02:17:02 +00:00
void Cam_Unlock ( playerview_t * pv )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
if ( pv - > cam_auto )
2004-08-23 00:15:46 +00:00
{
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " ptrack " ) ;
2013-06-23 02:17:02 +00:00
pv - > cam_auto = CAM_NONE ;
pv - > cam_locked = false ;
pv - > viewentity = ( cls . demoplayback ) ? 0 : ( pv - > playernum + 1 ) ; //free floating
2004-08-23 00:15:46 +00:00
Sbar_Changed ( ) ;
}
}
2013-06-23 02:17:02 +00:00
void Cam_Lock ( playerview_t * pv , int playernum )
2004-08-23 00:15:46 +00:00
{
2005-06-14 04:52:10 +00:00
int i ;
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
pv - > cam_lastviewtime = - 1000 ;
2004-12-08 04:14:52 +00:00
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " ptrack %i " , playernum ) ;
2005-02-28 07:16:19 +00:00
2013-06-23 02:17:02 +00:00
pv - > cam_spec_track = playernum ;
pv - > cam_locked = false ;
2014-04-24 01:53:01 +00:00
pv - > viewentity = ( cls . demoplayback ) ? 0 : ( pv - > playernum + 1 ) ; //free floating until actually locked
2013-06-23 02:17:02 +00:00
2005-01-23 17:37:35 +00:00
Skin_FlushPlayers ( ) ;
2004-12-08 04:14:52 +00:00
2008-01-09 00:52:31 +00:00
if ( cls . demoplayback = = DPB_MVD | | cls . demoplayback = = DPB_EZTV )
2004-12-08 04:14:52 +00:00
{
2013-06-23 02:17:02 +00:00
memcpy ( & pv - > stats , cl . players [ playernum ] . stats , sizeof ( pv - > stats ) ) ;
pv - > cam_locked = true ; //instantly lock if the player is valid.
pv - > viewentity = playernum + 1 ;
2015-06-12 14:44:50 +00:00
if ( cls . z_ext & Z_EXT_VIEWHEIGHT )
pv - > viewheight = cl . players [ playernum ] . statsf [ STAT_VIEWHEIGHT ] ;
2004-12-08 04:14:52 +00:00
}
2004-08-23 00:15:46 +00:00
Sbar_Changed ( ) ;
2005-06-14 04:52:10 +00:00
2013-10-29 17:38:22 +00:00
for ( i = 0 ; i < cl . allocated_client_slots ; i + + )
2005-06-14 04:52:10 +00:00
CL_NewTranslation ( i ) ;
2004-08-23 00:15:46 +00:00
}
trace_t Cam_DoTrace ( vec3_t vec1 , vec3_t vec2 )
{
#if 0
memset ( & pmove , 0 , sizeof ( pmove ) ) ;
pmove . numphysent = 1 ;
2009-03-03 01:52:30 +00:00
memset ( & pmove . physents [ 0 ] , 0 , sizeof ( physent_t ) ) ;
2006-05-29 04:50:24 +00:00
VectorClear ( pmove . physents [ 0 ] . origin ) ;
2004-08-23 00:15:46 +00:00
pmove . physents [ 0 ] . model = cl . worldmodel ;
# endif
VectorCopy ( vec1 , pmove . origin ) ;
2013-10-29 17:38:22 +00:00
return PM_PlayerTrace ( pmove . origin , vec2 , MASK_PLAYERSOLID ) ;
2004-08-23 00:15:46 +00:00
}
// Returns distance or 9999 if invalid for some reason
2006-09-17 00:59:22 +00:00
static float Cam_TryFlyby ( vec3_t selforigin , vec3_t playerorigin , vec3_t vec , qboolean checkvis )
2004-08-23 00:15:46 +00:00
{
vec3_t v ;
trace_t trace ;
float len ;
2014-01-13 02:42:25 +00:00
pmove . player_mins [ 0 ] = pmove . player_mins [ 1 ] = - 16 ;
pmove . player_mins [ 2 ] = - 24 ;
pmove . player_maxs [ 0 ] = pmove . player_maxs [ 1 ] = 16 ;
pmove . player_maxs [ 2 ] = 32 ;
2004-11-17 18:10:06 +00:00
2011-10-27 15:46:36 +00:00
VectorAngles ( vec , NULL , v ) ;
2004-08-23 00:15:46 +00:00
// v[0] = -v[0];
VectorCopy ( v , pmove . angles ) ;
VectorNormalize ( vec ) ;
2006-09-17 00:59:22 +00:00
VectorMA ( playerorigin , 800 , vec , v ) ;
2004-08-23 00:15:46 +00:00
// v is endpos
// fake a player move
2006-09-17 00:59:22 +00:00
trace = Cam_DoTrace ( playerorigin , v ) ;
2004-08-23 00:15:46 +00:00
if ( /*trace.inopen ||*/ trace . inwater )
return 9999 ;
VectorCopy ( trace . endpos , vec ) ;
2006-09-17 00:59:22 +00:00
VectorSubtract ( trace . endpos , playerorigin , v ) ;
2004-08-23 00:15:46 +00:00
len = sqrt ( v [ 0 ] * v [ 0 ] + v [ 1 ] * v [ 1 ] + v [ 2 ] * v [ 2 ] ) ;
if ( len < 32 | | len > 800 )
return 9999 ;
if ( checkvis )
{
2006-09-17 00:59:22 +00:00
VectorSubtract ( trace . endpos , selforigin , v ) ;
2004-08-23 00:15:46 +00:00
len = sqrt ( v [ 0 ] * v [ 0 ] + v [ 1 ] * v [ 1 ] + v [ 2 ] * v [ 2 ] ) ;
2006-09-17 00:59:22 +00:00
trace = Cam_DoTrace ( selforigin , vec ) ;
2004-08-23 00:15:46 +00:00
if ( trace . fraction ! = 1 | | trace . inwater )
return 9999 ;
}
return len ;
}
// Is player visible?
2006-09-17 00:59:22 +00:00
static qboolean Cam_IsVisible ( vec3_t playerorigin , vec3_t vec )
2004-08-23 00:15:46 +00:00
{
trace_t trace ;
vec3_t v ;
float d ;
2006-09-17 00:59:22 +00:00
trace = Cam_DoTrace ( playerorigin , vec ) ;
2004-08-23 00:15:46 +00:00
if ( trace . fraction ! = 1 | | /*trace.inopen ||*/ trace . inwater )
return false ;
// check distance, don't let the player get too far away or too close
2006-09-17 00:59:22 +00:00
VectorSubtract ( playerorigin , vec , v ) ;
2004-08-23 00:15:46 +00:00
d = vlen ( v ) ;
if ( d < 16 )
return false ;
return true ;
}
2013-06-23 02:17:02 +00:00
static qboolean InitFlyby ( playerview_t * pv , vec3_t selforigin , vec3_t playerorigin , vec3_t playerviewangles , int checkvis )
2004-08-23 00:15:46 +00:00
{
2014-11-01 09:09:58 +00:00
vec3_t dirs [ ] = {
{ 1 , 1 , 1 } ,
{ 1 , - 1 , 1 } ,
{ 1 , 1 , 0 } ,
{ 1 , - 1 , 1 } ,
{ 1 , 0 , 1 } ,
{ 1 , 0 , - 1 } ,
{ - 1 , 1 , 1 } ,
{ - 1 , - 1 , 1 } ,
{ - 1 , 0 , 0 } ,
{ 1 , 0 , 0 } ,
{ 0 , 0 , - 1 } ,
{ 0 , 0 , 1 }
} ;
int dir ;
float f , max ;
vec3_t vec , vec2 ;
2004-08-23 00:15:46 +00:00
vec3_t forward , right , up ;
2006-09-17 00:59:22 +00:00
VectorCopy ( playerviewangles , vec ) ;
2014-11-01 09:09:58 +00:00
vec [ 0 ] = 0 ;
2004-08-23 00:15:46 +00:00
AngleVectors ( vec , forward , right , up ) ;
// for (i = 0; i < 3; i++)
// forward[i] *= 3;
2014-11-01 09:09:58 +00:00
max = 1000 ;
for ( dir = 0 ; dir < sizeof ( dirs ) / sizeof ( dirs [ 0 ] ) ; dir + + )
2004-08-23 00:15:46 +00:00
{
2014-11-01 09:09:58 +00:00
VectorScale ( forward , dirs [ dir ] [ 0 ] , vec2 ) ;
VectorMA ( vec2 , dirs [ dir ] [ 1 ] , right , vec2 ) ;
VectorMA ( vec2 , dirs [ dir ] [ 2 ] , up , vec2 ) ;
if ( ( f = Cam_TryFlyby ( selforigin , playerorigin , vec2 , checkvis ) ) < max )
{
max = f ;
VectorCopy ( vec2 , vec ) ;
}
}
2004-08-23 00:15:46 +00:00
// ack, can't find him
2014-11-01 09:09:58 +00:00
if ( max > = 1000 )
2004-08-23 00:15:46 +00:00
{
// Cam_Unlock();
return false ;
}
2004-10-04 07:25:47 +00:00
2013-06-23 02:17:02 +00:00
pv - > cam_locked = true ;
2014-10-19 03:40:27 +00:00
pv - > viewentity = pv - > playernum + 1 ; //pv->cam_spec_track+1;
2013-06-23 02:17:02 +00:00
VectorCopy ( vec , pv - > cam_desired_position ) ;
2004-08-23 00:15:46 +00:00
return true ;
}
2013-06-23 02:17:02 +00:00
static void Cam_CheckHighTarget ( playerview_t * pv )
2004-08-23 00:15:46 +00:00
{
2015-06-12 14:44:50 +00:00
int j ;
2013-06-23 02:17:02 +00:00
playerview_t * spv ;
2004-08-23 00:15:46 +00:00
2015-06-12 14:44:50 +00:00
j = CL_AutoTrack_Choose ( pv - cl . playerview ) ;
2004-08-23 00:15:46 +00:00
if ( j > = 0 )
{
2015-06-14 01:28:01 +00:00
if ( pv - > cam_spec_track ! = j | | ! pv - > cam_locked )
2009-05-24 10:11:17 +00:00
{
2015-06-14 01:28:01 +00:00
if ( cl . teamplay )
Stats_Message ( " Now tracking: \n %s \n %s " , cl . players [ j ] . name , cl . players [ j ] . team ) ;
else
Stats_Message ( " Now tracking: \n %s " , cl . players [ j ] . name ) ;
pv - > cam_auto + + ;
2013-06-23 02:17:02 +00:00
Cam_Lock ( pv , j ) ;
//un-lock any higher seats watching our new target. this keeps things ordered.
for ( spv = pv + 1 ; spv > = cl . playerview & & spv < & cl . playerview [ cl . splitclients ] ; spv + + )
2009-05-24 10:11:17 +00:00
{
2013-06-23 02:17:02 +00:00
if ( Cam_TrackNum ( spv ) = = j )
spv - > cam_locked = false ;
2009-05-24 10:11:17 +00:00
}
}
2004-08-23 00:15:46 +00:00
}
else
2013-06-23 02:17:02 +00:00
Cam_Unlock ( pv ) ;
2004-08-23 00:15:46 +00:00
}
2005-04-16 16:21:27 +00:00
2013-06-23 02:17:02 +00:00
void Cam_SelfTrack ( playerview_t * pv )
2006-09-17 00:59:22 +00:00
{
vec3_t vec ;
2014-10-05 20:04:11 +00:00
if ( ! cl . worldmodel | | cl . worldmodel - > loadstate ! = MLS_LOADED )
2006-09-17 00:59:22 +00:00
return ;
if ( selfcam = = 1 )
{ //view-from-eyes
}
else
{
if ( selfcam = = 2 )
{ //fixme:
vec3_t forward , right , up ;
trace_t tr ;
AngleVectors ( r_refdef . viewangles , forward , right , up ) ;
2013-06-23 02:17:02 +00:00
VectorMA ( pv - > simorg , - 128 , forward , pv - > cam_desired_position ) ;
tr = Cam_DoTrace ( pv - > simorg , pv - > cam_desired_position ) ;
VectorCopy ( tr . endpos , pv - > cam_desired_position ) ;
2006-09-17 00:59:22 +00:00
}
else
{ //view from a random wall
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_locked | | ! Cam_IsVisible ( pv - > simorg , pv - > cam_desired_position ) )
2006-09-17 00:59:22 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_locked | | realtime - pv - > cam_lastviewtime > 0.1 )
2006-09-17 00:59:22 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ! InitFlyby ( pv , pv - > cam_desired_position , pv - > simorg , pv - > simangles , true ) )
InitFlyby ( pv , pv - > cam_desired_position , pv - > simorg , pv - > simangles , false ) ;
pv - > cam_lastviewtime = realtime ;
2006-09-17 00:59:22 +00:00
}
}
else
{
2013-06-23 02:17:02 +00:00
pv - > cam_lastviewtime = realtime ;
2006-09-17 00:59:22 +00:00
}
//tracking failed.
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_locked )
2006-09-17 00:59:22 +00:00
return ;
}
// move there locally immediately
2013-06-23 02:17:02 +00:00
VectorCopy ( pv - > cam_desired_position , r_refdef . vieworg ) ;
2006-09-17 00:59:22 +00:00
2013-06-23 02:17:02 +00:00
VectorSubtract ( pv - > simorg , pv - > cam_desired_position , vec ) ;
2011-10-27 15:46:36 +00:00
VectorAngles ( vec , NULL , r_refdef . viewangles ) ;
2006-09-17 00:59:22 +00:00
r_refdef . viewangles [ 0 ] = - r_refdef . viewangles [ 0 ] ;
}
}
2004-08-23 00:15:46 +00:00
// ZOID
//
// Take over the user controls and track a player.
// We find a nice position to watch the player and move there
2013-06-23 02:17:02 +00:00
void Cam_Track ( playerview_t * pv , usercmd_t * cmd )
2004-08-23 00:15:46 +00:00
{
player_state_t * player , * self ;
2013-03-12 22:53:23 +00:00
inframe_t * frame ;
2004-08-23 00:15:46 +00:00
vec3_t vec ;
float len ;
2004-12-08 04:14:52 +00:00
if ( ! cl . spectator | | ! cl . worldmodel ) //can happen when the server changes level
2004-08-23 00:15:46 +00:00
return ;
2015-06-12 14:44:50 +00:00
if ( autotrackmode ! = TM_USER & & ! pv - > cam_locked )
2013-06-23 02:17:02 +00:00
Cam_CheckHighTarget ( pv ) ;
2004-08-23 00:15:46 +00:00
2014-10-19 03:40:27 +00:00
if ( ! pv - > cam_auto | | cls . state ! = ca_active | | cl . worldmodel - > loadstate ! = MLS_LOADED )
2004-08-23 00:15:46 +00:00
return ;
2013-06-23 02:17:02 +00:00
if ( pv - > cam_locked & & ( ! cl . players [ pv - > cam_spec_track ] . name [ 0 ] | | cl . players [ pv - > cam_spec_track ] . spectator ) )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
pv - > cam_locked = false ;
2015-06-12 14:44:50 +00:00
if ( autotrackmode ! = TM_USER )
2013-06-23 02:17:02 +00:00
Cam_CheckHighTarget ( pv ) ;
2004-08-23 00:15:46 +00:00
else
2013-06-23 02:17:02 +00:00
Cam_Unlock ( pv ) ;
2004-08-23 00:15:46 +00:00
return ;
}
2013-03-12 22:53:23 +00:00
frame = & cl . inframes [ cl . validsequence & UPDATE_MASK ] ;
2013-06-23 02:17:02 +00:00
player = frame - > playerstate + pv - > cam_spec_track ;
self = frame - > playerstate + pv - > playernum ;
2004-08-23 00:15:46 +00:00
2014-11-01 09:09:58 +00:00
if ( ! cl_chasecam . value & & ( ! pv - > cam_locked | | ! Cam_IsVisible ( player - > origin , pv - > cam_desired_position ) ) )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_locked | | realtime - pv - > cam_lastviewtime > 0.1 )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ! InitFlyby ( pv , self - > origin , player - > origin , player - > viewangles , true ) )
InitFlyby ( pv , self - > origin , player - > origin , player - > viewangles , false ) ;
pv - > cam_lastviewtime = realtime ;
2004-08-23 00:15:46 +00:00
}
}
else
2005-04-16 16:21:27 +00:00
{
2013-06-23 02:17:02 +00:00
pv - > cam_lastviewtime = realtime ;
2005-04-16 16:21:27 +00:00
}
//tracking failed.
2013-06-23 02:17:02 +00:00
if ( ! pv - > cam_locked | | ! pv - > cam_auto )
2004-08-23 00:15:46 +00:00
return ;
2005-04-16 16:21:27 +00:00
if ( cl_chasecam . value | | scr_chatmode = = 2 )
2004-08-23 00:15:46 +00:00
{
2013-10-08 14:28:11 +00:00
float * neworg ;
// float *newang;
if ( pv - > nolocalplayer )
neworg = cl . lerpents [ pv - > viewentity ] . origin ;
else
neworg = player - > origin ;
2005-04-16 16:21:27 +00:00
if ( scr_chatmode ! = 2 )
2013-06-23 02:17:02 +00:00
pv - > cam_lastviewtime = realtime ;
2005-04-16 16:21:27 +00:00
2013-10-08 14:28:11 +00:00
// VectorCopy(newang, pv->viewangles);
if ( memcmp ( neworg , & self - > origin , sizeof ( vec3_t ) ) ! = 0 )
2004-08-23 00:15:46 +00:00
{
2007-07-23 12:04:26 +00:00
if ( ! cls . demoplayback )
{
MSG_WriteByte ( & cls . netchan . message , clc_tmove ) ;
2013-10-08 14:28:11 +00:00
MSG_WriteCoord ( & cls . netchan . message , neworg [ 0 ] ) ;
MSG_WriteCoord ( & cls . netchan . message , neworg [ 1 ] ) ;
MSG_WriteCoord ( & cls . netchan . message , neworg [ 2 ] ) ;
2007-07-23 12:04:26 +00:00
}
2004-08-23 00:15:46 +00:00
// move there locally immediately
2013-10-08 14:28:11 +00:00
VectorCopy ( neworg , self - > origin ) ;
2004-08-23 00:15:46 +00:00
}
self - > weaponframe = player - > weaponframe ;
2014-10-19 03:40:27 +00:00
VectorCopy ( player - > viewangles , pv - > viewangles ) ;
2005-04-16 16:21:27 +00:00
return ;
}
// Ok, move to our desired position and set our angles to view
// the player
2013-06-23 02:17:02 +00:00
VectorSubtract ( pv - > cam_desired_position , self - > origin , vec ) ;
2005-04-16 16:21:27 +00:00
len = vlen ( vec ) ;
cmd - > forwardmove = cmd - > sidemove = cmd - > upmove = 0 ;
if ( len > 16 )
{ // close enough?
MSG_WriteByte ( & cls . netchan . message , clc_tmove ) ;
2013-06-23 02:17:02 +00:00
MSG_WriteCoord ( & cls . netchan . message , pv - > cam_desired_position [ 0 ] ) ;
MSG_WriteCoord ( & cls . netchan . message , pv - > cam_desired_position [ 1 ] ) ;
MSG_WriteCoord ( & cls . netchan . message , pv - > cam_desired_position [ 2 ] ) ;
2004-08-23 00:15:46 +00:00
}
2005-04-16 16:21:27 +00:00
// move there locally immediately
2013-06-23 02:17:02 +00:00
VectorCopy ( pv - > cam_desired_position , self - > origin ) ;
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
VectorSubtract ( player - > origin , pv - > cam_desired_position , vec ) ;
VectorAngles ( vec , NULL , pv - > viewangles ) ;
pv - > viewangles [ 0 ] = - pv - > viewangles [ 0 ] ;
2004-08-23 00:15:46 +00:00
}
2008-01-30 02:32:00 +00:00
void Cam_SetAutoTrack ( int userid )
{ //this is a hint from the server about who to track
2015-06-12 14:44:50 +00:00
int slot ;
playerview_t * pv = & cl . playerview [ 0 ] ;
2015-06-14 01:28:01 +00:00
cl . autotrack_hint = - 1 ;
2015-06-12 14:44:50 +00:00
for ( slot = 0 ; slot < cl . allocated_client_slots ; slot + + )
{
if ( cl . players [ slot ] . userid = = userid )
{
2015-06-14 01:28:01 +00:00
cl . autotrack_hint = slot ;
2015-06-12 14:44:50 +00:00
return ;
}
}
Con_Printf ( " //at: invalid userid \n " ) ;
2008-01-30 02:32:00 +00:00
}
2013-06-23 02:17:02 +00:00
void Cam_TrackCrosshairedPlayer ( playerview_t * pv )
2005-03-28 00:11:59 +00:00
{
2013-03-12 22:53:23 +00:00
inframe_t * frame ;
2005-03-28 00:11:59 +00:00
player_state_t * player ;
int i ;
2005-04-16 16:21:27 +00:00
float dot = 0.1 , bestdot = 0 ;
2005-03-28 00:11:59 +00:00
int best = - 1 ;
vec3_t selforg ;
vec3_t dir ;
2013-03-12 22:53:23 +00:00
frame = & cl . inframes [ cl . validsequence & UPDATE_MASK ] ;
2013-06-23 02:17:02 +00:00
player = frame - > playerstate + pv - > playernum ;
2005-03-28 00:11:59 +00:00
VectorCopy ( player - > origin , selforg ) ;
2013-10-29 17:38:22 +00:00
for ( i = 0 ; i < cl . allocated_client_slots ; i + + )
2005-03-28 00:11:59 +00:00
{
player = frame - > playerstate + i ;
VectorSubtract ( player - > origin , selforg , dir ) ;
VectorNormalize ( dir ) ;
dot = DotProduct ( vpn , dir ) ;
if ( dot > bestdot )
{
bestdot = dot ;
best = i ;
}
}
2015-03-03 00:14:43 +00:00
// Con_Printf("Track %i? %f\n", best, bestdot);
2005-03-28 00:11:59 +00:00
if ( best ! = - 1 ) //did we actually get someone?
{
2013-06-23 02:17:02 +00:00
pv - > cam_auto + + ;
Cam_Lock ( pv , best ) ;
2005-03-28 00:11:59 +00:00
}
}
2013-06-23 02:17:02 +00:00
void Cam_FinishMove ( playerview_t * pv , usercmd_t * cmd )
2004-08-23 00:15:46 +00:00
{
int i ;
player_info_t * s ;
int end ;
2013-03-12 22:13:26 +00:00
extern cvar_t cl_demospeed , cl_splitscreen ;
2004-08-23 00:15:46 +00:00
if ( cls . state ! = ca_active )
return ;
2008-01-09 00:52:31 +00:00
if ( ! cl . spectator & & ( cls . demoplayback ! = DPB_MVD & & cls . demoplayback ! = DPB_EZTV ) ) // only in spectator mode
2004-08-23 00:15:46 +00:00
return ;
2013-03-12 22:13:26 +00:00
if ( cls . demoplayback = = DPB_MVD | | cls . demoplayback = = DPB_EZTV )
{
int nb ;
nb = ( cmd - > sidemove < 0 ) ? 4 : 0 ;
nb | = ( cmd - > sidemove > 0 ) ? 8 : 0 ;
nb | = ( cmd - > forwardmove < 0 ) ? 16 : 0 ;
nb | = ( cmd - > forwardmove > 0 ) ? 32 : 0 ;
nb | = ( cmd - > upmove < 0 ) ? 64 : 0 ;
nb | = ( cmd - > upmove > 0 ) ? 128 : 0 ;
2013-06-23 02:17:02 +00:00
if ( Cam_TrackNum ( pv ) > = 0 )
------------------------------------------------------------------------
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
{
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 4 )
------------------------------------------------------------------------
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
Cvar_SetValue ( & cl_demospeed , max ( cl_demospeed . value - 0.1 , 0 ) ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 8 )
------------------------------------------------------------------------
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
Cvar_SetValue ( & cl_demospeed , min ( cl_demospeed . value + 0.1 , 10 ) ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & ( 4 | 8 ) )
------------------------------------------------------------------------
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
Con_Printf ( " playback speed: %g%% \n " , cl_demospeed . value * 100 ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 16 )
------------------------------------------------------------------------
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
Cbuf_AddText ( " demo_jump +10 " , RESTRICT_LOCAL ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 32 )
------------------------------------------------------------------------
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
Cbuf_AddText ( " demo_jump -10 " , RESTRICT_LOCAL ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & ( 4 | 8 ) )
------------------------------------------------------------------------
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
Con_Printf ( " playback speed: %g%% \n " , cl_demospeed . value * 100 ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 64 )
------------------------------------------------------------------------
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
Cvar_SetValue ( & cl_splitscreen , max ( cl_splitscreen . ival - 1 , 0 ) ) ;
2013-06-23 02:17:02 +00:00
if ( nb & ( nb ^ pv - > cam_oldbuttons ) & 128 )
------------------------------------------------------------------------
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
Cvar_SetValue ( & cl_splitscreen , min ( cl_splitscreen . ival + 1 , MAX_SPLITS - 1 ) ) ;
}
2013-06-23 02:17:02 +00:00
pv - > cam_oldbuttons = ( pv - > cam_oldbuttons & 3 ) | ( nb & ~ 3 ) ;
2013-03-12 22:13:26 +00:00
if ( cmd - > impulse )
{
int pl = cmd - > impulse ;
2015-04-14 23:12:17 +00:00
# if 1
do
{
Cam_Lock ( pv , Cam_FindSortedPlayer ( pl ) ) ;
pv + + ;
pl + + ;
} while ( pv > = & cl . playerview [ 0 ] & & pv < & cl . playerview [ cl . splitclients ] ) ;
# else
2013-03-12 22:13:26 +00:00
for ( i = 0 ; ; i + + )
{
if ( i = = MAX_CLIENTS )
{
if ( pl = = cmd - > impulse )
break ;
i = 0 ;
}
s = & cl . players [ i ] ;
if ( s - > name [ 0 ] & & ! s - > spectator )
{
pl - - ;
if ( ! pl )
{
2013-06-23 02:17:02 +00:00
Cam_Lock ( pv , i ) ;
if ( pv > = & cl . playerview [ 0 ] & & pv < & cl . playerview [ cl . splitclients ] )
{
2013-03-12 22:13:26 +00:00
pl = 1 ;
2013-06-23 02:17:02 +00:00
pv + + ;
}
2013-03-12 22:13:26 +00:00
else
break ;
}
}
}
2015-04-14 23:12:17 +00:00
# endif
2013-03-12 22:13:26 +00:00
return ;
}
}
2004-08-23 00:15:46 +00:00
if ( cmd - > buttons & BUTTON_ATTACK )
{
2013-06-23 02:17:02 +00:00
if ( ! ( pv - > cam_oldbuttons & BUTTON_ATTACK ) )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
pv - > cam_oldbuttons | = BUTTON_ATTACK ;
pv - > cam_auto + + ;
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
if ( pv - > cam_auto > CAM_TRACK )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
Cam_Unlock ( pv ) ;
VectorCopy ( pv - > viewangles , cmd - > angles ) ;
2015-06-14 01:28:01 +00:00
autotrackmode = TM_USER ;
2004-08-23 00:15:46 +00:00
return ;
}
}
else
return ;
}
else
{
2013-06-23 02:17:02 +00:00
pv - > cam_oldbuttons & = ~ BUTTON_ATTACK ;
2015-06-14 01:28:01 +00:00
if ( ! pv - > cam_auto & & autotrackmode = = TM_USER )
2005-03-28 00:11:59 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ( cmd - > buttons & BUTTON_JUMP ) & & ! ( pv - > cam_oldbuttons & BUTTON_JUMP ) )
Cam_TrackCrosshairedPlayer ( pv ) ;
pv - > cam_oldbuttons = ( pv - > cam_oldbuttons & ~ BUTTON_JUMP ) | ( cmd - > buttons & BUTTON_JUMP ) ;
2004-08-23 00:15:46 +00:00
return ;
2005-03-28 00:11:59 +00:00
}
2004-08-23 00:15:46 +00:00
}
2015-06-12 14:44:50 +00:00
if ( pv - > cam_auto & & autotrackmode ! = TM_USER )
2004-08-23 00:15:46 +00:00
{
2015-06-12 14:44:50 +00:00
if ( ( cmd - > buttons & BUTTON_JUMP ) & & ! ( pv - > cam_oldbuttons & BUTTON_JUMP ) )
autotrackmode = TM_USER ;
else
{
Cam_CheckHighTarget ( pv ) ;
return ;
}
2004-08-23 00:15:46 +00:00
}
2013-06-23 02:17:02 +00:00
if ( pv - > cam_locked )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
if ( ( cmd - > buttons & BUTTON_JUMP ) & & ( pv - > cam_oldbuttons & BUTTON_JUMP ) )
2004-08-23 00:15:46 +00:00
return ; // don't pogo stick
if ( ! ( cmd - > buttons & BUTTON_JUMP ) )
{
2013-06-23 02:17:02 +00:00
pv - > cam_oldbuttons & = ~ BUTTON_JUMP ;
2004-08-23 00:15:46 +00:00
return ;
}
2013-06-23 02:17:02 +00:00
pv - > cam_oldbuttons | = BUTTON_JUMP ; // don't jump again until released
2004-08-23 00:15:46 +00:00
}
// Con_Printf("Selecting track target...\n");
2013-06-23 02:17:02 +00:00
if ( pv - > cam_locked & & pv - > cam_auto )
end = ( pv - > cam_spec_track + 1 ) % MAX_CLIENTS ;
2004-08-23 00:15:46 +00:00
else
2013-06-23 02:17:02 +00:00
end = pv - > cam_spec_track ;
2004-08-23 00:15:46 +00:00
i = end ;
do
{
s = & cl . players [ i ] ;
2015-04-14 23:12:17 +00:00
//players with userid 0 are typically bots.
//trying to spectate such bots just does not work (we have no idea which entity slot the bot is actually using, so don't try to track them).
if ( s - > name [ 0 ] & & ! s - > spectator & & s - > userid )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
Cam_Lock ( pv , i ) ;
2004-08-23 00:15:46 +00:00
return ;
}
2013-12-02 14:30:30 +00:00
i = ( i + 1 ) % cl . allocated_client_slots ;
2004-08-23 00:15:46 +00:00
} while ( i ! = end ) ;
// stay on same guy?
2013-06-23 02:17:02 +00:00
i = pv - > cam_spec_track ;
2004-08-23 00:15:46 +00:00
s = & cl . players [ i ] ;
2015-04-14 23:12:17 +00:00
if ( s - > name [ 0 ] & & ! s - > spectator & & s - > userid )
2004-08-23 00:15:46 +00:00
{
2013-06-23 02:17:02 +00:00
Cam_Lock ( pv , i ) ;
2004-08-23 00:15:46 +00:00
return ;
}
Con_Printf ( " No target found ... \n " ) ;
2013-06-23 02:17:02 +00:00
pv - > cam_auto = pv - > cam_locked = false ;
2004-08-23 00:15:46 +00:00
}
void Cam_Reset ( void )
{
int pnum ;
for ( pnum = 0 ; pnum < MAX_SPLITS ; pnum + + )
{
2013-06-23 02:17:02 +00:00
playerview_t * pv = & cl . playerview [ pnum ] ;
pv - > cam_auto = CAM_NONE ;
pv - > cam_spec_track = 0 ;
2004-08-23 00:15:46 +00:00
}
}
2015-04-14 23:12:17 +00:00
static int QDECL Cam_SortPlayers ( const void * p1 , const void * p2 )
{
const player_info_t * a = * ( player_info_t * * ) p1 ;
const player_info_t * b = * ( player_info_t * * ) p2 ;
if ( ! * a - > team )
return * b - > team ;
if ( ! * b - > team )
return - * a - > team ;
// if (a->spectator || b->spectator)
// return a->spectator - b->spectator;
return Q_strcasecmp ( a - > team , b - > team ) ;
}
static int Cam_FindSortedPlayer ( int number )
{
player_info_t * playerlist [ MAX_CLIENTS ] , * s ;
int i ;
int slots ;
number - - ;
for ( slots = 0 , i = 0 ; i < cl . allocated_client_slots ; i + + )
{
s = & cl . players [ i ] ;
if ( s - > name [ 0 ] & & ! s - > spectator )
playerlist [ slots + + ] = s ;
}
if ( ! slots )
return 0 ;
// if (number > slot)
// return cl.allocated_client_slots; //error
qsort ( playerlist , slots , sizeof ( playerlist [ 0 ] ) , Cam_SortPlayers ) ;
return playerlist [ number % slots ] - cl . players ;
}
2013-06-23 02:17:02 +00:00
void Cam_TrackPlayer ( int seat , char * cmdname , char * plrarg )
2006-05-18 00:48:43 +00:00
{
2013-06-23 02:17:02 +00:00
playerview_t * pv = & cl . playerview [ seat ] ;
2015-06-12 14:44:50 +00:00
int slot ;
2006-05-18 00:48:43 +00:00
player_info_t * s ;
2015-04-14 23:12:17 +00:00
char * e ;
2006-05-18 00:48:43 +00:00
2013-06-23 02:17:02 +00:00
if ( seat > = MAX_SPLITS )
2006-05-18 01:19:19 +00:00
return ;
2006-05-18 00:48:43 +00:00
if ( cls . state < = ca_connected )
{
Con_Printf ( " Not connected. \n " ) ;
return ;
}
if ( ! cl . spectator )
{
Con_Printf ( " Not spectating. \n " ) ;
return ;
}
if ( ! Q_strcasecmp ( plrarg , " off " ) )
{
2013-06-23 02:17:02 +00:00
Cam_Unlock ( pv ) ;
2006-05-18 00:48:43 +00:00
return ;
}
2015-04-14 23:12:17 +00:00
if ( * plrarg = = ' # ' & & ( slot = strtoul ( plrarg + 1 , & e , 10 ) ) & & ! * e )
slot = Cam_FindSortedPlayer ( slot ) ;
else
2006-05-18 00:48:43 +00:00
{
2015-04-14 23:12:17 +00:00
// search nicks first
for ( slot = 0 ; slot < cl . allocated_client_slots ; slot + + )
{
s = & cl . players [ slot ] ;
if ( s - > name [ 0 ] & & ! s - > spectator & & ! Q_strcasecmp ( s - > name , plrarg ) )
break ;
}
2006-05-18 00:48:43 +00:00
}
2013-08-27 13:18:09 +00:00
if ( slot = = cl . allocated_client_slots )
2006-05-18 00:48:43 +00:00
{
// didn't find nick, so search userids
int userid ;
char * c ;
// check if given arg is in fact a number
c = plrarg ;
while ( * c )
{
2012-11-27 03:23:19 +00:00
if ( * c < ' 0 ' | | * c > ' 9 ' )
2006-05-18 00:48:43 +00:00
{
Con_Printf ( " Couldn't find nick %s \n " , plrarg ) ;
return ;
}
c + + ;
}
userid = atoi ( plrarg ) ;
2013-08-27 13:18:09 +00:00
for ( slot = 0 ; slot < cl . allocated_client_slots ; slot + + )
2006-05-18 00:48:43 +00:00
{
s = & cl . players [ slot ] ;
if ( s - > name [ 0 ] & & ! s - > spectator & & s - > userid = = userid )
break ;
}
2013-08-27 13:18:09 +00:00
if ( slot = = cl . allocated_client_slots )
2006-05-18 00:48:43 +00:00
{
Con_Printf ( " Couldn't find userid %i \n " , userid ) ;
return ;
}
}
2013-06-23 02:17:02 +00:00
pv - > cam_auto = CAM_TRACK ;
Cam_Lock ( pv , slot ) ;
2014-04-24 01:53:01 +00:00
//and force the lock here and now
2013-06-23 02:17:02 +00:00
pv - > cam_locked = true ;
2013-09-06 22:57:44 +00:00
pv - > viewentity = slot + 1 ;
2006-05-18 00:48:43 +00:00
}
void Cam_Track_f ( void )
{
int i , j ;
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Usage: %s userid|nick|off \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
i = 1 ;
j = Cmd_Argc ( ) - 1 ;
if ( j > MAX_SPLITS )
j = MAX_SPLITS ;
while ( j > 0 )
{
Cam_TrackPlayer ( i - 1 , Cmd_Argv ( 0 ) , Cmd_Argv ( i ) ) ;
i + + ;
j - - ;
}
}
void Cam_Track1_f ( void )
{
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Usage: %s userid|nick|off \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
Cam_TrackPlayer ( 0 , Cmd_Argv ( 0 ) , Cmd_Argv ( 1 ) ) ;
}
void Cam_Track2_f ( void )
{
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Usage: %s userid|nick|off \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
Cam_TrackPlayer ( 1 , Cmd_Argv ( 0 ) , Cmd_Argv ( 1 ) ) ;
}
void Cam_Track3_f ( void )
{
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Usage: %s userid|nick|off \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
Cam_TrackPlayer ( 2 , Cmd_Argv ( 0 ) , Cmd_Argv ( 1 ) ) ;
}
void Cam_Track4_f ( void )
{
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " Usage: %s userid|nick|off \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
Cam_TrackPlayer ( 3 , Cmd_Argv ( 0 ) , Cmd_Argv ( 1 ) ) ;
}
2004-08-23 00:15:46 +00:00
void CL_InitCam ( void )
{
2015-06-12 14:44:50 +00:00
Cvar_Register ( & cl_autotrack , cl_spectatorgroup ) ;
2004-08-23 00:15:46 +00:00
Cvar_Register ( & cl_hightrack , cl_spectatorgroup ) ;
Cvar_Register ( & cl_chasecam , cl_spectatorgroup ) ;
// Cvar_Register (&cl_camera_maxpitch, cl_spectatorgroup);
// Cvar_Register (&cl_camera_maxyaw, cl_spectatorgroup);
2006-09-17 00:59:22 +00:00
// Cvar_Register (&cl_selfcam, cl_spectatorgroup);
2006-05-18 00:48:43 +00:00
2015-06-12 14:44:50 +00:00
Cmd_AddCommand ( " autotrack " , Cam_AutoTrack_f ) ; //reset it, if they jumped or something.
2006-05-18 00:48:43 +00:00
Cmd_AddCommand ( " track " , Cam_Track_f ) ;
Cmd_AddCommand ( " track1 " , Cam_Track1_f ) ;
Cmd_AddCommand ( " track2 " , Cam_Track2_f ) ;
Cmd_AddCommand ( " track3 " , Cam_Track3_f ) ;
Cmd_AddCommand ( " track4 " , Cam_Track4_f ) ;
2004-08-23 00:15:46 +00:00
}