1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "weapon_csbasegun.h"
#if defined( CLIENT_DLL )
#define CWeaponUMP45 C_WeaponUMP45
#include "c_cs_player.h"
#else
#include "cs_player.h"
#endif
class CWeaponUMP45 : public CWeaponCSBaseGun
{
public:
DECLARE_CLASS( CWeaponUMP45, CWeaponCSBaseGun );
DECLARE_NETWORKCLASS();
DECLARE_PREDICTABLE();
CWeaponUMP45();
virtual void Spawn();
virtual void PrimaryAttack();
virtual bool Deploy();
virtual bool Reload();
virtual float GetInaccuracy() const;
virtual CSWeaponID GetWeaponID( void ) const { return WEAPON_UMP45; }
private:
CWeaponUMP45( const CWeaponUMP45 & );
};
IMPLEMENT_NETWORKCLASS_ALIASED( WeaponUMP45, DT_WeaponUMP45 )
BEGIN_NETWORK_TABLE( CWeaponUMP45, DT_WeaponUMP45 )
END_NETWORK_TABLE()
BEGIN_PREDICTION_DATA( CWeaponUMP45 )
END_PREDICTION_DATA()
LINK_ENTITY_TO_CLASS( weapon_ump45, CWeaponUMP45 );
PRECACHE_WEAPON_REGISTER( weapon_ump45 );
CWeaponUMP45::CWeaponUMP45()
{
}
void CWeaponUMP45::Spawn()
{
BaseClass::Spawn();
m_flAccuracy = 0.0;
}
bool CWeaponUMP45::Deploy()
{
bool ret = BaseClass::Deploy();
m_flAccuracy = 0.0;
return ret;
}
bool CWeaponUMP45::Reload()
{
bool ret = BaseClass::Reload();
m_flAccuracy = 0.0;
return ret;
}
float CWeaponUMP45::GetInaccuracy() const
{
if ( weapon_accuracy_model.GetInt() == 1 )
{
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer )
return 0.0f;
if ( !FBitSet( pPlayer->GetFlags(), FL_ONGROUND ) )
return 0.24f * m_flAccuracy;
else
return 0.04f * m_flAccuracy;
}
else
return BaseClass::GetInaccuracy();
}
void CWeaponUMP45::PrimaryAttack()
{
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer )
return;
if ( !CSBaseGunFire( GetCSWpnData().m_flCycleTime, Primary_Mode ) )
return;
// CSBaseGunFire can kill us, forcing us to drop our weapon, if we shoot something that explodes
pPlayer = GetPlayerOwner();
if ( !pPlayer )
return;
// Kick the gun based on the state of the player.
if ( !FBitSet( pPlayer->GetFlags(), FL_ONGROUND ) )
pPlayer->KickBack (0.125, 0.65, 0.55, 0.0475, 5.5, 4, 10);
else if (pPlayer->GetAbsVelocity().Length2D() > 5)
pPlayer->KickBack (0.55, 0.3, 0.225, 0.03, 3.5, 2.5, 10);
else if ( FBitSet( pPlayer->GetFlags(), FL_DUCKING ) )
pPlayer->KickBack (0.25, 0.175, 0.125, 0.02, 2.25, 1.25, 10);
else
pPlayer->KickBack (0.275, 0.2, 0.15, 0.0225, 2.5, 1.5, 10);
}
|