-
Notifications
You must be signed in to change notification settings - Fork 21
/
zp_weapon_fists.sp
392 lines (328 loc) · 10.2 KB
/
zp_weapon_fists.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
/**
* ============================================================================
*
* 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: Fists",
author = "qubka (Nikita Ushakov)",
description = "Addon of custom weapon",
version = "2.0",
url = "https://forums.alliedmods.net/showthread.php?t=290657"
}
/**
* @section Information about weapon.
**/
#define WEAPON_IDLE_TIME 1.3
/**
* @endsection
**/
// Timer index
Handle hWeaponPunch[MAXPLAYERS+1] = { null, ... };
// Weapon index
int gWeapon;
// Sound index
int gSound;
// Animation sequences
enum
{
ANIM_IDLE,
ANIM_DRAW,
ANIM_PUNCH_RIGHT,
ANIM_PUNCH_LEFT,
ANIM_PUNCH_HAND,
ANIM_GRAB_CASH,
ANIM_RAPPEL,
ANIM_RAPPEL_END
};
// Weapon states
enum
{
PUNCH_ALLOW,
PUNCH_BLOCK
};
// Cvars
ConVar hCvarFistsDamage;
ConVar hCvarFistsRadius;
ConVar hCvarFistsDistance;
/**
* @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()
{
hCvarFistsDamage = CreateConVar("zp_weapon_fists_damage", "100.0", "Punch damage", 0, true, 0.0);
hCvarFistsRadius = CreateConVar("zp_weapon_fists_radius", "50.0", "Damage radius", 0, true, 0.0);
hCvarFistsDistance = CreateConVar("zp_weapon_fists_distance", "60.0", "Punch distance", 0, true, 0.0);
AutoExecConfig(true, "zp_weapon_fists", "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 The map is ending.
**/
public void OnMapEnd()
{
for (int i = 1; i <= MaxClients; i++)
{
hWeaponPunch[i] = null; /// with flag TIMER_FLAG_NO_MAPCHANGE
}
}
/**
* @brief Called when a client is disconnecting from the server.
*
* @param client The client index.
**/
public void OnClientDisconnect(int client)
{
delete hWeaponPunch[client];
}
/**
* @brief Called after a zombie core is loaded.
**/
public void ZP_OnEngineExecute()
{
gWeapon = ZP_GetWeaponNameID("fists");
if (gWeapon == -1) SetFailState("[ZP] Custom weapon ID from name : \"fists\" wasn't find");
gSound = ZP_GetSoundKeyID("fists_hit_sounds");
if (gSound == -1) SetFailState("[ZP] Custom sound key ID from name : \"fists_hit_sounds\" wasn't find");
}
//*********************************************************************
//* Don't modify the code below this line unless *
//* you know _exactly_ what you are doing!!! *
//*********************************************************************
void Weapon_OnDeploy(int client, int weapon, float flCurrentTime)
{
ZP_SetWeaponAnimation(client, ANIM_DRAW);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + ZP_GetWeaponDeploy(gWeapon));
}
void Weapon_OnIdle(int client, int weapon, 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);
if (GetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, ANIM_IDLE);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime + WEAPON_IDLE_TIME);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", PUNCH_ALLOW);
}
void Weapon_OnPrimaryAttack(int client, int weapon, float flCurrentTime)
{
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetViewAnimation(client, { ANIM_PUNCH_LEFT, ANIM_PUNCH_RIGHT });
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_PRIMARY);
delete hWeaponPunch[client];
hWeaponPunch[client] = CreateTimer(0.16, Weapon_OnPunch, GetClientUserId(client), TIMER_FLAG_NO_MAPCHANGE);
ZP_EmitSoundToAll(gSound, GetRandomInt(3, 7), client, SNDCHAN_WEAPON);
flCurrentTime += ZP_GetWeaponShoot(gWeapon);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
}
void Weapon_OnSecondaryAttack(int client, int weapon, float flCurrentTime)
{
if (GetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount"))
{
return;
}
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, ANIM_PUNCH_HAND);
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_SECONDARY);
delete hWeaponPunch[client];
hWeaponPunch[client] = CreateTimer(0.83, Weapon_OnPunch, GetClientUserId(client), TIMER_FLAG_NO_MAPCHANGE);
ZP_EmitSoundToAll(gSound, GetRandomInt(3, 7), client, SNDCHAN_WEAPON);
flCurrentTime += ZP_GetWeaponReload(gWeapon);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", PUNCH_BLOCK);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
}
void Weapon_OnHit(int client, int weapon)
{
static float vPosition[3]; static float vEndPosition[3];
ZP_GetPlayerEyePosition(client, 0.0, 0.0, 5.0, vPosition);
ZP_GetPlayerEyePosition(client, hCvarFistsDistance.FloatValue, 0.0, 5.0, vEndPosition);
Handle hTrace = TR_TraceRayFilterEx(vPosition, vEndPosition, (MASK_SHOT|CONTENTS_GRATE), RayType_EndPoint, SelfFilter, client);
if (!TR_DidHit(hTrace))
{
static const float vMins[3] = { -16.0, -16.0, -18.0 };
static const float vMaxs[3] = { 16.0, 16.0, 18.0 };
delete hTrace;
hTrace = TR_TraceHullFilterEx(vPosition, vEndPosition, vMins, vMaxs, MASK_SHOT_HULL, SelfFilter, client);
if (TR_DidHit(hTrace))
{
int victim = TR_GetEntityIndex(hTrace);
if (victim < 1 || ZP_IsBSPModel(victim))
{
UTIL_FindHullIntersection(hTrace, vPosition, vMins, vMaxs, SelfFilter, client);
}
}
}
if (TR_DidHit(hTrace))
{
TR_GetEndPosition(vEndPosition, hTrace);
UTIL_CreateDamage(_, vEndPosition, client, hCvarFistsDamage.FloatValue, hCvarFistsRadius.FloatValue, DMG_NEVERGIB, gWeapon);
ZP_EmitSoundToAll(gSound, GetRandomInt(1, 2), client, SNDCHAN_ITEM - 10);
}
delete hTrace;
}
/**
* @brief Timer for punch effect.
*
* @param hTimer The timer handle.
* @param userID The user id.
**/
public Action Weapon_OnPunch(Handle hTimer, int userID)
{
int client = GetClientOfUserId(userID); int weapon;
hWeaponPunch[client] = null;
if (ZP_IsPlayerHoldWeapon(client, weapon, gWeapon))
{
Weapon_OnHit(client, weapon);
}
return Plugin_Stop;
}
//**********************************************
//* Item (weapon) hooks. *
//**********************************************
#define _call.%0(%1,%2) \
\
Weapon_On%0 \
( \
%1, \
%2, \
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_iSecondaryAmmoCount", PUNCH_ALLOW);
}
}
/**
* @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)
{
delete hWeaponPunch[client];
}
}
/**
* @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 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_Change) to change buttons.
**/
public Action ZP_OnWeaponRunCmd(int client, int &iButtons, int iLastButtons, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
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;
}
/**
* @brief Trace filter.
*
* @param entity The entity index.
* @param contentsMask The contents mask.
* @param filter The filter index.
*
* @return True or false.
**/
public bool SelfFilter(int entity, int contentsMask, int filter)
{
return (entity != filter);
}