ddnet/src/game/server/entities/plasma.cpp

127 lines
3.2 KiB
C++
Raw Normal View History

/* (c) Shereef Marzouk. See "licence DDRace.txt" and the readme.txt in the root of the distribution for more information. */
#include "plasma.h"
#include <engine/config.h>
#include <engine/server.h>
#include <game/generated/protocol.h>
#include <game/server/gamecontext.h>
2011-01-29 00:59:50 +00:00
#include <game/server/gamemodes/DDRace.h>
#include <game/server/player.h>
#include <game/server/teams.h>
#include "character.h"
2020-08-09 13:19:13 +00:00
const float PLASMA_ACCEL = 1.1f;
CPlasma::CPlasma(CGameWorld *pGameWorld, vec2 Pos, vec2 Dir, bool Freeze,
bool Explosive, int ForClientID) :
CEntity(pGameWorld, CGameWorld::ENTTYPE_LASER)
{
m_Pos = Pos;
m_Core = Dir;
m_Freeze = Freeze;
m_Explosive = Explosive;
m_ForClientID = ForClientID;
m_EvalTick = Server()->Tick();
2019-07-08 21:08:42 +00:00
m_LifeTime = Server()->TickSpeed() * 1.5f;
GameWorld()->InsertEntity(this);
}
void CPlasma::Tick()
{
// A plasma ball has only a limited lifetime
if(m_LifeTime == 0)
{
Reset();
return;
}
CCharacter *pTarget = GameServer()->GetPlayerChar(m_ForClientID);
// Without a target, a plasma ball has no reason to live
if(!pTarget)
{
// This can allow you to make plasma balls disappear by disconnecting, but this is not a serious cheat
Reset();
return;
}
m_LifeTime--;
Move();
HitCharacter(pTarget);
// Check if the plasma ball is stopped by a solid block or a laser stopper
int HasIntersection = GameServer()->Collision()->IntersectNoLaser(m_Pos, m_Pos + m_Core, 0, 0);
if(HasIntersection)
{
if(m_Explosive)
{
// Even in the case of an explosion due to a collision with obstacles, only one player is affected
GameServer()->CreateExplosion(
m_Pos, m_ForClientID, WEAPON_GRENADE, true, pTarget->Team(), pTarget->TeamMask());
}
Reset();
}
}
void CPlasma::Move()
{
m_Pos += m_Core;
m_Core *= PLASMA_ACCEL;
}
2011-04-20 14:05:05 +00:00
bool CPlasma::HitCharacter(CCharacter *pTarget)
{
vec2 IntersectPos;
CCharacter *HitPlayer = GameServer()->m_World.IntersectCharacter(
m_Pos, m_Pos + m_Core, 0.0f, IntersectPos, 0, m_ForClientID);
if(!HitPlayer)
{
return false;
}
// Super player should not be able to stop the plasma balls
if(HitPlayer->Team() == TEAM_SUPER)
{
return false;
}
m_Freeze ? HitPlayer->Freeze() : HitPlayer->UnFreeze();
if(m_Explosive)
{
// Plasma Turrets are very precise weapons only one tee gets speed from it,
// other tees near the explosion remain unaffected
GameServer()->CreateExplosion(
m_Pos, m_ForClientID, WEAPON_GRENADE, true, pTarget->Team(), pTarget->TeamMask());
}
m_MarkedForDestroy = true;
return true;
}
void CPlasma::Reset()
{
m_MarkedForDestroy = true;
}
void CPlasma::Snap(int SnappingClient)
{
// Only players who can see the targeted player can see the plasma ball
CCharacter *pTarget = GameServer()->GetPlayerChar(m_ForClientID);
if(!pTarget->CanSnapCharacter(SnappingClient))
{
2011-04-20 14:05:05 +00:00
return;
}
// Only players with the plasma ball in their field of view or who want to see everything will receive the snap
if(NetworkClipped(SnappingClient))
2014-08-09 17:53:38 +00:00
return;
CNetObj_Laser *pObj = static_cast<CNetObj_Laser *>(Server()->SnapNewItem(
NETOBJTYPE_LASER, GetID(), sizeof(CNetObj_Laser)));
2014-01-13 16:00:49 +00:00
if(!pObj)
return;
2017-03-21 10:24:44 +00:00
pObj->m_X = (int)m_Pos.x;
pObj->m_Y = (int)m_Pos.y;
pObj->m_FromX = (int)m_Pos.x;
pObj->m_FromY = (int)m_Pos.y;
pObj->m_StartTick = m_EvalTick;
}