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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "weapon_csbasegun.h"
#if defined( CLIENT_DLL )
#define CWeaponSG550 C_WeaponSG550
#include "c_cs_player.h"
#else
#include "cs_player.h"
#include "KeyValues.h"
#endif
class CWeaponSG550 : public CWeaponCSBaseGun
{
public:
DECLARE_CLASS( CWeaponSG550, CWeaponCSBaseGun );
DECLARE_NETWORKCLASS();
DECLARE_PREDICTABLE();
CWeaponSG550();
virtual void Spawn();
virtual void SecondaryAttack();
virtual void PrimaryAttack();
virtual bool Reload();
virtual bool Deploy();
virtual float GetInaccuracy() const;
virtual float GetMaxSpeed() const;
virtual CSWeaponID GetWeaponID( void ) const { return WEAPON_SG550; }
private:
CWeaponSG550( const CWeaponSG550 & );
float m_flLastFire;
};
IMPLEMENT_NETWORKCLASS_ALIASED( WeaponSG550, DT_WeaponSG550 )
BEGIN_NETWORK_TABLE( CWeaponSG550, DT_WeaponSG550 )
END_NETWORK_TABLE()
#if defined CLIENT_DLL
BEGIN_PREDICTION_DATA( CWeaponSG550 )
DEFINE_FIELD( m_flLastFire, FIELD_FLOAT ),
END_PREDICTION_DATA()
#endif
LINK_ENTITY_TO_CLASS( weapon_sg550, CWeaponSG550 );
PRECACHE_WEAPON_REGISTER( weapon_sg550 );
CWeaponSG550::CWeaponSG550()
{
m_flLastFire = gpGlobals->curtime;
}
void CWeaponSG550::Spawn()
{
BaseClass::Spawn();
m_flAccuracy = 0.98;
}
void CWeaponSG550::SecondaryAttack()
{
const float kZoomTime = 0.10f;
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer )
return;
if (pPlayer->GetFOV() == pPlayer->GetDefaultFOV())
{
pPlayer->SetFOV( pPlayer, 40, kZoomTime );
m_weaponMode = Secondary_Mode;
m_fAccuracyPenalty += GetCSWpnData().m_fInaccuracyAltSwitch;
}
else if (pPlayer->GetFOV() == 40)
{
pPlayer->SetFOV( pPlayer, 15, kZoomTime );
m_weaponMode = Secondary_Mode;
}
else if (pPlayer->GetFOV() == 15)
{
pPlayer->SetFOV( pPlayer, pPlayer->GetDefaultFOV(), kZoomTime );
m_weaponMode = Primary_Mode;
}
#ifndef CLIENT_DLL
// If this isn't guarded, the sound will be emitted twice, once by the server and once by the client.
// Let the server play it since if only the client plays it, it's liable to get played twice cause of
// a prediction error. joy.
//=============================================================================
// HPE_BEGIN:
// [tj] Playing this from the player so that we don't try to play the sound outside the level.
//=============================================================================
if ( GetPlayerOwner() )
{
GetPlayerOwner()->EmitSound( "Default.Zoom" ); // zoom sound.
}
//=============================================================================
// HPE_END
//=============================================================================
// let the bots hear the rifle zoom
IGameEvent * event = gameeventmanager->CreateEvent( "weapon_zoom" );
if( event )
{
event->SetInt( "userid", pPlayer->GetUserID() );
gameeventmanager->FireEvent( event );
}
#endif
m_flNextSecondaryAttack = gpGlobals->curtime + 0.3f;
m_zoomFullyActiveTime = gpGlobals->curtime + 0.3; // The worst zoom time from above.
}
float CWeaponSG550::GetInaccuracy() const
{
if ( weapon_accuracy_model.GetInt() == 1 )
{
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer )
return 0.0f;
float fSpread = 0.0f;
if ( !FBitSet( pPlayer->GetFlags(), FL_ONGROUND ) )
fSpread = 0.45f * (1 - m_flAccuracy);
else if (pPlayer->GetAbsVelocity().Length2D() > 5)
fSpread = 0.15f;
else if ( FBitSet( pPlayer->GetFlags(), FL_DUCKING ) )
fSpread = 0.04f * (1 - m_flAccuracy);
else
fSpread = 0.05f * (1 - m_flAccuracy);
// If we are not zoomed in, or we have very recently zoomed and are still transitioning, the bullet diverts more.
if (pPlayer->GetFOV() == pPlayer->GetDefaultFOV() || (gpGlobals->curtime < m_zoomFullyActiveTime))
fSpread += 0.025;
return fSpread;
}
else
return BaseClass::GetInaccuracy();
}
void CWeaponSG550::PrimaryAttack()
{
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer )
return;
// Mark the time of this shot and determine the accuracy modifier based on the last shot fired...
m_flAccuracy = 0.65 + (0.35) * (gpGlobals->curtime - m_flLastFire);
if (m_flAccuracy > 0.98)
m_flAccuracy = 0.98;
m_flLastFire = gpGlobals->curtime;
if ( !CSBaseGunFire( GetCSWpnData().m_flCycleTime, m_weaponMode ) )
return;
QAngle angle = pPlayer->GetPunchAngle();
angle.x -= SharedRandomFloat("SG550PunchAngleX", 0.75, 1.25 ) + ( angle.x / 4 );
angle.y += SharedRandomFloat("SG550PunchAngleY", -0.75, 0.75 );
pPlayer->SetPunchAngle( angle );
}
bool CWeaponSG550::Reload()
{
bool ret = BaseClass::Reload();
m_flAccuracy = 0.98;
m_weaponMode = Primary_Mode;
return ret;
}
bool CWeaponSG550::Deploy()
{
bool ret = BaseClass::Deploy();
m_flAccuracy = 0.98;
m_weaponMode = Primary_Mode;
return ret;
}
float CWeaponSG550::GetMaxSpeed() const
{
CCSPlayer *pPlayer = GetPlayerOwner();
if ( !pPlayer || pPlayer->GetFOV() == 90 )
return BaseClass::GetMaxSpeed();
else
return 150; // zoomed in
}
|