2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2008-08-14 18:42:47 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "entity.h"
|
|
|
|
#include "gamecontext.h"
|
2008-08-14 18:42:47 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
// Entity
|
|
|
|
//////////////////////////////////////////////////
|
2010-05-29 07:25:38 +00:00
|
|
|
CEntity::CEntity(CGameWorld *pGameWorld, int ObjType)
|
2008-08-14 18:42:47 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pGameWorld = pGameWorld;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-01-19 17:27:50 +00:00
|
|
|
m_ObjType = ObjType;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Pos = vec2(0,0);
|
|
|
|
m_ProximityRadius = 0;
|
2008-08-14 18:42:47 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
m_MarkedForDestroy = false;
|
2011-02-12 10:40:36 +00:00
|
|
|
m_ID = Server()->SnapNewID();
|
2008-08-14 18:42:47 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pPrevTypeEntity = 0;
|
|
|
|
m_pNextTypeEntity = 0;
|
2008-08-14 18:42:47 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CEntity::~CEntity()
|
2008-08-14 18:42:47 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
GameWorld()->RemoveEntity(this);
|
2011-02-12 10:40:36 +00:00
|
|
|
Server()->SnapFreeID(m_ID);
|
2008-08-14 18:42:47 +00:00
|
|
|
}
|
2008-10-06 18:05:01 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int CEntity::NetworkClipped(int SnappingClient)
|
2008-10-06 18:05:01 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
return NetworkClipped(SnappingClient, m_Pos);
|
2008-10-06 18:05:01 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int CEntity::NetworkClipped(int SnappingClient, vec2 CheckPos)
|
2008-10-06 18:05:01 +00:00
|
|
|
{
|
2013-12-24 22:54:53 +00:00
|
|
|
if(SnappingClient == -1 || GameServer()->m_apPlayers[SnappingClient]->GetTeam() == TEAM_SPECTATORS || GameServer()->m_apPlayers[SnappingClient]->m_Paused)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
float dx = GameServer()->m_apPlayers[SnappingClient]->m_ViewPos.x-CheckPos.x;
|
|
|
|
float dy = GameServer()->m_apPlayers[SnappingClient]->m_ViewPos.y-CheckPos.y;
|
|
|
|
|
|
|
|
if(absolute(dx) > 1000.0f || absolute(dy) > 800.0f)
|
|
|
|
return 1;
|
|
|
|
|
2013-12-24 22:55:42 +00:00
|
|
|
if(distance(GameServer()->m_apPlayers[SnappingClient]->m_ViewPos, CheckPos) > 2000.0f)
|
2013-12-24 22:54:53 +00:00
|
|
|
return 1;
|
2008-10-06 18:05:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-01-08 10:34:19 +00:00
|
|
|
|
|
|
|
bool CEntity::GameLayerClipped(vec2 CheckPos)
|
|
|
|
{
|
|
|
|
return round(CheckPos.x)/32 < -200 || round(CheckPos.x)/32 > GameServer()->Collision()->GetWidth()+200 ||
|
|
|
|
round(CheckPos.y)/32 < -200 || round(CheckPos.y)/32 > GameServer()->Collision()->GetHeight()+200 ? true : false;
|
|
|
|
}
|