You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//============================================================================= |
|
|
|
#ifndef DOD_VIEWMODEL_H |
|
#define DOD_VIEWMODEL_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
#include "predictable_entity.h" |
|
#include "utlvector.h" |
|
#include "baseplayer_shared.h" |
|
#include "shared_classnames.h" |
|
|
|
#if defined( CLIENT_DLL ) |
|
#define CDODViewModel C_DODViewModel |
|
#endif |
|
|
|
class CDODViewModel : public CBaseViewModel |
|
{ |
|
DECLARE_CLASS( CDODViewModel, CBaseViewModel ); |
|
public: |
|
|
|
DECLARE_NETWORKCLASS(); |
|
|
|
CDODViewModel( void ); |
|
~CDODViewModel( void ); |
|
|
|
virtual void CalcViewModelLag( Vector& origin, QAngle& angles, QAngle& original_angles ); |
|
virtual void CalcViewModelView( CBasePlayer *owner, const Vector& eyePosition, const QAngle& eyeAngles ); |
|
|
|
#if defined( CLIENT_DLL ) |
|
virtual bool ShouldPredict( void ) |
|
{ |
|
if ( GetOwner() && GetOwner() == C_BasePlayer::GetLocalPlayer() ) |
|
return true; |
|
|
|
return BaseClass::ShouldPredict(); |
|
} |
|
#endif |
|
|
|
private: |
|
|
|
#if defined( CLIENT_DLL ) |
|
|
|
// This is used to lag the angles. |
|
CInterpolatedVar<QAngle> m_LagAnglesHistory; |
|
QAngle m_vLagAngles; |
|
|
|
CDODViewModel( const CDODViewModel & ); // not defined, not accessible |
|
|
|
QAngle m_vLoweredWeaponOffset; |
|
#endif |
|
}; |
|
|
|
#endif // DOD_VIEWMODEL_H
|
|
|