2008-07-06 11:21:21 +00:00
|
|
|
#include <new>
|
2010-08-23 19:37:27 +00:00
|
|
|
#include <stdio.h>
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <string.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <engine/shared/config.h>
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <engine/server/server.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <game/server/gamecontext.h>
|
|
|
|
#include <game/mapitems.h>
|
2010-07-29 14:53:25 +00:00
|
|
|
#include <game/server/gamemodes/DDRace.h>
|
2010-08-23 19:37:27 +00:00
|
|
|
|
|
|
|
#include <game/server/score.h>
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "character.h"
|
|
|
|
#include "laser.h"
|
2010-07-29 05:21:18 +00:00
|
|
|
#include "light.h"
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "projectile.h"
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
//input count
|
|
|
|
struct CInputCount
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_Presses;
|
|
|
|
int m_Releases;
|
2008-07-06 11:21:21 +00:00
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CInputCount CountInput(int Prev, int Cur)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CInputCount c = {0, 0};
|
|
|
|
Prev &= INPUT_STATE_MASK;
|
|
|
|
Cur &= INPUT_STATE_MASK;
|
|
|
|
int i = Prev;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
while(i != Cur)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
i = (i+1)&INPUT_STATE_MASK;
|
|
|
|
if(i&1)
|
2010-05-29 07:25:38 +00:00
|
|
|
c.m_Presses++;
|
2008-07-06 11:21:21 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
c.m_Releases++;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2008-09-24 09:03:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
MACRO_ALLOC_POOL_ID_IMPL(CCharacter, MAX_CLIENTS)
|
2008-09-24 09:03:49 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
// Character, "physical" m_pPlayer's part
|
2010-05-29 07:25:38 +00:00
|
|
|
CCharacter::CCharacter(CGameWorld *pWorld)
|
|
|
|
: CEntity(pWorld, NETOBJTYPE_CHARACTER)
|
2008-09-23 07:43:41 +00:00
|
|
|
{
|
2010-06-03 15:39:42 +00:00
|
|
|
m_ProximityRadius = ms_PhysSize;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Health = 0;
|
|
|
|
m_Armor = 0;
|
2008-09-23 07:43:41 +00:00
|
|
|
}
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::Reset()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Destroy();
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool CCharacter::Spawn(CPlayer *pPlayer, vec2 Pos)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_PlayerState = PLAYERSTATE_UNKNOWN;
|
|
|
|
m_EmoteStop = -1;
|
|
|
|
m_LastAction = -1;
|
|
|
|
m_ActiveWeapon = WEAPON_GUN;
|
|
|
|
m_LastWeapon = WEAPON_HAMMER;
|
|
|
|
m_QueuedWeapon = -1;
|
2010-08-26 18:28:41 +00:00
|
|
|
m_CpActive = -2;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pPlayer = pPlayer;
|
|
|
|
m_Pos = Pos;
|
2010-07-29 05:21:18 +00:00
|
|
|
m_OlderPos = Pos;
|
|
|
|
m_OldPos = Pos;
|
|
|
|
m_RaceState = RACE_NONE;
|
2010-08-12 14:31:38 +00:00
|
|
|
m_PrevPos = Pos;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.Reset();
|
2010-08-27 07:09:47 +00:00
|
|
|
m_BroadTime = true;
|
|
|
|
m_BroadCast = true;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.Init(&GameServer()->m_World.m_Core, GameServer()->Collision());
|
|
|
|
m_Core.m_Pos = m_Pos;
|
|
|
|
GameServer()->m_World.m_Core.m_apCharacters[m_pPlayer->GetCID()] = &m_Core;
|
|
|
|
|
|
|
|
m_ReckoningTick = 0;
|
|
|
|
mem_zero(&m_SendCore, sizeof(m_SendCore));
|
|
|
|
mem_zero(&m_ReckoningCore, sizeof(m_ReckoningCore));
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->m_World.InsertEntity(this);
|
|
|
|
m_Alive = true;
|
2010-08-23 21:40:23 +00:00
|
|
|
if(m_pPlayer->m_RconFreeze) Freeze(-1);
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->m_pController->OnCharacterSpawn(this);
|
2008-08-27 20:04:07 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::Destroy()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->m_World.m_Core.m_apCharacters[m_pPlayer->GetCID()] = 0;
|
|
|
|
m_Alive = false;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::SetWeapon(int W)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(W == m_ActiveWeapon)
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_LastWeapon = m_ActiveWeapon;
|
|
|
|
m_QueuedWeapon = -1;
|
|
|
|
m_ActiveWeapon = W;
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_WEAPON_SWITCH);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_ActiveWeapon < 0 || m_ActiveWeapon >= NUM_WEAPONS)
|
|
|
|
m_ActiveWeapon = 0;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool CCharacter::IsGrounded()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-08-21 19:48:47 +00:00
|
|
|
if(GameServer()->Collision()->CheckPoint(m_Pos.x+m_ProximityRadius/2, m_Pos.y+m_ProximityRadius/2+5) || GameServer()->Collision()->FCheckPoint(m_Pos.x+m_ProximityRadius/2, m_Pos.y+m_ProximityRadius/2+5))
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
2010-08-21 19:48:47 +00:00
|
|
|
if(GameServer()->Collision()->CheckPoint(m_Pos.x-m_ProximityRadius/2, m_Pos.y+m_ProximityRadius/2+5) || GameServer()->Collision()->FCheckPoint(m_Pos.x-m_ProximityRadius/2, m_Pos.y+m_ProximityRadius/2+5))
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::HandleNinja()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_ActiveWeapon != WEAPON_NINJA)
|
|
|
|
return;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 Direction = normalize(vec2(m_LatestInput.m_TargetX, m_LatestInput.m_TargetY));
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if ((Server()->Tick() - m_Ninja.m_ActivationTick) > (g_pData->m_Weapons.m_Ninja.m_Duration * Server()->TickSpeed() / 1000))
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
// time's up, return
|
2010-05-29 07:25:38 +00:00
|
|
|
m_aWeapons[WEAPON_NINJA].m_Got = false;
|
|
|
|
m_ActiveWeapon = m_LastWeapon;
|
|
|
|
if(m_ActiveWeapon == WEAPON_NINJA)
|
|
|
|
m_ActiveWeapon = WEAPON_GUN;
|
2010-07-29 05:21:18 +00:00
|
|
|
Direction= normalize(vec2(0,0)) ;
|
2010-05-29 07:25:38 +00:00
|
|
|
SetWeapon(m_ActiveWeapon);
|
|
|
|
return;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// force ninja Weapon
|
|
|
|
SetWeapon(WEAPON_NINJA);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Ninja.m_CurrentMoveTime--;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_Ninja.m_CurrentMoveTime == 0)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// reset velocity
|
|
|
|
m_Core.m_Vel *= 0.2f;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_Ninja.m_CurrentMoveTime > 0)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// Set velocity
|
|
|
|
m_Core.m_Vel = m_Ninja.m_ActivationDir * g_pData->m_Weapons.m_Ninja.m_Velocity;
|
|
|
|
vec2 OldPos = m_Pos;
|
2010-06-03 15:39:42 +00:00
|
|
|
GameServer()->Collision()->MoveBox(&m_Core.m_Pos, &m_Core.m_Vel, vec2(m_ProximityRadius, m_ProximityRadius), 0.f);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
// reset velocity so the client doesn't predict stuff
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.m_Vel = vec2(0.f, 0.f);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// check if we Hit anything along the way
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CCharacter *aEnts[64];
|
|
|
|
vec2 Dir = m_Pos - OldPos;
|
2010-06-03 15:39:42 +00:00
|
|
|
float Radius = m_ProximityRadius * 2.0f;
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 Center = OldPos + Dir * 0.5f;
|
|
|
|
int Num = GameServer()->m_World.FindEntities(Center, Radius, (CEntity**)aEnts, 64, NETOBJTYPE_CHARACTER);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for (int i = 0; i < Num; ++i)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if (aEnts[i] == this)
|
2008-07-06 11:21:21 +00:00
|
|
|
continue;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// make sure we haven't Hit this object before
|
|
|
|
bool bAlreadyHit = false;
|
|
|
|
for (int j = 0; j < m_NumObjectsHit; j++)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_apHitObjects[j] == aEnts[i])
|
|
|
|
bAlreadyHit = true;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
if (bAlreadyHit)
|
2008-07-06 11:21:21 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// check so we are sufficiently close
|
2010-06-03 15:39:42 +00:00
|
|
|
if (distance(aEnts[i]->m_Pos, m_Pos) > (m_ProximityRadius * 2.0f))
|
2008-07-06 11:21:21 +00:00
|
|
|
continue;
|
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
// Hit a m_pPlayer, give him damage and stuffs...
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateSound(aEnts[i]->m_Pos, SOUND_NINJA_HIT);
|
2008-07-06 11:21:21 +00:00
|
|
|
// set his velocity to fast upward (for now)
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_NumObjectsHit < 10)
|
|
|
|
m_apHitObjects[m_NumObjectsHit++] = aEnts[i];
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
aEnts[i]->TakeDamage(vec2(0, 10.0f), g_pData->m_Weapons.m_Ninja.m_pBase->m_Damage, m_pPlayer->GetCID(), WEAPON_NINJA);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
return;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
return;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::DoWeaponSwitch()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// make sure we can switch
|
|
|
|
if(m_ReloadTimer != 0 || m_QueuedWeapon == -1 || m_aWeapons[WEAPON_NINJA].m_Got)
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// switch Weapon
|
|
|
|
SetWeapon(m_QueuedWeapon);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::HandleWeaponSwitch()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int WantedWeapon = m_ActiveWeapon;
|
|
|
|
if(m_QueuedWeapon != -1)
|
|
|
|
WantedWeapon = m_QueuedWeapon;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// select Weapon
|
|
|
|
int Next = CountInput(m_LatestPrevInput.m_NextWeapon, m_LatestInput.m_NextWeapon).m_Presses;
|
|
|
|
int Prev = CountInput(m_LatestPrevInput.m_PrevWeapon, m_LatestInput.m_PrevWeapon).m_Presses;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Next < 128) // make sure we only try sane stuff
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
while(Next) // Next Weapon selection
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
WantedWeapon = (WantedWeapon+1)%NUM_WEAPONS;
|
|
|
|
if(m_aWeapons[WantedWeapon].m_Got)
|
|
|
|
Next--;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Prev < 128) // make sure we only try sane stuff
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
while(Prev) // Prev Weapon selection
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
WantedWeapon = (WantedWeapon-1)<0?NUM_WEAPONS-1:WantedWeapon-1;
|
|
|
|
if(m_aWeapons[WantedWeapon].m_Got)
|
|
|
|
Prev--;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// Direct Weapon selection
|
|
|
|
if(m_LatestInput.m_WantedWeapon)
|
|
|
|
WantedWeapon = m_Input.m_WantedWeapon-1;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// check for insane values
|
2010-05-29 07:25:38 +00:00
|
|
|
if(WantedWeapon >= 0 && WantedWeapon < NUM_WEAPONS && WantedWeapon != m_ActiveWeapon && m_aWeapons[WantedWeapon].m_Got)
|
|
|
|
m_QueuedWeapon = WantedWeapon;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
DoWeaponSwitch();
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::FireWeapon()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-08-22 02:23:18 +00:00
|
|
|
if(m_ReloadTimer != 0 /*|| m_FreezeTime > 0*/)
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
DoWeaponSwitch();
|
|
|
|
vec2 Direction = normalize(vec2(m_LatestInput.m_TargetX, m_LatestInput.m_TargetY));
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool FullAuto = false;
|
|
|
|
if(m_ActiveWeapon == WEAPON_GRENADE || m_ActiveWeapon == WEAPON_SHOTGUN || m_ActiveWeapon == WEAPON_RIFLE)
|
|
|
|
FullAuto = true;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
// check if we gonna fire
|
2010-05-29 07:25:38 +00:00
|
|
|
bool WillFire = false;
|
|
|
|
if(CountInput(m_LatestPrevInput.m_Fire, m_LatestInput.m_Fire).m_Presses)
|
|
|
|
WillFire = true;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-27 03:45:51 +00:00
|
|
|
if((FullAuto || m_Super) && (m_LatestInput.m_Fire&1) && m_aWeapons[m_ActiveWeapon].m_Ammo)
|
2010-05-29 07:25:38 +00:00
|
|
|
WillFire = true;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!WillFire)
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
// check for ammo
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!m_aWeapons[m_ActiveWeapon].m_Ammo)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2009-01-11 13:54:42 +00:00
|
|
|
// 125ms is a magical limit of how fast a human can click
|
2010-08-22 02:23:18 +00:00
|
|
|
m_ReloadTimer = 1 * Server()->TickSpeed();
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_PLAYER_PAIN_LONG);
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-06-03 15:39:42 +00:00
|
|
|
vec2 ProjStartPos = m_Pos+Direction*m_ProximityRadius*0.75f;
|
2010-05-29 07:25:38 +00:00
|
|
|
switch(m_ActiveWeapon)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
case WEAPON_HAMMER:
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// reset objects Hit
|
|
|
|
m_NumObjectsHit = 0;
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_HAMMER_FIRE);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-22 23:40:05 +00:00
|
|
|
if (!g_Config.m_SvHit) break;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CCharacter *aEnts[64];
|
|
|
|
int Hits = 0;
|
2010-08-24 14:32:46 +00:00
|
|
|
int Num = GameServer()->m_World.FindEntities(ProjStartPos, m_ProximityRadius*0.5f, (CEntity**)aEnts,
|
2010-05-29 07:25:38 +00:00
|
|
|
64, NETOBJTYPE_CHARACTER);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for (int i = 0; i < Num; ++i)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CCharacter *Target = aEnts[i];
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 14:53:25 +00:00
|
|
|
//for DDRace mod or any other mod, which needs hammer hits through the wall remove second condition
|
2010-07-29 05:21:18 +00:00
|
|
|
if ((Target == this) /*|| GameServer()->Collision()->IntersectLine(ProjStartPos, Target->m_Pos, NULL, NULL)*/)
|
2008-07-06 11:21:21 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// set his velocity to fast upward (for now)
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateHammerHit(m_Pos);
|
|
|
|
aEnts[i]->TakeDamage(vec2(0.f, -1.f), g_pData->m_Weapons.m_Hammer.m_pBase->m_Damage, m_pPlayer->GetCID(), m_ActiveWeapon);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 Dir;
|
|
|
|
if (length(Target->m_Pos - m_Pos) > 0.0f)
|
|
|
|
Dir = normalize(Target->m_Pos - m_Pos);
|
2008-07-06 11:21:21 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
Dir = vec2(0.f, -1.f);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
Target->m_Core.m_Vel += normalize(Dir + vec2(0.f, -1.1f)) * 10.0f * (m_HammerType + 1);
|
|
|
|
Target->UnFreeze();
|
2010-05-29 07:25:38 +00:00
|
|
|
Hits++;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// if we Hit anything, we have to wait for the reload
|
|
|
|
if(Hits)
|
|
|
|
m_ReloadTimer = Server()->TickSpeed()/3;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WEAPON_GUN:
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CProjectile *Proj = new CProjectile(GameWorld(), WEAPON_GUN,
|
|
|
|
m_pPlayer->GetCID(),
|
|
|
|
ProjStartPos,
|
|
|
|
Direction,
|
|
|
|
(int)(Server()->TickSpeed()*GameServer()->Tuning()->m_GunLifetime),
|
2010-08-24 14:32:46 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
-1,
|
2010-07-29 05:21:18 +00:00
|
|
|
WEAPON_GUN);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// pack the Projectile and send it to the client Directly
|
|
|
|
CNetObj_Projectile p;
|
|
|
|
Proj->FillInfo(&p);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CMsgPacker Msg(NETMSGTYPE_SV_EXTRAPROJECTILE);
|
|
|
|
Msg.AddInt(1);
|
|
|
|
for(unsigned i = 0; i < sizeof(CNetObj_Projectile)/sizeof(int); i++)
|
|
|
|
Msg.AddInt(((int *)&p)[i]);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Server()->SendMsg(&Msg, 0, m_pPlayer->GetCID());
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_GUN_FIRE);
|
2008-07-06 11:21:21 +00:00
|
|
|
} break;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
case WEAPON_SHOTGUN:
|
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
new CLaser(&GameServer()->m_World, m_Pos, Direction, GameServer()->Tuning()->m_LaserReach, m_pPlayer->GetCID(), 1);
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_SHOTGUN_FIRE);
|
|
|
|
/*int ShotSpread = 2;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CMsgPacker Msg(NETMSGTYPE_SV_EXTRAPROJECTILE);
|
|
|
|
Msg.AddInt(ShotSpread*2+1);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = -ShotSpread; i <= ShotSpread; ++i)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float Spreading[] = {-0.185f, -0.070f, 0, 0.070f, 0.185f};
|
|
|
|
float a = GetAngle(Direction);
|
|
|
|
a += Spreading[i+2];
|
|
|
|
float v = 1-(absolute(i)/(float)ShotSpread);
|
|
|
|
float Speed = mix((float)GameServer()->Tuning()->m_ShotgunSpeeddiff, 1.0f, v);
|
|
|
|
CProjectile *Proj = new CProjectile(GameWorld(), WEAPON_SHOTGUN,
|
|
|
|
m_pPlayer->GetCID(),
|
|
|
|
ProjStartPos,
|
|
|
|
vec2(cosf(a), sinf(a))*Speed,
|
2010-07-29 05:21:18 +00:00
|
|
|
(int)(Server()->TickSpeed()*GameServer()->Tuning()->m_Shotm_GunLifetime),
|
2008-07-06 11:21:21 +00:00
|
|
|
1, 0, 0, -1, WEAPON_SHOTGUN);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// pack the Projectile and send it to the client Directly
|
|
|
|
CNetObj_Projectile p;
|
|
|
|
Proj->FillInfo(&p);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for(unsigned i = 0; i < sizeof(CNetObj_Projectile)/sizeof(int); i++)
|
|
|
|
Msg.AddInt(((int *)&p)[i]);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-08-24 14:32:46 +00:00
|
|
|
Server()->SendMsg(&Msg, 0,m_pPlayer->GetCID());
|
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_SHOTGUN_FIRE);*/
|
2008-07-06 11:21:21 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WEAPON_GRENADE:
|
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
CProjectile *Proj = new CProjectile(GameWorld(), WEAPON_GRENADE,
|
|
|
|
m_pPlayer->GetCID(),
|
|
|
|
ProjStartPos,
|
|
|
|
Direction,
|
|
|
|
(int)(Server()->TickSpeed()*GameServer()->Tuning()->m_GrenadeLifetime),
|
2010-08-24 14:32:46 +00:00
|
|
|
0,
|
|
|
|
true,
|
|
|
|
0,
|
2010-07-29 05:21:18 +00:00
|
|
|
SOUND_GRENADE_EXPLODE, WEAPON_GRENADE);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
// pack the Projectile and send it to the client Directly
|
|
|
|
CNetObj_Projectile p;
|
|
|
|
Proj->FillInfo(&p);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
CMsgPacker Msg(NETMSGTYPE_SV_EXTRAPROJECTILE);
|
|
|
|
Msg.AddInt(1);
|
|
|
|
for(unsigned i = 0; i < sizeof(CNetObj_Projectile)/sizeof(int); i++)
|
|
|
|
Msg.AddInt(((int *)&p)[i]);
|
|
|
|
Server()->SendMsg(&Msg, 0, m_pPlayer->GetCID());
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_GRENADE_FIRE);
|
2008-07-06 11:21:21 +00:00
|
|
|
} break;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
case WEAPON_RIFLE:
|
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
new CLaser(GameWorld(), m_Pos, Direction, GameServer()->Tuning()->m_LaserReach, m_pPlayer->GetCID(), 0);
|
|
|
|
//GameServer()->CreateSound(m_Pos, SOUND_RIFLE_FIRE);
|
2008-07-06 11:21:21 +00:00
|
|
|
} break;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-10-08 18:36:30 +00:00
|
|
|
case WEAPON_NINJA:
|
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
// reset Hit objects
|
|
|
|
m_NumObjectsHit = 0;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
m_AttackTick = Server()->Tick();
|
|
|
|
m_Ninja.m_ActivationDir = Direction;
|
|
|
|
//m_Ninja.m_CurrentMoveTime = g_pData->m_Weapons.m_Ninja.m_Movetime * Server()->TickSpeed() / 1000;
|
|
|
|
m_Ninja.m_CurrentMoveTime = 10;
|
|
|
|
//GameServer()->CreateSound(m_Pos, SOUND_NINJA_FIRE);
|
2008-10-08 18:36:30 +00:00
|
|
|
} break;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_AttackTick = Server()->Tick();
|
2010-07-29 05:21:18 +00:00
|
|
|
/*
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_aWeapons[m_ActiveWeapon].m_Ammo > 0) // -1 == unlimited
|
|
|
|
m_aWeapons[m_ActiveWeapon].m_Ammo--;
|
2010-07-29 05:21:18 +00:00
|
|
|
*/
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!m_ReloadTimer)
|
|
|
|
m_ReloadTimer = g_pData->m_Weapons.m_aId[m_ActiveWeapon].m_Firedelay * Server()->TickSpeed() / 1000;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::HandleWeapons()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
//ninja
|
|
|
|
HandleNinja();
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 Direction = normalize(vec2(m_LatestInput.m_TargetX, m_LatestInput.m_TargetY));
|
2008-10-08 18:36:30 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
// check reload timer
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_ReloadTimer)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_ReloadTimer--;
|
|
|
|
return;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// fire Weapon, if wanted
|
|
|
|
FireWeapon();
|
2010-07-29 05:21:18 +00:00
|
|
|
/*
|
2008-07-06 11:21:21 +00:00
|
|
|
// ammo regen
|
2010-05-29 07:25:38 +00:00
|
|
|
int AmmoRegenTime = g_pData->m_Weapons.m_aId[m_ActiveWeapon].m_Ammoregentime;
|
|
|
|
if(AmmoRegenTime)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
// If equipped and not active, regen ammo?
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_ReloadTimer <= 0)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_aWeapons[m_ActiveWeapon].m_AmmoRegenStart < 0)
|
|
|
|
m_aWeapons[m_ActiveWeapon].m_AmmoRegenStart = Server()->Tick();
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if ((Server()->Tick() - m_aWeapons[m_ActiveWeapon].m_AmmoRegenStart) >= AmmoRegenTime * Server()->TickSpeed() / 1000)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
// Add some ammo
|
2010-05-29 07:25:38 +00:00
|
|
|
m_aWeapons[m_ActiveWeapon].m_Ammo = min(m_aWeapons[m_ActiveWeapon].m_Ammo + 1, 10);
|
|
|
|
m_aWeapons[m_ActiveWeapon].m_AmmoRegenStart = -1;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_aWeapons[m_ActiveWeapon].m_AmmoRegenStart = -1;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2010-07-29 05:21:18 +00:00
|
|
|
*/
|
2010-05-29 07:25:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCharacter::GiveWeapon(int Weapon, int Ammo)
|
|
|
|
{
|
|
|
|
if(m_aWeapons[Weapon].m_Ammo < g_pData->m_Weapons.m_aId[Weapon].m_Maxammo || !m_aWeapons[Weapon].m_Got)
|
2010-08-24 14:32:46 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_aWeapons[Weapon].m_Got = true;
|
2010-08-24 14:32:46 +00:00
|
|
|
if(!m_FreezeTime) m_aWeapons[Weapon].m_Ammo = min(g_pData->m_Weapons.m_aId[Weapon].m_Maxammo, Ammo);
|
2010-05-29 07:25:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCharacter::GiveNinja()
|
|
|
|
{
|
2010-08-22 22:04:26 +00:00
|
|
|
if(!m_aWeapons[WEAPON_NINJA].m_Got)
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_PICKUP_NINJA);
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Ninja.m_ActivationTick = Server()->Tick();
|
|
|
|
m_aWeapons[WEAPON_NINJA].m_Got = true;
|
2010-08-24 14:32:46 +00:00
|
|
|
if (!m_FreezeTime) m_aWeapons[WEAPON_NINJA].m_Ammo = -1;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_LastWeapon = m_ActiveWeapon;
|
|
|
|
m_ActiveWeapon = WEAPON_NINJA;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::SetEmote(int Emote, int Tick)
|
|
|
|
{
|
|
|
|
m_EmoteType = Emote;
|
|
|
|
m_EmoteStop = Tick;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCharacter::OnPredictedInput(CNetObj_PlayerInput *pNewInput)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
// check for changes
|
2010-05-29 07:25:38 +00:00
|
|
|
if(mem_comp(&m_Input, pNewInput, sizeof(CNetObj_PlayerInput)) != 0)
|
|
|
|
m_LastAction = Server()->Tick();
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
// copy new input
|
2010-05-29 07:25:38 +00:00
|
|
|
mem_copy(&m_Input, pNewInput, sizeof(m_Input));
|
|
|
|
m_NumInputs++;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
// or are not allowed to aim in the center
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_Input.m_TargetX == 0 && m_Input.m_TargetY == 0)
|
2010-08-24 14:32:46 +00:00
|
|
|
m_Input.m_TargetY = -1;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::OnDirectInput(CNetObj_PlayerInput *pNewInput)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
mem_copy(&m_LatestPrevInput, &m_LatestInput, sizeof(m_LatestInput));
|
|
|
|
mem_copy(&m_LatestInput, pNewInput, sizeof(m_LatestInput));
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_NumInputs > 2 && m_pPlayer->GetTeam() != -1)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
HandleWeaponSwitch();
|
|
|
|
FireWeapon();
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
mem_copy(&m_LatestPrevInput, &m_LatestInput, sizeof(m_LatestInput));
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::Tick()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-08-15 14:42:40 +00:00
|
|
|
int MapIndex = GameServer()->Collision()->GetMapIndex(m_PrevPos, m_Pos);
|
2010-08-29 00:05:45 +00:00
|
|
|
int TileIndex = GameServer()->Collision()->GetCollisionDDRace(MapIndex);
|
|
|
|
int TileFIndex = GameServer()->Collision()->GetFCollisionDDRace(MapIndex);
|
|
|
|
int MapIndexL = GameServer()->Collision()->GetMapIndex(m_PrevPos, vec2(m_Pos.x + m_ProximityRadius/2,m_Pos.y));
|
|
|
|
int MapIndexR = GameServer()->Collision()->GetMapIndex(m_PrevPos, vec2(m_Pos.x - m_ProximityRadius/2,m_Pos.y));
|
|
|
|
int MapIndexT = GameServer()->Collision()->GetMapIndex(m_PrevPos, vec2(m_Pos.x,m_Pos.y + m_ProximityRadius/2+5));
|
|
|
|
int MapIndexB = GameServer()->Collision()->GetMapIndex(m_PrevPos, vec2(m_Pos.x,m_Pos.y - m_ProximityRadius/2-5));
|
|
|
|
int TileIndexL = GameServer()->Collision()->GetCollisionDDRace(MapIndexL);
|
|
|
|
int TileFIndexL = GameServer()->Collision()->GetFCollisionDDRace(MapIndexL);
|
|
|
|
int TileIndexR = GameServer()->Collision()->GetCollisionDDRace(MapIndexR);
|
|
|
|
int TileFIndexR = GameServer()->Collision()->GetFCollisionDDRace(MapIndexR);
|
|
|
|
int TileIndexT = GameServer()->Collision()->GetCollisionDDRace(MapIndexT);
|
|
|
|
int TileFIndexT = GameServer()->Collision()->GetFCollisionDDRace(MapIndexT);
|
|
|
|
int TileIndexB = GameServer()->Collision()->GetCollisionDDRace(MapIndexB);
|
|
|
|
int TileFIndexB = GameServer()->Collision()->GetFCollisionDDRace(MapIndexB);
|
|
|
|
m_CurrentTile = TileIndex;
|
|
|
|
m_CurrentFTile = TileFIndex;
|
2010-08-22 02:23:18 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_pPlayer->m_ForceBalanced)
|
2008-09-07 08:10:56 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
char Buf[128];
|
|
|
|
str_format(Buf, sizeof(Buf), "You were moved to %s due to team balancing", GameServer()->m_pController->GetTeamName(m_pPlayer->GetTeam()));
|
|
|
|
GameServer()->SendBroadcast(Buf, m_pPlayer->GetCID());
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pPlayer->m_ForceBalanced = false;
|
2008-09-07 08:10:56 +00:00
|
|
|
}
|
2010-08-23 21:40:23 +00:00
|
|
|
m_Armor=(m_FreezeTime != -1)?10-(m_FreezeTime/15):0;
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_Input.m_Direction != 0 || m_Input.m_Jump != 0)
|
|
|
|
m_LastMove = Server()->Tick();
|
2010-08-22 02:23:18 +00:00
|
|
|
|
2010-08-23 21:40:23 +00:00
|
|
|
if(m_FreezeTime > 0 || m_FreezeTime == -1)
|
|
|
|
{
|
|
|
|
if (m_FreezeTime % Server()->TickSpeed() == 0 || m_FreezeTime == -1)
|
2010-08-22 02:23:18 +00:00
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->CreateDamageInd(m_Pos, 0, m_FreezeTime / Server()->TickSpeed());
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
if(m_FreezeTime != -1)
|
|
|
|
m_FreezeTime--;
|
|
|
|
else
|
|
|
|
m_Ninja.m_ActivationTick = Server()->Tick();
|
2010-07-29 05:21:18 +00:00
|
|
|
m_Input.m_Direction = 0;
|
|
|
|
m_Input.m_Jump = 0;
|
|
|
|
m_Input.m_Hook = 0;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-22 02:23:18 +00:00
|
|
|
//m_Input.m_Fire = 0;
|
2010-07-29 05:21:18 +00:00
|
|
|
if (m_FreezeTime == 1) {
|
|
|
|
UnFreeze();
|
|
|
|
}
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.m_Input = m_Input;
|
|
|
|
m_Core.Tick(true);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
m_DoSplash = false;
|
|
|
|
if (g_Config.m_SvEndlessDrag)
|
|
|
|
m_Core.m_HookTick = 0;
|
|
|
|
if (m_Super && m_Core.m_Jumped > 1)
|
2010-08-24 14:32:46 +00:00
|
|
|
m_Core.m_Jumped = 1;
|
2010-08-22 23:40:05 +00:00
|
|
|
if (m_Super && g_Config.m_SvEndlessSuperHook)
|
|
|
|
m_Core.m_HookTick = 0;
|
2010-08-29 00:05:45 +00:00
|
|
|
/*dbg_msg("character","TileIndex=%d , TileFIndex=%d",TileIndex,TileFIndex); //REMOVE*/
|
2010-08-24 14:32:46 +00:00
|
|
|
//DDRace
|
2010-07-29 05:21:18 +00:00
|
|
|
char aBuftime[128];
|
|
|
|
float time = (float)(Server()->Tick() - m_StartTime) / ((float)Server()->TickSpeed());
|
2010-08-23 19:37:27 +00:00
|
|
|
CPlayerData *pData = GameServer()->Score()->PlayerData(m_pPlayer->GetCID());
|
|
|
|
|
2010-08-24 14:32:46 +00:00
|
|
|
if(Server()->Tick() - m_RefreshTime >= Server()->TickSpeed())
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
if (m_RaceState == RACE_STARTED) {
|
2010-08-23 19:37:27 +00:00
|
|
|
int IntTime = (int)time;
|
|
|
|
if(m_pPlayer->m_IsUsingRaceClient)
|
|
|
|
{
|
|
|
|
CNetMsg_Sv_RaceTime Msg;
|
|
|
|
Msg.m_Time = IntTime;
|
|
|
|
Msg.m_Check = 0;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
if(m_CpActive != -1 && m_CpTick > Server()->Tick())
|
|
|
|
{
|
|
|
|
if(pData->m_BestTime && pData->m_aBestCpTime[m_CpActive] != 0)
|
|
|
|
{
|
|
|
|
float Diff = (m_CpCurrent[m_CpActive] - pData->m_aBestCpTime[m_CpActive])*100;
|
|
|
|
Msg.m_Check = (int)Diff;
|
|
|
|
}
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
Server()->SendPackMsg(&Msg, MSGFLAG_VITAL, m_pPlayer->GetCID());
|
2010-08-27 07:09:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(m_BroadTime)
|
|
|
|
str_format(aBuftime, sizeof(aBuftime), "%dm %ds", IntTime/60, IntTime%60);
|
|
|
|
else
|
|
|
|
str_format(aBuftime, sizeof(aBuftime), "");
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
if(m_CpActive != -1 && m_CpTick > Server()->Tick())
|
|
|
|
{
|
|
|
|
if(pData->m_BestTime && pData->m_aBestCpTime[m_CpActive] != 0)
|
|
|
|
{
|
|
|
|
char aTmp[128];
|
|
|
|
float Diff = m_CpCurrent[m_CpActive] - pData->m_aBestCpTime[m_CpActive];
|
|
|
|
str_format(aTmp, sizeof(aTmp), "\nCheckpoint | Diff : %+5.2f", Diff);
|
|
|
|
strcat(aBuftime, aTmp);
|
|
|
|
}
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-27 07:09:47 +00:00
|
|
|
if( g_Config.m_SvBroadcast[0] != 0 && m_BroadCast)
|
|
|
|
{
|
2010-08-23 19:37:27 +00:00
|
|
|
char aTmp[128];
|
|
|
|
str_format(aTmp, sizeof(aTmp), "\n%s\n", g_Config.m_SvBroadcast);
|
|
|
|
strcat(aBuftime, aTmp);
|
|
|
|
}
|
|
|
|
GameServer()->SendBroadcast(aBuftime, m_pPlayer->GetCID());
|
|
|
|
}
|
2010-08-27 07:09:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-23 19:37:27 +00:00
|
|
|
if( g_Config.m_SvBroadcast[0] != 0) {
|
|
|
|
char aTmp[128];
|
|
|
|
str_format(aTmp, sizeof(aTmp), "%s\n", g_Config.m_SvBroadcast);
|
|
|
|
strcat(aBuftime, aTmp);
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->SendBroadcast(g_Config.m_SvBroadcast, m_pPlayer->GetCID());
|
2010-08-23 19:37:27 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
m_RefreshTime = Server()->Tick();
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
int cp = GameServer()->Collision()->IsCheckpoint(MapIndex);
|
2010-08-26 18:28:41 +00:00
|
|
|
if(cp != -1 && m_RaceState == RACE_STARTED && cp > m_CpActive)
|
2010-08-23 19:37:27 +00:00
|
|
|
{
|
|
|
|
m_CpActive = cp;
|
|
|
|
m_CpCurrent[cp] = time;
|
|
|
|
m_CpTick = Server()->Tick() + Server()->TickSpeed()*2;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(((TileIndex == TILE_BEGIN) || (TileFIndex == TILE_BEGIN)) && (m_RaceState == RACE_NONE || m_RaceState == RACE_STARTED))
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
m_StartTime = Server()->Tick();
|
|
|
|
m_RefreshTime = Server()->Tick();
|
|
|
|
m_RaceState = RACE_STARTED;
|
|
|
|
}
|
2010-08-26 17:55:04 +00:00
|
|
|
|
2010-08-29 00:05:45 +00:00
|
|
|
if(((TileIndex == TILE_END) || (TileFIndex == TILE_END)) && m_RaceState == RACE_STARTED)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
char aBuf[128];
|
2010-08-26 18:28:41 +00:00
|
|
|
m_CpActive=-2;
|
2010-08-23 19:37:27 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%s finished in: %d minute(s) %5.2f second(s)", Server()->ClientName(m_pPlayer->GetCID()), (int)time/60, time-((int)time/60*60));
|
|
|
|
if(!g_Config.m_SvHideScore)
|
|
|
|
GameServer()->SendChatTarget(m_pPlayer->GetCID(), aBuf);
|
2010-07-29 05:21:18 +00:00
|
|
|
else
|
|
|
|
GameServer()->SendChat(-1, CGameContext::CHAT_ALL, aBuf);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
if(time - pData->m_BestTime < 0)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-23 19:37:27 +00:00
|
|
|
// new record \o/
|
|
|
|
str_format(aBuf, sizeof(aBuf), "New record: %5.2f second(s) better", time - pData->m_BestTime);
|
|
|
|
if(!g_Config.m_SvHideScore)
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->SendChatTarget(m_pPlayer->GetCID(), aBuf);
|
2010-08-23 19:37:27 +00:00
|
|
|
else
|
|
|
|
GameServer()->SendChat(-1, CGameContext::CHAT_ALL, aBuf);
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
if(!pData->m_BestTime || time < pData->m_BestTime)
|
|
|
|
{
|
|
|
|
// update the score
|
|
|
|
pData->Set(time, m_CpCurrent);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
if(str_comp_num(Server()->ClientName(m_pPlayer->GetCID()), "nameless tee", 12) != 0)
|
|
|
|
GameServer()->Score()->SaveScore(m_pPlayer->GetCID(), time, this);
|
|
|
|
}
|
2010-08-26 17:55:04 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
// update server best time
|
2010-08-26 17:55:04 +00:00
|
|
|
if(GameServer()->m_pController->m_CurrentRecord == 0 || time < GameServer()->m_pController->m_CurrentRecord)
|
2010-08-23 19:37:27 +00:00
|
|
|
{
|
|
|
|
// check for nameless
|
2010-08-26 17:55:04 +00:00
|
|
|
if(str_comp_num(Server()->ClientName(m_pPlayer->GetCID()), "nameless tee", 12) != 0) {
|
2010-08-23 19:37:27 +00:00
|
|
|
GameServer()->m_pController->m_CurrentRecord = time;
|
2010-08-26 17:55:04 +00:00
|
|
|
//dbg_msg("character", "Finish");
|
|
|
|
// GetPlayer()->SendServerRecord();
|
|
|
|
}
|
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
m_RaceState = RACE_NONE;
|
2010-08-23 19:37:27 +00:00
|
|
|
// set player score
|
|
|
|
if(!GameServer()->Score()->PlayerData(m_pPlayer->GetCID())->m_CurrentTime || GameServer()->Score()->PlayerData(m_pPlayer->GetCID())->m_CurrentTime > time)
|
|
|
|
{
|
|
|
|
GameServer()->Score()->PlayerData(m_pPlayer->GetCID())->m_CurrentTime = time;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
// send it to all players
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
if(GameServer()->m_apPlayers[i] && GameServer()->m_apPlayers[i]->m_IsUsingRaceClient)
|
|
|
|
{
|
|
|
|
if(g_Config.m_SvHideScore || i == m_pPlayer->GetCID())
|
|
|
|
{
|
|
|
|
CNetMsg_Sv_PlayerTime Msg;
|
2010-08-27 14:28:01 +00:00
|
|
|
char aBuf[16];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%.0f", time*100.0f); // damn ugly but the only way i know to do it
|
|
|
|
int TimeToSend;
|
|
|
|
sscanf(aBuf, "%d", &TimeToSend);
|
|
|
|
Msg.m_Time = TimeToSend;
|
2010-08-23 19:37:27 +00:00
|
|
|
Msg.m_Cid = m_pPlayer->GetCID();
|
|
|
|
Server()->SendPackMsg(&Msg, MSGFLAG_VITAL, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-23 19:37:27 +00:00
|
|
|
int TTime = 0-(int)time;
|
|
|
|
if(m_pPlayer->m_Score < TTime)
|
|
|
|
m_pPlayer->m_Score = TTime;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(((TileIndex == TILE_FREEZE) || (TileFIndex == TILE_FREEZE)) && !m_Super)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
Freeze(Server()->TickSpeed()*3);
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
else if((TileIndex == TILE_UNFREEZE) || (TileFIndex == TILE_UNFREEZE))
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
UnFreeze();
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
|
|
|
|
if(TileIndex == TILE_STOPL || TileIndexL == TILE_STOPL)
|
2010-08-12 14:31:38 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.x > 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileIndex).x < (int)m_Core.m_Pos.x)
|
2010-08-20 20:40:12 +00:00
|
|
|
m_Core.m_Pos.x = m_PrevPos.x;
|
|
|
|
m_Core.m_Vel.x = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileFIndex == TILE_STOPL || TileFIndexL == TILE_STOPL)
|
2010-08-20 20:40:12 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.x > 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileFIndex).x < (int)m_Core.m_Pos.x)
|
2010-08-20 20:40:12 +00:00
|
|
|
m_Core.m_Pos.x = m_PrevPos.x;
|
|
|
|
m_Core.m_Vel.x = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileIndex == TILE_STOPR || TileIndexR == TILE_STOPR)
|
2010-08-20 20:40:12 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.x < 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileIndex).x > (int)m_Core.m_Pos.x)
|
2010-08-12 14:31:38 +00:00
|
|
|
m_Core.m_Pos.x = m_PrevPos.x;
|
|
|
|
m_Core.m_Vel.x = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileFIndex == TILE_STOPR || TileFIndexR == TILE_STOPR)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.x < 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileFIndex).x > (int)m_Core.m_Pos.x)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Pos.x = m_PrevPos.x;
|
|
|
|
m_Core.m_Vel.x = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileIndex == TILE_STOPB || TileIndexB == TILE_STOPB)
|
2010-08-20 20:40:12 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.y < 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileIndex).y > (int)m_Core.m_Pos.y)
|
2010-08-20 20:40:12 +00:00
|
|
|
m_Core.m_Pos.y = m_PrevPos.y;
|
|
|
|
m_Core.m_Vel.y = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileFIndex == TILE_STOPB || TileFIndexB == TILE_STOPB)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.y < 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileFIndex).y > (int)m_Core.m_Pos.y)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Pos.y = m_PrevPos.y;
|
|
|
|
m_Core.m_Vel.y = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileIndex == TILE_STOPT || TileIndexT == TILE_STOPT)
|
2010-08-20 20:40:12 +00:00
|
|
|
{
|
|
|
|
if(m_Core.m_Vel.y > 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileIndex).y < (int)m_Core.m_Pos.y)
|
2010-08-20 20:40:12 +00:00
|
|
|
m_Core.m_Pos.y = m_PrevPos.y;
|
2010-08-23 00:05:29 +00:00
|
|
|
m_Core.m_Jumped = 0;
|
|
|
|
//m_Jumped = 1;
|
2010-08-20 20:40:12 +00:00
|
|
|
m_Core.m_Vel.y = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if(TileFIndex == TILE_STOPT || TileFIndexT == TILE_STOPT)
|
2010-08-12 14:31:38 +00:00
|
|
|
{
|
2010-08-21 22:57:42 +00:00
|
|
|
if(m_Core.m_Vel.y > 0)
|
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if((int)GameServer()->Collision()->GetPos(TileFIndex).y < (int)m_Core.m_Pos.y)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Pos.y = m_PrevPos.y;
|
2010-08-23 00:05:29 +00:00
|
|
|
m_Core.m_Jumped = 0;
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.y = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if (TileIndex == TILE_BOOST_L || TileFIndex == TILE_BOOST_L)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.x-m_Pos.x<0)
|
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x *-0.5;
|
2010-08-29 00:05:45 +00:00
|
|
|
else if(m_LastBooster != TileIndex || m_LastFBooster != TileFIndex)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x*0.5;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if (TileIndex == TILE_BOOST_R || TileFIndex == TILE_BOOST_R)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.x-m_Pos.x>0)
|
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x *-0.5;
|
2010-08-29 00:05:45 +00:00
|
|
|
else if(m_LastBooster != TileIndex || m_LastFBooster != TileFIndex)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x*0.5;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if (TileIndex == TILE_BOOST_D || TileFIndex == TILE_BOOST_D)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.y-m_Pos.y>0)
|
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y *-0.5;
|
2010-08-29 00:05:45 +00:00
|
|
|
else if(m_LastBooster != TileIndex || m_LastFBooster != TileFIndex)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y*0.5;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if (TileIndex == TILE_BOOST_U || TileFIndex == TILE_BOOST_U)
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.y-m_Pos.y<0)
|
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y *-0.5;
|
2010-08-29 00:05:45 +00:00
|
|
|
else if(m_LastBooster != TileIndex || m_LastFBooster != TileFIndex)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y*0.5;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if ((TileIndex == TILE_BOOST_L2 || TileFIndex == TILE_BOOST_L2) && (m_LastBooster != TileIndex || m_LastFBooster != TileFIndex))
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.x-m_Pos.x<0)
|
|
|
|
m_Core.m_Vel.x = m_Core.m_Vel.x *-1.1;
|
|
|
|
else
|
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x*1.1;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if ((TileIndex == TILE_BOOST_R2|| TileFIndex == TILE_BOOST_R2) && (m_LastBooster != TileIndex || m_LastFBooster != TileFIndex))
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
2010-08-29 00:05:45 +00:00
|
|
|
if(m_Core.m_Vel.x < 0)
|
2010-08-21 22:57:42 +00:00
|
|
|
m_Core.m_Vel.x = m_Core.m_Vel.x *-1.1;
|
|
|
|
else
|
|
|
|
m_Core.m_Vel.x += m_Core.m_Vel.x*1.1;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if ((TileIndex == TILE_BOOST_D2 || TileFIndex == TILE_BOOST_D2) && (m_LastBooster != TileIndex || m_LastFBooster != TileFIndex))
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.y-m_Pos.y>0)
|
|
|
|
m_Core.m_Vel.y = m_Core.m_Vel.y *-1.1;
|
|
|
|
else
|
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y*1.1;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
if ((TileIndex == TILE_BOOST_U2 || TileFIndex == TILE_BOOST_U2) && (m_LastBooster != TileIndex || m_LastFBooster != TileFIndex))
|
2010-08-21 22:57:42 +00:00
|
|
|
{
|
|
|
|
if(m_PrevPos.y-m_Pos.y<0)
|
|
|
|
m_Core.m_Vel.y = m_Core.m_Vel.y *-1.1;
|
|
|
|
else
|
|
|
|
m_Core.m_Vel.y += m_Core.m_Vel.y*1.1;
|
|
|
|
}
|
2010-08-29 00:05:45 +00:00
|
|
|
m_LastBooster = TileIndex;
|
|
|
|
m_LastFBooster = TileFIndex;
|
2010-08-24 01:30:22 +00:00
|
|
|
// handle speedup tiles
|
2010-08-20 20:40:12 +00:00
|
|
|
if(GameServer()->Collision()->IsSpeedup((int)m_Core.m_Pos.x, (int)m_Core.m_Pos.y))
|
2010-08-10 04:28:17 +00:00
|
|
|
{
|
|
|
|
vec2 Direction;
|
|
|
|
int Force;
|
|
|
|
GameServer()->Collision()->GetSpeedup((int)m_Core.m_Pos.x, (int)m_Core.m_Pos.y, &Direction, &Force);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-08-10 04:28:17 +00:00
|
|
|
m_Core.m_Vel += Direction*Force;
|
|
|
|
}
|
2010-08-26 17:55:04 +00:00
|
|
|
int z = GameServer()->Collision()->IsTeleport(m_Pos.x, m_Pos.y);
|
|
|
|
|
2010-08-20 20:40:12 +00:00
|
|
|
if(z)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-26 17:55:04 +00:00
|
|
|
dbg_msg("Collision", "This is teleport");
|
2010-08-10 04:28:17 +00:00
|
|
|
m_Core.m_HookedPlayer = -1;
|
|
|
|
m_Core.m_HookState = HOOK_RETRACTED;
|
|
|
|
m_Core.m_TriggeredEvents |= COREEVENT_HOOK_RETRACT;
|
|
|
|
m_Core.m_HookState = HOOK_RETRACTED;
|
|
|
|
m_Core.m_Pos = ((CGameControllerDDRace*)GameServer()->m_pController)->m_pTeleporter[z-1];
|
|
|
|
m_Core.m_HookPos = m_Core.m_Pos;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-10-18 20:37:41 +00:00
|
|
|
// handle death-tiles
|
2010-07-29 05:21:18 +00:00
|
|
|
if((GameServer()->Collision()->GetCollisionAt(m_Pos.x+m_ProximityRadius/3.f, m_Pos.y-m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
2010-06-03 15:39:42 +00:00
|
|
|
GameServer()->Collision()->GetCollisionAt(m_Pos.x+m_ProximityRadius/3.f, m_Pos.y+m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
|
|
|
GameServer()->Collision()->GetCollisionAt(m_Pos.x-m_ProximityRadius/3.f, m_Pos.y-m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
2010-08-21 19:48:47 +00:00
|
|
|
GameServer()->Collision()->GetCollisionAt(m_Pos.x-m_ProximityRadius/3.f, m_Pos.y+m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
|
|
|
GameServer()->Collision()->GetFCollisionAt(m_Pos.x+m_ProximityRadius/3.f, m_Pos.y-m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
|
|
|
GameServer()->Collision()->GetFCollisionAt(m_Pos.x+m_ProximityRadius/3.f, m_Pos.y+m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
|
|
|
GameServer()->Collision()->GetFCollisionAt(m_Pos.x-m_ProximityRadius/3.f, m_Pos.y-m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH ||
|
|
|
|
GameServer()->Collision()->GetFCollisionAt(m_Pos.x-m_ProximityRadius/3.f, m_Pos.y+m_ProximityRadius/3.f)&CCollision::COLFLAG_DEATH)&&
|
|
|
|
!m_Super)
|
2009-01-12 21:41:16 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Die(m_pPlayer->GetCID(), WEAPON_WORLD);
|
2009-01-12 21:41:16 +00:00
|
|
|
}
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-06-11 09:39:32 +00:00
|
|
|
// kill player when leaving gamelayer
|
|
|
|
if((int)m_Pos.x/32 < -200 || (int)m_Pos.x/32 > GameServer()->Collision()->GetWidth()+200 ||
|
|
|
|
(int)m_Pos.y/32 < -200 || (int)m_Pos.y/32 > GameServer()->Collision()->GetHeight()+200)
|
|
|
|
{
|
|
|
|
Die(m_pPlayer->GetCID(), WEAPON_WORLD);
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// handle Weapons
|
|
|
|
HandleWeapons();
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_PlayerState = m_Input.m_PlayerState;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// Previnput
|
2010-05-29 07:25:38 +00:00
|
|
|
m_PrevInput = m_Input;
|
2010-07-29 05:21:18 +00:00
|
|
|
if (!m_Doored)
|
|
|
|
{
|
|
|
|
m_OlderPos = m_OldPos;
|
2010-08-24 14:32:46 +00:00
|
|
|
m_OldPos = m_Core.m_Pos;
|
|
|
|
}
|
2010-08-10 04:28:17 +00:00
|
|
|
m_PrevPos = m_Core.m_Pos;
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-24 14:32:46 +00:00
|
|
|
float point_distance(vec2 point, vec2 line_start, vec2 line_end)
|
|
|
|
{
|
|
|
|
float res = -1.0f;
|
|
|
|
vec2 dir = normalize(line_end-line_start);
|
|
|
|
for(int i = 0; i < length(line_end-line_start); i++)
|
|
|
|
{
|
|
|
|
vec2 step = dir;
|
|
|
|
step.x *= i;
|
|
|
|
step.y *= i;
|
|
|
|
float dist = distance(step+line_start, point);
|
|
|
|
if(res < 0 || dist < res)
|
|
|
|
res = dist;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCharacter::ResetPos()
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-24 14:32:46 +00:00
|
|
|
m_Core.m_Pos = m_OlderPos;
|
|
|
|
//core.pos-=core.vel;
|
|
|
|
m_Core.m_Vel = vec2(0,0);
|
|
|
|
if(m_Core.m_Jumped >= 2)
|
|
|
|
m_Core.m_Jumped = 1;
|
|
|
|
}
|
2010-07-29 05:21:18 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::TickDefered()
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2008-09-23 07:43:41 +00:00
|
|
|
// advance the dummy
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CWorldCore TempWorld;
|
|
|
|
m_ReckoningCore.Init(&TempWorld, GameServer()->Collision());
|
|
|
|
m_ReckoningCore.Tick(false);
|
|
|
|
m_ReckoningCore.Move();
|
|
|
|
m_ReckoningCore.Quantize();
|
2008-09-23 07:43:41 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
//lastsentcore
|
|
|
|
vec2 StartPos = m_Core.m_Pos;
|
|
|
|
vec2 StartVel = m_Core.m_Vel;
|
|
|
|
bool StuckBefore = GameServer()->Collision()->TestBox(m_Core.m_Pos, vec2(28.0f, 28.0f));
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.Move();
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_Doored)
|
|
|
|
{
|
|
|
|
ResetPos();
|
|
|
|
m_Doored = false;
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
bool StuckAfterMove = GameServer()->Collision()->TestBox(m_Core.m_Pos, vec2(28.0f, 28.0f));
|
|
|
|
m_Core.Quantize();
|
|
|
|
bool StuckAfterQuant = GameServer()->Collision()->TestBox(m_Core.m_Pos, vec2(28.0f, 28.0f));
|
|
|
|
m_Pos = m_Core.m_Pos;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!StuckBefore && (StuckAfterMove || StuckAfterQuant))
|
|
|
|
{
|
2010-06-09 16:24:38 +00:00
|
|
|
// Hackish solution to get rid of strict-aliasing warning
|
|
|
|
union
|
|
|
|
{
|
|
|
|
float f;
|
|
|
|
unsigned u;
|
|
|
|
}StartPosX, StartPosY, StartVelX, StartVelY;
|
|
|
|
|
|
|
|
StartPosX.f = StartPos.x;
|
|
|
|
StartPosY.f = StartPos.y;
|
|
|
|
StartVelX.f = StartVel.x;
|
|
|
|
StartVelY.f = StartVel.y;
|
|
|
|
|
2010-08-17 22:06:00 +00:00
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "STUCK!!! %d %d %d %f %f %f %f %x %x %x %x",
|
2010-05-29 07:25:38 +00:00
|
|
|
StuckBefore,
|
|
|
|
StuckAfterMove,
|
|
|
|
StuckAfterQuant,
|
|
|
|
StartPos.x, StartPos.y,
|
|
|
|
StartVel.x, StartVel.y,
|
2010-06-09 16:24:38 +00:00
|
|
|
StartPosX.u, StartPosY.u,
|
|
|
|
StartVelX.u, StartVelY.u);
|
2010-08-17 22:06:00 +00:00
|
|
|
GameServer()->Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "game", aBuf);
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int Events = m_Core.m_TriggeredEvents;
|
|
|
|
int Mask = CmaskAllExceptOne(m_pPlayer->GetCID());
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Events&COREEVENT_GROUND_JUMP) GameServer()->CreateSound(m_Pos, SOUND_PLAYER_JUMP, Mask);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Events&COREEVENT_HOOK_ATTACH_PLAYER) GameServer()->CreateSound(m_Pos, SOUND_HOOK_ATTACH_PLAYER, CmaskAll());
|
|
|
|
if(Events&COREEVENT_HOOK_ATTACH_GROUND) GameServer()->CreateSound(m_Pos, SOUND_HOOK_ATTACH_GROUND, Mask);
|
|
|
|
if(Events&COREEVENT_HOOK_HIT_NOHOOK) GameServer()->CreateSound(m_Pos, SOUND_HOOK_NOATTACH, Mask);
|
|
|
|
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_pPlayer->GetTeam() == -1)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Pos.x = m_Input.m_TargetX;
|
|
|
|
m_Pos.y = m_Input.m_TargetY;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// update the m_SendCore if needed
|
2008-09-23 07:43:41 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CNetObj_Character Predicted;
|
|
|
|
CNetObj_Character Current;
|
|
|
|
mem_zero(&Predicted, sizeof(Predicted));
|
|
|
|
mem_zero(&Current, sizeof(Current));
|
|
|
|
m_ReckoningCore.Write(&Predicted);
|
|
|
|
m_Core.Write(&Current);
|
2008-11-16 15:10:57 +00:00
|
|
|
|
2008-09-25 14:04:02 +00:00
|
|
|
// only allow dead reackoning for a top of 3 seconds
|
2010-08-21 02:20:01 +00:00
|
|
|
if(m_Core.m_pReset || m_ReckoningTick+Server()->TickSpeed()*3 < Server()->Tick() || mem_comp(&Predicted, &Current, sizeof(CNetObj_Character)) != 0)
|
2008-09-23 07:43:41 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_ReckoningTick = Server()->Tick();
|
|
|
|
m_SendCore = m_Core;
|
|
|
|
m_ReckoningCore = m_Core;
|
2010-08-21 02:20:01 +00:00
|
|
|
m_Core.m_pReset = false;
|
2008-09-23 07:43:41 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-08-22 02:23:18 +00:00
|
|
|
bool CCharacter::Freeze(int Time)
|
2010-08-24 14:32:46 +00:00
|
|
|
{
|
2010-08-23 21:40:23 +00:00
|
|
|
if ((Time <= 1 || m_Super || m_FreezeTime == -1) && Time != -1)
|
2010-08-24 14:32:46 +00:00
|
|
|
return false;
|
2010-07-29 05:21:18 +00:00
|
|
|
if (m_FreezeTick < Server()->Tick() - Server()->TickSpeed())
|
|
|
|
{
|
2010-08-24 14:32:46 +00:00
|
|
|
for(int i=0;i<NUM_WEAPONS;i++)
|
|
|
|
if(m_aWeapons[i].m_Got)
|
|
|
|
{
|
|
|
|
m_aWeapons[i].m_Ammo = 0;
|
|
|
|
}
|
2010-08-22 02:23:18 +00:00
|
|
|
m_Armor=0;
|
|
|
|
m_FreezeTime=Time;
|
2010-08-24 14:32:46 +00:00
|
|
|
m_FreezeTick=Server()->Tick();
|
2010-08-22 02:23:18 +00:00
|
|
|
return true;
|
2010-08-24 14:32:46 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCharacter::Freeze()
|
|
|
|
{
|
2010-08-22 02:23:18 +00:00
|
|
|
int Time = Server()->TickSpeed()*3;
|
2010-08-23 21:40:23 +00:00
|
|
|
if (Time <= 1 || m_Super || m_FreezeTime == -1)
|
2010-08-24 14:32:46 +00:00
|
|
|
return false;
|
2010-08-22 02:23:18 +00:00
|
|
|
if (m_FreezeTick < Server()->Tick() - Server()->TickSpeed())
|
|
|
|
{
|
2010-08-24 14:32:46 +00:00
|
|
|
for(int i=0;i<NUM_WEAPONS;i++)
|
|
|
|
if(m_aWeapons[i].m_Got)
|
|
|
|
{
|
|
|
|
m_aWeapons[i].m_Ammo = 0;
|
|
|
|
}
|
2010-08-22 02:23:18 +00:00
|
|
|
m_Armor=0;
|
|
|
|
m_Ninja.m_ActivationTick = Server()->Tick();
|
|
|
|
m_FreezeTime=Time;
|
2010-08-24 14:32:46 +00:00
|
|
|
m_FreezeTick=Server()->Tick();
|
2010-08-22 02:23:18 +00:00
|
|
|
return true;
|
2010-08-24 14:32:46 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCharacter::UnFreeze()
|
|
|
|
{
|
2010-08-22 02:23:18 +00:00
|
|
|
if (m_FreezeTime>0)
|
|
|
|
{
|
|
|
|
m_Armor=10;
|
2010-08-24 14:32:46 +00:00
|
|
|
for(int i=0;i<NUM_WEAPONS;i++)
|
|
|
|
if(m_aWeapons[i].m_Got)
|
|
|
|
{
|
|
|
|
m_aWeapons[i].m_Ammo = -1;
|
|
|
|
}
|
2010-08-24 15:13:26 +00:00
|
|
|
if(!m_aWeapons[m_ActiveWeapon].m_Got) m_ActiveWeapon=WEAPON_GUN;
|
2010-08-22 02:23:18 +00:00
|
|
|
m_FreezeTime=0;
|
2010-08-26 18:14:14 +00:00
|
|
|
m_FreezeTick=0;
|
2010-08-24 14:32:46 +00:00
|
|
|
return true;
|
2010-08-22 02:23:18 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCharacter::GiveAllWeapons()
|
|
|
|
{
|
|
|
|
for(int i=1;i<NUM_WEAPONS-1;i++)
|
|
|
|
{
|
|
|
|
m_aWeapons[i].m_Got = true;
|
|
|
|
if(!m_FreezeTime) m_aWeapons[i].m_Ammo = -1;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2010-07-29 05:21:18 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool CCharacter::IncreaseHealth(int Amount)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_Health >= 10)
|
2008-07-06 11:21:21 +00:00
|
|
|
return false;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Health = clamp(m_Health+Amount, 0, 10);
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool CCharacter::IncreaseArmor(int Amount)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_Armor >= 10)
|
2008-07-06 11:21:21 +00:00
|
|
|
return false;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Armor = clamp(m_Armor+Amount, 0, 10);
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::Die(int Killer, int Weapon)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int ModeSpecial = GameServer()->m_pController->OnCharacterDeath(this, GameServer()->m_apPlayers[Killer], Weapon);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-08-17 22:06:00 +00:00
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "kill killer='%d:%s' victim='%d:%s' weapon=%d special=%d",
|
2010-05-29 07:25:38 +00:00
|
|
|
Killer, Server()->ClientName(Killer),
|
|
|
|
m_pPlayer->GetCID(), Server()->ClientName(m_pPlayer->GetCID()), Weapon, ModeSpecial);
|
2010-08-17 22:06:00 +00:00
|
|
|
GameServer()->Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "game", aBuf);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// send the kill message
|
2010-05-29 07:25:38 +00:00
|
|
|
CNetMsg_Sv_KillMsg Msg;
|
|
|
|
Msg.m_Killer = Killer;
|
|
|
|
Msg.m_Victim = m_pPlayer->GetCID();
|
|
|
|
Msg.m_Weapon = Weapon;
|
|
|
|
Msg.m_ModeSpecial = ModeSpecial;
|
|
|
|
Server()->SendPackMsg(&Msg, MSGFLAG_VITAL, -1);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// a nice sound
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_PLAYER_DIE);
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-11-16 14:28:44 +00:00
|
|
|
// this is for auto respawn after 3 secs
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pPlayer->m_DieTick = Server()->Tick();
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Alive = false;
|
|
|
|
GameServer()->m_World.RemoveEntity(this);
|
|
|
|
GameServer()->m_World.m_Core.m_apCharacters[m_pPlayer->GetCID()] = 0;
|
|
|
|
GameServer()->CreateDeath(m_Pos, m_pPlayer->GetCID());
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2008-11-16 14:28:44 +00:00
|
|
|
// we got to wait 0.5 secs before respawning
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pPlayer->m_RespawnTick = Server()->Tick()+Server()->TickSpeed()/2;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool CCharacter::TakeDamage(vec2 Force, int Dmg, int From, int Weapon)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Core.m_Vel += Force;
|
2010-07-29 05:21:18 +00:00
|
|
|
/*
|
2010-05-29 07:25:38 +00:00
|
|
|
if(GameServer()->m_pController->IsFriendlyFire(m_pPlayer->GetCID(), From) && !g_Config.m_SvTeamdamage)
|
2008-07-06 11:21:21 +00:00
|
|
|
return false;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// m_pPlayer only inflicts half damage on self
|
|
|
|
if(From == m_pPlayer->GetCID())
|
|
|
|
Dmg = max(1, Dmg/2);
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_DamageTaken++;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// create healthmod indicator
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Server()->Tick() < m_DamageTakenTick+25)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
|
|
|
// make sure that the damage indicators doesn't group together
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateDamageInd(m_Pos, m_DamageTaken*0.25f, Dmg);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_DamageTaken = 0;
|
|
|
|
GameServer()->CreateDamageInd(m_Pos, 0, Dmg);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Dmg)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_Armor)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Dmg > 1)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Health--;
|
|
|
|
Dmg--;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Dmg > m_Armor)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Dmg -= m_Armor;
|
|
|
|
m_Armor = 0;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Armor -= Dmg;
|
|
|
|
Dmg = 0;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Health -= Dmg;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_DamageTakenTick = Server()->Tick();
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// do damage Hit sound
|
|
|
|
if(From >= 0 && From != m_pPlayer->GetCID() && GameServer()->m_apPlayers[From])
|
|
|
|
GameServer()->CreateSound(GameServer()->m_apPlayers[From]->m_ViewPos, SOUND_HIT, CmaskOne(From));
|
2008-07-06 11:21:21 +00:00
|
|
|
|
|
|
|
// check for death
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_Health <= 0)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Die(From, Weapon);
|
2010-08-22 02:23:18 +00:00
|
|
|
|
2010-08-24 14:32:46 +00:00
|
|
|
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if (Dmg > 2)
|
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_PLAYER_PAIN_LONG);
|
2008-07-06 11:21:21 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->CreateSound(m_Pos, SOUND_PLAYER_PAIN_SHORT);
|
2010-08-22 02:23:18 +00:00
|
|
|
*/
|
|
|
|
// set attacker's face to happy (taunt!)
|
2010-08-22 19:32:41 +00:00
|
|
|
/*if(g_Config.m_SvEmotionalTees)
|
2010-08-22 02:23:18 +00:00
|
|
|
{
|
|
|
|
if (From >= 0 && From != m_pPlayer->GetCID() && GameServer()->m_apPlayers[From])
|
|
|
|
{
|
|
|
|
CCharacter *pChr = GameServer()->m_apPlayers[From]->GetCharacter();
|
|
|
|
if (pChr)
|
|
|
|
{
|
|
|
|
pChr->m_EmoteType = EMOTE_HAPPY;
|
|
|
|
pChr->m_EmoteStop = Server()->Tick() + Server()->TickSpeed();
|
|
|
|
}
|
2010-08-22 19:32:41 +00:00
|
|
|
}*///Removed you can set your emote via /emoteEMOTENAME
|
2010-08-22 02:23:18 +00:00
|
|
|
//set the attacked face to pain
|
2010-05-29 07:25:38 +00:00
|
|
|
m_EmoteType = EMOTE_PAIN;
|
|
|
|
m_EmoteStop = Server()->Tick() + 500 * Server()->TickSpeed() / 1000;
|
2010-08-22 02:23:18 +00:00
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCharacter::Snap(int SnappingClient)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(NetworkClipped(SnappingClient))
|
2008-07-06 11:21:21 +00:00
|
|
|
return;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CNetObj_Character *Character = static_cast<CNetObj_Character *>(Server()->SnapNewItem(NETOBJTYPE_CHARACTER, m_pPlayer->GetCID(), sizeof(CNetObj_Character)));
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// write down the m_Core
|
2010-08-08 16:56:54 +00:00
|
|
|
if(!m_ReckoningTick || GameServer()->m_World.m_Paused)
|
2008-11-16 15:10:57 +00:00
|
|
|
{
|
|
|
|
// no dead reckoning when paused because the client doesn't know
|
|
|
|
// how far to perform the reckoning
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_Tick = 0;
|
|
|
|
m_Core.Write(Character);
|
2008-11-16 15:10:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_Tick = m_ReckoningTick;
|
|
|
|
m_SendCore.Write(Character);
|
2008-11-16 15:10:57 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_DoSplash) {
|
|
|
|
Character->m_Jumped = 3;
|
|
|
|
}
|
2008-09-23 07:43:41 +00:00
|
|
|
// set emote
|
2010-05-29 07:25:38 +00:00
|
|
|
if (m_EmoteStop < Server()->Tick())
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_EmoteType = EMOTE_NORMAL;
|
|
|
|
m_EmoteStop = -1;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_Emote = m_EmoteType;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_AmmoCount = 0;
|
|
|
|
Character->m_Health = 0;
|
|
|
|
Character->m_Armor = 0;
|
2010-08-24 14:32:46 +00:00
|
|
|
|
|
|
|
if (m_FreezeTime > 0 || m_FreezeTime == -1)
|
|
|
|
{
|
|
|
|
Character->m_Emote = EMOTE_PAIN;
|
|
|
|
Character->m_Weapon = WEAPON_NINJA;
|
|
|
|
Character->m_AmmoCount = 0;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-24 14:32:46 +00:00
|
|
|
else
|
2010-07-29 05:21:18 +00:00
|
|
|
Character->m_Weapon = m_ActiveWeapon;
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_AttackTick = m_AttackTick;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_Direction = m_Input.m_Direction;
|
2008-07-06 11:21:21 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(m_pPlayer->GetCID() == SnappingClient)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_Health = m_Health;
|
|
|
|
Character->m_Armor = m_Armor;
|
|
|
|
if(m_aWeapons[m_ActiveWeapon].m_Ammo > 0)
|
2010-08-24 14:32:46 +00:00
|
|
|
Character->m_AmmoCount = (!m_FreezeTime)?m_aWeapons[m_ActiveWeapon].m_Ammo:0;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if (Character->m_Emote == EMOTE_NORMAL)
|
2008-07-06 11:21:21 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(250 - ((Server()->Tick() - m_LastAction)%(250)) < 5)
|
|
|
|
Character->m_Emote = EMOTE_BLINK;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Character->m_PlayerState = m_PlayerState;
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|