ddnet/src/game/server/entity.cpp

51 lines
1.1 KiB
C++
Raw Normal View History

2010-05-29 07:25:38 +00:00
#include "entity.h"
#include "gamecontext.h"
//////////////////////////////////////////////////
// Entity
//////////////////////////////////////////////////
2010-05-29 07:25:38 +00:00
CEntity::CEntity(CGameWorld *pGameWorld, int ObjType)
{
2010-05-29 07:25:38 +00:00
m_pGameWorld = pGameWorld;
m_Objtype = ObjType;
m_Pos = vec2(0,0);
m_ProximityRadius = 0;
2010-05-29 07:25:38 +00:00
m_MarkedForDestroy = false;
m_Id = Server()->SnapNewID();
2010-05-29 07:25:38 +00:00
m_pNextEntity = 0;
m_pPrevEntity = 0;
m_pPrevTypeEntity = 0;
m_pNextTypeEntity = 0;
}
2010-05-29 07:25:38 +00:00
CEntity::~CEntity()
{
2010-05-29 07:25:38 +00:00
GameWorld()->RemoveEntity(this);
Server()->SnapFreeID(m_Id);
}
2010-05-29 07:25:38 +00:00
int CEntity::NetworkClipped(int SnappingClient)
{
2010-05-29 07:25:38 +00:00
return NetworkClipped(SnappingClient, m_Pos);
}
2010-05-29 07:25:38 +00:00
int CEntity::NetworkClipped(int SnappingClient, vec2 CheckPos)
{
2010-05-29 07:25:38 +00:00
if(SnappingClient == -1)
return 0;
2008-10-25 11:32:29 +00:00
2010-05-29 07:25:38 +00:00
float dx = GameServer()->m_apPlayers[SnappingClient]->m_ViewPos.x-CheckPos.x;
float dy = GameServer()->m_apPlayers[SnappingClient]->m_ViewPos.y-CheckPos.y;
2008-10-25 11:32:29 +00:00
2010-05-29 07:25:38 +00:00
if(absolute(dx) > 1000.0f || absolute(dy) > 800.0f)
2008-10-25 11:32:29 +00:00
return 1;
2010-05-29 07:25:38 +00:00
if(distance(GameServer()->m_apPlayers[SnappingClient]->m_ViewPos, CheckPos) > 1100.0f)
return 1;
return 0;
}