2010-08-11 10:33:37 +00:00
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/server/gamecontext.h>
|
|
|
|
#include <engine/shared/config.h>
|
2010-11-13 13:22:19 +00:00
|
|
|
#include <game/server/gamemodes/DDRace.h>
|
2010-08-11 10:33:37 +00:00
|
|
|
|
|
|
|
#include "door.h"
|
|
|
|
|
2010-11-13 13:22:19 +00:00
|
|
|
CDoor::CDoor(CGameWorld *pGameWorld, vec2 Pos, float Rotation, int Length, int Number)
|
2011-01-20 20:01:21 +00:00
|
|
|
: CEntity(pGameWorld, CGameWorld::ENTTYPE_LASER)
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
m_Number = Number;
|
2010-08-11 10:33:37 +00:00
|
|
|
m_Pos = Pos;
|
2010-11-13 13:22:19 +00:00
|
|
|
|
2010-09-25 16:39:52 +00:00
|
|
|
m_Length = Length;
|
2010-08-11 10:33:37 +00:00
|
|
|
|
2010-09-25 16:39:52 +00:00
|
|
|
m_Direction = vec2(sin(Rotation), cos(Rotation));
|
|
|
|
vec2 To = Pos + normalize(m_Direction) * m_Length;
|
2010-08-11 10:33:37 +00:00
|
|
|
|
2010-08-11 18:29:08 +00:00
|
|
|
GameServer()->Collision()->IntersectNoLaser(Pos, To, &this->m_To, 0);
|
2010-09-25 16:39:52 +00:00
|
|
|
ResetCollision();
|
2010-08-11 10:33:37 +00:00
|
|
|
GameWorld()->InsertEntity(this);
|
|
|
|
}
|
|
|
|
|
2010-09-01 08:52:59 +00:00
|
|
|
void CDoor::Open(int Tick, bool ActivatedTeam[])
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
m_EvalTick=Server()->Tick();
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
|
|
|
|
2010-09-25 16:39:52 +00:00
|
|
|
void CDoor::ResetCollision()
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
for(int i=0;i<m_Length-1;i++)
|
2010-09-25 16:39:52 +00:00
|
|
|
{
|
2011-01-21 13:18:50 +00:00
|
|
|
vec2 CurrentPos(m_Pos.x + (m_Direction.x * i), m_Pos.y + (m_Direction.y * i));
|
|
|
|
if(GameServer()->Collision()->CheckPoint(CurrentPos) || GameServer()->Collision()->GetTile(m_Pos.x, m_Pos.y) || GameServer()->Collision()->GetFTile(m_Pos.x, m_Pos.y))
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
GameServer()->Collision()->SetDCollisionAt(m_Pos.x + (m_Direction.x * i), m_Pos.y + (m_Direction.y * i), TILE_STOPA, 0/*Flags*/, m_Number);
|
2010-09-25 16:39:52 +00:00
|
|
|
}
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
|
|
|
|
2010-09-25 16:39:52 +00:00
|
|
|
void CDoor::Open(int Team)
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2010-09-25 16:39:52 +00:00
|
|
|
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
2010-09-10 06:55:04 +00:00
|
|
|
|
2010-09-25 16:39:52 +00:00
|
|
|
void CDoor::Close(int Team)
|
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
|
2010-09-10 06:55:04 +00:00
|
|
|
}
|
|
|
|
|
2010-08-11 10:33:37 +00:00
|
|
|
void CDoor::Reset()
|
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CDoor::Tick()
|
|
|
|
{
|
2010-11-13 13:22:19 +00:00
|
|
|
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CDoor::Snap(int SnappingClient)
|
|
|
|
{
|
|
|
|
if(NetworkClipped(SnappingClient, m_Pos) && NetworkClipped(SnappingClient, m_To))
|
|
|
|
return;
|
|
|
|
|
|
|
|
CNetObj_Laser *pObj = static_cast<CNetObj_Laser *>(Server()->SnapNewItem(NETOBJTYPE_LASER, m_Id, sizeof(CNetObj_Laser)));
|
|
|
|
pObj->m_X = (int)m_Pos.x;
|
|
|
|
pObj->m_Y = (int)m_Pos.y;
|
|
|
|
|
2010-09-08 16:22:11 +00:00
|
|
|
CCharacter * Char = GameServer()->GetPlayerChar(SnappingClient);
|
2010-11-14 10:01:42 +00:00
|
|
|
int Tick = (Server()->Tick()%Server()->TickSpeed())%11;
|
2010-09-08 16:22:11 +00:00
|
|
|
if(Char == 0) return;
|
2011-01-29 00:59:50 +00:00
|
|
|
if(Char->IsAlive() && !GameServer()->Collision()->m_pSwitchers[m_Number].m_Status[Char->Team()] && (!Tick)) return;
|
2010-09-08 16:22:11 +00:00
|
|
|
|
2010-11-13 13:22:19 +00:00
|
|
|
if(Char->Team() == TEAM_SUPER)
|
|
|
|
{
|
|
|
|
pObj->m_FromX = (int)m_Pos.x;
|
|
|
|
pObj->m_FromY = (int)m_Pos.y;
|
|
|
|
}
|
|
|
|
else if (GameServer()->Collision()->m_pSwitchers[m_Number].m_Status[Char->Team()])
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
|
|
|
pObj->m_FromX = (int)m_To.x;
|
|
|
|
pObj->m_FromY = (int)m_To.y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pObj->m_FromX = (int)m_Pos.x;
|
|
|
|
pObj->m_FromY = (int)m_Pos.y;
|
|
|
|
}
|
|
|
|
pObj->m_StartTick = Server()->Tick();
|
|
|
|
}
|