2009-04-05 23:20:35 +02:00
|
|
|
/**
|
|
|
|
* ====================
|
|
|
|
* Zombie:Reloaded
|
|
|
|
* File: antistick.inc
|
|
|
|
* Author: Greyscale
|
|
|
|
* ====================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @section Offsets relating to player hull dimensions.
|
|
|
|
*/
|
|
|
|
#define PLAYER_HULL_XY_OFFSET 32
|
|
|
|
#define PLAYER_HULL_Z_OFFSET 12
|
|
|
|
#define PLAYER_HULL_STACK_OFFSET 14
|
|
|
|
/**
|
|
|
|
* @endsection
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-04-15 09:42:12 +02:00
|
|
|
* Handle to keep track of AntiStickTimer.
|
2009-04-05 23:20:35 +02:00
|
|
|
*/
|
|
|
|
new Handle:tAntiStick = INVALID_HANDLE;
|
|
|
|
|
2009-04-17 01:09:52 +02:00
|
|
|
/**
|
|
|
|
* The round is starting.
|
|
|
|
*/
|
|
|
|
AntiStickOnRoundStart()
|
|
|
|
{
|
|
|
|
// Restart antistick timer.
|
|
|
|
AntiStickRestart();
|
|
|
|
}
|
|
|
|
|
2009-04-05 23:20:35 +02:00
|
|
|
/**
|
|
|
|
* Restarts the AntiStickTimer function.
|
|
|
|
*/
|
|
|
|
AntiStickRestart()
|
|
|
|
{
|
|
|
|
if (tAntiStick != INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
KillTimer(tAntiStick);
|
|
|
|
}
|
|
|
|
|
|
|
|
new bool:antistick = GetConVarBool(gCvars[CVAR_ANTISTICK]);
|
|
|
|
if (antistick)
|
|
|
|
{
|
|
|
|
new Float:interval = GetConVarFloat(gCvars[CVAR_ANTISTICK_INTERVAL]);
|
|
|
|
tAntiStick = CreateTimer(interval, AntiStickTimer, _, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the handle that keeps track of the AntiStickTimer function.
|
|
|
|
*/
|
|
|
|
AntiStickReset()
|
|
|
|
{
|
|
|
|
tAntiStick = INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-04-15 09:42:12 +02:00
|
|
|
* Checks if a player is currently stuck within another player.
|
2009-04-05 23:20:35 +02:00
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
* @return The client index of the other stuck player, -1 when
|
|
|
|
* player is not stuck.
|
|
|
|
*/
|
|
|
|
AntiStickIsStuck(client)
|
|
|
|
{
|
|
|
|
new Float:clientloc[3];
|
|
|
|
new Float:stuckloc[3];
|
|
|
|
|
|
|
|
GetClientAbsOrigin(client, clientloc);
|
|
|
|
|
2009-04-15 09:42:12 +02:00
|
|
|
// x = client index.
|
2009-04-16 05:30:26 +02:00
|
|
|
for (new x = 1; x <= MaxClients; x++)
|
2009-04-05 23:20:35 +02:00
|
|
|
{
|
2009-04-15 09:42:12 +02:00
|
|
|
// Validate player is in-game, alive, and isn't the player being checked. ('client')
|
2009-04-05 23:20:35 +02:00
|
|
|
if (!IsClientInGame(x) || !IsPlayerAlive(x) || x == client)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetClientAbsOrigin(x, stuckloc);
|
|
|
|
|
|
|
|
// x-y plane distance formula: sqrt((x2-x1)^2 + (y2-y1)^2)
|
|
|
|
new Float:xydistance = SquareRoot(Pow(stuckloc[0] - clientloc[0], 2.0) + Pow(stuckloc[1] - clientloc[1], 2.0));
|
|
|
|
if (xydistance < PLAYER_HULL_XY_OFFSET)
|
|
|
|
{
|
|
|
|
if (clientloc[2] <= stuckloc[2])
|
|
|
|
{
|
|
|
|
new Float:eyeloc[3];
|
|
|
|
GetPlayerEyePosition(client, eyeloc);
|
|
|
|
|
2009-04-15 09:42:12 +02:00
|
|
|
// Get the distance between the eyes and feet and subtract the stack "view crush."
|
2009-04-05 23:20:35 +02:00
|
|
|
new Float:eyedistance = FloatAbs(eyeloc[2] - clientloc[2]) - PLAYER_HULL_STACK_OFFSET;
|
|
|
|
new Float:zdistance = FloatAbs(stuckloc[2] - clientloc[2]);
|
|
|
|
|
|
|
|
if (zdistance <= eyedistance + PLAYER_HULL_Z_OFFSET)
|
|
|
|
{
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-04-17 01:09:52 +02:00
|
|
|
* Timer callback, automatically unsticks players that are stuck together.
|
2009-04-05 23:20:35 +02:00
|
|
|
*/
|
|
|
|
public Action:AntiStickTimer(Handle:timer)
|
|
|
|
{
|
|
|
|
// x = client index
|
2009-04-16 05:30:26 +02:00
|
|
|
for (new x = 1; x <= MaxClients; x++)
|
2009-04-05 23:20:35 +02:00
|
|
|
{
|
2009-04-15 09:42:12 +02:00
|
|
|
// Validate player is in-game and alive.
|
2009-04-05 23:20:35 +02:00
|
|
|
if (!IsClientInGame(x) || !IsPlayerAlive(x))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-04-15 09:42:12 +02:00
|
|
|
// Stop if the player isn't stuck.
|
2009-04-05 23:20:35 +02:00
|
|
|
new stuckindex = AntiStickIsStuck(x);
|
|
|
|
if (stuckindex == -1)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CanCollide(x))
|
|
|
|
{
|
|
|
|
NoCollide(x, true);
|
|
|
|
CreateTimer(0.5, AntiStickSolidify, x, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CanCollide(stuckindex))
|
|
|
|
{
|
|
|
|
NoCollide(stuckindex, true);
|
|
|
|
CreateTimer(0.5, AntiStickSolidify, stuckindex, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Repeated timer function.
|
|
|
|
* Re-solidifies a player being unstuck.
|
|
|
|
*
|
2009-04-15 09:42:12 +02:00
|
|
|
* @param timer The timer handle.
|
2009-04-15 11:27:03 +02:00
|
|
|
* @param client The client index.
|
2009-04-05 23:20:35 +02:00
|
|
|
*/
|
2009-04-15 11:27:03 +02:00
|
|
|
public Action:AntiStickSolidify(Handle:timer, any:client)
|
2009-04-05 23:20:35 +02:00
|
|
|
{
|
2009-04-15 09:42:12 +02:00
|
|
|
// Validate player is in-game, alive, and is being unstuck.
|
2009-04-15 11:27:03 +02:00
|
|
|
if (!IsClientInGame(client) || !IsPlayerAlive(client) || CanCollide(client))
|
2009-04-05 23:20:35 +02:00
|
|
|
{
|
|
|
|
return Plugin_Stop;
|
|
|
|
}
|
|
|
|
|
2009-04-15 09:42:12 +02:00
|
|
|
// Stop if the player is still stuck.
|
2009-04-15 11:27:03 +02:00
|
|
|
if (AntiStickIsStuck(client) > -1)
|
2009-04-05 23:20:35 +02:00
|
|
|
{
|
|
|
|
return Plugin_Continue;
|
|
|
|
}
|
|
|
|
|
2009-04-15 11:27:03 +02:00
|
|
|
NoCollide(client, false);
|
2009-04-05 23:20:35 +02:00
|
|
|
|
|
|
|
return Plugin_Stop;
|
|
|
|
}
|
|
|
|
|
|
|
|
|