1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

SDK sync.

This commit is contained in:
Nicholas Hastings 2014-02-28 14:08:09 -05:00
parent 7cc1bd2f96
commit e2781a0000
558 changed files with 39082 additions and 1463 deletions

View File

@ -1917,6 +1917,22 @@ int ByteswapMDLFile( void *pDestBase, void *pSrcBase, const int fileSize )
SET_INDEX_POINTERS_FIXUP( pData, pLinearBone, qalignmentindex ) SET_INDEX_POINTERS_FIXUP( pData, pLinearBone, qalignmentindex )
WriteBuffer<float>( &pDataDest, &pDataSrc, 4*numBones ); WriteBuffer<float>( &pDataDest, &pDataSrc, 4*numBones );
} }
/** BONE FLEX DRIVERS **/
if ( pStudioHdr2->m_nBoneFlexDriverIndex )
{
SET_INDEX_POINTERS_FIXUP( pData, pStudioHdr2, m_nBoneFlexDriverIndex )
DECLARE_OBJECT_POINTERS( pBoneFlexDriver, pData, mstudioboneflexdriver_t )
ITERATE_BLOCK( pBoneFlexDriver, pStudioHdr2->m_nBoneFlexDriverCount )
{
WriteObjects( pBoneFlexDriverDest, pBoneFlexDriverSrc );
/** BONE FLEX DRIVER CONTROLS **/
SET_INDEX_POINTERS_FIXUP( pData, pBoneFlexDriver, m_nControlIndex );
WriteObjects< mstudioboneflexdrivercontrol_t >( &pDataDest, &pDataSrc, SrcNative( &pBoneFlexDriver->m_nControlCount ) );
}
}
} }
} }
@ -2520,7 +2536,8 @@ BEGIN_BYTESWAP_DATADESC( studiohdr_t )
DEFINE_INDEX( unused4, FIELD_INTEGER ), DEFINE_INDEX( unused4, FIELD_INTEGER ),
DEFINE_FIELD( numflexcontrollerui, FIELD_INTEGER ), DEFINE_FIELD( numflexcontrollerui, FIELD_INTEGER ),
DEFINE_INDEX( flexcontrolleruiindex, FIELD_INTEGER ), DEFINE_INDEX( flexcontrolleruiindex, FIELD_INTEGER ),
DEFINE_ARRAY( unused3, FIELD_INTEGER, 2 ), DEFINE_FIELD( flVertAnimFixedPointScale, FIELD_FLOAT ),
DEFINE_ARRAY( unused3, FIELD_INTEGER, 1 ),
DEFINE_INDEX( studiohdr2index, FIELD_INTEGER ), DEFINE_INDEX( studiohdr2index, FIELD_INTEGER ),
DEFINE_ARRAY( unused2, FIELD_INTEGER, 1 ), DEFINE_ARRAY( unused2, FIELD_INTEGER, 1 ),
END_BYTESWAP_DATADESC() END_BYTESWAP_DATADESC()
@ -2534,7 +2551,9 @@ BEGIN_BYTESWAP_DATADESC( studiohdr2_t )
DEFINE_FIELD( flMaxEyeDeflection, FIELD_FLOAT ), DEFINE_FIELD( flMaxEyeDeflection, FIELD_FLOAT ),
DEFINE_INDEX( linearboneindex, FIELD_INTEGER ), DEFINE_INDEX( linearboneindex, FIELD_INTEGER ),
DEFINE_INDEX( sznameindex, FIELD_INTEGER ), DEFINE_INDEX( sznameindex, FIELD_INTEGER ),
DEFINE_ARRAY( reserved, FIELD_INTEGER, 58 ), DEFINE_INDEX( m_nBoneFlexDriverCount, FIELD_INTEGER ),
DEFINE_INDEX( m_nBoneFlexDriverIndex, FIELD_INTEGER ),
DEFINE_ARRAY( reserved, FIELD_INTEGER, 56 ),
END_BYTESWAP_DATADESC() END_BYTESWAP_DATADESC()
BEGIN_BYTESWAP_DATADESC( mstudiobone_t ) BEGIN_BYTESWAP_DATADESC( mstudiobone_t )
@ -2571,6 +2590,20 @@ BEGIN_BYTESWAP_DATADESC( mstudiolinearbone_t )
DEFINE_ARRAY( unused, FIELD_INTEGER, 6 ), DEFINE_ARRAY( unused, FIELD_INTEGER, 6 ),
END_BYTESWAP_DATADESC() END_BYTESWAP_DATADESC()
BEGIN_BYTESWAP_DATADESC( mstudioboneflexdrivercontrol_t )
DEFINE_INDEX( m_nBoneComponent, FIELD_INTEGER ),
DEFINE_FIELD( m_nFlexControllerIndex, FIELD_INTEGER ),
DEFINE_INDEX( m_flMin, FIELD_FLOAT ),
DEFINE_INDEX( m_flMax, FIELD_FLOAT ),
END_BYTESWAP_DATADESC()
BEGIN_BYTESWAP_DATADESC( mstudioboneflexdriver_t )
DEFINE_INDEX( m_nBoneIndex, FIELD_INTEGER ),
DEFINE_FIELD( m_nControlCount, FIELD_INTEGER ),
DEFINE_INDEX( m_nControlIndex, FIELD_FLOAT ),
DEFINE_ARRAY( unused, FIELD_INTEGER, 3 ),
END_BYTESWAP_DATADESC()
BEGIN_BYTESWAP_DATADESC( mstudioaxisinterpbone_t ) BEGIN_BYTESWAP_DATADESC( mstudioaxisinterpbone_t )
DEFINE_FIELD( control, FIELD_INTEGER ), DEFINE_FIELD( control, FIELD_INTEGER ),
DEFINE_FIELD( axis, FIELD_INTEGER ), DEFINE_FIELD( axis, FIELD_INTEGER ),

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
pushd `dirname $0`
devtools/bin/vpc /hl2mp +everything /mksln everything devtools/bin/vpc /hl2mp +everything /mksln everything
popd

View File

@ -1 +1,3 @@
pushd %~dp0
devtools\bin\vpc.exe /hl2mp +everything /mksln everything.sln devtools\bin\vpc.exe /hl2mp +everything /mksln everything.sln
popd

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
pushd `dirname $0`
devtools/bin/vpc /hl2mp +game /mksln games devtools/bin/vpc /hl2mp +game /mksln games
popd

View File

@ -1 +1,3 @@
pushd %~dp0
devtools\bin\vpc.exe /hl2mp +game /mksln games.sln devtools\bin\vpc.exe /hl2mp +game /mksln games.sln
popd

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1013,7 +1013,9 @@ CStudioHdr *C_BaseAnimating::OnNewModel()
{ {
// XXX what's authoritative? the model pointer or the model index? what a mess. // XXX what's authoritative? the model pointer or the model index? what a mess.
nNewIndex = modelinfo->GetModelIndex( modelinfo->GetModelName( GetModel() ) ); nNewIndex = modelinfo->GetModelIndex( modelinfo->GetModelName( GetModel() ) );
Assert( modelinfo->GetModel( nNewIndex ) == GetModel() ); Assert( nNewIndex < 0 || modelinfo->GetModel( nNewIndex ) == GetModel() );
if ( nNewIndex < 0 )
nNewIndex = m_nModelIndex;
} }
m_AutoRefModelIndex = nNewIndex; m_AutoRefModelIndex = nNewIndex;
@ -5099,7 +5101,7 @@ void C_BaseAnimating::StudioFrameAdvance()
SetCycle( flNewCycle ); SetCycle( flNewCycle );
m_flGroundSpeed = GetSequenceGroundSpeed( hdr, GetSequence() ); m_flGroundSpeed = GetSequenceGroundSpeed( hdr, GetSequence() ) * GetModelScale();
#if 0 #if 0
// I didn't have a test case for this, but it seems like the right thing to do. Check multi-player! // I didn't have a test case for this, but it seems like the right thing to do. Check multi-player!
@ -5289,7 +5291,7 @@ void C_BaseAnimating::ResetSequenceInfo( void )
} }
CStudioHdr *pStudioHdr = GetModelPtr(); CStudioHdr *pStudioHdr = GetModelPtr();
m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ); m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ) * GetModelScale();
m_bSequenceLoops = ((GetSequenceFlags( pStudioHdr, GetSequence() ) & STUDIO_LOOPING) != 0); m_bSequenceLoops = ((GetSequenceFlags( pStudioHdr, GetSequence() ) & STUDIO_LOOPING) != 0);
// m_flAnimTime = gpGlobals->time; // m_flAnimTime = gpGlobals->time;
m_flPlaybackRate = 1.0; m_flPlaybackRate = 1.0;

View File

@ -894,7 +894,12 @@ C_BaseEntity::C_BaseEntity() :
{ {
AddVar( &m_vecOrigin, &m_iv_vecOrigin, LATCH_SIMULATION_VAR ); AddVar( &m_vecOrigin, &m_iv_vecOrigin, LATCH_SIMULATION_VAR );
AddVar( &m_angRotation, &m_iv_angRotation, LATCH_SIMULATION_VAR ); AddVar( &m_angRotation, &m_iv_angRotation, LATCH_SIMULATION_VAR );
AddVar( &m_vecVelocity, &m_iv_vecVelocity, LATCH_SIMULATION_VAR ); // Removing this until we figure out why velocity introduces view hitching.
// One possible fix is removing the player->ResetLatched() call in CGameMovement::FinishDuck(),
// but that re-introduces a third-person hitching bug. One possible cause is the abrupt change
// in player size/position that occurs when ducking, and how prediction tries to work through that.
//
// AddVar( &m_vecVelocity, &m_iv_vecVelocity, LATCH_SIMULATION_VAR );
m_DataChangeEventRef = -1; m_DataChangeEventRef = -1;
m_EntClientFlags = 0; m_EntClientFlags = 0;

View File

@ -1158,6 +1158,33 @@ void C_BaseFlex::SetupWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightC
} }
//-----------------------------------------------------------------------------
// Purpose: Use the local bone positions to set flex control weights
// via boneflexdrivers specified in the model
//-----------------------------------------------------------------------------
void C_BaseFlex::BuildTransformations( CStudioHdr *pStudioHdr, Vector *pos, Quaternion q[], const matrix3x4_t& cameraTransform, int boneMask, CBoneBitList &boneComputed )
{
const int nBoneFlexDriverCount = pStudioHdr->BoneFlexDriverCount();
for ( int i = 0; i < nBoneFlexDriverCount; ++i )
{
const mstudioboneflexdriver_t *pBoneFlexDriver = pStudioHdr->BoneFlexDriver( i );
const Vector &position = pos[ pBoneFlexDriver->m_nBoneIndex ];
const int nControllerCount = pBoneFlexDriver->m_nControlCount;
for ( int j = 0; j < nControllerCount; ++j )
{
const mstudioboneflexdrivercontrol_t *pController = pBoneFlexDriver->pBoneFlexDriverControl( j );
Assert( pController->m_nFlexControllerIndex >= 0 && pController->m_nFlexControllerIndex < pStudioHdr->numflexcontrollers() );
Assert( pController->m_nBoneComponent >= 0 && pController->m_nBoneComponent <= 2 );
SetFlexWeight( static_cast< LocalFlexController_t >( pController->m_nFlexControllerIndex ), RemapValClamped( position[pController->m_nBoneComponent], pController->m_flMin, pController->m_flMax, 0.0f, 1.0f ) );
}
}
BaseClass::BuildTransformations( pStudioHdr, pos, q, cameraTransform, boneMask, boneComputed );
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: process the entities networked state, vcd playback, wav file visemes, and blinks into a global shared flex controller array // Purpose: process the entities networked state, vcd playback, wav file visemes, and blinks into a global shared flex controller array
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -147,6 +147,7 @@ public:
virtual void OnThreadedDrawSetup(); virtual void OnThreadedDrawSetup();
// model specific // model specific
virtual void BuildTransformations( CStudioHdr *pStudioHdr, Vector *pos, Quaternion q[], const matrix3x4_t& cameraTransform, int boneMask, CBoneBitList &boneComputed );
static void LinkToGlobalFlexControllers( CStudioHdr *hdr ); static void LinkToGlobalFlexControllers( CStudioHdr *hdr );
virtual void SetupWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightCount, float *pFlexWeights, float *pFlexDelayedWeights ); virtual void SetupWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightCount, float *pFlexWeights, float *pFlexDelayedWeights );
virtual bool SetupGlobalWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightCount, float *pFlexWeights, float *pFlexDelayedWeights ); virtual bool SetupGlobalWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightCount, float *pFlexWeights, float *pFlexDelayedWeights );

View File

@ -47,7 +47,7 @@
#include "replay/ienginereplay.h" #include "replay/ienginereplay.h"
#endif #endif
#include "steam/steam_api.h" #include "steam/steam_api.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#if defined USES_ECON_ITEMS #if defined USES_ECON_ITEMS
@ -115,6 +115,13 @@ static ConVar cl_first_person_uses_world_model ( "cl_first_person_uses_world_mod
ConVar demo_fov_override( "demo_fov_override", "0", FCVAR_CLIENTDLL | FCVAR_DONTRECORD, "If nonzero, this value will be used to override FOV during demo playback." ); ConVar demo_fov_override( "demo_fov_override", "0", FCVAR_CLIENTDLL | FCVAR_DONTRECORD, "If nonzero, this value will be used to override FOV during demo playback." );
// This only needs to be approximate - it just controls the distance to the pivot-point of the head ("the neck") of the in-game character, not the player's real-world neck length.
// Ideally we would find this vector by subtracting the neutral-pose difference between the head bone (the pivot point) and the "eyes" attachment point.
// However, some characters don't have this attachment point, and finding the neutral pose is a pain.
// This value is found by hand, and a good value depends more on the in-game models than on actual human shapes.
ConVar cl_meathook_neck_pivot_ingame_up( "cl_meathook_neck_pivot_ingame_up", "7.0" );
ConVar cl_meathook_neck_pivot_ingame_fwd( "cl_meathook_neck_pivot_ingame_fwd", "3.0" );
void RecvProxy_LocalVelocityX( const CRecvProxyData *pData, void *pStruct, void *pOut ); void RecvProxy_LocalVelocityX( const CRecvProxyData *pData, void *pStruct, void *pOut );
void RecvProxy_LocalVelocityY( const CRecvProxyData *pData, void *pStruct, void *pOut ); void RecvProxy_LocalVelocityY( const CRecvProxyData *pData, void *pStruct, void *pOut );
void RecvProxy_LocalVelocityZ( const CRecvProxyData *pData, void *pStruct, void *pOut ); void RecvProxy_LocalVelocityZ( const CRecvProxyData *pData, void *pStruct, void *pOut );
@ -429,6 +436,8 @@ C_BasePlayer::C_BasePlayer() : m_iv_vecViewOffset( "C_BasePlayer::m_iv_vecViewOf
m_bFiredWeapon = false; m_bFiredWeapon = false;
m_nForceVisionFilterFlags = 0; m_nForceVisionFilterFlags = 0;
ListenForGameEvent( "base_player_teleported" );
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -698,6 +707,20 @@ surfacedata_t* C_BasePlayer::GetGroundSurface()
return physprops->GetSurfaceData( trace.surface.surfaceProps ); return physprops->GetSurfaceData( trace.surface.surfaceProps );
} }
void C_BasePlayer::FireGameEvent( IGameEvent *event )
{
if ( FStrEq( event->GetName(), "base_player_teleported" ) )
{
const int index = event->GetInt( "entindex" );
if ( index == entindex() && IsLocalPlayer() )
{
// In VR, we want to make sure our head and body
// are aligned after we teleport.
g_ClientVirtualReality.AlignTorsoAndViewToWeapon();
}
}
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// returns the player name // returns the player name
@ -1851,11 +1874,9 @@ void C_BasePlayer::ThirdPersonSwitch( bool bThirdperson )
{ {
return !input->CAM_IsThirdPerson() && ( !ToolsEnabled() || !ToolFramework_IsThirdPersonCamera() ); return !input->CAM_IsThirdPerson() && ( !ToolsEnabled() || !ToolFramework_IsThirdPersonCamera() );
} }
else
{
// Not looking at the local player, e.g. in a replay in third person mode or freelook. // Not looking at the local player, e.g. in a replay in third person mode or freelook.
return false; return false;
}
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -1867,11 +1888,9 @@ void C_BasePlayer::ThirdPersonSwitch( bool bThirdperson )
{ {
return !LocalPlayerInFirstPersonView() || cl_first_person_uses_world_model.GetBool(); return !LocalPlayerInFirstPersonView() || cl_first_person_uses_world_model.GetBool();
} }
else
{
static ConVarRef vr_first_person_uses_world_model( "vr_first_person_uses_world_model" ); static ConVarRef vr_first_person_uses_world_model( "vr_first_person_uses_world_model" );
return !LocalPlayerInFirstPersonView() || vr_first_person_uses_world_model.GetBool(); return !LocalPlayerInFirstPersonView() || vr_first_person_uses_world_model.GetBool();
}
} }
@ -1995,6 +2014,16 @@ void C_BasePlayer::PostThink( void )
if ( IsAlive()) if ( IsAlive())
{ {
// Need to do this on the client to avoid prediction errors
if ( GetFlags() & FL_DUCKING )
{
SetCollisionBounds( VEC_DUCK_HULL_MIN, VEC_DUCK_HULL_MAX );
}
else
{
SetCollisionBounds( VEC_HULL_MIN, VEC_HULL_MAX );
}
if ( !CommentaryModeShouldSwallowInput( this ) ) if ( !CommentaryModeShouldSwallowInput( this ) )
{ {
// do weapon stuff // do weapon stuff
@ -2850,7 +2879,13 @@ void C_BasePlayer::BuildFirstPersonMeathookTransformations( CStudioHdr *hdr, Vec
m_BoneAccessor.SetWritableBones( BONE_USED_BY_ANYTHING ); m_BoneAccessor.SetWritableBones( BONE_USED_BY_ANYTHING );
matrix3x4_t &mHeadTransform = GetBoneForWrite( LookupBone( pchHeadBoneName ) ); int iHead = LookupBone( pchHeadBoneName );
if ( iHead == -1 )
{
return;
}
matrix3x4_t &mHeadTransform = GetBoneForWrite( iHead );
// "up" on the head bone is along the negative Y axis - not sure why. // "up" on the head bone is along the negative Y axis - not sure why.
//Vector vHeadTransformUp ( -mHeadTransform[0][1], -mHeadTransform[1][1], -mHeadTransform[2][1] ); //Vector vHeadTransformUp ( -mHeadTransform[0][1], -mHeadTransform[1][1], -mHeadTransform[2][1] );
@ -2862,29 +2897,19 @@ void C_BasePlayer::BuildFirstPersonMeathookTransformations( CStudioHdr *hdr, Vec
// We can't move this with animations or effects without causing nausea, so we need to move // We can't move this with animations or effects without causing nausea, so we need to move
// the whole body so that the animated head is in the right place to match the player-controlled head. // the whole body so that the animated head is in the right place to match the player-controlled head.
Vector vHeadUp; Vector vHeadUp;
bool bMeathookEnable = true;
Vector vRealPivotPoint; Vector vRealPivotPoint;
bool bEnableDecapitation = true;
if( UseVR() ) if( UseVR() )
{ {
static ConVarRef vr_neck_pivot_ingame_up( "vr_neck_pivot_ingame_up" );
static ConVarRef vr_neck_pivot_ingame_fwd( "vr_neck_pivot_ingame_fwd" );
static ConVarRef vr_meathook_enable ( "vr_meathook_enable" );
static ConVarRef vr_decapitation_enable ( "vr_decapitation_enable" );
VMatrix mWorldFromMideye = g_ClientVirtualReality.GetWorldFromMidEye(); VMatrix mWorldFromMideye = g_ClientVirtualReality.GetWorldFromMidEye();
bMeathookEnable = vr_meathook_enable.GetBool();
bEnableDecapitation = vr_decapitation_enable.GetBool();
// What we do here is: // What we do here is:
// * Take the required eye pos+orn - the actual pose the player is controlling with the HMD. // * Take the required eye pos+orn - the actual pose the player is controlling with the HMD.
// * Go downwards in that space by headtrack_neck_pivot_ingame_* - this is now the neck-pivot in the game world of where the player is actually looking. // * Go downwards in that space by cl_meathook_neck_pivot_ingame_* - this is now the neck-pivot in the game world of where the player is actually looking.
// * Now place the body of the animated character so that the head bone is at that position. // * Now place the body of the animated character so that the head bone is at that position.
// The head bone is the neck pivot point of the in-game character. // The head bone is the neck pivot point of the in-game character.
Vector vRealMidEyePos = mWorldFromMideye.GetTranslation(); Vector vRealMidEyePos = mWorldFromMideye.GetTranslation();
vRealPivotPoint = vRealMidEyePos - ( mWorldFromMideye.GetUp() * vr_neck_pivot_ingame_up.GetFloat() ) - ( mWorldFromMideye.GetForward() * vr_neck_pivot_ingame_fwd.GetFloat() ); vRealPivotPoint = vRealMidEyePos - ( mWorldFromMideye.GetUp() * cl_meathook_neck_pivot_ingame_up.GetFloat() ) - ( mWorldFromMideye.GetForward() * cl_meathook_neck_pivot_ingame_fwd.GetFloat() );
} }
else else
{ {
@ -2892,14 +2917,12 @@ void C_BasePlayer::BuildFirstPersonMeathookTransformations( CStudioHdr *hdr, Vec
Vector vForward, vRight, vUp; Vector vForward, vRight, vUp;
AngleVectors( MainViewAngles(), &vForward, &vRight, &vUp ); AngleVectors( MainViewAngles(), &vForward, &vRight, &vUp );
vRealPivotPoint = MainViewOrigin() - ( vUp * 7.3f ) - ( vForward * 3.f ); vRealPivotPoint = MainViewOrigin() - ( vUp * cl_meathook_neck_pivot_ingame_up.GetFloat() ) - ( vForward * cl_meathook_neck_pivot_ingame_fwd.GetFloat() );
} }
Vector vDeltaToAdd = vRealPivotPoint - vHeadTransformTranslation; Vector vDeltaToAdd = vRealPivotPoint - vHeadTransformTranslation;
if ( bMeathookEnable )
{
// Now add this offset to the entire skeleton. // Now add this offset to the entire skeleton.
for (int i = 0; i < hdr->numbones(); i++) for (int i = 0; i < hdr->numbones(); i++)
{ {
@ -2914,13 +2937,10 @@ void C_BasePlayer::BuildFirstPersonMeathookTransformations( CStudioHdr *hdr, Vec
vBonePos += vDeltaToAdd; vBonePos += vDeltaToAdd;
MatrixSetTranslation ( vBonePos, bone ); MatrixSetTranslation ( vBonePos, bone );
} }
}
if ( bEnableDecapitation )
{
// Then scale the head to zero, but leave its position - forms a "neck stub". // Then scale the head to zero, but leave its position - forms a "neck stub".
// This prevents us rendering junk all over the screen, e.g. inside of mouth, etc. // This prevents us rendering junk all over the screen, e.g. inside of mouth, etc.
MatrixScaleByZero ( mHeadTransform ); MatrixScaleByZero( mHeadTransform );
// TODO: right now we nuke the hats by shrinking them to nothing, // TODO: right now we nuke the hats by shrinking them to nothing,
// but it feels like we should do something more sensible. // but it feels like we should do something more sensible.
@ -2930,17 +2950,15 @@ void C_BasePlayer::BuildFirstPersonMeathookTransformations( CStudioHdr *hdr, Vec
{ {
// Scale the helmet. // Scale the helmet.
matrix3x4_t &transformhelmet = GetBoneForWrite( iHelm ); matrix3x4_t &transformhelmet = GetBoneForWrite( iHelm );
MatrixScaleByZero ( transformhelmet ); MatrixScaleByZero( transformhelmet );
} }
iHelm = LookupBone( "prp_hat" ); iHelm = LookupBone( "prp_hat" );
if ( iHelm != -1 ) if ( iHelm != -1 )
{ {
matrix3x4_t &transformhelmet = GetBoneForWrite( iHelm ); matrix3x4_t &transformhelmet = GetBoneForWrite( iHelm );
MatrixScaleByZero ( transformhelmet ); MatrixScaleByZero( transformhelmet );
} }
}
} }

View File

@ -23,6 +23,8 @@
#include "hintsystem.h" #include "hintsystem.h"
#include "SoundEmitterSystem/isoundemittersystembase.h" #include "SoundEmitterSystem/isoundemittersystembase.h"
#include "c_env_fog_controller.h" #include "c_env_fog_controller.h"
#include "igameevents.h"
#include "GameEventListener.h"
#if defined USES_ECON_ITEMS #if defined USES_ECON_ITEMS
#include "econ_item.h" #include "econ_item.h"
@ -66,7 +68,7 @@ bool IsInFreezeCam( void );
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Base Player class // Purpose: Base Player class
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
class C_BasePlayer : public C_BaseCombatCharacter class C_BasePlayer : public C_BaseCombatCharacter, public CGameEventListener
{ {
public: public:
DECLARE_CLASS( C_BasePlayer, C_BaseCombatCharacter ); DECLARE_CLASS( C_BasePlayer, C_BaseCombatCharacter );
@ -467,6 +469,8 @@ protected:
// used by client side player footsteps // used by client side player footsteps
surfacedata_t* GetGroundSurface(); surfacedata_t* GetGroundSurface();
virtual void FireGameEvent( IGameEvent *event );
protected: protected:
// Did we just enter a vehicle this frame? // Did we just enter a vehicle this frame?
bool JustEnteredVehicle(); bool JustEnteredVehicle();

View File

@ -16,7 +16,7 @@
#include "utlmultilist.h" #include "utlmultilist.h"
#include "vprof.h" #include "vprof.h"
#include "icommandline.h" #include "icommandline.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
static void PixelvisDrawChanged( IConVar *pPixelvisVar, const char *pOld, float flOldValue ); static void PixelvisDrawChanged( IConVar *pPixelvisVar, const char *pOld, float flOldValue );

View File

@ -18,7 +18,7 @@
#include "vgui/ISurface.h" #include "vgui/ISurface.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "../hud_crosshair.h" #include "../hud_crosshair.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
// NVNT haptic utils // NVNT haptic utils
#include "haptics/haptic_utils.h" #include "haptics/haptic_utils.h"

View File

@ -121,7 +121,7 @@
#include "clientsteamcontext.h" #include "clientsteamcontext.h"
#include "renamed_recvtable_compat.h" #include "renamed_recvtable_compat.h"
#include "mouthinfo.h" #include "mouthinfo.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "mumble.h" #include "mumble.h"
@ -148,7 +148,6 @@
#endif #endif
extern vgui::IInputInternal *g_InputInternal; extern vgui::IInputInternal *g_InputInternal;
const char *COM_GetModDirectory(); // return the mod dir (rather than the complete -game param, which can be a path)
//============================================================================= //=============================================================================
// HPE_BEGIN // HPE_BEGIN
@ -332,6 +331,11 @@ static ConVar s_CV_ShowParticleCounts("showparticlecounts", "0", 0, "Display num
static ConVar s_cl_team("cl_team", "default", FCVAR_USERINFO|FCVAR_ARCHIVE, "Default team when joining a game"); static ConVar s_cl_team("cl_team", "default", FCVAR_USERINFO|FCVAR_ARCHIVE, "Default team when joining a game");
static ConVar s_cl_class("cl_class", "default", FCVAR_USERINFO|FCVAR_ARCHIVE, "Default class when joining a game"); static ConVar s_cl_class("cl_class", "default", FCVAR_USERINFO|FCVAR_ARCHIVE, "Default class when joining a game");
#ifdef HL1MP_CLIENT_DLL
static ConVar s_cl_load_hl1_content("cl_load_hl1_content", "0", FCVAR_ARCHIVE, "Mount the content from Half-Life: Source if possible");
#endif
// Physics system // Physics system
bool g_bLevelInitialized; bool g_bLevelInitialized;
bool g_bTextMode = false; bool g_bTextMode = false;
@ -943,7 +947,7 @@ int CHLClient::Init( CreateInterfaceFn appSystemFactory, CreateInterfaceFn physi
InitFbx(); InitFbx();
#endif #endif
// it's ok if this is NULL. That just means the headtrack.dll wasn't found // it's ok if this is NULL. That just means the sourcevr.dll wasn't found
g_pSourceVR = (ISourceVirtualReality *)appSystemFactory(SOURCE_VIRTUAL_REALITY_INTERFACE_VERSION, NULL); g_pSourceVR = (ISourceVirtualReality *)appSystemFactory(SOURCE_VIRTUAL_REALITY_INTERFACE_VERSION, NULL);
factorylist_t factories; factorylist_t factories;
@ -977,17 +981,6 @@ int CHLClient::Init( CreateInterfaceFn appSystemFactory, CreateInterfaceFn physi
g_pcv_ThreadMode = g_pCVar->FindVar( "host_thread_mode" ); g_pcv_ThreadMode = g_pCVar->FindVar( "host_thread_mode" );
// If we are in VR mode do some initial setup work
if( UseVR() )
{
int nViewportWidth, nViewportHeight;
g_pSourceVR->GetViewportBounds( ISourceVirtualReality::VREye_Left, NULL, NULL, &nViewportWidth, &nViewportHeight );
vgui::surface()->SetFullscreenViewport( 0, 0, nViewportWidth, nViewportHeight );
vgui::ivgui()->SetVRMode( true );
}
if (!Initializer::InitializeAllObjects()) if (!Initializer::InitializeAllObjects())
return false; return false;
@ -1091,6 +1084,7 @@ int CHLClient::Init( CreateInterfaceFn appSystemFactory, CreateInterfaceFn physi
#ifndef _X360 #ifndef _X360
HookHapticMessages(); // Always hook the messages HookHapticMessages(); // Always hook the messages
#endif #endif
return true; return true;
} }
@ -1141,29 +1135,23 @@ void CHLClient::PostInit()
g_pSixenseInput->PostInit(); g_pSixenseInput->PostInit();
#endif #endif
// If we are in VR mode execute headtrack.cfg in PostInit so all the convars will g_ClientVirtualReality.StartupComplete();
// already be set up
if( UseVR() ) #ifdef HL1MP_CLIENT_DLL
if ( s_cl_load_hl1_content.GetBool() && steamapicontext && steamapicontext->SteamApps() )
{ {
// general all-game stuff char szPath[ MAX_PATH*2 ];
engine->ExecuteClientCmd( "exec headtrack\\headtrack.cfg" ); int ccFolder= steamapicontext->SteamApps()->GetAppInstallDir( 280, szPath, sizeof(szPath) );
if ( ccFolder > 0 )
{
V_AppendSlash( szPath, sizeof(szPath) );
V_strncat( szPath, "hl1", sizeof( szPath ) );
// game specific VR config g_pFullFileSystem->AddSearchPath( szPath, "HL1" );
CUtlString sCmd; g_pFullFileSystem->AddSearchPath( szPath, "GAME" );
sCmd.Format( "exec headtrack_%s.cfg", COM_GetModDirectory() );
engine->ExecuteClientCmd( sCmd.Get() );
engine->ExecuteClientCmd( "vr_start_tracking" );
vgui::surface()->SetSoftwareCursor( true );
#if defined(POSIX)
ConVarRef m_rawinput( "m_rawinput" );
m_rawinput.SetValue( 1 );
ConVarRef mat_vsync( "mat_vsync" );
mat_vsync.SetValue( 0 );
#endif
} }
}
#endif
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -206,6 +206,8 @@ $Project
$File "$SRCDIR\game\shared\basegrenade_shared.cpp" $File "$SRCDIR\game\shared\basegrenade_shared.cpp"
$File "$SRCDIR\game\shared\baseparticleentity.cpp" $File "$SRCDIR\game\shared\baseparticleentity.cpp"
$File "$SRCDIR\game\shared\baseplayer_shared.cpp" $File "$SRCDIR\game\shared\baseplayer_shared.cpp"
$File "$SRCDIR\game\shared\baseprojectile.cpp"
$File "$SRCDIR\game\shared\baseprojectile.h"
$File "$SRCDIR\game\shared\baseviewmodel_shared.cpp" $File "$SRCDIR\game\shared\baseviewmodel_shared.cpp"
$File "beamdraw.cpp" $File "beamdraw.cpp"
$File "$SRCDIR\game\shared\beam_shared.cpp" $File "$SRCDIR\game\shared\beam_shared.cpp"

View File

@ -9,15 +9,21 @@
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "materialsystem/itexture.h" #include "materialsystem/itexture.h"
#include "materialsystem/materialsystem_config.h"
#include "view_shared.h" #include "view_shared.h"
#include "view_scene.h"
#include "VGuiMatSurface/IMatSystemSurface.h" #include "VGuiMatSurface/IMatSystemSurface.h"
#include "vgui_controls/Controls.h" #include "vgui_controls/Controls.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "ienginevgui.h" #include "ienginevgui.h"
#include "cdll_client_int.h" #include "cdll_client_int.h"
#include "vgui/IVGui.h"
#include "vgui_controls/Controls.h"
#include "tier0/vprof_telemetry.h" #include "tier0/vprof_telemetry.h"
#include <time.h> #include <time.h>
const char *COM_GetModDirectory(); // return the mod dir (rather than the complete -game param, which can be a path)
CClientVirtualReality g_ClientVirtualReality; CClientVirtualReality g_ClientVirtualReality;
EXPOSE_SINGLE_INTERFACE_GLOBALVAR( CClientVirtualReality, IClientVirtualReality, EXPOSE_SINGLE_INTERFACE_GLOBALVAR( CClientVirtualReality, IClientVirtualReality,
CLIENTVIRTUALREALITY_INTERFACE_VERSION, g_ClientVirtualReality ); CLIENTVIRTUALREALITY_INTERFACE_VERSION, g_ClientVirtualReality );
@ -26,6 +32,9 @@ EXPOSE_SINGLE_INTERFACE_GLOBALVAR( CClientVirtualReality, IClientVirtualReality,
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// A huge pile of VR convars // A huge pile of VR convars
// -------------------------------------------------------------------- // --------------------------------------------------------------------
ConVar vr_activate_default( "vr_activate_default", "0", FCVAR_ARCHIVE, "If this is true the game will switch to VR mode once startup is complete." );
ConVar vr_moveaim_mode ( "vr_moveaim_mode", "3", FCVAR_ARCHIVE, "0=move+shoot from face. 1=move with torso. 2,3,4=shoot with face+mouse cursor. 5+ are probably not that useful." ); ConVar vr_moveaim_mode ( "vr_moveaim_mode", "3", FCVAR_ARCHIVE, "0=move+shoot from face. 1=move with torso. 2,3,4=shoot with face+mouse cursor. 5+ are probably not that useful." );
ConVar vr_moveaim_mode_zoom ( "vr_moveaim_mode_zoom", "3", FCVAR_ARCHIVE, "0=move+shoot from face. 1=move with torso. 2,3,4=shoot with face+mouse cursor. 5+ are probably not that useful." ); ConVar vr_moveaim_mode_zoom ( "vr_moveaim_mode_zoom", "3", FCVAR_ARCHIVE, "0=move+shoot from face. 1=move with torso. 2,3,4=shoot with face+mouse cursor. 5+ are probably not that useful." );
@ -54,21 +63,18 @@ ConVar vr_debug_remote_cam_target_z( "vr_debug_remote_cam_target_z", "-50.0" );
ConVar vr_translation_limit( "vr_translation_limit", "10.0", 0, "How far the in-game head will translate before being clamped." ); ConVar vr_translation_limit( "vr_translation_limit", "10.0", 0, "How far the in-game head will translate before being clamped." );
ConVar vr_dont_use_calibration_projection ( "vr_dont_use_calibration_projection", "0", 0, "1=use calibrated rotation, but not projection" );
// HUD config values // HUD config values
ConVar vr_render_hud_in_world( "vr_render_hud_in_world", "1" ); ConVar vr_render_hud_in_world( "vr_render_hud_in_world", "1" );
ConVar vr_hud_max_fov( "vr_hud_max_fov", "60", FCVAR_ARCHIVE, "Max FOV of the HUD" ); ConVar vr_hud_max_fov( "vr_hud_max_fov", "60", FCVAR_ARCHIVE, "Max FOV of the HUD" );
ConVar vr_hud_forward( "vr_hud_forward", "500", FCVAR_ARCHIVE, "Apparent distance of the HUD in inches" ); ConVar vr_hud_forward( "vr_hud_forward", "500", FCVAR_ARCHIVE, "Apparent distance of the HUD in inches" );
ConVar vr_hud_display_ratio( "vr_hud_display_ratio", "0.95", FCVAR_ARCHIVE ); ConVar vr_hud_display_ratio( "vr_hud_display_ratio", "0.95", FCVAR_ARCHIVE );
ConVar vr_hud_never_overlay( "vr_hud_never_overlay", "0" );
ConVar vr_hud_axis_lock_to_world( "vr_hud_axis_lock_to_world", "0", FCVAR_ARCHIVE, "Bitfield - locks HUD axes to the world - 0=pitch, 1=yaw, 2=roll" ); ConVar vr_hud_axis_lock_to_world( "vr_hud_axis_lock_to_world", "0", FCVAR_ARCHIVE, "Bitfield - locks HUD axes to the world - 0=pitch, 1=yaw, 2=roll" );
// Default distance clips through rocketlauncher, heavy's body, etc. // Default distance clips through rocketlauncher, heavy's body, etc.
ConVar vr_projection_znear_multiplier( "vr_projection_znear_multiplier", "0.3", 0, "Allows moving the ZNear plane to deal with body clipping" ); ConVar vr_projection_znear_multiplier( "vr_projection_znear_multiplier", "0.3", 0, "Allows moving the ZNear plane to deal with body clipping" );
ConVar vr_stat_sample_period ( "vr_stat_sample_period", "1", 0, "Frequency with which to sample motion stats" );
// Should the viewmodel (weapon) translate with the HMD, or remain fixed to the in-world body (but still rotate with the head)? Purely a graphics effect - no effect on actual bullet aiming. // Should the viewmodel (weapon) translate with the HMD, or remain fixed to the in-world body (but still rotate with the head)? Purely a graphics effect - no effect on actual bullet aiming.
// Has no effect in aim modes where aiming is not controlled by the head. // Has no effect in aim modes where aiming is not controlled by the head.
ConVar vr_viewmodel_translate_with_head ( "vr_viewmodel_translate_with_head", "0", 0, "1=translate the viewmodel with the head motion." ); ConVar vr_viewmodel_translate_with_head ( "vr_viewmodel_translate_with_head", "0", 0, "1=translate the viewmodel with the head motion." );
@ -80,16 +86,9 @@ ConVar vr_zoom_scope_scale ( "vr_zoom_scope_scale", "6.0", 0, "Something to do w
ConVar vr_viewmodel_offset_forward( "vr_viewmodel_offset_forward", "-8", 0 ); ConVar vr_viewmodel_offset_forward( "vr_viewmodel_offset_forward", "-8", 0 );
ConVar vr_viewmodel_offset_forward_large( "vr_viewmodel_offset_forward_large", "-15", 0 ); ConVar vr_viewmodel_offset_forward_large( "vr_viewmodel_offset_forward_large", "-15", 0 );
ConVar vr_ipdtest_left_t ( "vr_ipdtest_left_t", "260", FCVAR_ARCHIVE ); ConVar vr_force_windowed ( "vr_force_windowed", "0", FCVAR_ARCHIVE );
ConVar vr_ipdtest_left_b ( "vr_ipdtest_left_b", "530", FCVAR_ARCHIVE );
ConVar vr_ipdtest_left_i ( "vr_ipdtest_left_i", "550", FCVAR_ARCHIVE );
ConVar vr_ipdtest_left_o ( "vr_ipdtest_left_o", "200", FCVAR_ARCHIVE );
ConVar vr_ipdtest_right_t ( "vr_ipdtest_right_t", "260", FCVAR_ARCHIVE );
ConVar vr_ipdtest_right_b ( "vr_ipdtest_right_b", "530", FCVAR_ARCHIVE );
ConVar vr_ipdtest_right_i ( "vr_ipdtest_right_i", "550", FCVAR_ARCHIVE );
ConVar vr_ipdtest_right_o ( "vr_ipdtest_right_o", "200", FCVAR_ARCHIVE );
ConVar vr_first_person_uses_world_model ( "vr_first_person_uses_world_model", "1", 0, "Causes the third person model to be drawn instead of the view model" );
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: Cycle through the aim & move modes. // Purpose: Cycle through the aim & move modes.
@ -122,6 +121,32 @@ void CC_VR_Cycle_Aim_Move_Mode ( const CCommand& args )
static ConCommand vr_cycle_aim_move_mode("vr_cycle_aim_move_mode", CC_VR_Cycle_Aim_Move_Mode, "Cycle through the aim & move modes." ); static ConCommand vr_cycle_aim_move_mode("vr_cycle_aim_move_mode", CC_VR_Cycle_Aim_Move_Mode, "Cycle through the aim & move modes." );
// --------------------------------------------------------------------
// Purpose: Switch to/from VR mode.
// --------------------------------------------------------------------
CON_COMMAND( vr_activate, "Switch to VR mode" )
{
g_ClientVirtualReality.Activate();
}
CON_COMMAND( vr_deactivate, "Switch from VR mode to normal mode" )
{
g_ClientVirtualReality.Deactivate();
}
CON_COMMAND( vr_toggle, "Toggles VR mode" )
{
if( g_pSourceVR )
{
if( g_pSourceVR->ShouldRunInVR() )
g_ClientVirtualReality.Deactivate();
else
g_ClientVirtualReality.Activate();
}
else
{
Msg( "VR Mode is not enabled.\n" );
}
}
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: Returns true if the matrix is orthonormal // Purpose: Returns true if the matrix is orthonormal
@ -235,11 +260,9 @@ CClientVirtualReality::CClientVirtualReality()
m_rtLastMotionSample = 0; m_rtLastMotionSample = 0;
m_bMotionUpdated = false; m_bMotionUpdated = false;
m_bIpdTestEnabled = false; #if defined( USE_SDL )
m_nNonVRSDLDisplayIndex = 0;
// Needs to be after the tracker has initted. #endif
m_bIpdTestEnabled = false;
m_IpdTestControl = 0;
} }
CClientVirtualReality::~CClientVirtualReality() CClientVirtualReality::~CClientVirtualReality()
@ -378,8 +401,8 @@ void CClientVirtualReality::DrawMainMenu()
viewEye[STEREO_EYE_RIGHT].y = rightY; viewEye[STEREO_EYE_RIGHT].y = rightY;
viewEye[STEREO_EYE_RIGHT].m_eStereoEye = STEREO_EYE_RIGHT; viewEye[STEREO_EYE_RIGHT].m_eStereoEye = STEREO_EYE_RIGHT;
// let headtrack.dll tell us where to put the cameras // let sourcevr.dll tell us where to put the cameras
ProcessCurrentTrackingState( 75.f ); ProcessCurrentTrackingState( 0 );
Vector vViewModelOrigin; Vector vViewModelOrigin;
QAngle qViewModelAngles; QAngle qViewModelAngles;
OverrideView( &viewEye[ STEREO_EYE_MONO ] , &vViewModelOrigin, &qViewModelAngles, HMM_NOOVERRIDE ); OverrideView( &viewEye[ STEREO_EYE_MONO ] , &vViewModelOrigin, &qViewModelAngles, HMM_NOOVERRIDE );
@ -388,23 +411,22 @@ void CClientVirtualReality::DrawMainMenu()
// render both eyes // render both eyes
for( int nView = STEREO_EYE_LEFT; nView <= STEREO_EYE_RIGHT; nView++ ) for( int nView = STEREO_EYE_LEFT; nView <= STEREO_EYE_RIGHT; nView++ )
{ {
// clear happens here probably CMatRenderContextPtr pRenderContext( materials );
render->Push3DView( viewEye[nView], VIEW_CLEAR_DEPTH|VIEW_CLEAR_COLOR, NULL, NULL ); PIXEvent pixEvent( pRenderContext, nView == STEREO_EYE_LEFT ? "left eye" : "right eye" );
RenderHUDQuad( true, false );
ITexture *pColor = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(nView-1), ISourceVirtualReality::RT_Color );
ITexture *pDepth = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(nView-1), ISourceVirtualReality::RT_Depth );
render->Push3DView( viewEye[nView], VIEW_CLEAR_DEPTH|VIEW_CLEAR_COLOR, pColor, NULL, pDepth );
RenderHUDQuad( false, false );
render->PopView( NULL ); render->PopView( NULL );
PostProcessFrame( (StereoEye_t)nView );
OverlayHUDQuadWithUndistort( viewEye[nView], true, true, false );
} }
vrect_t rect;
rect.x = rect.y = 0;
rect.width = leftW*2;
rect.height = leftH;
PostProcessFrame( &rect );
} }
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: // Purpose:
// Offset the incoming view appropriately. // Offset the incoming view appropriately.
@ -449,8 +471,7 @@ bool CClientVirtualReality::OverrideView ( CViewSetup *pViewMiddle, Vector *pVie
QAngle torsoAngles = m_PlayerTorsoAngle; QAngle torsoAngles = m_PlayerTorsoAngle;
VMatrix worldFromTorso; VMatrix worldFromTorso;
AngleMatrix ( torsoAngles, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixOrgAngles( m_PlayerTorsoOrigin, torsoAngles );
worldFromTorso.SetTranslation ( m_PlayerTorsoOrigin );
//// Scale translation e.g. to allow big in-game leans with only a small head movement. //// Scale translation e.g. to allow big in-game leans with only a small head movement.
//// Clamp HMD movement to a reasonable amount to avoid wallhacks, vis problems, etc. //// Clamp HMD movement to a reasonable amount to avoid wallhacks, vis problems, etc.
@ -484,16 +505,14 @@ bool CClientVirtualReality::OverrideView ( CViewSetup *pViewMiddle, Vector *pVie
// Aim point is independent of view - leave it as it was, just copy it into m_WorldFromWeapon for our use. // Aim point is independent of view - leave it as it was, just copy it into m_WorldFromWeapon for our use.
m_TorsoFromMideye = matMideyeZeroFromMideyeCurrent; m_TorsoFromMideye = matMideyeZeroFromMideyeCurrent;
m_WorldFromMidEye = worldFromTorso * matMideyeZeroFromMideyeCurrent; m_WorldFromMidEye = worldFromTorso * matMideyeZeroFromMideyeCurrent;
AngleMatrix ( originalMiddleAngles, m_WorldFromWeapon.As3x4() ); m_WorldFromWeapon.SetupMatrixOrgAngles( originalMiddleOrigin, originalMiddleAngles );
m_WorldFromWeapon.SetTranslation ( originalMiddleOrigin );
break; break;
case HMM_SHOOTMOVELOOKMOUSE: case HMM_SHOOTMOVELOOKMOUSE:
// HMD is ignored completely, mouse does everything. // HMD is ignored completely, mouse does everything.
m_PlayerTorsoAngle = originalMiddleAngles; m_PlayerTorsoAngle = originalMiddleAngles;
AngleMatrix ( originalMiddleAngles, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixOrgAngles( m_PlayerTorsoOrigin, originalMiddleAngles );
worldFromTorso.SetTranslation ( m_PlayerTorsoOrigin );
m_TorsoFromMideye.Identity(); m_TorsoFromMideye.Identity();
m_WorldFromMidEye = worldFromTorso; m_WorldFromMidEye = worldFromTorso;
@ -535,9 +554,8 @@ bool CClientVirtualReality::OverrideView ( CViewSetup *pViewMiddle, Vector *pVie
Vector vView = vLookat - vOffset; Vector vView = vLookat - vOffset;
VectorAngles ( vView, m_WorldFromMidEye.GetUp(), pViewMiddle->angles ); VectorAngles ( vView, m_WorldFromMidEye.GetUp(), pViewMiddle->angles );
AngleMatrix ( pViewMiddle->angles, m_WorldFromMidEye.As3x4() ); m_WorldFromMidEye.SetupMatrixOrgAngles( pViewMiddle->origin, pViewMiddle->angles );
m_WorldFromMidEye.SetTranslation ( pViewMiddle->origin );
m_TorsoFromMideye.Identity(); m_TorsoFromMideye.Identity();
} }
@ -584,47 +602,19 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
return false; return false;
} }
if ( vr_stereo_swap_eyes.GetBool() ) VMatrix matOffsetLeft = g_pSourceVR->GetMidEyeFromEye( ISourceVirtualReality::VREye_Left );
{ VMatrix matOffsetRight = g_pSourceVR->GetMidEyeFromEye( ISourceVirtualReality::VREye_Right );
// Windows likes to randomly rename display numbers which causes eye-swaps, so this tries to cope with that.
CViewSetup *pViewTemp = pViewLeft;
pViewLeft = pViewRight;
pViewRight = pViewTemp;
}
// Move eyes to calibrated positions. // Move eyes to IPD positions.
VMatrix worldFromLeftEye = m_WorldFromMidEye * g_pSourceVR->GetMidEyeFromLeft(); VMatrix worldFromLeftEye = m_WorldFromMidEye * matOffsetLeft;
VMatrix worldFromRightEye = m_WorldFromMidEye * g_pSourceVR->GetMidEyeFromRight(); VMatrix worldFromRightEye = m_WorldFromMidEye * matOffsetRight;
Assert ( IsOrthonormal ( worldFromLeftEye, 0.001f ) );
Assert ( IsOrthonormal ( worldFromRightEye, 0.001f ) );
Vector rightFromLeft = worldFromRightEye.GetTranslation() - worldFromLeftEye.GetTranslation();
//float calibratedIPD = rightFromLeft.Length(); // THIS IS NOT CORRECT. The positions of the virtual cameras do have any real physical "meaning" with the way we currently calibrate.
float calibratedIPD = g_pSourceVR->GetDisplaySeparationMM() / 25.4f;
// Scale the eyes closer/further to fit the desired IPD.
// (the calibrated distance is the IPD of whoever calibrated it!)
float desiredIPD = g_pSourceVR->GetUserIPDMM() / 25.4f;
if ( calibratedIPD < 0.000001f )
{
// No HMD, or a monocular HMD.
}
else
{
float scale = 0.5f * ( desiredIPD - calibratedIPD ) / calibratedIPD;
worldFromLeftEye.SetTranslation ( worldFromLeftEye.GetTranslation() - ( scale * rightFromLeft ) );
worldFromRightEye.SetTranslation ( worldFromRightEye.GetTranslation() + ( scale * rightFromLeft ) );
}
Assert ( IsOrthonormal ( worldFromLeftEye, 0.001f ) ); Assert ( IsOrthonormal ( worldFromLeftEye, 0.001f ) );
Assert ( IsOrthonormal ( worldFromRightEye, 0.001f ) ); Assert ( IsOrthonormal ( worldFromRightEye, 0.001f ) );
// Finally convert back to origin+angles. // Finally convert back to origin+angles.
pViewLeft->origin = worldFromLeftEye.GetTranslation(); MatrixAngles( worldFromLeftEye.As3x4(), pViewLeft->angles, pViewLeft->origin );
VectorAngles ( worldFromLeftEye.GetForward(), worldFromLeftEye.GetUp(), pViewLeft->angles ); MatrixAngles( worldFromRightEye.As3x4(), pViewRight->angles, pViewRight->origin );
pViewRight->origin = worldFromRightEye.GetTranslation();
VectorAngles ( worldFromRightEye.GetForward(), worldFromRightEye.GetUp(), pViewRight->angles );
// Find the projection matrices. // Find the projection matrices.
@ -645,13 +635,6 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
} }
} }
if ( vr_dont_use_calibration_projection.GetBool() )
{
pViewLeft ->m_bViewToProjectionOverride = false;
pViewRight ->m_bViewToProjectionOverride = false;
pViewMiddle->m_bViewToProjectionOverride = false;
}
switch ( vr_stereo_mono_set_eye.GetInt() ) switch ( vr_stereo_mono_set_eye.GetInt() )
{ {
case 0: case 0:
@ -683,6 +666,17 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
CalcFovFromProjection ( &(pViewRight ->fov), pViewRight ->m_ViewToProjection ); CalcFovFromProjection ( &(pViewRight ->fov), pViewRight ->m_ViewToProjection );
CalcFovFromProjection ( &(pViewMiddle->fov), pViewMiddle->m_ViewToProjection ); CalcFovFromProjection ( &(pViewMiddle->fov), pViewMiddle->m_ViewToProjection );
// if we don't know the HUD FOV, figure that out now
if( m_fHudHorizontalFov == 0.f )
{
// Figure out the current HUD FOV.
m_fHudHorizontalFov = pViewLeft->fov * vr_hud_display_ratio.GetFloat();
if( m_fHudHorizontalFov > vr_hud_max_fov.GetFloat() )
{
m_fHudHorizontalFov = vr_hud_max_fov.GetFloat();
}
}
// remember the view angles so we can limit the weapon to something near those // remember the view angles so we can limit the weapon to something near those
m_PlayerViewAngle = pViewMiddle->angles; m_PlayerViewAngle = pViewMiddle->angles;
m_PlayerViewOrigin = pViewMiddle->origin; m_PlayerViewOrigin = pViewMiddle->origin;
@ -701,7 +695,6 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
m_fHudHalfHeight = tan( DEG2RAD( fVFOV * 0.5f ) ) * fHudForward * m_WorldZoomScale; m_fHudHalfHeight = tan( DEG2RAD( fVFOV * 0.5f ) ) * fHudForward * m_WorldZoomScale;
QAngle HudAngles; QAngle HudAngles;
VMatrix HudUpCorrection;
switch ( m_hmmMovementActual ) switch ( m_hmmMovementActual )
{ {
case HMM_SHOOTFACE_MOVETORSO: case HMM_SHOOTFACE_MOVETORSO:
@ -709,7 +702,6 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
// This helps keep you oriented about where "forwards" is, which is otherwise surprisingly tricky! // This helps keep you oriented about where "forwards" is, which is otherwise surprisingly tricky!
// TODO: try preserving roll and/or pitch from the view? // TODO: try preserving roll and/or pitch from the view?
HudAngles = m_PlayerTorsoAngle; HudAngles = m_PlayerTorsoAngle;
HudUpCorrection.Identity();
break; break;
case HMM_SHOOTFACE_MOVEFACE: case HMM_SHOOTFACE_MOVEFACE:
case HMM_SHOOTMOUSE_MOVEFACE: case HMM_SHOOTMOUSE_MOVEFACE:
@ -720,7 +712,6 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
case HMM_SHOOTBOUNDEDMOUSE_LOOKFACE_MOVEMOUSE: case HMM_SHOOTBOUNDEDMOUSE_LOOKFACE_MOVEMOUSE:
// Put the HUD in front of wherever the player is looking. // Put the HUD in front of wherever the player is looking.
HudAngles = m_PlayerViewAngle; HudAngles = m_PlayerViewAngle;
HudUpCorrection = g_pSourceVR->GetHudUpCorrection();
break; break;
default: Assert ( false ); break; default: Assert ( false ); break;
} }
@ -742,9 +733,7 @@ bool CClientVirtualReality::OverrideStereoView( CViewSetup *pViewMiddle, CViewSe
MatrixAngles( m_WorldFromWeapon.As3x4(), aimAngles ); MatrixAngles( m_WorldFromWeapon.As3x4(), aimAngles );
HudAngles[YAW] = aimAngles[YAW]; HudAngles[YAW] = aimAngles[YAW];
} }
AngleMatrix ( HudAngles, m_WorldFromHud.As3x4() ); m_WorldFromHud.SetupMatrixOrgAngles( m_PlayerViewOrigin, HudAngles );
m_WorldFromHud.SetTranslation ( m_PlayerViewOrigin );
m_WorldFromHud = m_WorldFromHud * HudUpCorrection;
// Remember in source X forwards, Y left, Z up. // Remember in source X forwards, Y left, Z up.
// We need to transform to a more conventional X right, Y up, Z backwards before doing the projection. // We need to transform to a more conventional X right, Y up, Z backwards before doing the projection.
@ -806,8 +795,8 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
{ {
// Figure out what changes were made to the WEAPON by mouse/joystick/etc // Figure out what changes were made to the WEAPON by mouse/joystick/etc
VMatrix worldFromOldWeapon, worldFromCurWeapon; VMatrix worldFromOldWeapon, worldFromCurWeapon;
AngleMatrix ( oldAngles, worldFromOldWeapon.As3x4() ); worldFromOldWeapon.SetupMatrixAngles( oldAngles );
AngleMatrix ( curAngles, worldFromCurWeapon.As3x4() ); worldFromCurWeapon.SetupMatrixAngles( curAngles );
// We ignore mouse pitch, the mouse can't do rolls, so it's just yaw changes. // We ignore mouse pitch, the mouse can't do rolls, so it's just yaw changes.
if( !m_bOverrideTorsoAngle ) if( !m_bOverrideTorsoAngle )
@ -817,7 +806,7 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
m_PlayerTorsoAngle[PITCH] = 0.0f; m_PlayerTorsoAngle[PITCH] = 0.0f;
} }
AngleMatrix ( m_PlayerTorsoAngle, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixAngles( m_PlayerTorsoAngle );
// Weapon view = mideye view, so apply that to the torso to find the world view direction. // Weapon view = mideye view, so apply that to the torso to find the world view direction.
m_WorldFromWeapon = worldFromTorso * m_TorsoFromMideye; m_WorldFromWeapon = worldFromTorso * m_TorsoFromMideye;
@ -846,10 +835,8 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
} }
// Let every other system know. // Let every other system know.
AngleMatrix( *pNewAngles, m_WorldFromWeapon.As3x4() ); m_WorldFromWeapon.SetupMatrixOrgAngles( vWeaponOrigin, *pNewAngles );
AngleMatrix( m_PlayerTorsoAngle, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixAngles( m_PlayerTorsoAngle );
// Restore the translation.
m_WorldFromWeapon.SetTranslation ( vWeaponOrigin );
} }
break; break;
case HMM_SHOOTBOUNDEDMOUSE_LOOKFACE_MOVEFACE: case HMM_SHOOTBOUNDEDMOUSE_LOOKFACE_MOVEFACE:
@ -913,10 +900,8 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
} }
// Let every other system know. // Let every other system know.
AngleMatrix( *pNewAngles, m_WorldFromWeapon.As3x4() ); m_WorldFromWeapon.SetupMatrixOrgAngles( vWeaponOrigin, *pNewAngles );
AngleMatrix( m_PlayerTorsoAngle, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixAngles( m_PlayerTorsoAngle );
// Restore the translation.
m_WorldFromWeapon.SetTranslation ( vWeaponOrigin );
} }
break; break;
case HMM_SHOOTMOUSE_MOVEFACE: case HMM_SHOOTMOUSE_MOVEFACE:
@ -942,10 +927,8 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
m_PlayerTorsoAngle[ YAW ] += AngleDiff( curAngles[YAW], oldAngles[YAW] ) /2.f; m_PlayerTorsoAngle[ YAW ] += AngleDiff( curAngles[YAW], oldAngles[YAW] ) /2.f;
} }
AngleMatrix( *pNewAngles, m_WorldFromWeapon.As3x4() ); m_WorldFromWeapon.SetupMatrixOrgAngles( vWeaponOrigin, *pNewAngles );
AngleMatrix( m_PlayerTorsoAngle, worldFromTorso.As3x4() ); worldFromTorso.SetupMatrixAngles( m_PlayerTorsoAngle );
// Restore the translation.
m_WorldFromWeapon.SetTranslation ( vWeaponOrigin );
} }
break; break;
default: Assert ( false ); break; default: Assert ( false ); break;
@ -1007,101 +990,6 @@ bool CClientVirtualReality::OverridePlayerMotion( float flInputSampleFrametime,
return true; return true;
} }
// --------------------------------------------------------------------
// Purpose: Collects convar and HMD state once a session
// --------------------------------------------------------------------
bool CClientVirtualReality::CollectSessionStartStats( KeyValues *pkvStats )
{
pkvStats->SetName( "TF2VRSessionDetails" );
CUtlString sSerialNumber = g_pSourceVR->GetDisplaySerialNumber();
if( sSerialNumber.IsValid() && !sSerialNumber.IsEmpty() )
{
pkvStats->SetString( "SerialNumber", sSerialNumber.Get() );
}
CUtlString sModelNumber = g_pSourceVR->GetDisplayModelNumber();
if( sModelNumber.IsValid() && !sModelNumber.IsEmpty() )
{
pkvStats->SetString( "ModelNumberID", sModelNumber.Get() );
}
pkvStats->SetFloat( "vr_separation_user_inches", g_pSourceVR->GetUserIPDMM() / 25.4f );
//pkvStats->SetFloat( "vr_separation_toein_pixels", vr_separation_toein_pixels.GetFloat() );
//pkvStats->SetInt( "vr_moveaim_mode", vr_moveaim_mode.GetInt() );
//pkvStats->SetFloat( "vr_moveaim_reticle_yaw_limit", vr_moveaim_reticle_yaw_limit.GetFloat() );
//pkvStats->SetFloat( "vr_moveaim_reticle_pitch_limit", vr_moveaim_reticle_pitch_limit.GetFloat() );
//pkvStats->SetInt( "vr_moveaim_mode_zoom", vr_moveaim_mode_zoom.GetInt() );
//pkvStats->SetFloat( "vr_moveaim_reticle_yaw_limit_zoom", vr_moveaim_reticle_yaw_limit_zoom.GetFloat() );
//pkvStats->SetFloat( "vr_moveaim_reticle_pitch_limit_zoom", vr_moveaim_reticle_pitch_limit_zoom.GetFloat() );
//pkvStats->SetFloat( "vr_hud_max_fov", vr_hud_max_fov.GetFloat() );
//pkvStats->SetFloat( "vr_hud_forward", vr_hud_forward.GetFloat() );
//pkvStats->SetFloat( "vr_neckmodel_up", vr_neckmodel_up.GetFloat() );
//pkvStats->SetFloat( "vr_neckmodel_forwards", vr_neckmodel_forwards.GetFloat() );
//pkvStats->SetInt( "vr_hud_axis_lock_to_world", vr_hud_axis_lock_to_world.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_left_t", vr_ipdtest_left_t.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_left_b", vr_ipdtest_left_b.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_left_i", vr_ipdtest_left_i.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_left_o", vr_ipdtest_left_o.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_right_t", vr_ipdtest_right_t.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_right_b", vr_ipdtest_right_b.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_right_i", vr_ipdtest_right_i.GetInt() );
//pkvStats->SetInt( "vr_ipdtest_right_o", vr_ipdtest_right_o.GetInt() );
return true;
}
// --------------------------------------------------------------------
// Purpose: Collects view stats every so often
// --------------------------------------------------------------------
bool CClientVirtualReality::CollectPeriodicStats( KeyValues *pkvStats )
{
// maybe we haven't even been called to get tracking data
if( !m_bMotionUpdated )
return false;
m_bMotionUpdated = false;
uint32 unPeriod = (uint32) vr_stat_sample_period.GetInt();
if( unPeriod == 0 )
return false; // periodic stats are turned off
RTime32 rtCurrent = time(NULL);
if( rtCurrent == m_rtLastMotionSample && ( rtCurrent - m_rtLastMotionSample ) < unPeriod )
return false; // it isn't time to report yet
pkvStats->SetName( "TF2VRMotionSample" );
pkvStats->SetInt( "SampleTime", rtCurrent );
Vector vPos;
QAngle viewAngles;
MatrixAngles( m_WorldFromMidEye.As3x4(), viewAngles, vPos );
pkvStats->SetFloat( "LookYaw", viewAngles[YAW] );
pkvStats->SetFloat( "LookPitch", viewAngles[PITCH] );
pkvStats->SetFloat( "LookRoll", viewAngles[ROLL] );
pkvStats->SetFloat( "PositionX", vPos.x );
pkvStats->SetFloat( "PositionY", vPos.y );
pkvStats->SetFloat( "PositionZ", vPos.z );
pkvStats->SetFloat( "VelocityX", m_PlayerLastMovement.x );
pkvStats->SetFloat( "VelocityY", m_PlayerLastMovement.y );
pkvStats->SetFloat( "VelocityZ", m_PlayerLastMovement.z );
QAngle aimAngles;
MatrixAngles( m_WorldFromWeapon.As3x4(), aimAngles );
pkvStats->SetFloat( "AimYaw", aimAngles[YAW] );
pkvStats->SetFloat( "AimPitch", aimAngles[PITCH] );
m_rtLastMotionSample = rtCurrent;
return true;
}
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: Returns true if the world is zoomed // Purpose: Returns true if the world is zoomed
// -------------------------------------------------------------------- // --------------------------------------------------------------------
@ -1154,6 +1042,19 @@ void CClientVirtualReality::CancelTorsoTransformOverride()
} }
bool CClientVirtualReality::CanOverlayHudQuad()
{
bool bCanOverlay = true;
bCanOverlay = bCanOverlay && vr_render_hud_in_world.GetBool();
bCanOverlay = bCanOverlay && ( ! vr_hud_never_overlay.GetBool() );
bCanOverlay = bCanOverlay && ( vr_hud_axis_lock_to_world.GetInt() == 0 );
bCanOverlay = bCanOverlay && ( m_hmmMovementActual != HMM_SHOOTFACE_MOVETORSO );
return bCanOverlay;
}
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: Returns the bounds in world space where the game should // Purpose: Returns the bounds in world space where the game should
// position the HUD. // position the HUD.
@ -1177,6 +1078,10 @@ void CClientVirtualReality::GetHUDBounds( Vector *pViewer, Vector *pUL, Vector *
// -------------------------------------------------------------------- // --------------------------------------------------------------------
void CClientVirtualReality::RenderHUDQuad( bool bBlackout, bool bTranslucent ) void CClientVirtualReality::RenderHUDQuad( bool bBlackout, bool bTranslucent )
{ {
// If we can overlay the HUD directly onto the target later, we'll do that instead (higher image quality).
if ( CanOverlayHudQuad() )
return;
Vector vHead, vUL, vUR, vLL, vLR; Vector vHead, vUL, vUR, vLL, vLR;
GetHUDBounds ( &vHead, &vUL, &vUR, &vLL, &vLR ); GetHUDBounds ( &vHead, &vUL, &vUR, &vLL, &vLR );
@ -1304,14 +1209,6 @@ float CClientVirtualReality::GetZoomedModeMagnification()
// -------------------------------------------------------------------- // --------------------------------------------------------------------
bool CClientVirtualReality::ProcessCurrentTrackingState( float fGameFOV ) bool CClientVirtualReality::ProcessCurrentTrackingState( float fGameFOV )
{ {
// Figure out the current HUD FOV.
m_fHudHorizontalFov = g_pSourceVR->GetHorizontalFOVDegrees() * vr_hud_display_ratio.GetFloat();
if( m_fHudHorizontalFov > vr_hud_max_fov.GetFloat() )
{
m_fHudHorizontalFov = vr_hud_max_fov.GetFloat();
}
m_WorldZoomScale = 1.0f; m_WorldZoomScale = 1.0f;
if ( fGameFOV != 0.0f ) if ( fGameFOV != 0.0f )
{ {
@ -1397,8 +1294,7 @@ void CClientVirtualReality::AlignTorsoAndViewToWeapon()
if( !UseVR() ) if( !UseVR() )
return; return;
VRTrackerState_t state = g_pSourceVR->GetTrackerState(); if( g_pSourceVR->WillDriftInYaw() )
if( state.bWillDriftInYaw )
{ {
m_iAlignTorsoAndViewToWeaponCountdown = 2; m_iAlignTorsoAndViewToWeaponCountdown = 2;
} }
@ -1408,291 +1304,202 @@ void CClientVirtualReality::AlignTorsoAndViewToWeapon()
// -------------------------------------------------------------------- // --------------------------------------------------------------------
// Purpose: Lets VR do stuff at the very end of the rendering process // Purpose: Lets VR do stuff at the very end of the rendering process
// -------------------------------------------------------------------- // --------------------------------------------------------------------
void CClientVirtualReality::PostProcessFrame( const vrect_t *SrcRect ) void CClientVirtualReality::PostProcessFrame( StereoEye_t eEye )
{ {
if( !UseVR() ) if( !UseVR() )
return; return;
g_pSourceVR->DoDistortionProcessing( SrcRect ); g_pSourceVR->DoDistortionProcessing( eEye == STEREO_EYE_LEFT ? ISourceVirtualReality::VREye_Left : ISourceVirtualReality::VREye_Right );
if ( m_bIpdTestEnabled )
{
DrawIpdCalibration ( SrcRect );
}
} }
//----------------------------------------------------------------------------- // --------------------------------------------------------------------
// Calibration UI // Pastes the HUD directly onto the backbuffer / render target.
//----------------------------------------------------------------------------- // (higher quality than the RenderHUDQuad() path but can't always be used)
// --------------------------------------------------------------------
void CClientVirtualReality::OverlayHUDQuadWithUndistort( const CViewSetup &eyeView, bool bDoUndistort, bool bBlackout, bool bTranslucent )
// These control the conversion of IPD from pixels to inches.
ConVar vr_ipdtest_interp_ipd_start_pixels ( "vr_ipdtest_interp_ipd_start_pixels", "491.0", 0 );
ConVar vr_ipdtest_interp_ipd_start_inches ( "vr_ipdtest_interp_ipd_start_inches", "2.717", 0 ); // 69mm
ConVar vr_ipdtest_interp_ipd_end_pixels ( "vr_ipdtest_interp_ipd_end_pixels", "602.0", 0 );
ConVar vr_ipdtest_interp_ipd_end_inches ( "vr_ipdtest_interp_ipd_end_inches", "2.205", 0 ); // 56mm
// These numbers need to be filled in from physical tests. Right now they are placeholder.
ConVar vr_ipdtest_interp_relief_start_pixels ( "vr_ipdtest_interp_relief_start_pixels", "400.0", 0 );
ConVar vr_ipdtest_interp_relief_start_inches ( "vr_ipdtest_interp_relief_start_inches", "0.0", 0 );
ConVar vr_ipdtest_interp_relief_end_pixels ( "vr_ipdtest_interp_relief_end_pixels", "600.0", 0 );
ConVar vr_ipdtest_interp_relief_end_inches ( "vr_ipdtest_interp_relief_end_inches", "1.0", 0 );
float Interpolate ( float fIn, float fInStart, float fInEnd, float fOutStart, float fOutEnd )
{ {
float fLamdba = ( fIn - fInStart ) / ( fInEnd - fInStart ); if ( ! UseVR() )
float fOut = fOutStart + fLamdba * ( fOutEnd - fOutStart );
return fOut;
}
void CClientVirtualReality::RecalcEyeCalibration ( TEyeCalibration *p )
{
int iDisplayWidth, iDisplayHeight;
bool bSuccess = g_pSourceVR->GetWindowSize ( &iDisplayWidth, &iDisplayHeight );
Assert ( bSuccess );
if ( bSuccess )
{
// Eye relief.
// Many ways to take the average eye size. But since the top edge is hard to find (strains the eyes, and there's problems with glasses), let's just use the difference between left and right.
p->Left.fSizePixels = (float)( p->Left.iIn - p->Left.iOut );
p->Right.fSizePixels = (float)( p->Right.iIn - p->Right.iOut );
// ...not that we have any data yet, nor do we know what to do with it if we had it.
float fLeftInches = Interpolate ( p->Left.fSizePixels,
vr_ipdtest_interp_relief_start_pixels.GetFloat(),
vr_ipdtest_interp_relief_end_pixels.GetFloat(),
vr_ipdtest_interp_relief_start_inches.GetFloat(),
vr_ipdtest_interp_relief_end_inches.GetFloat() );
p->Left.fReliefInches = fLeftInches;
float fRightInches = Interpolate ( p->Right.fSizePixels,
vr_ipdtest_interp_relief_start_pixels.GetFloat(),
vr_ipdtest_interp_relief_end_pixels.GetFloat(),
vr_ipdtest_interp_relief_start_inches.GetFloat(),
vr_ipdtest_interp_relief_end_inches.GetFloat() );
p->Right.fReliefInches = fRightInches;
// Calculate IPD
// In and Out are both measured from the nearest edge of the display, i.e. the left ones from the left edge, the right ones from the right edge.
float fLeftMid = (float)( p->Left.iIn + p->Left.iOut ) * 0.5f;
float fRightMid = (float)( p->Right.iIn + p->Right.iOut ) * 0.5f;
// An outside value of 0 is the first actual pixel on the outer edge of the display.
// So if both values are 0, the two lines are (iDisplayWidth-1) apart.
float fSeparationInPixels = (float)( iDisplayWidth - 1 ) - fLeftMid - fRightMid;
float fIpdInches = Interpolate ( fSeparationInPixels,
vr_ipdtest_interp_ipd_start_pixels.GetFloat(),
vr_ipdtest_interp_ipd_end_pixels.GetFloat(),
vr_ipdtest_interp_ipd_start_inches.GetFloat(),
vr_ipdtest_interp_ipd_end_inches.GetFloat() );
p->fIpdInches = fIpdInches;
p->fIpdPixels = fSeparationInPixels;
}
}
void CClientVirtualReality::GetCurrentEyeCalibration ( TEyeCalibration *p )
{
p->Left.iTop = vr_ipdtest_left_t.GetInt();
p->Left.iBot = vr_ipdtest_left_b.GetInt();
p->Left.iIn = vr_ipdtest_left_i.GetInt();
p->Left.iOut = vr_ipdtest_left_o.GetInt();
p->Right.iTop = vr_ipdtest_right_t.GetInt();
p->Right.iBot = vr_ipdtest_right_b.GetInt();
p->Right.iIn = vr_ipdtest_right_i.GetInt();
p->Right.iOut = vr_ipdtest_right_o.GetInt();
RecalcEyeCalibration ( p );
m_IpdTestCurrent = *p;
}
void CClientVirtualReality::SetCurrentEyeCalibration ( TEyeCalibration const &p )
{
m_IpdTestCurrent = p;
RecalcEyeCalibration ( &m_IpdTestCurrent );
g_pSourceVR->SetUserIPDMM( m_IpdTestCurrent.fIpdInches * 25.4f );
vr_ipdtest_left_t.SetValue ( m_IpdTestCurrent.Left.iTop );
vr_ipdtest_left_b.SetValue ( m_IpdTestCurrent.Left.iBot );
vr_ipdtest_left_i.SetValue ( m_IpdTestCurrent.Left.iIn );
vr_ipdtest_left_o.SetValue ( m_IpdTestCurrent.Left.iOut );
vr_ipdtest_right_t.SetValue ( m_IpdTestCurrent.Right.iTop );
vr_ipdtest_right_b.SetValue ( m_IpdTestCurrent.Right.iBot );
vr_ipdtest_right_i.SetValue ( m_IpdTestCurrent.Right.iIn );
vr_ipdtest_right_o.SetValue ( m_IpdTestCurrent.Right.iOut );
#ifdef _DEBUG
Warning ( " TBIO: left %d %d %d %d: right %d %d %d %d: %f inches\n", // Need the spaces to center it so I can read it!
m_IpdTestCurrent.Left.iTop,
m_IpdTestCurrent.Left.iBot,
m_IpdTestCurrent.Left.iIn,
m_IpdTestCurrent.Left.iOut,
m_IpdTestCurrent.Right.iTop,
m_IpdTestCurrent.Right.iBot,
m_IpdTestCurrent.Right.iIn,
m_IpdTestCurrent.Right.iOut,
m_IpdTestCurrent.fIpdInches );
#endif
}
void CClientVirtualReality::SetEyeCalibrationDisplayMisc ( int iEditingNum, bool bVisible )
{
if( bVisible && !m_bIpdTestEnabled )
{
// if we're being shown, read out the current config from the convars
GetCurrentEyeCalibration ( &m_IpdTestCurrent );
}
m_IpdTestControl = iEditingNum;
m_bIpdTestEnabled = bVisible;
}
void CClientVirtualReality::DrawIpdCalibration ( const vrect_t *SrcRect )
{
int ControlNum = m_IpdTestControl;
int WhichEdges = 0;
bool bShowLeft = false;
bool bShowRight = false;
switch ( ControlNum )
{
case 0: case 1: case 2: case 3:
bShowLeft = true;
WhichEdges = 1 << ControlNum;
break;
case 4: case 5: case 6: case 7:
bShowRight = true;
WhichEdges = 1 << ControlNum;
break;
case 8:
// Adjust IPD directly.
bShowLeft = true;
bShowRight = true;
WhichEdges = 0x33;
break;
case 9:
// Left relief.
bShowLeft = true;
WhichEdges = 0xff;
break;
case 10:
// Right relief.
bShowRight = true;
WhichEdges = 0xff;
break;
default:
Assert ( false );
break;
}
CMatRenderContextPtr pRenderContext( materials );
//pRenderContext->ClearColor4ub ( 0, 0, 0, 0 );
//pRenderContext->ClearBuffers ( true, true );
IMaterial *pMaterial = materials->FindMaterial ( "debug/debugtranslucentsinglecolor", TEXTURE_GROUP_OTHER, true );
pMaterial->ColorModulate( 1.0f, 1.0f, 1.0f );
pMaterial->AlphaModulate( 1.0f );
const int Border = 4;
const int BlueStart = 10; // Well, it used to be blue, now it isn't.
const int BlueSize = 30;
// You want a pure green for the "current" edge so that it has no chromatic aberration smearing (i.e. white is a terrible choice!)
// The non-current lines can be a different colour because you're not actively tuning them.
#define SET_COLOR1(num) if ( 0 != ( WhichEdges & (1<<(num)) ) ) { pMaterial->ColorModulate( 0.0f, 1.0f, 0.0f ); } else { pMaterial->ColorModulate( 0.25f, 0.25f, 0.25f ); }
#define SET_COLOR2(num) if ( 0 != ( WhichEdges & (1<<(num)) ) ) { pMaterial->ColorModulate( 1.0f, 1.0f, 1.0f ); } else { pMaterial->ColorModulate( 0.0f, 0.0f, 0.0f ); }
if ( bShowLeft )
{
int t = m_IpdTestCurrent.Left.iTop;
int b = m_IpdTestCurrent.Left.iBot;
int l = m_IpdTestCurrent.Left.iOut;
int r = m_IpdTestCurrent.Left.iIn;
// Render a black rect to enhance contrast.
pMaterial->ColorModulate( 0.0f, 0.0f, 0.0f );
pMaterial->AlphaModulate( 1.0f );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, t-Border-1, r-l+Border*2+3, Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, b-Border-1, r-l+Border*2+3, Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, t-Border-1, Border*2+3, b-t+Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r-Border-1, t-Border-1, Border*2+3, b-t+Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
int cx = (l+r)/2;
int cy = (t+b)/2;
// For each side, draw the line along the side, and also a line "pointing to" it from the middle.
// Left
SET_COLOR1(1);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, t, 1, b-t+1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(1);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l+BlueStart, cy-1, BlueSize, 3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Right
SET_COLOR1(0);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r, t, 1, b-t+1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(0);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r-BlueStart-BlueSize, cy-1, BlueSize, 3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Top
SET_COLOR1(2);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, t, r-l+1, 1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(2);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, cx-1, t+BlueStart, 3, BlueSize, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Bottom
SET_COLOR1(3);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, b, r-l+1, 1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(3);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, cx-1, b-BlueStart-BlueSize, 3, BlueSize, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
}
if ( bShowRight )
{
int t = m_IpdTestCurrent.Right.iTop;
int b = m_IpdTestCurrent.Right.iBot;
// An outside value of 0 is the first actual pixel on the edge of the display. So if both values are 0, the two lines are (SrcRect->width - 1) apart.
int l = SrcRect->width - 1 - m_IpdTestCurrent.Right.iIn;
int r = SrcRect->width - 1 - m_IpdTestCurrent.Right.iOut;
// Render a black rect to enhance contrast.
pMaterial->ColorModulate( 0.0f, 0.0f, 0.0f );
pMaterial->AlphaModulate( 1.0f );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, t-Border-1, r-l+Border*2+3, Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, b-Border-1, r-l+Border*2+3, Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l-Border-1, t-Border-1, Border*2+3, b-t+Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r-Border-1, t-Border-1, Border*2+3, b-t+Border*2+3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
int cx = (l+r)/2;
int cy = (t+b)/2;
// For each side, draw the line along the side, and also a line "pointing to" it from the middle.
// Left
SET_COLOR1(4);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, t, 1, b-t+1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(4);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l+BlueStart, cy-1, BlueSize, 3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Right
SET_COLOR1(5);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r, t, 1, b-t+1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(5);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, r-BlueStart-BlueSize, cy-1, BlueSize, 3, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Top
SET_COLOR1(6);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, t, r-l+1, 1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(6);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, cx-1, t+BlueStart, 3, BlueSize, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
// Bottom
SET_COLOR1(7);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, l, b, r-l+1, 1, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
SET_COLOR2(7);
pRenderContext->DrawScreenSpaceRectangle ( pMaterial, cx-1, b-BlueStart-BlueSize, 3, BlueSize, 0.0f, 0.0f, 0.0f, 0.0f, 16, 16 );
}
return; return;
// If we can't overlay the HUD, it will be handled on another path (rendered into the scene with RenderHUDQuad()).
if ( ! CanOverlayHudQuad() )
return;
// Get the position of the HUD quad in world space as used by RenderHUDQuad(). Then convert to a rectangle in normalized
// device coordinates.
Vector vHead, vUL, vUR, vLL, vLR;
GetHUDBounds ( &vHead, &vUL, &vUR, &vLL, &vLR );
VMatrix worldToView, viewToProjection, worldToProjection, worldToPixels;
render->GetMatricesForView( eyeView, &worldToView, &viewToProjection, &worldToProjection, &worldToPixels );
Vector pUL, pUR, pLL, pLR;
worldToProjection.V3Mul( vUL, pUL );
worldToProjection.V3Mul( vUR, pUR );
worldToProjection.V3Mul( vLL, pLL );
worldToProjection.V3Mul( vLR, pLR );
float ndcHudBounds[4];
ndcHudBounds[0] = Min ( Min( pUL.x, pUR.x ), Min( pLL.x, pLR.x ) );
ndcHudBounds[1] = Min ( Min( pUL.y, pUR.y ), Min( pLL.y, pLR.y ) );
ndcHudBounds[2] = Max ( Max( pUL.x, pUR.x ), Max( pLL.x, pLR.x ) );
ndcHudBounds[3] = Max ( Max( pUL.y, pUR.y ), Max( pLL.y, pLR.y ) );
ISourceVirtualReality::VREye sourceVrEye = ( eyeView.m_eStereoEye == STEREO_EYE_LEFT ) ? ISourceVirtualReality::VREye_Left : ISourceVirtualReality::VREye_Right;
g_pSourceVR->CompositeHud ( sourceVrEye, ndcHudBounds, bDoUndistort, bBlackout, bTranslucent );
}
// --------------------------------------------------------------------
// Purpose: Switches to VR mode
// --------------------------------------------------------------------
void CClientVirtualReality::Activate()
{
// we can only do this if a headtrack DLL is loaded
if( !g_pSourceVR )
return;
// see if VR mode is even enabled
if( materials->GetCurrentConfigForVideoCard().m_nVRModeAdapter == -1 )
{
Warning( "Enable VR mode in the video options before trying to use it.\n" );
return;
}
// See if we have an actual adapter
int32 nVRModeAdapter = g_pSourceVR->GetVRModeAdapter();
if( nVRModeAdapter == -1 )
{
Warning( "Unable to get VRMode adapter from OpenVR. VR mode cannot be enabled. Try restarting and then enabling VR again.\n" );
return;
}
// we can only activate if we've got a VR device
if( materials->GetCurrentConfigForVideoCard().m_nVRModeAdapter != nVRModeAdapter )
{
Warning( "VR Mode expects adapter %d which is different from %d which we are currently using. Try restarting and enabling VR mode again.\n",
nVRModeAdapter, materials->GetCurrentConfigForVideoCard().m_nVRModeAdapter );
engine->ExecuteClientCmd( "mat_enable_vrmode 0\n" );
return;
}
// can't activate twice
if( UseVR() )
return;
// remember where we were
m_bNonVRWindowed = g_pMaterialSystem->GetCurrentConfigForVideoCard().Windowed();
vgui::surface()->GetScreenSize( m_nNonVRWidth, m_nNonVRHeight );
#if defined( USE_SDL )
static ConVarRef sdl_displayindex( "sdl_displayindex" );
m_nNonVRSDLDisplayIndex = sdl_displayindex.GetInt();
#endif
if( !g_pSourceVR->Activate() )
{
// we couldn't activate, so just punt on this whole thing
return;
}
// general all-game stuff
engine->ExecuteClientCmd( "mat_reset_rendertargets\n" );
// game specific VR config
CUtlString sCmd;
sCmd.Format( "exec sourcevr_%s.cfg\n", COM_GetModDirectory() );
engine->ExecuteClientCmd( sCmd.Get() );
vgui::surface()->SetSoftwareCursor( true );
#if defined(POSIX)
ConVarRef m_rawinput( "m_rawinput" );
m_bNonVRRawInput = m_rawinput.GetBool();
m_rawinput.SetValue( 1 );
ConVarRef mat_vsync( "mat_vsync" );
mat_vsync.SetValue( 0 );
#endif
g_pMatSystemSurface->ForceScreenSizeOverride(true, 640, 480 );
int nViewportWidth, nViewportHeight;
g_pSourceVR->GetViewportBounds( ISourceVirtualReality::VREye_Left, NULL, NULL, &nViewportWidth, &nViewportHeight );
vgui::surface()->SetFullscreenViewportAndRenderTarget( 0, 0, nViewportWidth, nViewportHeight, g_pSourceVR->GetRenderTarget( ISourceVirtualReality::VREye_Left, ISourceVirtualReality::RT_Color ) );
vgui::ivgui()->SetVRMode( true );
VRRect_t rect;
if( g_pSourceVR->GetDisplayBounds( &rect ) )
{
// set mode
char szCmd[ 256 ];
Q_snprintf( szCmd, sizeof( szCmd ), "mat_setvideomode %i %i %i\n", rect.nWidth, rect.nHeight, vr_force_windowed.GetBool()? 1 : 0 );
engine->ClientCmd_Unrestricted( szCmd );
}
}
void CClientVirtualReality::Deactivate()
{
// can't deactivate when we aren't active
if( !UseVR() )
return;
g_pSourceVR->Deactivate();
g_pMatSystemSurface->ForceScreenSizeOverride(false, 0, 0 );
g_pMaterialSystem->GetRenderContext()->Viewport( 0, 0, m_nNonVRWidth, m_nNonVRHeight );
vgui::surface()->SetFullscreenViewportAndRenderTarget( 0, 0, m_nNonVRWidth, m_nNonVRHeight, NULL );
static ConVarRef cl_software_cursor( "cl_software_cursor" );
vgui::surface()->SetSoftwareCursor( cl_software_cursor.GetBool() );
#if defined( USE_SDL )
static ConVarRef sdl_displayindex( "sdl_displayindex" );
sdl_displayindex.SetValue( m_nNonVRSDLDisplayIndex );
#endif
#if defined(POSIX)
ConVarRef m_rawinput( "m_rawinput" );
m_rawinput.SetValue( m_bNonVRRawInput );
#endif
// Make sure the client .dll root panel is at the proper point before doing the "SolveTraverse" calls
vgui::VPANEL root = enginevgui->GetPanel( PANEL_CLIENTDLL );
if ( root != 0 )
{
vgui::ipanel()->SetSize( root, m_nNonVRWidth, m_nNonVRHeight );
}
// Same for client .dll tools
root = enginevgui->GetPanel( PANEL_CLIENTDLL_TOOLS );
if ( root != 0 )
{
vgui::ipanel()->SetSize( root, m_nNonVRWidth, m_nNonVRHeight );
}
int viewWidth, viewHeight;
vgui::surface()->GetScreenSize( viewWidth, viewHeight );
engine->ExecuteClientCmd( "mat_reset_rendertargets\n" );
// set mode
char szCmd[ 256 ];
Q_snprintf( szCmd, sizeof( szCmd ), "mat_setvideomode %i %i %i\n", m_nNonVRWidth, m_nNonVRHeight, m_bNonVRWindowed ? 1 : 0 );
engine->ClientCmd_Unrestricted( szCmd );
}
// Called when startup is complete
void CClientVirtualReality::StartupComplete()
{
if( vr_activate_default.GetBool() )
Activate();
} }

View File

@ -14,6 +14,7 @@
#include "tier3/tier3.h" #include "tier3/tier3.h"
#include "iclientvirtualreality.h" #include "iclientvirtualreality.h"
#include "view_shared.h"
enum HeadtrackMovementMode_t enum HeadtrackMovementMode_t
{ {
@ -34,20 +35,6 @@ enum HeadtrackMovementMode_t
}; };
// used for interacting with the calibration UI
struct TEyeCalibration
{
struct TEyeEdges
{
int iTop, iBot, iIn, iOut; // These are used to calculate everything else.
float fSizePixels;
float fReliefInches;
} Left, Right;
float fIpdPixels;
float fIpdInches;
};
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// The implementation // The implementation
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -77,6 +64,8 @@ public:
virtual InitReturnVal_t Init(); virtual InitReturnVal_t Init();
virtual void Shutdown(); virtual void Shutdown();
// Called when startup is complete
void StartupComplete();
//--------------------------------------------------------- //---------------------------------------------------------
// IClientVirtualReality implementation // IClientVirtualReality implementation
@ -94,6 +83,7 @@ public:
bool CurrentlyZoomed(); bool CurrentlyZoomed();
void OverrideTorsoTransform( const Vector & position, const QAngle & angles ) ; void OverrideTorsoTransform( const Vector & position, const QAngle & angles ) ;
void CancelTorsoTransformOverride( ) ; void CancelTorsoTransformOverride( ) ;
bool CanOverlayHudQuad();
void GetHUDBounds( Vector *pViewer, Vector *pUL, Vector *pUR, Vector *pLL, Vector *pLR ); void GetHUDBounds( Vector *pViewer, Vector *pUL, Vector *pUR, Vector *pLL, Vector *pLR );
void RenderHUDQuad( bool bBlackout, bool bTranslucent ); void RenderHUDQuad( bool bBlackout, bool bTranslucent );
float GetZoomedModeMagnification(); float GetZoomedModeMagnification();
@ -105,23 +95,14 @@ public:
const VMatrix & GetWorldFromMidEye() const { return m_WorldFromMidEyeNoDebugCam; } const VMatrix & GetWorldFromMidEye() const { return m_WorldFromMidEyeNoDebugCam; }
void OverrideViewModelTransform( Vector & vmorigin, QAngle & vmangles, bool bUseLargeOverride ); void OverrideViewModelTransform( Vector & vmorigin, QAngle & vmangles, bool bUseLargeOverride );
void AlignTorsoAndViewToWeapon(); void AlignTorsoAndViewToWeapon();
void PostProcessFrame( const vrect_t *SrcRect ); void PostProcessFrame( StereoEye_t eEye );
void OverlayHUDQuadWithUndistort( const CViewSetup &view, bool bDoUndistort, bool bBlackout, bool bTranslucent );
//--------------------------------------------------------- //---------------------------------------------------------
// Stat collection // Enter/leave VR mode
//--------------------------------------------------------- //---------------------------------------------------------
bool CollectSessionStartStats( KeyValues *pkvStats ); void Activate();
bool CollectPeriodicStats( KeyValues *pkvStats ); void Deactivate();
//---------------------------------------------------------
// IPD Calibration
//---------------------------------------------------------
void DrawIpdCalibration ( const vrect_t *SrcRect );
void RecalcEyeCalibration ( TEyeCalibration *p );
void GetCurrentEyeCalibration ( TEyeCalibration *p );
void SetCurrentEyeCalibration ( TEyeCalibration const &p );
void SetEyeCalibrationDisplayMisc ( int iEditingNum, bool bVisible );
private: private:
HeadtrackMovementMode_t m_hmmMovementActual; HeadtrackMovementMode_t m_hmmMovementActual;
@ -169,11 +150,14 @@ private:
RTime32 m_rtLastMotionSample; RTime32 m_rtLastMotionSample;
// IPD test fields // video mode we had before we entered VR mode
bool m_bIpdTestEnabled; bool m_bNonVRWindowed;
int m_IpdTestControl; int m_nNonVRWidth;
TEyeCalibration m_IpdTestCurrent; int m_nNonVRHeight;
#if defined( USE_SDL )
int m_nNonVRSDLDisplayIndex;
#endif
bool m_bNonVRRawInput;
}; };
extern CClientVirtualReality g_ClientVirtualReality; extern CClientVirtualReality g_ClientVirtualReality;

View File

@ -36,7 +36,7 @@
#include <vgui/ILocalize.h> #include <vgui/ILocalize.h>
#include "hud_vote.h" #include "hud_vote.h"
#include "ienginevgui.h" #include "ienginevgui.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#if defined( _X360 ) #if defined( _X360 )
#include "xbox/xbox_console.h" #include "xbox/xbox_console.h"
#endif #endif
@ -208,6 +208,7 @@ static void __MsgFunc_VGUIMenu( bf_read &msg )
if ( count > 0 ) if ( count > 0 )
{ {
KeyValues *keys = new KeyValues("data"); KeyValues *keys = new KeyValues("data");
//Msg( "MsgFunc_VGUIMenu:\n" );
for ( int i=0; i<count; i++) for ( int i=0; i<count; i++)
{ {
@ -216,10 +217,25 @@ static void __MsgFunc_VGUIMenu( bf_read &msg )
msg.ReadString( name, sizeof(name) ); msg.ReadString( name, sizeof(name) );
msg.ReadString( data, sizeof(data) ); msg.ReadString( data, sizeof(data) );
//Msg( " %s <- '%s'\n", name, data );
keys->SetString( name, data ); keys->SetString( name, data );
} }
// !KLUDGE! Whitelist of URL protocols formats for MOTD
if (
!V_stricmp( panelname, PANEL_INFO ) // MOTD
&& keys->GetInt( "type", 0 ) == 2 // URL message type
) {
const char *pszURL = keys->GetString( "msg", "" );
if ( Q_strncmp( pszURL, "http://", 7 ) != 0 && Q_strncmp( pszURL, "https://", 8 ) != 0 )
{
Warning( "Blocking MOTD URL '%s'; must begin with 'http://' or 'https://'\n", pszURL );
keys->deleteThis();
return;
}
}
viewport->SetData( keys ); viewport->SetData( keys );
keys->deleteThis(); keys->deleteThis();
@ -496,7 +512,7 @@ bool ClientModeShared::ShouldBlackoutAroundHUD()
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Allows the client mode to override mouse control stuff in headtrack // Purpose: Allows the client mode to override mouse control stuff in sourcevr
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
HeadtrackMovementMode_t ClientModeShared::ShouldOverrideHeadtrackControl() HeadtrackMovementMode_t ClientModeShared::ShouldOverrideHeadtrackControl()
{ {

View File

@ -132,6 +132,7 @@ public:
virtual bool IsInfoPanelAllowed() OVERRIDE { return true; } virtual bool IsInfoPanelAllowed() OVERRIDE { return true; }
virtual void InfoPanelDisplayed() OVERRIDE { } virtual void InfoPanelDisplayed() OVERRIDE { }
virtual bool IsHTMLInfoPanelAllowed() OVERRIDE { return true; }
protected: protected:
CBaseViewport *m_pViewport; CBaseViewport *m_pViewport;

View File

@ -9,6 +9,7 @@
#include "vguitextwindow.h" #include "vguitextwindow.h"
#include <networkstringtabledefs.h> #include <networkstringtabledefs.h>
#include <cdll_client_int.h> #include <cdll_client_int.h>
#include <clientmode_shared.h>
#include <vgui/IScheme.h> #include <vgui/IScheme.h>
#include <vgui/ILocalize.h> #include <vgui/ILocalize.h>
@ -165,8 +166,15 @@ void CTextWindow::ShowText( const char *text )
void CTextWindow::ShowURL( const char *URL, bool bAllowUserToDisable ) void CTextWindow::ShowURL( const char *URL, bool bAllowUserToDisable )
{ {
#if defined( ENABLE_CHROMEHTMLWINDOW ) #if defined( ENABLE_CHROMEHTMLWINDOW )
if ( bAllowUserToDisable && cl_disablehtmlmotd.GetBool() ) #ifdef _DEBUG
Msg( "CTextWindow::ShowURL( %s )\n", URL );
#endif
ClientModeShared *mode = ( ClientModeShared * )GetClientModeNormal();
if ( ( bAllowUserToDisable && cl_disablehtmlmotd.GetBool() ) || !mode->IsHTMLInfoPanelAllowed() )
{ {
Warning( "Blocking HTML info panel '%s'; Using plaintext instead.\n", URL );
// User has disabled HTML TextWindows. Show the fallback as text only. // User has disabled HTML TextWindows. Show the fallback as text only.
if ( g_pStringTableInfoPanel ) if ( g_pStringTableInfoPanel )
{ {
@ -288,9 +296,17 @@ void CTextWindow::Update( void )
ShowIndex( m_szMessage ); ShowIndex( m_szMessage );
} }
else if ( m_nContentType == TYPE_URL ) else if ( m_nContentType == TYPE_URL )
{
if ( !Q_strncmp( m_szMessage, "http://", 7 ) || !Q_strncmp( m_szMessage, "https://", 8 ) || !Q_stricmp( m_szMessage, "about:blank" ) )
{ {
ShowURL( m_szMessage ); ShowURL( m_szMessage );
} }
else
{
// We should have trapped this at a higher level
Assert( !"URL protocol is missing or blocked" );
}
}
else if ( m_nContentType == TYPE_FILE ) else if ( m_nContentType == TYPE_FILE )
{ {
ShowFile( m_szMessage ); ShowFile( m_szMessage );

View File

@ -146,6 +146,7 @@ void CHUDAutoAim::VidInit( void )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
bool CHUDAutoAim::ShouldDraw( void ) bool CHUDAutoAim::ShouldDraw( void )
{ {
#ifndef HL1_CLIENT_DLL
C_BaseHLPlayer *pLocalPlayer = (C_BaseHLPlayer *)C_BasePlayer::GetLocalPlayer(); C_BaseHLPlayer *pLocalPlayer = (C_BaseHLPlayer *)C_BasePlayer::GetLocalPlayer();
if ( pLocalPlayer ) if ( pLocalPlayer )
{ {
@ -154,6 +155,7 @@ bool CHUDAutoAim::ShouldDraw( void )
return false; return false;
} }
} }
#endif
return ( (hud_draw_fixed_reticle.GetBool() || hud_draw_active_reticle.GetBool()) && CHudElement::ShouldDraw() && !engine->IsDrawingLoadingImage() ); return ( (hud_draw_fixed_reticle.GetBool() || hud_draw_active_reticle.GetBool()) && CHudElement::ShouldDraw() && !engine->IsDrawingLoadingImage() );
} }

View File

@ -20,7 +20,7 @@
#include "IEffects.h" #include "IEffects.h"
#include "hudelement.h" #include "hudelement.h"
#include "clienteffectprecachesystem.h" #include "clienteffectprecachesystem.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
using namespace vgui; using namespace vgui;

View File

@ -451,6 +451,17 @@ void CHudWeaponSelection::Paint()
if ( !pSelectedWeapon ) if ( !pSelectedWeapon )
return; return;
bool bPushedViewport = false;
if( hud_fastswitch.GetInt() == HUDTYPE_FASTSWITCH || hud_fastswitch.GetInt() == HUDTYPE_PLUS )
{
CMatRenderContextPtr pRenderContext( materials );
if( pRenderContext->GetRenderTarget() )
{
surface()->PushFullscreenViewport();
bPushedViewport = true;
}
}
// interpolate the selected box size between the small box size and the large box size // interpolate the selected box size between the small box size and the large box size
// interpolation has been removed since there is no weapon pickup animation anymore, so it's all at the largest size // interpolation has been removed since there is no weapon pickup animation anymore, so it's all at the largest size
float percentageDone = 1.0f; //min(1.0f, (gpGlobals->curtime - m_flPickupStartTime) / m_flWeaponPickupGrowTime); float percentageDone = 1.0f; //min(1.0f, (gpGlobals->curtime - m_flPickupStartTime) / m_flWeaponPickupGrowTime);
@ -727,6 +738,11 @@ void CHudWeaponSelection::Paint()
} }
break; break;
} }
if( bPushedViewport )
{
surface()->PopFullscreenViewport();
}
} }
@ -1025,8 +1041,6 @@ void CHudWeaponSelection::ApplySchemeSettings(vgui::IScheme *pScheme)
{ {
SetBounds( x, y, screenWide - x, screenTall - y ); SetBounds( x, y, screenWide - x, screenTall - y );
} }
SetForceStereoRenderToFrameBuffer( true );
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -114,6 +114,7 @@ void CHudBaseDeathNotice::Paint()
DeathNoticeItem &msg = m_DeathNotices[i]; DeathNoticeItem &msg = m_DeathNotices[i];
CHudTexture *icon = msg.iconDeath; CHudTexture *icon = msg.iconDeath;
CHudTexture *iconPrekiller = msg.iconPreKiller;
wchar_t victim[256]=L""; wchar_t victim[256]=L"";
wchar_t killer[256]=L""; wchar_t killer[256]=L"";
@ -125,11 +126,16 @@ void CHudBaseDeathNotice::Paint()
int iVictimTextWide = UTIL_ComputeStringWidth( m_hTextFont, victim ) + xSpacing; int iVictimTextWide = UTIL_ComputeStringWidth( m_hTextFont, victim ) + xSpacing;
int iDeathInfoTextWide= msg.wzInfoText[0] ? UTIL_ComputeStringWidth( m_hTextFont, msg.wzInfoText ) + xSpacing : 0; int iDeathInfoTextWide= msg.wzInfoText[0] ? UTIL_ComputeStringWidth( m_hTextFont, msg.wzInfoText ) + xSpacing : 0;
int iDeathInfoEndTextWide= msg.wzInfoTextEnd[0] ? UTIL_ComputeStringWidth( m_hTextFont, msg.wzInfoTextEnd ) + xSpacing : 0;
int iKillerTextWide = killer[0] ? UTIL_ComputeStringWidth( m_hTextFont, killer ) + xSpacing : 0; int iKillerTextWide = killer[0] ? UTIL_ComputeStringWidth( m_hTextFont, killer ) + xSpacing : 0;
int iLineTall = m_flLineHeight; int iLineTall = m_flLineHeight;
int iTextTall = surface()->GetFontTall( m_hTextFont ); int iTextTall = surface()->GetFontTall( m_hTextFont );
int iconWide = 0, iconTall = 0, iDeathInfoOffset = 0, iVictimTextOffset = 0, iconActualWide = 0; int iconWide = 0, iconTall = 0, iDeathInfoOffset = 0, iVictimTextOffset = 0, iconActualWide = 0;
int iPreKillerTextWide = msg.wzPreKillerText[0] ? UTIL_ComputeStringWidth( m_hTextFont, msg.wzPreKillerText ) - xSpacing : 0;
int iconPrekillerWide = 0, iconPrekillerActualWide = 0, iconPreKillerTall = 0;
// Get the local position for this notice // Get the local position for this notice
if ( icon ) if ( icon )
{ {
@ -145,7 +151,25 @@ void CHudBaseDeathNotice::Paint()
iconTall *= flScale; iconTall *= flScale;
iconWide *= flScale; iconWide *= flScale;
} }
int iTotalWide = iKillerTextWide + iconWide + iVictimTextWide + iDeathInfoTextWide + ( xMargin * 2 );
if ( iconPrekiller )
{
iconPrekillerActualWide = iconPrekiller->EffectiveWidth( 1.0f );
iconPrekillerWide = iconPrekillerActualWide;
iconPreKillerTall = iconPrekiller->EffectiveHeight( 1.0f );
int iconTallDesired = iLineTall-YRES(2);
Assert( 0 != iconTallDesired );
float flScale = (float) iconTallDesired / (float) iconPreKillerTall;
iconPrekillerActualWide *= flScale;
iconPreKillerTall *= flScale;
iconPrekillerWide *= flScale;
}
int iTotalWide = iKillerTextWide + iconWide + iVictimTextWide + iDeathInfoTextWide + iDeathInfoEndTextWide + ( xMargin * 2 );
iTotalWide += iconPrekillerWide + iPreKillerTextWide;
int y = yStart + ( ( iLineTall + m_flLineSpacing ) * i ); int y = yStart + ( ( iLineTall + m_flLineSpacing ) * i );
int yText = y + ( ( iLineTall - iTextTall ) / 2 ); int yText = y + ( ( iLineTall - iTextTall ) / 2 );
int yIcon = y + ( ( iLineTall - iconTall ) / 2 ); int yIcon = y + ( ( iLineTall - iconTall ) / 2 );
@ -160,7 +184,7 @@ void CHudBaseDeathNotice::Paint()
Vertex_t vert[NUM_BACKGROUND_COORD]; Vertex_t vert[NUM_BACKGROUND_COORD];
GetBackgroundPolygonVerts( x, y+1, x+iTotalWide, y+iLineTall-1, ARRAYSIZE( vert ), vert ); GetBackgroundPolygonVerts( x, y+1, x+iTotalWide, y+iLineTall-1, ARRAYSIZE( vert ), vert );
surface()->DrawSetTexture( -1 ); surface()->DrawSetTexture( -1 );
surface()->DrawSetColor( msg.bLocalPlayerInvolved ? m_clrLocalBGColor : m_clrBaseBGColor ); surface()->DrawSetColor( GetBackgroundColor ( i ) );
surface()->DrawTexturedPolygon( ARRAYSIZE( vert ), vert ); surface()->DrawTexturedPolygon( ARRAYSIZE( vert ), vert );
x += xMargin; x += xMargin;
@ -172,6 +196,22 @@ void CHudBaseDeathNotice::Paint()
x += iKillerTextWide; x += iKillerTextWide;
} }
// prekiller text
if ( msg.wzPreKillerText[0] )
{
x += xSpacing;
DrawText( x + iDeathInfoOffset, yText, m_hTextFont, GetInfoTextColor( i ), msg.wzPreKillerText );
x += iPreKillerTextWide;
}
// Prekiller icon
if ( iconPrekiller )
{
int yPreIconTall = y + ( ( iLineTall - iconPreKillerTall ) / 2 );
iconPrekiller->DrawSelf( x, yPreIconTall, iconPrekillerActualWide, iconPreKillerTall, m_clrIcon );
x += iconPrekillerWide + xSpacing;
}
// Draw glow behind weapon icon to show it was a crit death // Draw glow behind weapon icon to show it was a crit death
if ( msg.bCrit && msg.iconCritDeath ) if ( msg.bCrit && msg.iconCritDeath )
{ {
@ -194,13 +234,19 @@ void CHudBaseDeathNotice::Paint()
iVictimTextOffset -= iDeathInfoTextWide; iVictimTextOffset -= iDeathInfoTextWide;
} }
DrawText( x + iDeathInfoOffset, yText, m_hTextFont, GetInfoTextColor( msg.bLocalPlayerInvolved ), msg.wzInfoText ); DrawText( x + iDeathInfoOffset, yText, m_hTextFont, GetInfoTextColor( i ), msg.wzInfoText );
x += iDeathInfoTextWide; x += iDeathInfoTextWide;
} }
// Draw victims name // Draw victims name
DrawText( x + iVictimTextOffset, yText, m_hTextFont, GetTeamColor( msg.Victim.iTeam, msg.bLocalPlayerInvolved ), victim ); DrawText( x + iVictimTextOffset, yText, m_hTextFont, GetTeamColor( msg.Victim.iTeam, msg.bLocalPlayerInvolved ), victim );
x += iVictimTextWide; x += iVictimTextWide;
// Draw Additional Text on the end of the victims name
if ( msg.wzInfoTextEnd[0] )
{
DrawText( x , yText, m_hTextFont, GetInfoTextColor( i ), msg.wzInfoTextEnd );
}
} }
} }
@ -358,7 +404,12 @@ void CHudBaseDeathNotice::FireGameEvent( IGameEvent *event )
bLocalPlayerInvolved = true; bLocalPlayerInvolved = true;
} }
if ( event->GetInt( "damagebits" ) & DMG_CRITICAL ) if ( event->GetInt( "death_flags" ) & TF_DEATH_AUSTRALIUM )
{
m_DeathNotices[iMsg].bCrit= true;
m_DeathNotices[iMsg].iconCritDeath = GetIcon( "d_australium", bLocalPlayerInvolved ? kDeathNoticeIcon_Inverted : kDeathNoticeIcon_Standard );
}
else if ( event->GetInt( "damagebits" ) & DMG_CRITICAL )
{ {
m_DeathNotices[iMsg].bCrit= true; m_DeathNotices[iMsg].bCrit= true;
m_DeathNotices[iMsg].iconCritDeath = GetIcon( "d_crit", bLocalPlayerInvolved ? kDeathNoticeIcon_Inverted : kDeathNoticeIcon_Standard ); m_DeathNotices[iMsg].iconCritDeath = GetIcon( "d_crit", bLocalPlayerInvolved ? kDeathNoticeIcon_Inverted : kDeathNoticeIcon_Standard );

View File

@ -30,6 +30,7 @@ struct DeathNoticeItem
{ {
szIcon[0]=0; szIcon[0]=0;
wzInfoText[0]=0; wzInfoText[0]=0;
wzInfoTextEnd[0]=0;
iconDeath = NULL; iconDeath = NULL;
iconCritDeath = NULL; iconCritDeath = NULL;
bSelfInflicted = false; bSelfInflicted = false;
@ -40,6 +41,9 @@ struct DeathNoticeItem
iWeaponID = -1; iWeaponID = -1;
iKillerID = -1; iKillerID = -1;
iVictimID = -1; iVictimID = -1;
iconPreKiller = NULL;
wzPreKillerText[0] = 0;
} }
float GetExpiryTime(); float GetExpiryTime();
@ -48,8 +52,13 @@ struct DeathNoticeItem
DeathNoticePlayer Victim; DeathNoticePlayer Victim;
char szIcon[32]; // name of icon to display char szIcon[32]; // name of icon to display
wchar_t wzInfoText[32]; // any additional text to display next to icon wchar_t wzInfoText[32]; // any additional text to display next to icon
wchar_t wzInfoTextEnd[32]; // any additional text to display next to victim name
CHudTexture *iconDeath; CHudTexture *iconDeath;
CHudTexture *iconCritDeath; // crit background icon CHudTexture *iconCritDeath; // crit background icon
CHudTexture *iconPreKiller;
wchar_t wzPreKillerText[32];
bool bSelfInflicted; bool bSelfInflicted;
bool bLocalPlayerInvolved; bool bLocalPlayerInvolved;
bool bCrit; bool bCrit;
@ -104,7 +113,8 @@ protected:
virtual int UseExistingNotice( IGameEvent *event ) { return -1; } virtual int UseExistingNotice( IGameEvent *event ) { return -1; }
void GetLocalizedControlPointName( IGameEvent *event, char *namebuf, int namelen ); void GetLocalizedControlPointName( IGameEvent *event, char *namebuf, int namelen );
virtual Color GetInfoTextColor( bool bLocalPlayerInvolved ){ return Color( 255, 255, 255, 255 ); } virtual Color GetInfoTextColor( int iDeathNoticeMsg ){ return Color( 255, 255, 255, 255 ); }
virtual Color GetBackgroundColor ( int iDeathNoticeMsg ) { return m_DeathNotices[iDeathNoticeMsg].bLocalPlayerInvolved ? m_clrLocalBGColor : m_clrBaseBGColor; }
CPanelAnimationVarAliasType( float, m_flLineHeight, "LineHeight", "16", "proportional_float" ); CPanelAnimationVarAliasType( float, m_flLineHeight, "LineHeight", "16", "proportional_float" );
CPanelAnimationVarAliasType( float, m_flLineSpacing, "LineSpacing", "4", "proportional_float" ); CPanelAnimationVarAliasType( float, m_flLineSpacing, "LineSpacing", "4", "proportional_float" );
@ -115,6 +125,7 @@ protected:
CPanelAnimationVar( Color, m_clrIcon, "IconColor", "255 80 0 255" ); CPanelAnimationVar( Color, m_clrIcon, "IconColor", "255 80 0 255" );
CPanelAnimationVar( Color, m_clrBaseBGColor, "BaseBackgroundColor", "46 43 42 220" ); CPanelAnimationVar( Color, m_clrBaseBGColor, "BaseBackgroundColor", "46 43 42 220" );
CPanelAnimationVar( Color, m_clrLocalBGColor, "LocalBackgroundColor", "245 229 196 200" ); CPanelAnimationVar( Color, m_clrLocalBGColor, "LocalBackgroundColor", "245 229 196 200" );
CPanelAnimationVar( Color, m_clrKillStreakBg, "KillStreakBackgroundColor", "224 223 219 200" );
CUtlVector<DeathNoticeItem> m_DeathNotices; CUtlVector<DeathNoticeItem> m_DeathNotices;

View File

@ -16,7 +16,7 @@
#include "materialsystem/imaterialsystem.h" #include "materialsystem/imaterialsystem.h"
#include "VGuiMatSurface/IMatSystemSurface.h" #include "VGuiMatSurface/IMatSystemSurface.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#ifdef SIXENSE #ifdef SIXENSE
#include "sixense/in_sixense.h" #include "sixense/in_sixense.h"

View File

@ -1059,6 +1059,10 @@ void CHudVote::MsgFunc_CallVoteFailed( bf_read &msg )
case VOTE_FAILED_CANNOT_KICK_DURING_ROUND: case VOTE_FAILED_CANNOT_KICK_DURING_ROUND:
m_pCallVoteFailed->SetControlString( "FailedReason", "#GameUI_vote_failed_round_active" ); m_pCallVoteFailed->SetControlString( "FailedReason", "#GameUI_vote_failed_round_active" );
break; break;
case VOTE_FAILED_MODIFICATION_ALREADY_ACTIVE:
m_pCallVoteFailed->SetControlString( "FailedReason", "#GameUI_vote_failed_event_already_active" );
break;
} }
} }

View File

@ -147,6 +147,7 @@ public:
virtual bool IsInfoPanelAllowed() = 0; virtual bool IsInfoPanelAllowed() = 0;
virtual void InfoPanelDisplayed() = 0; virtual void InfoPanelDisplayed() = 0;
virtual bool IsHTMLInfoPanelAllowed() = 0;
}; };
extern IClientMode *g_pClientMode; extern IClientMode *g_pClientMode;

View File

@ -31,7 +31,7 @@
#endif #endif
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
// NVNT Include // NVNT Include
#include "haptics/haptic_utils.h" #include "haptics/haptic_utils.h"

View File

@ -1185,6 +1185,7 @@ CReplayPerformanceEditorPanel::CReplayPerformanceEditorPanel( Panel *parent, Rep
m_nRedBlueSigns[0] = -1; m_nRedBlueSigns[0] = -1;
m_nRedBlueSigns[1] = 1; m_nRedBlueSigns[1] = 1;
m_iCurPlayerTarget = -1; m_iCurPlayerTarget = -1;
m_bCurrentTargetNeedsVisibilityUpdate = false;
m_pImageList = new ImageList( false ); m_pImageList = new ImageList( false );
@ -1737,6 +1738,19 @@ void CReplayPerformanceEditorPanel::OnTick()
pCamera->SetPrimaryTarget( m_iCurPlayerTarget ); pCamera->SetPrimaryTarget( m_iCurPlayerTarget );
} }
// fixes a case where the replay would be paused and the player would cycle cameras but the
// target's visibility wouldn't be updated until the replay was unpaused (they would be invisible)
if ( m_bCurrentTargetNeedsVisibilityUpdate )
{
C_BaseEntity *pTarget = ClientEntityList().GetEnt( pCamera->GetPrimaryTargetIndex() );
if ( pTarget )
{
pTarget->UpdateVisibility();
}
m_bCurrentTargetNeedsVisibilityUpdate = false;
}
// If in free-cam mode, add set view event if we're not paused // If in free-cam mode, add set view event if we're not paused
if ( bInAControllableCameraMode && m_bShownAtLeastOnce && bRecording ) if ( bInAControllableCameraMode && m_bShownAtLeastOnce && bRecording )
{ {
@ -2444,12 +2458,14 @@ void CReplayPerformanceEditorPanel::OnCommand( const char *command )
{ {
ReplayCamera()->SetMode( OBS_MODE_IN_EYE ); ReplayCamera()->SetMode( OBS_MODE_IN_EYE );
UpdateCameraSelectionPosition( CAM_FIRST ); UpdateCameraSelectionPosition( CAM_FIRST );
m_bCurrentTargetNeedsVisibilityUpdate = true;
g_pReplayPerformanceController->AddEvent_Camera_Change_FirstPerson( flCurTime, nEntIndex ); g_pReplayPerformanceController->AddEvent_Camera_Change_FirstPerson( flCurTime, nEntIndex );
} }
else if ( !V_stricmp( pCamType, "third" ) ) else if ( !V_stricmp( pCamType, "third" ) )
{ {
ReplayCamera()->SetMode( OBS_MODE_CHASE ); ReplayCamera()->SetMode( OBS_MODE_CHASE );
UpdateCameraSelectionPosition( CAM_THIRD ); UpdateCameraSelectionPosition( CAM_THIRD );
m_bCurrentTargetNeedsVisibilityUpdate = true;
g_pReplayPerformanceController->AddEvent_Camera_Change_ThirdPerson( flCurTime, nEntIndex ); g_pReplayPerformanceController->AddEvent_Camera_Change_ThirdPerson( flCurTime, nEntIndex );
AddSetViewEvent(); AddSetViewEvent();
} }

View File

@ -224,6 +224,8 @@ private:
float m_flActiveTimeInEditor; // Will be zero'd out if user is idle (ie if they don't press space bar often enough) float m_flActiveTimeInEditor; // Will be zero'd out if user is idle (ie if they don't press space bar often enough)
CPanelAnimationVarAliasType( int, m_nRightMarginWidth, "right_margin_width", "0", "proportional_xpos" ); CPanelAnimationVarAliasType( int, m_nRightMarginWidth, "right_margin_width", "0", "proportional_xpos" );
bool m_bCurrentTargetNeedsVisibilityUpdate;
}; };
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -62,7 +62,7 @@ using sixenseMath::Line;
#include "iinput.h" #include "iinput.h"
#include "game/client/iviewport.h" #include "game/client/iviewport.h"
#include "filesystem.h" #include "filesystem.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#ifdef TF_CLIENT_DLL #ifdef TF_CLIENT_DLL
#include "tf_hud_menu_engy_build.h" #include "tf_hud_menu_engy_build.h"

View File

@ -36,13 +36,14 @@
#include "materialsystem/itexture.h" #include "materialsystem/itexture.h"
#include "materialsystem/imaterialsystem.h" #include "materialsystem/imaterialsystem.h"
#include "materialsystem/materialsystem_config.h" #include "materialsystem/materialsystem_config.h"
#include "VGuiMatSurface/IMatSystemSurface.h"
#include "toolframework_client.h" #include "toolframework_client.h"
#include "tier0/icommandline.h" #include "tier0/icommandline.h"
#include "ienginevgui.h" #include "ienginevgui.h"
#include <vgui_controls/Controls.h> #include <vgui_controls/Controls.h>
#include <vgui/ISurface.h> #include <vgui/ISurface.h>
#include "ScreenSpaceEffects.h" #include "ScreenSpaceEffects.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#if defined( REPLAY_ENABLED ) #if defined( REPLAY_ENABLED )
@ -84,10 +85,6 @@ extern ConVar sensitivity;
ConVar zoom_sensitivity_ratio( "zoom_sensitivity_ratio", "1.0", 0, "Additional mouse sensitivity scale factor applied when FOV is zoomed in." ); ConVar zoom_sensitivity_ratio( "zoom_sensitivity_ratio", "1.0", 0, "Additional mouse sensitivity scale factor applied when FOV is zoomed in." );
#ifdef STAGING_ONLY
ConVar vr_stereo_debug_viewport( "vr_stereo_debug_viewport", "0" );
#endif
CViewRender g_DefaultViewRender; CViewRender g_DefaultViewRender;
IViewRender *view = NULL; // set in cldll_client_init.cpp if no mod creates their own IViewRender *view = NULL; // set in cldll_client_init.cpp if no mod creates their own
@ -301,16 +298,6 @@ void CViewRender::Init( void )
m_pDrawEntities = cvar->FindVar( "r_drawentities" ); m_pDrawEntities = cvar->FindVar( "r_drawentities" );
m_pDrawBrushModels = cvar->FindVar( "r_drawbrushmodels" ); m_pDrawBrushModels = cvar->FindVar( "r_drawbrushmodels" );
if( UseVR() )
{
m_eStartEye = STEREO_EYE_LEFT;
m_eLastEye = STEREO_EYE_RIGHT;
}
else
{
m_eStartEye = m_eLastEye = STEREO_EYE_MONO;
}
beams->InitBeams(); beams->InitBeams();
tempents->Init(); tempents->Init();
@ -500,12 +487,18 @@ void CViewRender::DriftPitch (void)
StereoEye_t CViewRender::GetFirstEye() const StereoEye_t CViewRender::GetFirstEye() const
{ {
return m_eStartEye; if( UseVR() )
return STEREO_EYE_LEFT;
else
return STEREO_EYE_MONO;
} }
StereoEye_t CViewRender::GetLastEye() const StereoEye_t CViewRender::GetLastEye() const
{ {
return m_eLastEye; if( UseVR() )
return STEREO_EYE_RIGHT;
else
return STEREO_EYE_MONO;
} }
@ -1177,57 +1170,14 @@ void CViewRender::Render( vrect_t *rect )
} }
break; break;
case STEREO_EYE_RIGHT:
case STEREO_EYE_LEFT: case STEREO_EYE_LEFT:
{ {
#ifdef STAGING_ONLY g_pSourceVR->GetViewportBounds( (ISourceVirtualReality::VREye)(eEye - 1 ), &view.x, &view.y, &view.width, &view.height );
if ( vr_stereo_debug_viewport.GetBool() ) view.m_nUnscaledWidth = view.width;
{ view.m_nUnscaledHeight = view.height;
// Stress-test for crazy viewports. view.m_nUnscaledX = view.x;
view.width = vr.width * flViewportScale * 0.25f; view.m_nUnscaledY = view.y;
view.height = vr.height * flViewportScale * 0.75f;
view.x = vr.x * flViewportScale;
view.y = (vr.y + vr.height * 0.20f) * flViewportScale;
view.m_nUnscaledWidth = vr.width / 2;
}
else
#endif
{
view.width = vr.width * flViewportScale * 0.5f;
view.height = vr.height * flViewportScale;
view.x = vr.x * flViewportScale ;
view.y = vr.y * flViewportScale;
view.m_nUnscaledWidth = vr.width / 2;
}
}
break;
case STEREO_EYE_RIGHT:
{
#ifdef STAGING_ONLY
if ( vr_stereo_debug_viewport.GetBool() )
{
// Stress-test for crazy viewports.
view.width = vr.width * flViewportScale * 0.75f;
view.height = vr.height * flViewportScale * 0.75f;
view.x = vr.x + vr.width * 0.25f;
view.y = vr.y + vr.height * 0.1f;
view.m_nUnscaledWidth = vr.width / 2;
view.m_nUnscaledX = vr.x + view.m_nUnscaledWidth;
}
else
#endif
{
view.width = vr.width * flViewportScale * 0.5f;
view.height = vr.height * flViewportScale;
view.x = (vr.x + view.width) * flViewportScale;
view.y = vr.y * flViewportScale;
view.m_nUnscaledWidth = vr.width / 2;
view.m_nUnscaledX = vr.x + view.m_nUnscaledWidth;
}
} }
break; break;
@ -1302,9 +1252,32 @@ void CViewRender::Render( vrect_t *rect )
// we should use the monitor view from the left eye for both eyes // we should use the monitor view from the left eye for both eyes
flags |= RENDERVIEW_SUPPRESSMONITORRENDERING; flags |= RENDERVIEW_SUPPRESSMONITORRENDERING;
} }
RenderView( view, nClearFlags, flags ); RenderView( view, nClearFlags, flags );
if ( UseVR() )
{
bool bDoUndistort = ! engine->IsTakingScreenshot();
if ( bDoUndistort )
{
g_ClientVirtualReality.PostProcessFrame( eEye );
} }
// logic here all cloned from code in viewrender.cpp around RenderHUDQuad:
// figure out if we really want to draw the HUD based on freeze cam
bool bInFreezeCam = ( pPlayer && pPlayer->GetObserverMode() == OBS_MODE_FREEZECAM );
// draw the HUD after the view model so its "I'm closer" depth queues work right.
if( !bInFreezeCam && g_ClientVirtualReality.ShouldRenderHUDInWorld() )
{
// TODO - a bit of a shonky test - basically trying to catch the main menu, the briefing screen, the loadout screen, etc.
bool bTranslucent = !g_pMatSystemSurface->IsCursorVisible();
g_ClientVirtualReality.OverlayHUDQuadWithUndistort( view, bDoUndistort, g_pClientMode->ShouldBlackoutAroundHUD(), bTranslucent );
}
}
}
// TODO: should these be inside or outside the stereo eye stuff? // TODO: should these be inside or outside the stereo eye stuff?
@ -1334,15 +1307,6 @@ void CViewRender::Render( vrect_t *rect )
} }
if ( UseVR() )
{
if ( !engine->IsTakingScreenshot() )
{
// Deal with the distortion on the display.
g_ClientVirtualReality.PostProcessFrame( rect );
}
}
} }

View File

@ -11,7 +11,7 @@
#include "rendertexture.h" #include "rendertexture.h"
#include "view_scene.h" #include "view_scene.h"
#include "viewrender.h" #include "viewrender.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
// memdbgon must be the last include file in a .cpp file!!! // memdbgon must be the last include file in a .cpp file!!!

View File

@ -834,7 +834,7 @@ void CLuminanceHistogramSystem::UpdateLuminanceRanges( void )
s_bFirstTime = false; s_bFirstTime = false;
// This seems like a bad idea but it's fine for now // This seems like a bad idea but it's fine for now
const char *sModsForOriginalAlgorithm[] = { "dod", "cstrike", "lostcoast" }; const char *sModsForOriginalAlgorithm[] = { "dod", "cstrike", "lostcoast", "hl1" };
for ( int i=0; i<3; i++ ) for ( int i=0; i<3; i++ )
{ {
if ( strlen( engine->GetGameDirectory() ) >= strlen( sModsForOriginalAlgorithm[i] ) ) if ( strlen( engine->GetGameDirectory() ) >= strlen( sModsForOriginalAlgorithm[i] ) )

View File

@ -51,7 +51,7 @@
#include "studio_stats.h" #include "studio_stats.h"
#include "con_nprint.h" #include "con_nprint.h"
#include "clientmode_shared.h" #include "clientmode_shared.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#ifdef PORTAL #ifdef PORTAL
@ -394,7 +394,7 @@ protected:
bool GetSkyboxFogEnable(); bool GetSkyboxFogEnable();
void Enable3dSkyboxFog( void ); void Enable3dSkyboxFog( void );
void DrawInternal( view_id_t iSkyBoxViewID = VIEW_3DSKY, bool bInvokePreAndPostRender = true, ITexture *pRenderTarget = NULL ); void DrawInternal( view_id_t iSkyBoxViewID, bool bInvokePreAndPostRender, ITexture *pRenderTarget, ITexture *pDepthTarget );
sky3dparams_t * PreRender3dSkyboxWorld( SkyboxVisibility_t nSkyboxVisible ); sky3dparams_t * PreRender3dSkyboxWorld( SkyboxVisibility_t nSkyboxVisible );
@ -1055,7 +1055,15 @@ void CViewRender::DrawViewModels( const CViewSetup &view, bool drawViewmodel )
viewModelSetup.fov = view.fovViewmodel; viewModelSetup.fov = view.fovViewmodel;
viewModelSetup.m_flAspectRatio = engine->GetScreenAspectRatio(); viewModelSetup.m_flAspectRatio = engine->GetScreenAspectRatio();
render->Push3DView( viewModelSetup, 0, NULL, GetFrustum() ); ITexture *pRTColor = NULL;
ITexture *pRTDepth = NULL;
if( view.m_eStereoEye != STEREO_EYE_MONO )
{
pRTColor = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(view.m_eStereoEye-1), ISourceVirtualReality::RT_Color );
pRTDepth = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(view.m_eStereoEye-1), ISourceVirtualReality::RT_Depth );
}
render->Push3DView( viewModelSetup, 0, pRTColor, GetFrustum(), pRTDepth );
#ifdef PORTAL //the depth range hack doesn't work well enough for the portal mod (and messing with the depth hack values makes some models draw incorrectly) #ifdef PORTAL //the depth range hack doesn't work well enough for the portal mod (and messing with the depth hack values makes some models draw incorrectly)
//step up to a full depth clear if we're extremely close to a portal (in a portal environment) //step up to a full depth clear if we're extremely close to a portal (in a portal environment)
@ -1822,7 +1830,15 @@ void CViewRender::SetupMain3DView( const CViewSetup &view, int &nClearFlags )
} }
else else
{ {
render->Push3DView( view, nClearFlags, NULL, GetFrustum() ); ITexture *pRTColor = NULL;
ITexture *pRTDepth = NULL;
if( view.m_eStereoEye != STEREO_EYE_MONO )
{
pRTColor = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(view.m_eStereoEye-1), ISourceVirtualReality::RT_Color );
pRTDepth = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(view.m_eStereoEye-1), ISourceVirtualReality::RT_Depth );
}
render->Push3DView( view, nClearFlags, pRTColor, GetFrustum(), pRTDepth );
} }
// If we didn't clear the depth here, we'll need to clear it later // If we didn't clear the depth here, we'll need to clear it later
@ -2155,6 +2171,12 @@ void CViewRender::RenderView( const CViewSetup &view, int nClearFlags, int whatT
pCopyMaterial->DecrementReferenceCount(); pCopyMaterial->DecrementReferenceCount();
} }
// if we're in VR mode we might need to override the render target
if( UseVR() )
{
saveRenderTarget = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(view.m_eStereoEye - 1), ISourceVirtualReality::RT_Color );
}
// Draw the 2D graphics // Draw the 2D graphics
render->Push2DView( view, 0, saveRenderTarget, GetFrustum() ); render->Push2DView( view, 0, saveRenderTarget, GetFrustum() );
@ -2192,7 +2214,9 @@ void CViewRender::RenderView( const CViewSetup &view, int nClearFlags, int whatT
vgui::surface()->GetScreenSize( viewWidth, viewHeight ); vgui::surface()->GetScreenSize( viewWidth, viewHeight );
viewFramebufferX = view.m_eStereoEye == STEREO_EYE_RIGHT ? viewFramebufferWidth : 0; viewFramebufferX = 0;
if( view.m_eStereoEye == STEREO_EYE_RIGHT && !saveRenderTarget )
viewFramebufferX = viewFramebufferWidth;
viewFramebufferY = 0; viewFramebufferY = 0;
} }
} }
@ -2224,7 +2248,7 @@ void CViewRender::RenderView( const CViewSetup &view, int nClearFlags, int whatT
// let vgui know where to render stuff for the forced-to-framebuffer panels // let vgui know where to render stuff for the forced-to-framebuffer panels
if( UseVR() ) if( UseVR() )
{ {
vgui::surface()->SetFullscreenViewport( viewFramebufferX, viewFramebufferY, viewFramebufferWidth, viewFramebufferHeight ); vgui::surface()->SetFullscreenViewportAndRenderTarget( viewFramebufferX, viewFramebufferY, viewFramebufferWidth, viewFramebufferHeight, saveRenderTarget );
} }
// clear the render target if we need to // clear the render target if we need to
@ -4703,7 +4727,7 @@ sky3dparams_t *CSkyboxView::PreRender3dSkyboxWorld( SkyboxVisibility_t nSkyboxVi
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// //
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void CSkyboxView::DrawInternal( view_id_t iSkyBoxViewID, bool bInvokePreAndPostRender, ITexture *pRenderTarget ) void CSkyboxView::DrawInternal( view_id_t iSkyBoxViewID, bool bInvokePreAndPostRender, ITexture *pRenderTarget, ITexture *pDepthTarget )
{ {
unsigned char **areabits = render->GetAreaBits(); unsigned char **areabits = render->GetAreaBits();
unsigned char *savebits; unsigned char *savebits;
@ -4736,7 +4760,7 @@ void CSkyboxView::DrawInternal( view_id_t iSkyBoxViewID, bool bInvokePreAndPostR
// cluster with sky. Then we could just connect the areas to do our vis. // cluster with sky. Then we could just connect the areas to do our vis.
//m_bOverrideVisOrigin could hose us here, so call direct //m_bOverrideVisOrigin could hose us here, so call direct
render->ViewSetupVis( false, 1, &m_pSky3dParams->origin.Get() ); render->ViewSetupVis( false, 1, &m_pSky3dParams->origin.Get() );
render->Push3DView( (*this), m_ClearFlags, pRenderTarget, GetFrustum() ); render->Push3DView( (*this), m_ClearFlags, pRenderTarget, GetFrustum(), pDepthTarget );
// Store off view origin and angles // Store off view origin and angles
SetupCurrentView( origin, angles, iSkyBoxViewID ); SetupCurrentView( origin, angles, iSkyBoxViewID );
@ -4832,7 +4856,15 @@ void CSkyboxView::Draw()
{ {
VPROF_BUDGET( "CViewRender::Draw3dSkyboxworld", "3D Skybox" ); VPROF_BUDGET( "CViewRender::Draw3dSkyboxworld", "3D Skybox" );
DrawInternal(); ITexture *pRTColor = NULL;
ITexture *pRTDepth = NULL;
if( m_eStereoEye != STEREO_EYE_MONO )
{
pRTColor = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(m_eStereoEye-1), ISourceVirtualReality::RT_Color );
pRTDepth = g_pSourceVR->GetRenderTarget( (ISourceVirtualReality::VREye)(m_eStereoEye-1), ISourceVirtualReality::RT_Depth );
}
DrawInternal(VIEW_3DSKY, true, pRTColor, pRTDepth );
} }
@ -4882,7 +4914,7 @@ void CPortalSkyboxView::Draw()
bool bInvokePreAndPostRender = ( g_pPortalRender->ShouldUseStencilsToRenderPortals() == false ); bool bInvokePreAndPostRender = ( g_pPortalRender->ShouldUseStencilsToRenderPortals() == false );
DrawInternal( iSkyBoxViewID, bInvokePreAndPostRender, m_pRenderTarget ); DrawInternal( iSkyBoxViewID, bInvokePreAndPostRender, m_pRenderTarget, NULL );
pRenderContext->EnableClipping( bClippingEnabled ); pRenderContext->EnableClipping( bClippingEnabled );

View File

@ -474,10 +474,6 @@ private:
// This stores the current view // This stores the current view
CViewSetup m_CurrentView; CViewSetup m_CurrentView;
// these will both be mono or they will be left/right
StereoEye_t m_eStartEye;
StereoEye_t m_eLastEye;
// VIS Overrides // VIS Overrides
// Set to true to turn off client side vis ( !!!! rendering will be slow since everything will draw ) // Set to true to turn off client side vis ( !!!! rendering will be slow since everything will draw )
bool m_bForceNoVis; bool m_bForceNoVis;

View File

@ -10,6 +10,8 @@ $Project
{ {
$Folder "Libraries" $Folder "Libraries"
{ {
$Libexternal libprotobuf $Libexternal libprotobuf [!$VS2012 && !$VS2013]
$Libexternal 2012\libprotobuf [$VS2012]
$Libexternal 2013\libprotobuf [$VS2013]
} }
} }

View File

@ -2153,4 +2153,8 @@ void CAI_BaseNPC::InitDefaultActivitySR(void)
ADD_ACTIVITY_TO_SR( ACT_THROWABLE_VM_IDLE ); ADD_ACTIVITY_TO_SR( ACT_THROWABLE_VM_IDLE );
ADD_ACTIVITY_TO_SR( ACT_THROWABLE_VM_FIRE ); ADD_ACTIVITY_TO_SR( ACT_THROWABLE_VM_FIRE );
ADD_ACTIVITY_TO_SR( ACT_SPELL_VM_DRAW );
ADD_ACTIVITY_TO_SR( ACT_SPELL_VM_IDLE );
ADD_ACTIVITY_TO_SR( ACT_SPELL_VM_ARM );
ADD_ACTIVITY_TO_SR( ACT_SPELL_VM_FIRE );
} }

View File

@ -15,7 +15,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
inline float round( float f ) inline float V_round( float f )
{ {
return (float)( (int)( f + 0.5 ) ); return (float)( (int)( f + 0.5 ) );
} }
@ -133,7 +133,7 @@ bool CAI_MoveSolver::Solve( const AI_MoveSuggestion_t *pSuggestions, int nSugges
// Convert arc values to solution indices relative to right post. Right is angle down, left is angle up. // Convert arc values to solution indices relative to right post. Right is angle down, left is angle up.
float halfSpan = current.arc.span * 0.5; float halfSpan = current.arc.span * 0.5;
int center = round( ( halfSpan * NUM_SOLUTIONS ) / 360 ); int center = V_round( ( halfSpan * NUM_SOLUTIONS ) / 360 );
int left = ( current.arc.span * NUM_SOLUTIONS ) / 360; int left = ( current.arc.span * NUM_SOLUTIONS ) / 360;
float angRight = current.arc.center - halfSpan; float angRight = current.arc.center - halfSpan;

View File

@ -983,7 +983,7 @@ bool CAI_NetworkManager::IsAIFileCurrent ( const char *szMapName )
Q_strncpy( szLoweredGameDir, pGameDir, sizeof( szLoweredGameDir ) ); Q_strncpy( szLoweredGameDir, pGameDir, sizeof( szLoweredGameDir ) );
Q_strlower( szLoweredGameDir ); Q_strlower( szLoweredGameDir );
if ( !V_stricmp( szLoweredGameDir, "hl2" ) || !V_stricmp( szLoweredGameDir, "episodic" ) || !V_stricmp( szLoweredGameDir, "ep2" ) || !V_stricmp( szLoweredGameDir, "portal" ) || !V_stricmp( szLoweredGameDir, "lostcoast" ) ) if ( !V_stricmp( szLoweredGameDir, "hl2" ) || !V_stricmp( szLoweredGameDir, "episodic" ) || !V_stricmp( szLoweredGameDir, "ep2" ) || !V_stricmp( szLoweredGameDir, "portal" ) || !V_stricmp( szLoweredGameDir, "lostcoast" ) || !V_stricmp( szLoweredGameDir, "hl1" ) )
{ {
// we shipped good node graphs for our games // we shipped good node graphs for our games
return true; return true;

View File

@ -210,6 +210,9 @@ BEGIN_DATADESC( CBaseAnimating )
DEFINE_INPUT( m_fadeMaxDist, FIELD_FLOAT, "fademaxdist" ), DEFINE_INPUT( m_fadeMaxDist, FIELD_FLOAT, "fademaxdist" ),
DEFINE_KEYFIELD( m_flFadeScale, FIELD_FLOAT, "fadescale" ), DEFINE_KEYFIELD( m_flFadeScale, FIELD_FLOAT, "fadescale" ),
DEFINE_KEYFIELD( m_flModelScale, FIELD_FLOAT, "modelscale" ),
DEFINE_INPUTFUNC( FIELD_VECTOR, "SetModelScale", InputSetModelScale ),
DEFINE_FIELD( m_fBoneCacheFlags, FIELD_SHORT ), DEFINE_FIELD( m_fBoneCacheFlags, FIELD_SHORT ),
END_DATADESC() END_DATADESC()
@ -441,7 +444,7 @@ void CBaseAnimating::StudioFrameAdvanceInternal( CStudioHdr *pStudioHdr, float f
m_flAnimTime.Get(), m_flPrevAnimTime, flInterval, GetCycle() ); m_flAnimTime.Get(), m_flPrevAnimTime, flInterval, GetCycle() );
*/ */
m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ); m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ) * GetModelScale();
// Msg("%s : %s : %5.1f\n", GetClassname(), GetSequenceName( GetSequence() ), GetCycle() ); // Msg("%s : %s : %5.1f\n", GetClassname(), GetSequenceName( GetSequence() ), GetCycle() );
InvalidatePhysicsRecursive( ANIMATION_CHANGED ); InvalidatePhysicsRecursive( ANIMATION_CHANGED );
@ -610,6 +613,17 @@ void CBaseAnimating::InputSetLightingOrigin( inputdata_t &inputdata )
SetLightingOrigin( strLightingOrigin ); SetLightingOrigin( strLightingOrigin );
} }
//-----------------------------------------------------------------------------
// Purpose: SetModelScale input handler
//-----------------------------------------------------------------------------
void CBaseAnimating::InputSetModelScale( inputdata_t &inputdata )
{
Vector vecScale;
inputdata.value.Vector3D( vecScale );
SetModelScale( vecScale.x, vecScale.y );
}
//========================================================= //=========================================================
// SelectWeightedSequence // SelectWeightedSequence
@ -877,7 +891,7 @@ void CBaseAnimating::ResetSequenceInfo ( )
} }
CStudioHdr *pStudioHdr = GetModelPtr(); CStudioHdr *pStudioHdr = GetModelPtr();
m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ); m_flGroundSpeed = GetSequenceGroundSpeed( pStudioHdr, GetSequence() ) * GetModelScale();
m_bSequenceLoops = ((GetSequenceFlags( pStudioHdr, GetSequence() ) & STUDIO_LOOPING) != 0); m_bSequenceLoops = ((GetSequenceFlags( pStudioHdr, GetSequence() ) & STUDIO_LOOPING) != 0);
// m_flAnimTime = gpGlobals->time; // m_flAnimTime = gpGlobals->time;
m_flPlaybackRate = 1.0; m_flPlaybackRate = 1.0;

View File

@ -338,6 +338,7 @@ private:
void StudioFrameAdvanceInternal( CStudioHdr *pStudioHdr, float flInterval ); void StudioFrameAdvanceInternal( CStudioHdr *pStudioHdr, float flInterval );
void InputSetLightingOriginRelative( inputdata_t &inputdata ); void InputSetLightingOriginRelative( inputdata_t &inputdata );
void InputSetLightingOrigin( inputdata_t &inputdata ); void InputSetLightingOrigin( inputdata_t &inputdata );
void InputSetModelScale( inputdata_t &inputdata );
bool CanSkipAnimation( void ); bool CanSkipAnimation( void );

View File

@ -4524,6 +4524,17 @@ void CBaseEntity::Teleport( const Vector *newPosition, const QAngle *newAngles,
teleportList[i].pEntity->CollisionRulesChanged(); teleportList[i].pEntity->CollisionRulesChanged();
} }
if ( IsPlayer() )
{
// Tell the client being teleported
IGameEvent *event = gameeventmanager->CreateEvent( "base_player_teleported" );
if ( event )
{
event->SetInt( "entindex", entindex() );
gameeventmanager->FireEventClientSide( event );
}
}
Assert( g_TeleportStack[index] == this ); Assert( g_TeleportStack[index] == this );
g_TeleportStack.FastRemove( index ); g_TeleportStack.FastRemove( index );

View File

@ -132,7 +132,15 @@ bool CBaseMultiplayerPlayer::CanHearAndReadChatFrom( CBasePlayer *pPlayer )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
bool CBaseMultiplayerPlayer::ShouldRunRateLimitedCommand( const CCommand &args ) bool CBaseMultiplayerPlayer::ShouldRunRateLimitedCommand( const CCommand &args )
{ {
const char *pcmd = args[0]; return ShouldRunRateLimitedCommand( args[0] );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
bool CBaseMultiplayerPlayer::ShouldRunRateLimitedCommand( const char *pszCommand )
{
const char *pcmd = pszCommand;
int i = m_RateLimitLastCommandTimes.Find( pcmd ); int i = m_RateLimitLastCommandTimes.Find( pcmd );
if ( i == m_RateLimitLastCommandTimes.InvalidIndex() ) if ( i == m_RateLimitLastCommandTimes.InvalidIndex() )

View File

@ -89,6 +89,7 @@ public:
// Command rate limiting. // Command rate limiting.
bool ShouldRunRateLimitedCommand( const CCommand &args ); bool ShouldRunRateLimitedCommand( const CCommand &args );
bool ShouldRunRateLimitedCommand( const char *pszCommand );
protected: protected:
virtual CAI_Expresser *CreateExpresser( void ); virtual CAI_Expresser *CreateExpresser( void );

View File

@ -1,136 +0,0 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "cbase.h"
#include "baseprojectile.h"
BEGIN_DATADESC( CBaseProjectile )
DEFINE_FIELD( m_flDamage, FIELD_FLOAT ),
DEFINE_FIELD( m_iDamageType, FIELD_INTEGER ),
DEFINE_FIELD( m_flDamageScale, FIELD_FLOAT ),
DEFINE_FUNCTION( ProjectileTouch ),
DEFINE_THINKFUNC( FlyThink ),
END_DATADESC()
LINK_ENTITY_TO_CLASS( proj_base, CBaseProjectile );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CBaseProjectile::Spawn( void )
{
Precache();
SetModel( STRING( GetModelName() ) );
SetSolid( SOLID_BBOX );
SetMoveType( MOVETYPE_FLYGRAVITY, MOVECOLLIDE_FLY_CUSTOM );
AddFlag( FL_OBJECT );
UTIL_SetSize( this, -Vector( 1.0f, 1.0f, 1.0f ), Vector( 1.0f, 1.0f, 1.0f ) );
// Setup attributes.
SetGravity( 0.001f );
m_takedamage = DAMAGE_NO;
// Setup the touch and think functions.
SetTouch( &CBaseProjectile::ProjectileTouch );
SetThink( &CBaseProjectile::FlyThink );
SetNextThink( gpGlobals->curtime );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CBaseProjectile::Precache( void )
{
BaseClass::Precache();
PrecacheModel( STRING( GetModelName() ) );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CBaseProjectile *CBaseProjectile::Create( baseprojectilecreate_t &pCreate )
{
CBaseProjectile *pProjectile = static_cast<CBaseProjectile*>( CBaseEntity::CreateNoSpawn( "proj_base", pCreate.vecOrigin, vec3_angle, pCreate.pOwner ) );
if ( !pProjectile )
return NULL;
pProjectile->SetModelName( pCreate.iszModel );
pProjectile->SetDamage( pCreate.flDamage );
pProjectile->SetDamageType( pCreate.iDamageType );
pProjectile->SetDamageScale( pCreate.flDamageScale );
pProjectile->SetAbsVelocity( pCreate.vecVelocity );
// Setup the initial angles.
QAngle angles;
VectorAngles( -pCreate.vecVelocity, angles );
pProjectile->SetAbsAngles( angles );
// Spawn & Activate
DispatchSpawn( pProjectile );
pProjectile->Activate();
return pProjectile;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
unsigned int CBaseProjectile::PhysicsSolidMaskForEntity( void ) const
{
return BaseClass::PhysicsSolidMaskForEntity() | CONTENTS_HITBOX;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CBaseProjectile::ProjectileTouch( CBaseEntity *pOther )
{
// Verify a correct "other."
Assert( pOther );
if ( !pOther->IsSolid() || pOther->IsSolidFlagSet( FSOLID_VOLUME_CONTENTS ) )
return;
// Handle hitting skybox (disappear).
const trace_t *pTrace = &CBaseEntity::GetTouchTrace();
trace_t *pNewTrace = const_cast<trace_t*>( pTrace );
if( pTrace->surface.flags & SURF_SKY )
{
UTIL_Remove( this );
return;
}
CTakeDamageInfo info;
info.SetAttacker( GetOwnerEntity() );
info.SetInflictor( this );
info.SetDamage( GetDamage() );
info.SetDamageType( GetDamageType() );
CalculateMeleeDamageForce( &info, GetAbsVelocity(), GetAbsOrigin(), GetDamageScale() );
Vector dir;
AngleVectors( GetAbsAngles(), &dir );
pOther->DispatchTraceAttack( info, dir, pNewTrace );
ApplyMultiDamage();
UTIL_Remove( this );
}
//-----------------------------------------------------------------------------
// Purpose: Orient the projectile along its velocity
//-----------------------------------------------------------------------------
void CBaseProjectile::FlyThink( void )
{
QAngle angles;
VectorAngles( -(GetAbsVelocity()), angles );
SetAbsAngles( angles );
SetNextThink( gpGlobals->curtime + 0.1f );
}

View File

@ -1,61 +0,0 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef BASEPROJECTILE_H
#define BASEPROJECTILE_H
#ifdef _WIN32
#pragma once
#endif
// Creation.
struct baseprojectilecreate_t
{
Vector vecOrigin;
Vector vecVelocity;
CBaseEntity *pOwner;
string_t iszModel;
float flDamage;
int iDamageType;
float flDamageScale;
};
//=============================================================================
//
// Generic projectile
//
class CBaseProjectile : public CBaseAnimating
{
DECLARE_CLASS( CBaseProjectile, CBaseAnimating );
public:
DECLARE_DATADESC();
void Spawn( void );
void Precache( void );
static CBaseProjectile *Create( baseprojectilecreate_t &pCreate );
void SetDamage( float flDamage ) { m_flDamage = flDamage; }
void SetDamageScale( float &flScale ) { m_flDamageScale = flScale; }
void SetDamageType( int iType ) { m_iDamageType = iType; }
private:
// Damage
virtual float GetDamage() { return m_flDamage; }
virtual float GetDamageScale( void ) { return m_flDamageScale; }
virtual int GetDamageType( void ) { return m_iDamageType; }
unsigned int PhysicsSolidMaskForEntity( void ) const;
virtual void ProjectileTouch( CBaseEntity *pOther );
void FlyThink( void );
protected:
float m_flDamage;
int m_iDamageType;
float m_flDamageScale;
};
#endif // BASEPROJECTILE_H

View File

@ -118,7 +118,7 @@ void CBaseTempEntity::PrecacheTempEnts( void )
void CBaseTempEntity::Create( IRecipientFilter& filter, float delay ) void CBaseTempEntity::Create( IRecipientFilter& filter, float delay )
{ {
// temp entities can't be reliable or part of the signon message, use real entities instead // temp entities can't be reliable or part of the signon message, use real entities instead
Assert( !filter.IsInitMessage() && !filter.IsInitMessage() ); Assert( !filter.IsReliable() && !filter.IsInitMessage() );
Assert( delay >= -1 && delay <= 1); // 1 second max delay Assert( delay >= -1 && delay <= 1); // 1 second max delay
engine->PlaybackTempEntity( filter, delay, engine->PlaybackTempEntity( filter, delay,

View File

@ -409,14 +409,40 @@ void CC_Ent_Keyvalue( const CCommand &args )
return; return;
} }
CBasePlayer *pPlayer = ToBasePlayer( UTIL_GetCommandClient() );
CBaseEntity *pEnt;
if ( FStrEq( args[1], "" ) || FStrEq( args[1], "!picker" ) )
{
if (!pPlayer)
return;
extern CBaseEntity *FindPickerEntity( CBasePlayer *pPlayer );
pEnt = FindPickerEntity( pPlayer );
if ( !pEnt )
{
ClientPrint( pPlayer, HUD_PRINTCONSOLE, "No entity in front of player.\n" );
return;
}
}
else if ( FStrEq( args[1], "!self" ) || FStrEq( args[1], "!caller" ) || FStrEq( args[1], "!activator" ) )
{
if (!pPlayer)
return;
pEnt = pPlayer;
}
else
{
int nID = atoi( args[1] ); int nID = atoi( args[1] );
CBaseEntity *pEnt = g_ServerTools.FindEntityByHammerID( nID ); pEnt = g_ServerTools.FindEntityByHammerID( nID );
if ( !pEnt ) if ( !pEnt )
{ {
Msg( "Entity ID %d not found.\n", nID ); Msg( "Entity ID %d not found.\n", nID );
return; return;
} }
}
int nArg = 2; int nArg = 2;
while ( nArg < args.ArgC() ) while ( nArg < args.ArgC() )

View File

@ -84,7 +84,7 @@ public:
int OnTakeDamage_Alive( const CTakeDamageInfo &info ); int OnTakeDamage_Alive( const CTakeDamageInfo &info );
void TraceAttack( const CTakeDamageInfo &info, const Vector &vecDir, trace_t *ptr ); void TraceAttack( const CTakeDamageInfo &info, const Vector &vecDir, trace_t *ptr, CDmgAccumulator *pAccumulator );
virtual bool FireGun( void ); virtual bool FireGun( void );

View File

@ -169,7 +169,7 @@ bool Flashlight_UseLegacyVersion( void )
g_bUseLegacyFlashlight = ( !Q_strcmp( modDir, "hl2" ) || g_bUseLegacyFlashlight = ( !Q_strcmp( modDir, "hl2" ) ||
!Q_strcmp( modDir, "episodic" ) || !Q_strcmp( modDir, "episodic" ) ||
!Q_strcmp( modDir, "lostcoast" )); !Q_strcmp( modDir, "lostcoast" ) || !Q_strcmp( modDir, "hl1" ));
g_bCacheLegacyFlashlightStatus = false; g_bCacheLegacyFlashlightStatus = false;
} }

View File

@ -37,6 +37,8 @@ public:
COutputEvent m_OnTrigger; COutputEvent m_OnTrigger;
COutputEvent m_OnSpawn; COutputEvent m_OnSpawn;
bool IsDisabled( void ){ return m_bDisabled; }
private: private:
bool m_bDisabled; bool m_bDisabled;

View File

@ -630,9 +630,10 @@ void CNavMesh::OnRoundRestart( void )
} }
// attach prerequisites // attach prerequisites
CFuncNavPrerequisite *prereq = NULL; for ( int i=0; i<IFuncNavPrerequisiteAutoList::AutoList().Count(); ++i )
while( ( prereq = (CFuncNavPrerequisite *)gEntList.FindEntityByClassname( prereq, "func_nav_prerequisite" ) ) != NULL )
{ {
CFuncNavPrerequisite *prereq = static_cast< CFuncNavPrerequisite* >( IFuncNavPrerequisiteAutoList::AutoList()[i] );
Extent prereqExtent; Extent prereqExtent;
prereqExtent.Init( prereq ); prereqExtent.Init( prereq );

View File

@ -442,6 +442,7 @@ BEGIN_DATADESC( CBasePlayer )
DEFINE_INPUTFUNC( FIELD_INTEGER, "SetHealth", InputSetHealth ), DEFINE_INPUTFUNC( FIELD_INTEGER, "SetHealth", InputSetHealth ),
DEFINE_INPUTFUNC( FIELD_BOOLEAN, "SetHUDVisibility", InputSetHUDVisibility ), DEFINE_INPUTFUNC( FIELD_BOOLEAN, "SetHUDVisibility", InputSetHUDVisibility ),
DEFINE_INPUTFUNC( FIELD_STRING, "SetFogController", InputSetFogController ), DEFINE_INPUTFUNC( FIELD_STRING, "SetFogController", InputSetFogController ),
DEFINE_INPUTFUNC( FIELD_STRING, "HandleMapEvent", InputHandleMapEvent ),
DEFINE_FIELD( m_nNumCrouches, FIELD_INTEGER ), DEFINE_FIELD( m_nNumCrouches, FIELD_INTEGER ),
DEFINE_FIELD( m_bDuckToggled, FIELD_BOOLEAN ), DEFINE_FIELD( m_bDuckToggled, FIELD_BOOLEAN ),
@ -911,7 +912,7 @@ void CBasePlayer::TraceAttack( const CTakeDamageInfo &inputInfo, const Vector &v
// Prevent team damage here so blood doesn't appear // Prevent team damage here so blood doesn't appear
if ( info.GetAttacker()->IsPlayer() ) if ( info.GetAttacker()->IsPlayer() )
{ {
if ( !g_pGameRules->FPlayerCanTakeDamage( this, info.GetAttacker() ) ) if ( !g_pGameRules->FPlayerCanTakeDamage( this, info.GetAttacker(), info ) )
return; return;
} }
} }
@ -1121,7 +1122,7 @@ int CBasePlayer::OnTakeDamage( const CTakeDamageInfo &inputInfo )
// go take the damage first // go take the damage first
if ( !g_pGameRules->FPlayerCanTakeDamage( this, info.GetAttacker() ) ) if ( !g_pGameRules->FPlayerCanTakeDamage( this, info.GetAttacker(), inputInfo ) )
{ {
// Refuse the damage // Refuse the damage
return 0; return 0;
@ -3311,7 +3312,8 @@ void CBasePlayer::PhysicsSimulate( void )
} }
#endif // _DEBUG #endif // _DEBUG
if ( int numUsrCmdProcessTicksMax = sv_maxusrcmdprocessticks.GetInt() ) int numUsrCmdProcessTicksMax = sv_maxusrcmdprocessticks.GetInt();
if ( gpGlobals->maxClients != 1 && numUsrCmdProcessTicksMax ) // don't apply this filter in SP games
{ {
// Grant the client some time buffer to execute user commands // Grant the client some time buffer to execute user commands
m_flMovementTimeForUserCmdProcessingRemaining += TICK_INTERVAL; m_flMovementTimeForUserCmdProcessingRemaining += TICK_INTERVAL;
@ -8641,6 +8643,14 @@ void CBasePlayer::InputSetHealth( inputdata_t &inputdata )
} }
} }
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CBasePlayer::InputHandleMapEvent( inputdata_t &inputdata )
{
Internal_HandleMapEvent( inputdata );
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Hides or displays the HUD // Purpose: Hides or displays the HUD
// Input : &inputdata - // Input : &inputdata -

View File

@ -765,6 +765,7 @@ public:
//--------------------------------- //---------------------------------
void InputSetHealth( inputdata_t &inputdata ); void InputSetHealth( inputdata_t &inputdata );
void InputSetHUDVisibility( inputdata_t &inputdata ); void InputSetHUDVisibility( inputdata_t &inputdata );
void InputHandleMapEvent( inputdata_t &inputdata );
surfacedata_t *GetSurfaceData( void ) { return m_pSurfaceData; } surfacedata_t *GetSurfaceData( void ) { return m_pSurfaceData; }
void SetLadderNormal( Vector vecLadderNormal ) { m_vecLadderNormal = vecLadderNormal; } void SetLadderNormal( Vector vecLadderNormal ) { m_vecLadderNormal = vecLadderNormal; }
@ -903,6 +904,8 @@ protected:
void CalcObserverView( Vector& eyeOrigin, QAngle& eyeAngles, float& fov ); void CalcObserverView( Vector& eyeOrigin, QAngle& eyeAngles, float& fov );
void CalcViewModelView( const Vector& eyeOrigin, const QAngle& eyeAngles); void CalcViewModelView( const Vector& eyeOrigin, const QAngle& eyeAngles);
virtual void Internal_HandleMapEvent( inputdata_t &inputdata ){}
// FIXME: Make these private! (tf_player uses them) // FIXME: Make these private! (tf_player uses them)
// Secondary point to derive PVS from when zoomed in with binoculars/sniper rifle. The PVS is // Secondary point to derive PVS from when zoomed in with binoculars/sniper rifle. The PVS is

View File

@ -770,10 +770,12 @@ void CLagCompensationManager::FinishLagCompensation( CBasePlayer *player )
// Restore it // Restore it
pPlayer->SetSize( restore->m_vecMinsPreScaled, restore->m_vecMaxsPreScaled ); pPlayer->SetSize( restore->m_vecMinsPreScaled, restore->m_vecMaxsPreScaled );
} }
#ifdef STAGING_ONLY
else else
{ {
Warning( "Should we really not restore the size?\n" ); Warning( "Should we really not restore the size?\n" );
} }
#endif
} }
if ( restore->m_fFlags & LC_ANGLES_CHANGED ) if ( restore->m_fFlags & LC_ANGLES_CHANGED )

View File

@ -245,6 +245,8 @@ $Project
$File "$SRCDIR\game\shared\baseparticleentity.h" $File "$SRCDIR\game\shared\baseparticleentity.h"
$File "$SRCDIR\game\shared\baseplayer_shared.cpp" $File "$SRCDIR\game\shared\baseplayer_shared.cpp"
$File "$SRCDIR\game\shared\baseplayer_shared.h" $File "$SRCDIR\game\shared\baseplayer_shared.h"
$File "$SRCDIR\game\shared\baseprojectile.cpp"
$File "$SRCDIR\game\shared\baseprojectile.h"
$File "BasePropDoor.h" $File "BasePropDoor.h"
$File "basetoggle.h" $File "basetoggle.h"
$File "baseviewmodel.cpp" $File "baseviewmodel.cpp"

View File

@ -842,16 +842,6 @@ void CTeamControlPointMaster::InputRoundSpawn( inputdata_t &input )
SetBaseControlPoints(); SetBaseControlPoints();
// init the ClientAreas
int index = 0;
for ( int i=0; i<ITriggerAreaCaptureAutoList::AutoList().Count(); ++i )
{
CTriggerAreaCapture *pArea = static_cast< CTriggerAreaCapture * >( ITriggerAreaCaptureAutoList::AutoList()[i] );
pArea->SetAreaIndex( index );
index++;
}
ObjectiveResource()->ResetControlPoints(); ObjectiveResource()->ResetControlPoints();
} }

View File

@ -72,6 +72,7 @@ BEGIN_DATADESC( CTeamTrainWatcher )
DEFINE_INPUTFUNC( FIELD_VOID, "Disable", InputDisable ), DEFINE_INPUTFUNC( FIELD_VOID, "Disable", InputDisable ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetSpeedForwardModifier", InputSetSpeedForwardModifier ), DEFINE_INPUTFUNC( FIELD_FLOAT, "SetSpeedForwardModifier", InputSetSpeedForwardModifier ),
DEFINE_INPUTFUNC( FIELD_INTEGER, "SetTrainRecedeTime", InputSetTrainRecedeTime ), DEFINE_INPUTFUNC( FIELD_INTEGER, "SetTrainRecedeTime", InputSetTrainRecedeTime ),
DEFINE_INPUTFUNC( FIELD_BOOLEAN, "SetTrainCanRecede", InputSetTrainCanRecede ),
// Outputs // Outputs
DEFINE_OUTPUT( m_OnTrainStartRecede, "OnTrainStartRecede" ), DEFINE_OUTPUT( m_OnTrainStartRecede, "OnTrainStartRecede" ),
@ -141,6 +142,9 @@ END_SEND_TABLE()
LINK_ENTITY_TO_CLASS( team_train_watcher, CTeamTrainWatcher ); LINK_ENTITY_TO_CLASS( team_train_watcher, CTeamTrainWatcher );
IMPLEMENT_AUTO_LIST( ITFTeamTrainWatcher );
/* /*
LINK_ENTITY_TO_CLASS( team_train_watcher_master, CTeamTrainWatcherMaster ); LINK_ENTITY_TO_CLASS( team_train_watcher_master, CTeamTrainWatcherMaster );
PRECACHE_REGISTER( team_train_watcher_master ); PRECACHE_REGISTER( team_train_watcher_master );
@ -710,6 +714,11 @@ void CTeamTrainWatcher::InputSetTrainRecedeTime( inputdata_t &inputdata )
} }
} }
void CTeamTrainWatcher::InputSetTrainCanRecede( inputdata_t &inputdata )
{
m_bTrainCanRecede = inputdata.value.Bool();
}
void CTeamTrainWatcher::InputOnStartOvertime( inputdata_t &inputdata ) void CTeamTrainWatcher::InputOnStartOvertime( inputdata_t &inputdata )
{ {
// recalculate the recede time // recalculate the recede time

View File

@ -34,7 +34,9 @@ class CTeamControlPoint;
// #define TWMASTER_THINK "CTeamTrainWatcherMasterThink" // #define TWMASTER_THINK "CTeamTrainWatcherMasterThink"
class CTeamTrainWatcher : public CBaseEntity, public CGameEventListener DECLARE_AUTO_LIST( ITFTeamTrainWatcher );
class CTeamTrainWatcher : public CBaseEntity, public CGameEventListener, public ITFTeamTrainWatcher
{ {
DECLARE_CLASS( CTeamTrainWatcher, CBaseEntity ); DECLARE_CLASS( CTeamTrainWatcher, CBaseEntity );
public: public:
@ -55,6 +57,7 @@ public:
void InputOnStartOvertime( inputdata_t &inputdata ); void InputOnStartOvertime( inputdata_t &inputdata );
void InputSetSpeedForwardModifier( inputdata_t &inputdata ); void InputSetSpeedForwardModifier( inputdata_t &inputdata );
void InputSetTrainRecedeTime( inputdata_t &inputdata ); void InputSetTrainRecedeTime( inputdata_t &inputdata );
void InputSetTrainCanRecede( inputdata_t &inputdata );
// ========================================================== // ==========================================================
// given a start node and a list of goal nodes // given a start node and a list of goal nodes

View File

@ -1646,7 +1646,7 @@ static CBaseEntity *FindPhysicsBlockerForHierarchy( CBaseEntity *pParentEntity )
{ {
IPhysicsObject *pOther = pSnapshot->GetObject(1); IPhysicsObject *pOther = pSnapshot->GetObject(1);
CBaseEntity *pOtherEntity = static_cast<CBaseEntity *>(pOther->GetGameData()); CBaseEntity *pOtherEntity = static_cast<CBaseEntity *>(pOther->GetGameData());
if ( pOtherEntity->GetMoveType() == MOVETYPE_VPHYSICS ) if ( pOtherEntity && pOtherEntity->GetMoveType() == MOVETYPE_VPHYSICS )
{ {
Vector normal; Vector normal;
pSnapshot->GetSurfaceNormal(normal); pSnapshot->GetSurfaceNormal(normal);

View File

@ -43,7 +43,6 @@ BEGIN_DATADESC(CTriggerAreaCapture)
// DEFINE_FIELD( m_TeamData, CUtlVector < perteamdata_t > ), // DEFINE_FIELD( m_TeamData, CUtlVector < perteamdata_t > ),
// DEFINE_FIELD( m_Blockers, CUtlVector < blockers_t > ), // DEFINE_FIELD( m_Blockers, CUtlVector < blockers_t > ),
// DEFINE_FIELD( m_bActive, FIELD_BOOLEAN ), // DEFINE_FIELD( m_bActive, FIELD_BOOLEAN ),
// DEFINE_FIELD( m_iAreaIndex, FIELD_INTEGER ),
// DEFINE_FIELD( m_hPoint, CHandle < CTeamControlPoint > ), // DEFINE_FIELD( m_hPoint, CHandle < CTeamControlPoint > ),
// DEFINE_FIELD( m_bRequiresObject, FIELD_BOOLEAN ), // DEFINE_FIELD( m_bRequiresObject, FIELD_BOOLEAN ),
// DEFINE_FIELD( m_iCapAttemptNumber, FIELD_INTEGER ), // DEFINE_FIELD( m_iCapAttemptNumber, FIELD_INTEGER ),
@ -96,8 +95,6 @@ void CTriggerAreaCapture::Spawn( void )
Precache(); Precache();
m_iAreaIndex = -1;
SetTouch ( &CTriggerAreaCaptureShim::Touch ); SetTouch ( &CTriggerAreaCaptureShim::Touch );
SetThink( &CTriggerAreaCapture::CaptureThink ); SetThink( &CTriggerAreaCapture::CaptureThink );
SetNextThink( gpGlobals->curtime + AREA_THINK_TIME ); SetNextThink( gpGlobals->curtime + AREA_THINK_TIME );
@ -164,14 +161,6 @@ void CTriggerAreaCapture::Precache( void )
{ {
} }
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CTriggerAreaCapture::SetAreaIndex( int index )
{
m_iAreaIndex = index;
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: // Purpose:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -231,7 +220,7 @@ void CTriggerAreaCapture::StartTouch(CBaseEntity *pOther)
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void CTriggerAreaCapture::EndTouch(CBaseEntity *pOther) void CTriggerAreaCapture::EndTouch(CBaseEntity *pOther)
{ {
if ( PassesTriggerFilters(pOther) && m_hPoint ) if ( IsTouching( pOther ) && m_hPoint )
{ {
IGameEvent *event = gameeventmanager->CreateEvent( "controlpoint_endtouch" ); IGameEvent *event = gameeventmanager->CreateEvent( "controlpoint_endtouch" );
if ( event ) if ( event )
@ -274,8 +263,6 @@ void CTriggerAreaCapture::AreaTouch( CBaseEntity *pOther )
if ( !TeamplayGameRules()->PointsMayBeCaptured() ) if ( !TeamplayGameRules()->PointsMayBeCaptured() )
return; return;
Assert( m_iAreaIndex != -1 );
// dont touch for non-alive or non-players // dont touch for non-alive or non-players
if( !pOther->IsPlayer() || !pOther->IsAlive() ) if( !pOther->IsPlayer() || !pOther->IsAlive() )
return; return;
@ -771,6 +758,8 @@ void CTriggerAreaCapture::StartCapture( int team, int capmode )
m_nCapturingTeam = team; m_nCapturingTeam = team;
OnStartCapture( m_nCapturingTeam );
UpdateNumPlayers(); UpdateNumPlayers();
if ( CaptureModeScalesWithPlayers() ) if ( CaptureModeScalesWithPlayers() )

View File

@ -55,13 +55,13 @@ public:
// A team has finished capturing the zone. // A team has finished capturing the zone.
virtual void OnEndCapture( int iTeam ) { return; } virtual void OnEndCapture( int iTeam ) { return; }
virtual void OnStartCapture( int iTeam ) { return; }
public: public:
virtual void Spawn( void ); virtual void Spawn( void );
virtual void Precache( void ); virtual void Precache( void );
virtual bool KeyValue( const char *szKeyName, const char *szValue ); virtual bool KeyValue( const char *szKeyName, const char *szValue );
void SetAreaIndex( int index );
bool IsActive( void ); bool IsActive( void );
bool CheckIfDeathCausesBlock( CBaseMultiplayerPlayer *pVictim, CBaseMultiplayerPlayer *pKiller ); bool CheckIfDeathCausesBlock( CBaseMultiplayerPlayer *pVictim, CBaseMultiplayerPlayer *pKiller );
@ -173,8 +173,6 @@ private:
COutputInt m_OnNumCappersChanged; COutputInt m_OnNumCappersChanged;
COutputInt m_OnNumCappersChanged2; COutputInt m_OnNumCappersChanged2;
int m_iAreaIndex; //index of this area among all other areas
CHandle<CTeamControlPoint> m_hPoint; //the capture point that we are linked to! CHandle<CTeamControlPoint> m_hPoint; //the capture point that we are linked to!
bool m_bRequiresObject; bool m_bRequiresObject;

View File

@ -392,13 +392,19 @@ bool CBaseTrigger::PassesTriggerFilters(CBaseEntity *pOther)
bool bOtherIsPlayer = pOther->IsPlayer(); bool bOtherIsPlayer = pOther->IsPlayer();
if ( HasSpawnFlags(SF_TRIGGER_ONLY_CLIENTS_IN_VEHICLES) && bOtherIsPlayer ) if ( bOtherIsPlayer )
{ {
if ( !((CBasePlayer*)pOther)->IsInAVehicle() ) CBasePlayer *pPlayer = (CBasePlayer*)pOther;
if ( !pPlayer->IsAlive() )
return false;
if ( HasSpawnFlags(SF_TRIGGER_ONLY_CLIENTS_IN_VEHICLES) )
{
if ( !pPlayer->IsInAVehicle() )
return false; return false;
// Make sure we're also not exiting the vehicle at the moment // Make sure we're also not exiting the vehicle at the moment
IServerVehicle *pVehicleServer = ((CBasePlayer*)pOther)->GetVehicle(); IServerVehicle *pVehicleServer = pPlayer->GetVehicle();
if ( pVehicleServer == NULL ) if ( pVehicleServer == NULL )
return false; return false;
@ -406,17 +412,18 @@ bool CBaseTrigger::PassesTriggerFilters(CBaseEntity *pOther)
return false; return false;
} }
if ( HasSpawnFlags(SF_TRIGGER_ONLY_CLIENTS_OUT_OF_VEHICLES) && bOtherIsPlayer ) if ( HasSpawnFlags(SF_TRIGGER_ONLY_CLIENTS_OUT_OF_VEHICLES) )
{ {
if ( ((CBasePlayer*)pOther)->IsInAVehicle() ) if ( pPlayer->IsInAVehicle() )
return false; return false;
} }
if ( HasSpawnFlags( SF_TRIGGER_DISALLOW_BOTS ) && bOtherIsPlayer ) if ( HasSpawnFlags( SF_TRIGGER_DISALLOW_BOTS ) )
{ {
if ( ((CBasePlayer*)pOther)->IsFakeClient() ) if ( pPlayer->IsFakeClient() )
return false; return false;
} }
}
CBaseFilter *pFilter = m_hFilter.Get(); CBaseFilter *pFilter = m_hFilter.Get();
return (!pFilter) ? true : pFilter->PassesFilter( this, pOther ); return (!pFilter) ? true : pFilter->PassesFilter( this, pOther );
@ -503,6 +510,14 @@ void CBaseTrigger::EndTouch(CBaseEntity *pOther)
{ {
m_hTouchingEntities.Remove( i ); m_hTouchingEntities.Remove( i );
} }
else if ( hOther->IsPlayer() && !hOther->IsAlive() )
{
#ifdef STAGING_ONLY
AssertMsg( 0, CFmtStr( "Dead player [%s] is still touching this trigger at [%f %f %f]", hOther->GetEntityName().ToCStr(), XYZ( hOther->GetAbsOrigin() ) ) );
Warning( "Dead player [%s] is still touching this trigger at [%f %f %f]", hOther->GetEntityName().ToCStr(), XYZ( hOther->GetAbsOrigin() ) );
#endif
m_hTouchingEntities.Remove( i );
}
else else
{ {
bFoundOtherTouchee = true; bFoundOtherTouchee = true;

View File

@ -902,7 +902,15 @@ void UTIL_ScreenShakeObject( CBaseEntity *pEnt, const Vector &center, float ampl
continue; continue;
} }
if ( radius > 0 )
{
localAmplitude = ComputeShakeAmplitude( center, pPlayer->WorldSpaceCenter(), amplitude, radius ); localAmplitude = ComputeShakeAmplitude( center, pPlayer->WorldSpaceCenter(), amplitude, radius );
}
else
{
// If using a 0 radius, apply to everyone with no falloff
localAmplitude = amplitude;
}
// This happens if the player is outside the radius, // This happens if the player is outside the radius,
// in which case we should ignore all commands // in which case we should ignore all commands

View File

@ -616,11 +616,7 @@ void CVoteController::VoteControllerThink( void )
} }
else else
{ {
// Don't track failed dedicated server votes m_potentialIssues[m_iActiveIssueIndex]->OnVoteFailed( m_iEntityHoldingVote );
if ( m_iEntityHoldingVote != DEDICATED_SERVER )
{
m_potentialIssues[m_iActiveIssueIndex]->OnVoteFailed();
}
m_resetVoteTimer.Start( 5.0 ); m_resetVoteTimer.Start( 5.0 );
} }
} }
@ -895,8 +891,11 @@ const char *CBaseIssue::GetVotePassedString( void )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Store failures to prevent vote spam // Purpose: Store failures to prevent vote spam
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void CBaseIssue::OnVoteFailed( void ) void CBaseIssue::OnVoteFailed( int iEntityHoldingVote )
{ {
// Don't track failed dedicated server votes
if ( BRecordVoteFailureEventForEntity( iEntityHoldingVote ) )
{
// Check for an existing match // Check for an existing match
for ( int index = 0; index < m_FailedVotes.Count(); index++ ) for ( int index = 0; index < m_FailedVotes.Count(); index++ )
{ {
@ -923,6 +922,7 @@ void CBaseIssue::OnVoteFailed( void )
int iIndex = m_FailedVotes.AddToTail( pNewFailedVote ); int iIndex = m_FailedVotes.AddToTail( pNewFailedVote );
Q_strcpy( m_FailedVotes[iIndex]->szFailedVoteParameter, GetDetailsString() ); Q_strcpy( m_FailedVotes[iIndex]->szFailedVoteParameter, GetDetailsString() );
m_FailedVotes[iIndex]->flLockoutTime = gpGlobals->curtime + sv_vote_failure_timer.GetFloat(); m_FailedVotes[iIndex]->flLockoutTime = gpGlobals->curtime + sv_vote_failure_timer.GetFloat();
}
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -939,7 +939,7 @@ bool CBaseIssue::CanTeamCallVote( int iTeam ) const
bool CBaseIssue::CanCallVote( int iEntIndex, const char *pszDetails, vote_create_failed_t &nFailCode, int &nTime ) bool CBaseIssue::CanCallVote( int iEntIndex, const char *pszDetails, vote_create_failed_t &nFailCode, int &nTime )
{ {
// Automated server vote - don't bother testing against it // Automated server vote - don't bother testing against it
if ( iEntIndex == DEDICATED_SERVER ) if ( !BRecordVoteFailureEventForEntity( iEntIndex ) )
return true; return true;
// Bogus player // Bogus player

View File

@ -25,7 +25,7 @@ public:
const char *GetTypeString( void ); // Connection between console command and specific type of issue const char *GetTypeString( void ); // Connection between console command and specific type of issue
virtual const char *GetDetailsString(); virtual const char *GetDetailsString();
virtual void SetIssueDetails( const char *pszDetails ); // We need to know the details part of the con command for later virtual void SetIssueDetails( const char *pszDetails ); // We need to know the details part of the con command for later
virtual void OnVoteFailed( void ); // The moment the vote fails, also has some time for feedback before the window goes away virtual void OnVoteFailed( int iEntityHoldingVote ); // The moment the vote fails, also has some time for feedback before the window goes away
virtual void OnVoteStarted( void ) {} // Called as soon as the vote starts virtual void OnVoteStarted( void ) {} // Called as soon as the vote starts
virtual bool IsEnabled( void ) { return false; } // Query the issue to see if it's enabled virtual bool IsEnabled( void ) { return false; } // Query the issue to see if it's enabled
virtual bool CanTeamCallVote( int iTeam ) const; // Can someone on the given team call this vote? virtual bool CanTeamCallVote( int iTeam ) const; // Can someone on the given team call this vote?
@ -40,6 +40,7 @@ public:
virtual bool IsYesNoVote( void ); virtual bool IsYesNoVote( void );
virtual void SetYesNoVoteCount( int iNumYesVotes, int iNumNoVotes, int iNumPotentialVotes ); virtual void SetYesNoVoteCount( int iNumYesVotes, int iNumNoVotes, int iNumPotentialVotes );
virtual bool GetVoteOptions( CUtlVector <const char*> &vecNames ); // We use this to generate options for voting virtual bool GetVoteOptions( CUtlVector <const char*> &vecNames ); // We use this to generate options for voting
virtual bool BRecordVoteFailureEventForEntity( int iVoteCallingEntityIndex ) const { return iVoteCallingEntityIndex != DEDICATED_SERVER; }
protected: protected:
static void ListStandardNoArgCommand( CBasePlayer *forWhom, const char *issueString ); // List a Yes vote command static void ListStandardNoArgCommand( CBasePlayer *forWhom, const char *issueString ); // List a Yes vote command

View File

@ -2270,6 +2270,11 @@ void ActivityList_RegisterSharedActivities( void )
REGISTER_SHARED_ACTIVITY( ACT_THROWABLE_VM_IDLE ); REGISTER_SHARED_ACTIVITY( ACT_THROWABLE_VM_IDLE );
REGISTER_SHARED_ACTIVITY( ACT_THROWABLE_VM_FIRE ); REGISTER_SHARED_ACTIVITY( ACT_THROWABLE_VM_FIRE );
REGISTER_SHARED_ACTIVITY( ACT_SPELL_VM_DRAW );
REGISTER_SHARED_ACTIVITY( ACT_SPELL_VM_IDLE );
REGISTER_SHARED_ACTIVITY( ACT_SPELL_VM_ARM );
REGISTER_SHARED_ACTIVITY( ACT_SPELL_VM_FIRE );
AssertMsg( g_HighestActivity == LAST_SHARED_ACTIVITY - 1, "Not all activities from ai_activity.h registered in activitylist.cpp" ); AssertMsg( g_HighestActivity == LAST_SHARED_ACTIVITY - 1, "Not all activities from ai_activity.h registered in activitylist.cpp" );
} }

View File

@ -2097,11 +2097,16 @@ typedef enum
// Throwable Animations // Throwable Animations
ACT_MP_THROW, ACT_MP_THROW,
ACT_THROWABLE_VM_DRAW, ACT_THROWABLE_VM_DRAW,
ACT_THROWABLE_VM_IDLE, ACT_THROWABLE_VM_IDLE,
ACT_THROWABLE_VM_FIRE, ACT_THROWABLE_VM_FIRE,
// Spell Animations
ACT_SPELL_VM_DRAW,
ACT_SPELL_VM_IDLE,
ACT_SPELL_VM_ARM,
ACT_SPELL_VM_FIRE,
// this is the end of the global activities, private per-monster activities start here. // this is the end of the global activities, private per-monster activities start here.
LAST_SHARED_ACTIVITY, LAST_SHARED_ACTIVITY,
} Activity; } Activity;

View File

@ -248,7 +248,7 @@ public:
// but they are out of ammo. The default implementation // but they are out of ammo. The default implementation
// either reloads, switches weapons, or plays an empty sound. // either reloads, switches weapons, or plays an empty sound.
virtual bool ShouldBlockPrimaryFire() { return !AutoFiresFullClip(); } virtual bool ShouldBlockPrimaryFire() { return false; }
#ifdef CLIENT_DLL #ifdef CLIENT_DLL
virtual void CreateMove( float flInputSampleTime, CUserCmd *pCmd, const QAngle &vecOldViewAngles ) {} virtual void CreateMove( float flInputSampleTime, CUserCmd *pCmd, const QAngle &vecOldViewAngles ) {}

View File

@ -11,6 +11,8 @@
#pragma once #pragma once
#endif #endif
#include "baseprojectile.h"
#if defined( CLIENT_DLL ) #if defined( CLIENT_DLL )
#define CBaseGrenade C_BaseGrenade #define CBaseGrenade C_BaseGrenade
@ -29,12 +31,12 @@
class CTakeDamageInfo; class CTakeDamageInfo;
#if !defined( CLIENT_DLL ) #if !defined( CLIENT_DLL )
class CBaseGrenade : public CBaseAnimating, public CDefaultPlayerPickupVPhysics class CBaseGrenade : public CBaseProjectile, public CDefaultPlayerPickupVPhysics
#else #else
class CBaseGrenade : public CBaseAnimating class CBaseGrenade : public CBaseProjectile
#endif #endif
{ {
DECLARE_CLASS( CBaseGrenade, CBaseAnimating ); DECLARE_CLASS( CBaseGrenade, CBaseProjectile );
public: public:
CBaseGrenade(void); CBaseGrenade(void);

View File

@ -22,7 +22,7 @@
#include "view.h" #include "view.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#define CRecipientFilter C_RecipientFilter #define CRecipientFilter C_RecipientFilter
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#else #else

View File

@ -0,0 +1,26 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "baseprojectile.h"
IMPLEMENT_NETWORKCLASS_ALIASED( BaseProjectile, DT_BaseProjectile )
BEGIN_NETWORK_TABLE( CBaseProjectile, DT_BaseProjectile )
END_NETWORK_TABLE()
//-----------------------------------------------------------------------------
// Purpose: Constructor.
//-----------------------------------------------------------------------------
CBaseProjectile::CBaseProjectile()
{
#ifdef GAME_DLL
m_iDestroyableHitCount = 0;
#endif
}

View File

@ -0,0 +1,53 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef BASEPROJECTILE_H
#define BASEPROJECTILE_H
#ifdef _WIN32
#pragma once
#endif
#include "cbase.h"
#ifdef GAME_DLL
#include "baseanimating.h"
#else
#include "c_baseanimating.h"
#endif
#ifdef CLIENT_DLL
#define CBaseProjectile C_BaseProjectile
#endif // CLIENT_DLL
//=============================================================================
//
// Base Projectile.
//
//=============================================================================
class CBaseProjectile : public CBaseAnimating
{
public:
DECLARE_CLASS( CBaseProjectile, CBaseAnimating );
DECLARE_NETWORKCLASS();
CBaseProjectile();
#ifdef GAME_DLL
virtual int GetDestroyableHitCount( void ) const { return m_iDestroyableHitCount; }
void IncrementDestroyableHitCount( void ) { ++m_iDestroyableHitCount; }
#endif // GAME_DLL
virtual bool IsDestroyable( void ) { return false; }
virtual void Destroy( bool bBlinkOut = true, bool bBreakRocket = false ) {}
protected:
#ifdef GAME_DLL
int m_iDestroyableHitCount;
#endif // GAME_DLL
};
#endif // BASEPROJECTILE_H

View File

@ -12,7 +12,7 @@
#include "iprediction.h" #include "iprediction.h"
#include "prediction.h" #include "prediction.h"
#include "client_virtualreality.h" #include "client_virtualreality.h"
#include "headtrack/isourcevirtualreality.h" #include "sourcevr/isourcevirtualreality.h"
#else #else
#include "vguiscreen.h" #include "vguiscreen.h"
#endif #endif

View File

@ -44,6 +44,7 @@ static colorentry_t bloodcolors[] =
{ BLOOD_COLOR_RED, 72, 0, 0 }, { BLOOD_COLOR_RED, 72, 0, 0 },
{ BLOOD_COLOR_YELLOW, 195, 195, 0 }, { BLOOD_COLOR_YELLOW, 195, 195, 0 },
{ BLOOD_COLOR_MECH, 20, 20, 20 }, { BLOOD_COLOR_MECH, 20, 20, 20 },
{ BLOOD_COLOR_GREEN, 195, 195, 0 },
}; };
#endif // EFFECT_COLOR_TABLES_H #endif // EFFECT_COLOR_TABLES_H

View File

@ -55,6 +55,12 @@ ConVar player_limit_jump_speed( "player_limit_jump_speed", "1", FCVAR_REPLICATED
// duck controls. Its value is meaningless anytime we don't have the options window open. // duck controls. Its value is meaningless anytime we don't have the options window open.
ConVar option_duck_method("option_duck_method", "1", FCVAR_REPLICATED|FCVAR_ARCHIVE );// 0 = HOLD to duck, 1 = Duck is a toggle ConVar option_duck_method("option_duck_method", "1", FCVAR_REPLICATED|FCVAR_ARCHIVE );// 0 = HOLD to duck, 1 = Duck is a toggle
#ifdef STAGING_ONLY
#ifdef CLIENT_DLL
ConVar debug_latch_reset_onduck( "debug_latch_reset_onduck", "1", FCVAR_CHEAT );
#endif
#endif
// [MD] I'll remove this eventually. For now, I want the ability to A/B the optimizations. // [MD] I'll remove this eventually. For now, I want the ability to A/B the optimizations.
bool g_bMovementOptimizations = true; bool g_bMovementOptimizations = true;
@ -4108,8 +4114,15 @@ void CGameMovement::FinishUnDuck( void )
mv->SetAbsOrigin( newOrigin ); mv->SetAbsOrigin( newOrigin );
#ifdef CLIENT_DLL #ifdef CLIENT_DLL
#ifdef STAGING_ONLY
if ( debug_latch_reset_onduck.GetBool() )
{
player->ResetLatched();
}
#else
player->ResetLatched(); player->ResetLatched();
#endif #endif
#endif // CLIENT_DLL
// Recategorize position since ducking can change origin // Recategorize position since ducking can change origin
CategorizePosition(); CategorizePosition();
@ -4207,8 +4220,15 @@ void CGameMovement::FinishDuck( void )
mv->SetAbsOrigin( out ); mv->SetAbsOrigin( out );
#ifdef CLIENT_DLL #ifdef CLIENT_DLL
#ifdef STAGING_ONLY
if ( debug_latch_reset_onduck.GetBool() )
{
player->ResetLatched();
}
#else
player->ResetLatched(); player->ResetLatched();
#endif #endif
#endif // CLIENT_DLL
} }
// See if we are stuck? // See if we are stuck?

View File

@ -271,7 +271,7 @@ public:
// Client damage rules // Client damage rules
virtual float FlPlayerFallDamage( CBasePlayer *pPlayer ) = 0;// this client just hit the ground after a fall. How much damage? virtual float FlPlayerFallDamage( CBasePlayer *pPlayer ) = 0;// this client just hit the ground after a fall. How much damage?
virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker ) {return TRUE;};// can this player take damage from this attacker? virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker, const CTakeDamageInfo &info ) {return TRUE;};// can this player take damage from this attacker?
virtual bool ShouldAutoAim( CBasePlayer *pPlayer, edict_t *target ) { return TRUE; } virtual bool ShouldAutoAim( CBasePlayer *pPlayer, edict_t *target ) { return TRUE; }
virtual float GetAutoAimScale( CBasePlayer *pPlayer ) { return 1.0f; } virtual float GetAutoAimScale( CBasePlayer *pPlayer ) { return 1.0f; }
virtual int GetAutoAimMode() { return AUTOAIM_ON; } virtual int GetAutoAimMode() { return AUTOAIM_ON; }

View File

@ -36,7 +36,7 @@ float GetCurrentGravity( void )
ConVar sv_gravity ( "sv_gravity", DEFAULT_GRAVITY_STRING, FCVAR_NOTIFY | FCVAR_REPLICATED, "World gravity." ); ConVar sv_gravity ( "sv_gravity", DEFAULT_GRAVITY_STRING, FCVAR_NOTIFY | FCVAR_REPLICATED, "World gravity." );
#if defined( DOD_DLL ) || defined( CSTRIKE_DLL ) #if defined( DOD_DLL ) || defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_stopspeed ( "sv_stopspeed","100", FCVAR_NOTIFY | FCVAR_REPLICATED, "Minimum stopping speed when on ground." ); ConVar sv_stopspeed ( "sv_stopspeed","100", FCVAR_NOTIFY | FCVAR_REPLICATED, "Minimum stopping speed when on ground." );
#else #else
ConVar sv_stopspeed ( "sv_stopspeed","100", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "Minimum stopping speed when on ground." ); ConVar sv_stopspeed ( "sv_stopspeed","100", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "Minimum stopping speed when on ground." );
@ -48,7 +48,7 @@ ConVar sv_specaccelerate( "sv_specaccelerate", "5", FCVAR_NOTIFY | FCVAR_ARCHIVE
ConVar sv_specspeed ( "sv_specspeed", "3", FCVAR_ARCHIVE | FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_specspeed ( "sv_specspeed", "3", FCVAR_ARCHIVE | FCVAR_NOTIFY | FCVAR_REPLICATED);
ConVar sv_specnoclip ( "sv_specnoclip", "1", FCVAR_ARCHIVE | FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_specnoclip ( "sv_specnoclip", "1", FCVAR_ARCHIVE | FCVAR_NOTIFY | FCVAR_REPLICATED);
#if defined( CSTRIKE_DLL ) #if defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED);
#else #else
ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY); ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY);
@ -58,7 +58,7 @@ ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED | FC
ConVar sv_accelerate ( "sv_accelerate", "7", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_accelerate ( "sv_accelerate", "7", FCVAR_NOTIFY | FCVAR_REPLICATED);
#else #else
#if defined( CSTRIKE_DLL ) #if defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_accelerate ( "sv_accelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_accelerate ( "sv_accelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED);
#else #else
ConVar sv_accelerate ( "sv_accelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY); ConVar sv_accelerate ( "sv_accelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY);
@ -66,7 +66,7 @@ ConVar sv_maxspeed ( "sv_maxspeed", "320", FCVAR_NOTIFY | FCVAR_REPLICATED | FC
#endif//_XBOX #endif//_XBOX
#if defined( CSTRIKE_DLL ) #if defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_airaccelerate( "sv_airaccelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_airaccelerate( "sv_airaccelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED);
ConVar sv_wateraccelerate( "sv_wateraccelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_wateraccelerate( "sv_wateraccelerate", "10", FCVAR_NOTIFY | FCVAR_REPLICATED);
ConVar sv_waterfriction( "sv_waterfriction", "1", FCVAR_NOTIFY | FCVAR_REPLICATED); ConVar sv_waterfriction( "sv_waterfriction", "1", FCVAR_NOTIFY | FCVAR_REPLICATED);
@ -82,13 +82,13 @@ ConVar sv_rollspeed ( "sv_rollspeed", "200", FCVAR_NOTIFY | FCVAR_REPLICATED | F
ConVar sv_rollangle ( "sv_rollangle", "0", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "Max view roll angle"); ConVar sv_rollangle ( "sv_rollangle", "0", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "Max view roll angle");
#endif // CSTRIKE_DLL #endif // CSTRIKE_DLL
#if defined( DOD_DLL ) || defined( CSTRIKE_DLL ) #if defined( DOD_DLL ) || defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_friction ( "sv_friction","4", FCVAR_NOTIFY | FCVAR_REPLICATED, "World friction." ); ConVar sv_friction ( "sv_friction","4", FCVAR_NOTIFY | FCVAR_REPLICATED, "World friction." );
#else #else
ConVar sv_friction ( "sv_friction","4", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "World friction." ); ConVar sv_friction ( "sv_friction","4", FCVAR_NOTIFY | FCVAR_REPLICATED | FCVAR_DEVELOPMENTONLY, "World friction." );
#endif // DOD_DLL || CSTRIKE_DLL #endif // DOD_DLL || CSTRIKE_DLL
#if defined( CSTRIKE_DLL ) #if defined( CSTRIKE_DLL ) || defined( HL1MP_DLL )
ConVar sv_bounce ( "sv_bounce","0", FCVAR_NOTIFY | FCVAR_REPLICATED, "Bounce multiplier for when physically simulated objects collide with other objects." ); ConVar sv_bounce ( "sv_bounce","0", FCVAR_NOTIFY | FCVAR_REPLICATED, "Bounce multiplier for when physically simulated objects collide with other objects." );
ConVar sv_maxvelocity ( "sv_maxvelocity","3500", FCVAR_REPLICATED, "Maximum speed any ballistically moving object is allowed to attain per axis." ); ConVar sv_maxvelocity ( "sv_maxvelocity","3500", FCVAR_REPLICATED, "Maximum speed any ballistically moving object is allowed to attain per axis." );
ConVar sv_stepsize ( "sv_stepsize","18", FCVAR_NOTIFY | FCVAR_REPLICATED ); ConVar sv_stepsize ( "sv_stepsize","18", FCVAR_NOTIFY | FCVAR_REPLICATED );

View File

@ -103,7 +103,7 @@ const char *g_pszMPConcepts[] =
"TLK_TAUNT_REPLAY", // MP_CONCEPT_TAUNT_REPLAY "TLK_TAUNT_REPLAY", // MP_CONCEPT_TAUNT_REPLAY
"TLK_TAUNT_LAUGH", // MP_CONCEPT_TAUNT_LAUGH "TLK_TAUNT_LAUGH", // MP_CONCEPT_TAUNT_LAUGH
"TLK_TAUNT_HEROIC_POSE", // MP_CONCEPT_TAUNT_HEROIC_POSE "TLK_TAUNT_HEROIC_POSE", // MP_CONCEPT_TAUNT_HEROIC_POSE
"TLK_HIGHFIVE_READY", // MP_CONCEPT_HIGHFIVE_READY "TLK_PARTNER_TAUNT_READY", // MP_CONCEPT_PARTNER_TAUNT_READY
"TLK_PLAYER_HOLDTAUNT", // MP_CONCEPT_HOLDTAUNT "TLK_PLAYER_HOLDTAUNT", // MP_CONCEPT_HOLDTAUNT
"TLK_TAUNT_PYRO_ARMAGEDDON", // MP_CONCEPT_TAUNT_PYRO_ARMAGEDDON "TLK_TAUNT_PYRO_ARMAGEDDON", // MP_CONCEPT_TAUNT_PYRO_ARMAGEDDON
"TLK_ROCKET_DESTOYED", // MP_CONCEPT_ROCKET_DESTOYED "TLK_ROCKET_DESTOYED", // MP_CONCEPT_ROCKET_DESTOYED
@ -144,16 +144,55 @@ const char *g_pszMPConcepts[] =
"TLK_MAGIC_DANCE", // MP_CONCEPT_MAGIC_DANCE "TLK_MAGIC_DANCE", // MP_CONCEPT_MAGIC_DANCE
"HalloweenLongFall", // MP_CONCEPT_HALLOWEEN_LONGFALL "HalloweenLongFall", // MP_CONCEPT_HALLOWEEN_LONGFALL
"TLK_TAUNT_GUITAR_RIFF", // MP_CONCEPT_TAUNT_GUITAR_RIFF "TLK_TAUNT_GUITAR_RIFF", // MP_CONCEPT_TAUNT_GUITAR_RIFF
// TF Halloween 2013 shenanigans.
"TLK_PLAYER_CAST_FIREBALL", // MP_CONCEPT_PLAYER_CAST_FIREBALL
"TLK_PLAYER_CAST_MERASMUS_ZAP", // MP_CONCEPT_PLAYER_CAST_MERASMUS_ZAP
"TLK_PLAYER_CAST_SELF_HEAL", // MP_CONCEPT_PLAYER_CAST_SELF_HEAL
"TLK_PLAYER_CAST_MIRV", // MP_CONCEPT_PLAYER_CAST_MIRV
"TLK_PLAYER_CAST_BLAST_JUMP", // MP_CONCEPT_PLAYER_CAST_BLAST_JUMP
"TLK_PLAYER_CAST_STEALTH", // MP_CONCEPT_PLAYER_CAST_STEALTH
"TLK_PLAYER_CAST_TELEPORT", // MP_CONCEPT_PLAYER_CAST_TELEPORT
"TLK_PLAYER_CAST_LIGHTNING_BALL", // MP_CONCEPT_PLAYER_CAST_LIGHTNING_BALL
"TLK_PLAYER_CAST_MOVEMENT_BUFF", // MP_CONCEPT_PLAYER_CAST_MOVEMENT_BUFF
"TLK_PLAYER_CAST_MONOCULOUS", // MP_CONCEPT_PLAYER_CAST_MONOCULOUS
"TLK_PLAYER_CAST_METEOR_SWARM", // MP_CONCEPT_PLAYER_CAST_METEOR_SWARM
"TLK_PLAYER_CAST_SKELETON_HORDE", // MP_CONCEPT_PLAYER_CAST_SKELETON_HORDE
"TLK_PLAYER_SPELL_FIREBALL", // MP_CONCEPT_PLAYER_SPELL_FIREBALL
"TLK_PLAYER_SPELL_MERASMUS_ZAP", // MP_CONCEPT_PLAYER_SPELL_MERASMUS_ZAP
"TLK_PLAYER_SPELL_SELF_HEAL", // MP_CONCEPT_PLAYER_SPELL_SELF_HEAL
"TLK_PLAYER_SPELL_MIRV", // MP_CONCEPT_PLAYER_SPELL_MIRV
"TLK_PLAYER_SPELL_BLAST_JUMP", // MP_CONCEPT_PLAYER_SPELL_BLAST_JUMP
"TLK_PLAYER_SPELL_STEALTH", // MP_CONCEPT_PLAYER_SPELL_STEALTH
"TLK_PLAYER_SPELL_TELEPORT", // MP_CONCEPT_PLAYER_SPELL_TELEPORT
"TLK_PLAYER_SPELL_LIGHTNING_BALL", // MP_CONCEPT_PLAYER_SPELL_LIGHTNING_BALL
"TLK_PLAYER_SPELL_MOVEMENT_BUFF", // MP_CONCEPT_PLAYER_SPELL_MOVEMENT_BUFF
"TLK_PLAYER_SPELL_MONOCULOUS", // MP_CONCEPT_PLAYER_SPELL_MONOCULOUS
"TLK_PLAYER_SPELL_METEOR_SWARM", // MP_CONCEPT_PLAYER_SPELL_METEOR_SWARM
"TLK_PLAYER_SPELL_SKELETON_HORDE", // MP_CONCEPT_PLAYER_SPELL_SKELETON_HORDE
// Events.
"TLK_PLAYER_SPELL_PICKUP_COMMON", // MP_CONCEPT_PLAYER_SPELL_PICKUP_COMMON
"TLK_PLAYER_SPELL_PICKUP_RARE", // MP_CONCEPT_PLAYER_SPELL_PICKUP_RARE
"TLK_PLAYER_HELLTOWER_MIDNIGHT", // MP_CONCEPT_PLAYER_HELLTOWER_MIDNIGHT
"TLK_PLAYER_SKELETON_KING_APPEAR", // MP_CONCEPT_PLAYER_SKELETON_KING_APPEAR
"TLK_MANNHATTAN_GATE_ATK", // MP_CONCEPT_MANNHATTAN_GATE_ATK
"TLK_MANNHATTAN_GATE_TAKE", // MP_CONCEPT_MANNHATTAN_GATE_TAKE
"TLK_RESURRECTED", // MP_CONCEPT_RESURRECTED
"TLK_MVM_LOOT_COMMON", // MP_CONCEPT_MVM_LOOT_COMMON
"TLK_MVM_LOOT_RARE", // MP_CONCEPT_MVM_LOOT_RARE
"TLK_MVM_LOOT_ULTRARARE", // MP_CONCEPT_MVM_LOOT_ULTRARARE
"TLK_MEDIC_HEAL_SHIELD", // MP_CONCEPT_MEDIC_HEAL_SHIELD
}; };
COMPILE_TIME_ASSERT( ARRAYSIZE( g_pszMPConcepts ) == MP_TF_CONCEPT_COUNT );
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: // Purpose:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
int GetMPConceptIndexFromString( const char *pszConcept ) int GetMPConceptIndexFromString( const char *pszConcept )
{ {
// Make sure our concept string and enum arrays are the same length
Assert( ARRAYSIZE( g_pszMPConcepts ) == MP_TF_CONCEPT_COUNT );
for ( int iConcept = 0; iConcept < ARRAYSIZE( g_pszMPConcepts ); ++iConcept ) for ( int iConcept = 0; iConcept < ARRAYSIZE( g_pszMPConcepts ); ++iConcept )
{ {
if ( !Q_stricmp( pszConcept, g_pszMPConcepts[iConcept] ) ) if ( !Q_stricmp( pszConcept, g_pszMPConcepts[iConcept] ) )

View File

@ -112,7 +112,7 @@ enum
MP_CONCEPT_TAUNT_REPLAY, // "TLK_TAUNT_REPLAY" MP_CONCEPT_TAUNT_REPLAY, // "TLK_TAUNT_REPLAY"
MP_CONCEPT_TAUNT_LAUGH, // "TLK_TAUNT_LAUGH" MP_CONCEPT_TAUNT_LAUGH, // "TLK_TAUNT_LAUGH"
MP_CONCEPT_TAUNT_HEROIC_POSE, // "TLK_TAUNT_HEROIC_POSE" MP_CONCEPT_TAUNT_HEROIC_POSE, // "TLK_TAUNT_HEROIC_POSE"
MP_CONCEPT_HIGHFIVE_READY, // "TLK_HIGHFIVE_READY" MP_CONCEPT_PARTNER_TAUNT_READY, // "TLK_PARTNER_TAUNT_READY"
MP_CONCEPT_HOLDTAUNT, // "TLK_PLAYER_HOLDTAUNT" MP_CONCEPT_HOLDTAUNT, // "TLK_PLAYER_HOLDTAUNT"
MP_CONCEPT_TAUNT_PYRO_ARMAGEDDON, // "TLK_TAUNT_PYRO_ARMAGEDDON" MP_CONCEPT_TAUNT_PYRO_ARMAGEDDON, // "TLK_TAUNT_PYRO_ARMAGEDDON"
MP_CONCEPT_ROCKET_DESTOYED, // "TLK_ROCKET_DESTOYED" MP_CONCEPT_ROCKET_DESTOYED, // "TLK_ROCKET_DESTOYED"
@ -153,6 +153,48 @@ enum
MP_CONCEPT_MAGIC_DANCE, // "TLK_MAGIC_DANCE" MP_CONCEPT_MAGIC_DANCE, // "TLK_MAGIC_DANCE"
MP_CONCEPT_HALLOWEEN_LONGFALL, MP_CONCEPT_HALLOWEEN_LONGFALL,
MP_CONCEPT_TAUNT_GUITAR_RIFF, // "TLK_TAUNT_GUITAR_RIFF" MP_CONCEPT_TAUNT_GUITAR_RIFF, // "TLK_TAUNT_GUITAR_RIFF"
// TF Halloween 2013 shenanigans.
MP_CONCEPT_PLAYER_CAST_FIREBALL, // "TLK_PLAYER_CAST_FIREBALL"
MP_CONCEPT_PLAYER_CAST_MERASMUS_ZAP, // "TLK_PLAYER_CAST_MERASMUS_ZAP"
MP_CONCEPT_PLAYER_CAST_SELF_HEAL, // "TLK_PLAYER_CAST_SELF_HEAL"
MP_CONCEPT_PLAYER_CAST_MIRV, // "TLK_PLAYER_CAST_MIRV"
MP_CONCEPT_PLAYER_CAST_BLAST_JUMP, // "TLK_PLAYER_CAST_BLAST_JUMP"
MP_CONCEPT_PLAYER_CAST_STEALTH, // "TLK_PLAYER_CAST_STEALTH"
MP_CONCEPT_PLAYER_CAST_TELEPORT, // "TLK_PLAYER_CAST_TELEPORT"
MP_CONCEPT_PLAYER_CAST_LIGHTNING_BALL, // "TLK_PLAYER_CAST_LIGHTNING_BALL"
MP_CONCEPT_PLAYER_CAST_MOVEMENT_BUFF, // "TLK_PLAYER_CAST_MOVEMENT_BUFF"
MP_CONCEPT_PLAYER_CAST_MONOCULOUS, // "TLK_PLAYER_CAST_MONOCULOUS"
MP_CONCEPT_PLAYER_CAST_METEOR_SWARM, // "TLK_PLAYER_CAST_METEOR_SWARM"
MP_CONCEPT_PLAYER_CAST_SKELETON_HORDE, // "TLK_PLAYER_CAST_SKELETON_HORDE"
MP_CONCEPT_PLAYER_SPELL_FIREBALL, // "TLK_PLAYER_SPELL_FIREBALL"
MP_CONCEPT_PLAYER_SPELL_MERASMUS_ZAP, // "TLK_PLAYER_SPELL_MERASMUS_ZAP"
MP_CONCEPT_PLAYER_SPELL_SELF_HEAL, // "TLK_PLAYER_SPELL_SELF_HEAL"
MP_CONCEPT_PLAYER_SPELL_MIRV, // "TLK_PLAYER_SPELL_MIRV"
MP_CONCEPT_PLAYER_SPELL_BLAST_JUMP, // "TLK_PLAYER_SPELL_BLAST_JUMP"
MP_CONCEPT_PLAYER_SPELL_STEALTH, // "TLK_PLAYER_SPELL_STEALTH"
MP_CONCEPT_PLAYER_SPELL_TELEPORT, // "TLK_PLAYER_SPELL_TELEPORT"
MP_CONCEPT_PLAYER_SPELL_LIGHTNING_BALL, // "TLK_PLAYER_SPELL_LIGHTNING_BALL"
MP_CONCEPT_PLAYER_SPELL_MOVEMENT_BUFF, // "TLK_PLAYER_SPELL_MOVEMENT_BUFF"
MP_CONCEPT_PLAYER_SPELL_MONOCULOUS, // "TLK_PLAYER_SPELL_MONOCULOUS"
MP_CONCEPT_PLAYER_SPELL_METEOR_SWARM, // "TLK_PLAYER_SPELL_METEOR_SWARM"
MP_CONCEPT_PLAYER_SPELL_SKELETON_HORDE, // "TLK_PLAYER_SPELL_SKELETON_HORDE"
// Events.
MP_CONCEPT_PLAYER_SPELL_PICKUP_COMMON, // "TLK_PLAYER_SPELL_PICKUP_COMMON"
MP_CONCEPT_PLAYER_SPELL_PICKUP_RARE, // "TLK_PLAYER_SPELL_PICKUP_RARE"
MP_CONCEPT_PLAYER_HELLTOWER_MIDNIGHT, // "TLK_PLAYER_HELLTOWER_MIDNIGHT"
MP_CONCEPT_PLAYER_SKELETON_KING_APPEAR, // "TLK_PLAYER_SKELETON_KING_APPEAR"
MP_CONCEPT_MANNHATTAN_GATE_ATK, // "TLK_MANNHATTAN_GATE_ATK"
MP_CONCEPT_MANNHATTAN_GATE_TAKE, // "TLK_MANNHATTAN_GATE_TAKE"
MP_CONCEPT_RESURRECTED, // "TLK_RESURRECTED"
MP_CONCEPT_MVM_LOOT_COMMON, // "TLK_MVM_LOOT_COMMON"
MP_CONCEPT_MVM_LOOT_RARE, // "TLK_MVM_LOOT_RARE"
MP_CONCEPT_MVM_LOOT_ULTRARARE, // "TLK_MVM_LOOT_ULTRARARE"
MP_CONCEPT_MEDIC_HEAL_SHIELD, // "TLK_MEDIC_HEAL_SHIELD"
MP_TF_CONCEPT_COUNT MP_TF_CONCEPT_COUNT
// Other MP_CONCEPT_* start he using MP_TF_CONCEPT_COUNT + 1 as start. // Other MP_CONCEPT_* start he using MP_TF_CONCEPT_COUNT + 1 as start.

View File

@ -641,7 +641,7 @@ ConVarRef suitcharger( "sk_suitcharger" );
//========================================================= //=========================================================
//========================================================= //=========================================================
bool CMultiplayRules::FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker ) bool CMultiplayRules::FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker, const CTakeDamageInfo &info )
{ {
return true; return true;
} }
@ -834,7 +834,11 @@ ConVarRef suitcharger( "sk_suitcharger" );
// If the inflictor is the killer, then it must be their current weapon doing the damage // If the inflictor is the killer, then it must be their current weapon doing the damage
if ( pScorer->GetActiveWeapon() ) if ( pScorer->GetActiveWeapon() )
{ {
#ifdef HL1MP_DLL
killer_weapon_name = pScorer->GetActiveWeapon()->GetClassname();
#else
killer_weapon_name = pScorer->GetActiveWeapon()->GetDeathNoticeName(); killer_weapon_name = pScorer->GetActiveWeapon()->GetDeathNoticeName();
#endif
} }
} }
else else
@ -870,7 +874,9 @@ ConVarRef suitcharger( "sk_suitcharger" );
event->SetInt("attacker", killer_ID ); event->SetInt("attacker", killer_ID );
event->SetInt("customkill", info.GetDamageCustom() ); event->SetInt("customkill", info.GetDamageCustom() );
event->SetInt("priority", 7 ); // HLTV event priority, not transmitted event->SetInt("priority", 7 ); // HLTV event priority, not transmitted
#ifdef HL1MP_DLL
event->SetString("weapon", killer_weapon_name );
#endif
gameeventmanager->FireEvent( event ); gameeventmanager->FireEvent( event );
} }
@ -1748,6 +1754,37 @@ ConVarRef suitcharger( "sk_suitcharger" );
} }
} }
void CMultiplayRules::RandomPlayersSpeakConceptIfAllowed( int iConcept, int iNumRandomPlayer /*= 1*/, int iTeam /*= TEAM_UNASSIGNED*/, const char *modifiers /*= NULL*/ )
{
CUtlVector< CBaseMultiplayerPlayer* > speakCandidates;
CBaseMultiplayerPlayer *pPlayer;
for ( int i = 1; i <= gpGlobals->maxClients; i++ )
{
pPlayer = ToBaseMultiplayerPlayer( UTIL_PlayerByIndex( i ) );
if ( !pPlayer )
continue;
if ( iTeam != TEAM_UNASSIGNED )
{
if ( pPlayer->GetTeamNumber() != iTeam )
continue;
}
speakCandidates.AddToTail( pPlayer );
}
int iSpeaker = iNumRandomPlayer;
while ( iSpeaker > 0 && speakCandidates.Count() > 0 )
{
int iRandomSpeaker = RandomInt( 0, speakCandidates.Count() - 1 );
speakCandidates[ iRandomSpeaker ]->SpeakConceptIfAllowed( iConcept, modifiers );
speakCandidates.FastRemove( iRandomSpeaker );
iSpeaker--;
}
}
void CMultiplayRules::ClientSettingsChanged( CBasePlayer *pPlayer ) void CMultiplayRules::ClientSettingsChanged( CBasePlayer *pPlayer )
{ {
// NVNT see if this user is still or has began using a haptic device // NVNT see if this user is still or has began using a haptic device

View File

@ -136,7 +136,7 @@ public:
// Client damage rules // Client damage rules
virtual float FlPlayerFallDamage( CBasePlayer *pPlayer ); virtual float FlPlayerFallDamage( CBasePlayer *pPlayer );
virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker ); virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker, const CTakeDamageInfo &info );
virtual bool AllowDamage( CBaseEntity *pVictim, const CTakeDamageInfo &info ); virtual bool AllowDamage( CBaseEntity *pVictim, const CTakeDamageInfo &info );
// Client spawn/respawn control // Client spawn/respawn control
@ -215,6 +215,7 @@ public:
void IncrementMapCycleIndex(); void IncrementMapCycleIndex();
void HaveAllPlayersSpeakConceptIfAllowed( int iConcept, int iTeam = TEAM_UNASSIGNED, const char *modifiers = NULL ); void HaveAllPlayersSpeakConceptIfAllowed( int iConcept, int iTeam = TEAM_UNASSIGNED, const char *modifiers = NULL );
void RandomPlayersSpeakConceptIfAllowed( int iConcept, int iNumRandomPlayer = 1, int iTeam = TEAM_UNASSIGNED, const char *modifiers = NULL );
virtual void GetTaggedConVarList( KeyValues *pCvarTagList ); virtual void GetTaggedConVarList( KeyValues *pCvarTagList );

View File

@ -557,6 +557,14 @@ void CParticleProperty::UpdateControlPoint( ParticleEffectList_t *pEffect, int i
if ( bUseHeadOrigin > 0 ) if ( bUseHeadOrigin > 0 )
{ {
int iBone = Studio_BoneIndexByName( pAnimating->GetModelPtr(), "bip_head" ); int iBone = Studio_BoneIndexByName( pAnimating->GetModelPtr(), "bip_head" );
if ( iBone < 0 )
{
iBone = Studio_BoneIndexByName( pAnimating->GetModelPtr(), "prp_helmet" );
if ( iBone < 0 )
{
iBone = Studio_BoneIndexByName( pAnimating->GetModelPtr(), "prp_hat" );
}
}
if ( iBone >= 0 ) if ( iBone >= 0 )
{ {
bUsingHeadOrigin = true; bUsingHeadOrigin = true;
@ -586,19 +594,24 @@ void CParticleProperty::UpdateControlPoint( ParticleEffectList_t *pEffect, int i
matrix3x4_t attachmentToWorld; matrix3x4_t attachmentToWorld;
if ( !pAnimating->GetAttachment( pPoint->iAttachmentPoint, attachmentToWorld ) ) if ( !pAnimating->GetAttachment( pPoint->iAttachmentPoint, attachmentToWorld ) )
{
// try C_BaseAnimating if attach point is not on the weapon
if ( !pAnimating->C_BaseAnimating::GetAttachment( pPoint->iAttachmentPoint, attachmentToWorld ) )
{ {
Warning( "Cannot update control point %d for effect '%s'.\n", pPoint->iAttachmentPoint, pEffect->pParticleEffect->GetEffectName() ); Warning( "Cannot update control point %d for effect '%s'.\n", pPoint->iAttachmentPoint, pEffect->pParticleEffect->GetEffectName() );
attachmentToWorld = pAnimating->RenderableToWorldTransform(); attachmentToWorld = pAnimating->RenderableToWorldTransform();
} }
}
MatrixVectors( attachmentToWorld, &vecForward, &vecRight, &vecUp ); VMatrix vMat(attachmentToWorld);
MatrixPosition( attachmentToWorld, vecOrigin ); MatrixTranslate( vMat, pPoint->vecOriginOffset );
MatrixVectors( vMat.As3x4(), &vecForward, &vecRight, &vecUp );
MatrixPosition( vMat.As3x4(), vecOrigin );
if ( pEffect->pParticleEffect->m_pDef->IsViewModelEffect() ) if ( pEffect->pParticleEffect->m_pDef->IsViewModelEffect() )
{ {
FormatViewModelAttachment( vecOrigin, true ); FormatViewModelAttachment( vecOrigin, true );
} }
} }
} }
break; break;

View File

@ -1323,7 +1323,7 @@ CBaseEntity *CreateGibsFromList( CUtlVector<breakmodel_t> &list, int modelindex,
if ( !pCollide ) if ( !pCollide )
return NULL; return NULL;
int nSkin = 0; int nSkin = params.nDefaultSkin;
CBaseEntity *pOwnerEntity = pEntity; CBaseEntity *pOwnerEntity = pEntity;
CBaseAnimating *pOwnerAnim = NULL; CBaseAnimating *pOwnerAnim = NULL;
if ( pPhysics ) if ( pPhysics )

View File

@ -227,6 +227,7 @@ struct breakablepropparams_t
impactEnergyScale = 0; impactEnergyScale = 0;
defBurstScale = 0; defBurstScale = 0;
defCollisionGroup = COLLISION_GROUP_NONE; defCollisionGroup = COLLISION_GROUP_NONE;
nDefaultSkin = 0;
} }
const Vector &origin; const Vector &origin;
@ -236,6 +237,7 @@ struct breakablepropparams_t
float impactEnergyScale; float impactEnergyScale;
float defBurstScale; float defBurstScale;
int defCollisionGroup; int defCollisionGroup;
int nDefaultSkin;
}; };
const char *GetMassEquivalent(float flMass); const char *GetMassEquivalent(float flMass);

View File

@ -151,8 +151,20 @@ typedef enum
VOTE_FAILED_MAP_NOT_VALID, VOTE_FAILED_MAP_NOT_VALID,
VOTE_FAILED_CANNOT_KICK_FOR_TIME, VOTE_FAILED_CANNOT_KICK_FOR_TIME,
VOTE_FAILED_CANNOT_KICK_DURING_ROUND, VOTE_FAILED_CANNOT_KICK_DURING_ROUND,
// TF-specific?
VOTE_FAILED_MODIFICATION_ALREADY_ACTIVE,
} vote_create_failed_t; } vote_create_failed_t;
enum
{
#ifdef STAGING_ONLY
SERVER_MODIFICATION_ITEM_DURATION_IN_MINUTES = 2
#else
SERVER_MODIFICATION_ITEM_DURATION_IN_MINUTES = 120
#endif
};
#define MAX_VOTE_DETAILS_LENGTH 64 #define MAX_VOTE_DETAILS_LENGTH 64
#define INVALID_ISSUE -1 #define INVALID_ISSUE -1
#define MAX_VOTE_OPTIONS 5 #define MAX_VOTE_OPTIONS 5

View File

@ -58,9 +58,9 @@ void CTakeDamageInfo::Init( CBaseEntity *pInflictor, CBaseEntity *pAttacker, CBa
m_vecReportedPosition = reportedPosition; m_vecReportedPosition = reportedPosition;
m_iAmmoType = -1; m_iAmmoType = -1;
m_iDamagedOtherPlayers = 0; m_iDamagedOtherPlayers = 0;
m_iPlayerPenetrationCount = 0; m_iPlayerPenetrationCount = 0;
m_flDamageBonus = 0.f; m_flDamageBonus = 0.f;
m_bForceFriendlyFire = false;
} }
CTakeDamageInfo::CTakeDamageInfo() CTakeDamageInfo::CTakeDamageInfo()

View File

@ -77,6 +77,8 @@ public:
void SetDamageCustom( int iDamageCustom ); void SetDamageCustom( int iDamageCustom );
int GetDamageStats( void ) const; int GetDamageStats( void ) const;
void SetDamageStats( int iDamageStats ); void SetDamageStats( int iDamageStats );
void SetForceFriendlyFire( bool bValue ) { m_bForceFriendlyFire = bValue; }
bool IsForceFriendlyFire( void ) const { return m_bForceFriendlyFire; }
int GetAmmoType() const; int GetAmmoType() const;
void SetAmmoType( int iAmmoType ); void SetAmmoType( int iAmmoType );
@ -123,6 +125,7 @@ protected:
int m_iDamagedOtherPlayers; int m_iDamagedOtherPlayers;
int m_iPlayerPenetrationCount; int m_iPlayerPenetrationCount;
float m_flDamageBonus; // Anything that increases damage (crit) - store the delta float m_flDamageBonus; // Anything that increases damage (crit) - store the delta
bool m_bForceFriendlyFire; // Ideally this would be a dmg type, but we can't add more
DECLARE_SIMPLE_DATADESC(); DECLARE_SIMPLE_DATADESC();
}; };

View File

@ -352,9 +352,9 @@ bool CTeamplayRules::IsTeamplay( void )
return true; return true;
} }
bool CTeamplayRules::FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker ) bool CTeamplayRules::FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker, const CTakeDamageInfo &info )
{ {
if ( pAttacker && PlayerRelationship( pPlayer, pAttacker ) == GR_TEAMMATE ) if ( pAttacker && PlayerRelationship( pPlayer, pAttacker ) == GR_TEAMMATE && !info.IsForceFriendlyFire() )
{ {
// my teammate hit me. // my teammate hit me.
if ( (friendlyfire.GetInt() == 0) && (pAttacker != pPlayer) ) if ( (friendlyfire.GetInt() == 0) && (pAttacker != pPlayer) )
@ -364,7 +364,7 @@ bool CTeamplayRules::FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pA
} }
} }
return BaseClass::FPlayerCanTakeDamage( pPlayer, pAttacker ); return BaseClass::FPlayerCanTakeDamage( pPlayer, pAttacker, info );
} }
//========================================================= //=========================================================

View File

@ -67,7 +67,7 @@ public:
virtual bool ClientCommand( CBaseEntity *pEdict, const CCommand &args ); virtual bool ClientCommand( CBaseEntity *pEdict, const CCommand &args );
virtual void ClientSettingsChanged( CBasePlayer *pPlayer ); virtual void ClientSettingsChanged( CBasePlayer *pPlayer );
virtual bool IsTeamplay( void ); virtual bool IsTeamplay( void );
virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker ); virtual bool FPlayerCanTakeDamage( CBasePlayer *pPlayer, CBaseEntity *pAttacker, const CTakeDamageInfo &info );
virtual int PlayerRelationship( CBaseEntity *pPlayer, CBaseEntity *pTarget ); virtual int PlayerRelationship( CBaseEntity *pPlayer, CBaseEntity *pTarget );
virtual bool PlayerCanHearChat( CBasePlayer *pListener, CBasePlayer *pSpeaker ); virtual bool PlayerCanHearChat( CBasePlayer *pListener, CBasePlayer *pSpeaker );
virtual const char *GetTeamID( CBaseEntity *pEntity ); virtual const char *GetTeamID( CBaseEntity *pEntity );

View File

@ -636,6 +636,12 @@ const char *CTeamRoundTimer::GetTimeWarningSound( int nWarning )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void CTeamRoundTimer::SendTimeWarning( int nWarning ) void CTeamRoundTimer::SendTimeWarning( int nWarning )
{ {
#if defined( TF_CLIENT_DLL )
// don't play any time warnings for Helltower
if ( TFGameRules() && TFGameRules()->IsHalloweenScenario( CTFGameRules::HALLOWEEN_SCENARIO_HIGHTOWER ) )
return;
#endif
// don't play sounds if the level designer has turned them off or if it's during the WaitingForPlayers time // don't play sounds if the level designer has turned them off or if it's during the WaitingForPlayers time
if ( !m_bTimerPaused && m_bAutoCountdown && !TeamplayRoundBasedRules()->IsInWaitingForPlayers() ) if ( !m_bTimerPaused && m_bAutoCountdown && !TeamplayRoundBasedRules()->IsInWaitingForPlayers() )
{ {

Some files were not shown because too many files have changed in this diff Show More