-
Notifications
You must be signed in to change notification settings - Fork 21
/
zp_weapon_balrog3.sp
457 lines (382 loc) · 13 KB
/
zp_weapon_balrog3.sp
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/**
* ============================================================================
*
* Zombie Plague
*
*
* Copyright (C) 2015-2023 qubka (Nikita Ushakov)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ============================================================================
**/
#include <sourcemod>
#include <sdktools>
#include <sdkhooks>
#include <zombieplague>
#pragma newdecls required
#pragma semicolon 1
/**
* @brief Record plugin info.
**/
public Plugin myinfo =
{
name = "[ZP] Weapon: Balrog III",
author = "qubka (Nikita Ushakov)",
description = "Addon of custom weapon",
version = "2.0",
url = "https://forums.alliedmods.net/showthread.php?t=290657"
}
/**
* @section Information about the weapon.
**/
#define WEAPON_IDLE_TIME 10.0
#define WEAPON_ATTACK_TIME 0.83
/**
* @endsection
**/
// Animation sequences
enum
{
ANIM_IDLE,
ANIM_RELOAD,
ANIM_DRAW,
ANIM_SHOOT1,
ANIM_SHOOT2,
ANIM_SHOOT1_M,
ANIM_SHOOT2_M
};
// Weapon states
enum
{
STATE_NORMAL,
STATE_ACTIVE
};
// Weapon index
int gWeapon;
// Sound index
int gSound;
// Cvars
ConVar hCvarBalrogActiveCounter;
/**
* @brief Called when the plugin is fully initialized and all known external references are resolved.
* This is only called once in the lifetime of the plugin, and is paired with OnPluginEnd().
**/
public void OnPluginStart()
{
hCvarBalrogActiveCounter = CreateConVar("zp_weapon_balrog3_active_counter", "15", "Amount of shots to activate second mode", 0, true, 0.0);
AutoExecConfig(true, "zp_weapon_balrog3", "sourcemod/zombieplague");
}
/**
* @brief Called after a library is added that the current plugin references optionally.
* A library is either a plugin name or extension name, as exposed via its include file.
**/
public void OnLibraryAdded(const char[] sLibrary)
{
if (!strcmp(sLibrary, "zombieplague", false))
{
if (ZP_IsMapLoaded())
{
ZP_OnEngineExecute();
}
}
}
/**
* @brief Called after a zombie core is loaded.
**/
public void ZP_OnEngineExecute()
{
gWeapon = ZP_GetWeaponNameID("balrog3");
gSound = ZP_GetSoundKeyID("balrogiii_shoot_sounds");
if (gSound == -1) SetFailState("[ZP] Custom sound key ID from name : \"balrogiii_shoot_sounds\" wasn't find");
}
//*********************************************************************
//* Don't modify the code below this line unless *
//* you know _exactly_ what you are doing!!! *
//*********************************************************************
void Weapon_OnHolster(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
SetEntPropFloat(weapon, Prop_Send, "m_flDoneSwitchingSilencer", 0.0);
}
void Weapon_OnDeploy(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
SetEntPropFloat(client, Prop_Send, "m_flNextAttack", MAX_FLOAT);
SetEntPropFloat(weapon, Prop_Send, "m_flNextPrimaryAttack", MAX_FLOAT);
SetEntPropFloat(weapon, Prop_Send, "m_flNextSecondaryAttack", MAX_FLOAT);
ZP_SetWeaponAnimation(client, ANIM_DRAW);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + ZP_GetWeaponDeploy(gWeapon));
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", 0.0);
SetEntProp(client, Prop_Send, "m_iShotsFired", 0);
}
void Weapon_OnReload(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
if (min(ZP_GetWeaponClip(gWeapon) - iClip, iAmmo) <= 0)
{
return;
}
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, ANIM_RELOAD);
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_RELOAD);
flCurrentTime += ZP_GetWeaponReload(gWeapon);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
flCurrentTime -= 0.5;
SetEntPropFloat(weapon, Prop_Send, "m_flDoneSwitchingSilencer", flCurrentTime);
SetEntProp(client, Prop_Send, "m_iShotsFired", 0);
}
void Weapon_OnReloadFinish(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
int iAmount = min(ZP_GetWeaponClip(gWeapon) - iClip, iAmmo);
SetEntProp(weapon, Prop_Send, "m_iClip1", iClip + iAmount);
SetEntProp(weapon, Prop_Send, "m_iPrimaryReserveAmmoCount", iAmmo - iAmount);
SetEntPropFloat(weapon, Prop_Send, "m_flDoneSwitchingSilencer", 0.0);
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", 0.0);
}
void Weapon_OnIdle(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
SetEntProp(weapon, Prop_Data, "m_iClip2", 0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_NORMAL);
if (iClip <= 0)
{
if (iAmmo)
{
Weapon_OnReload(client, weapon, iClip, iAmmo, iCounter, iStateMode, flCurrentTime);
return; /// Execute fake reload
}
}
if (GetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, ANIM_IDLE);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime + WEAPON_IDLE_TIME);
}
void Weapon_OnPrimaryAttack(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
if (iClip <= 0)
{
EmitSoundToClient(client, SOUND_CLIP_EMPTY, SOUND_FROM_PLAYER, SNDCHAN_ITEM);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + 0.2);
return;
}
if (iAmmo <= 0)
{
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_NORMAL);
}
else
{
if (iCounter > hCvarBalrogActiveCounter.IntValue)
{
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_ACTIVE);
iCounter = -1;
}
SetEntProp(weapon, Prop_Data, "m_iClip2", iCounter + 1);
}
if (iStateMode)
{
iAmmo -= 1; SetEntProp(weapon, Prop_Send, "m_iPrimaryReserveAmmoCount", iAmmo);
ZP_SetViewAnimation(client, { ANIM_SHOOT1_M, ANIM_SHOOT2_M });
ZP_EmitSoundToAll(gSound, 2, client, SNDCHAN_WEAPON);
}
else
{
iClip -= 1; SetEntProp(weapon, Prop_Send, "m_iClip1", iClip);
ZP_SetViewAnimation(client, { ANIM_SHOOT1, ANIM_SHOOT2 });
ZP_EmitSoundToAll(gSound, 1, client, SNDCHAN_WEAPON);
}
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_PRIMARY);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime + WEAPON_ATTACK_TIME);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + ZP_GetWeaponShoot(gWeapon));
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", GetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex") + 1.0);
SetEntProp(client, Prop_Send, "m_iShotsFired", GetEntProp(client, Prop_Send, "m_iShotsFired") + 1);
static char sName[NORMAL_LINE_LENGTH];
int view = ZP_GetClientViewModel(client, true);
ZP_GetWeaponModelMuzzle(gWeapon, sName, sizeof(sName));
UTIL_CreateParticle(view, _, _, "1", sName, 0.1);
ZP_GetWeaponModelShell(gWeapon, sName, sizeof(sName));
UTIL_CreateParticle(view, _, _, "2", sName, 0.1);
static float vVelocity[3]; int iFlags = GetEntityFlags(client);
float flSpread = 0.01; float flInaccuracy = 0.013;
float vKickback[] = { /*upBase = */0.15, /* lateralBase = */0.35, /* upMod = */0.005, /* lateralMod = */0.04, /* upMax = */0.335, /* lateralMax = */1.5, /* directionChange = */5.0 };
GetEntPropVector(client, Prop_Data, "m_vecVelocity", vVelocity);
if (GetVectorLength(vVelocity, true) <= 0.0)
{
}
else if (!(iFlags & FL_ONGROUND))
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 1.3;
flInaccuracy = 0.02;
flSpread = 0.05;
}
else if (iFlags & FL_DUCKING)
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 0.75;
flInaccuracy = 0.01;
}
else
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 1.15;
}
ZP_CreateWeaponKickBack(client, vKickback[0], vKickback[1], vKickback[2], vKickback[3], vKickback[4], vKickback[5], RoundFloat(vKickback[6]));
Weapon_OnCreateBullet(client, weapon, 0, GetRandomInt(0, 1000), flSpread, flInaccuracy);
}
void Weapon_OnSecondaryAttack(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, float flCurrentTime)
{
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_SECONDARY);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + 0.3);
int iDefaultFOV = GetEntProp(client, Prop_Send, "m_iDefaultFOV");
SetEntProp(client, Prop_Send, "m_iFOV", GetEntProp(client, Prop_Send, "m_iFOV") == iDefaultFOV ? 55 : iDefaultFOV);
}
void Weapon_OnCreateBullet(int client, int weapon, int iMode, int iSeed, float flSpread, float flInaccuracy)
{
static float vPosition[3]; static float vAngle[3];
GetClientEyePosition(client, vPosition);
GetClientEyeAngles(client, vAngle);
ZP_FireBullets(client, weapon, vPosition, vAngle, iMode, iSeed, flInaccuracy, flSpread, 0.0, 0, GetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex"));
}
//**********************************************
//* Item (weapon) hooks. *
//**********************************************
#define _call.%0(%1,%2) \
\
Weapon_On%0 \
( \
%1, \
%2, \
\
GetEntProp(%2, Prop_Send, "m_iClip1"), \
\
GetEntProp(%2, Prop_Send, "m_iPrimaryReserveAmmoCount"), \
\
GetEntProp(%2, Prop_Data, "m_iClip2"), \
\
GetEntProp(%2, Prop_Data, "m_iSecondaryAmmoCount"), \
\
GetGameTime() \
)
/**
* @brief Called after a custom weapon is created.
*
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponCreated(int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
SetEntProp(weapon, Prop_Data, "m_iClip2", 0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_NORMAL);
SetEntPropFloat(weapon, Prop_Send, "m_flDoneSwitchingSilencer", 0.0);
}
}
/**
* @brief Called on bullet of a weapon.
*
* @param client The client index.
* @param vBullet The position of a bullet hit.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponBullet(int client, const float vBullet[3], int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
ZP_CreateWeaponTracer(client, weapon, "1", "muzzle_flash", "weapon_tracers_smg", vBullet, ZP_GetWeaponShoot(gWeapon));
}
}
/**
* @brief Called on deploy of a weapon.
*
* @param client The client index.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponDeploy(int client, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
_call.Deploy(client, weapon);
}
}
/**
* @brief Called on holster of a weapon.
*
* @param client The client index.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponHolster(int client, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
_call.Holster(client, weapon);
}
}
/**
* @brief Called on each frame of a weapon holding.
*
* @param client The client index.
* @param iButtons The buttons buffer.
* @param iLastButtons The last buttons buffer.
* @param weapon The weapon index.
* @param weaponID The weapon id.
*
* @return Plugin_Continue to allow buttons. Anything else
* (like Plugin_Changed) to change buttons.
**/
public Action ZP_OnWeaponRunCmd(int client, int &iButtons, int iLastButtons, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
static float flReloadTime;
if ((flReloadTime = GetEntPropFloat(weapon, Prop_Send, "m_flDoneSwitchingSilencer")) && flReloadTime <= GetGameTime())
{
_call.ReloadFinish(client, weapon);
}
else
{
if (iButtons & IN_RELOAD)
{
_call.Reload(client, weapon);
iButtons &= (~IN_RELOAD); //! Bugfix
return Plugin_Changed;
}
}
if (iButtons & IN_ATTACK)
{
_call.PrimaryAttack(client, weapon);
iButtons &= (~IN_ATTACK); //! Bugfix
return Plugin_Changed;
}
if (iButtons & IN_ATTACK2)
{
_call.SecondaryAttack(client, weapon);
iButtons &= (~IN_ATTACK2); //! Bugfix
return Plugin_Changed;
}
_call.Idle(client, weapon);
}
return Plugin_Continue;
}