2011-12-25 13:33:05 +00:00
|
|
|
/* (c) Shereef Marzouk. See "licence DDRace.txt" and the readme.txt in the root of the distribution for more information. */
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <engine/shared/config.h>
|
2010-08-11 10:33:37 +00:00
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/server/gamecontext.h>
|
2010-11-13 13:22:19 +00:00
|
|
|
#include <game/server/gamemodes/DDRace.h>
|
2021-01-09 14:37:02 +00:00
|
|
|
#include <game/server/player.h>
|
2021-09-19 18:48:50 +00:00
|
|
|
#include <game/version.h>
|
2010-08-11 10:33:37 +00:00
|
|
|
|
2021-01-09 14:18:52 +00:00
|
|
|
#include "character.h"
|
2010-08-11 10:33:37 +00:00
|
|
|
#include "door.h"
|
|
|
|
|
2011-12-25 13:51:04 +00:00
|
|
|
CDoor::CDoor(CGameWorld *pGameWorld, vec2 Pos, float Rotation, int Length,
|
2020-09-26 19:41:58 +00:00
|
|
|
int Number) :
|
|
|
|
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-09-25 16:39:52 +00:00
|
|
|
m_Length = Length;
|
|
|
|
m_Direction = vec2(sin(Rotation), cos(Rotation));
|
|
|
|
vec2 To = Pos + normalize(m_Direction) * m_Length;
|
2011-12-25 13:51:04 +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-25 16:39:52 +00:00
|
|
|
void CDoor::ResetCollision()
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < m_Length - 1; i++)
|
2010-09-25 16:39:52 +00:00
|
|
|
{
|
2011-12-25 13:51:04 +00:00
|
|
|
vec2 CurrentPos(m_Pos.x + (m_Direction.x * i),
|
2020-09-26 19:41:58 +00:00
|
|
|
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))
|
2011-01-21 13:18:50 +00:00
|
|
|
break;
|
|
|
|
else
|
2011-12-25 13:51:04 +00:00
|
|
|
GameServer()->Collision()->SetDCollisionAt(
|
2020-09-26 19:41:58 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void CDoor::Snap(int SnappingClient)
|
|
|
|
{
|
2021-10-20 23:02:44 +00:00
|
|
|
if(NetworkClipped(SnappingClient, m_Pos) && NetworkClipped(SnappingClient, m_To))
|
|
|
|
return;
|
|
|
|
|
2011-12-25 13:51:04 +00:00
|
|
|
CNetObj_Laser *pObj = static_cast<CNetObj_Laser *>(Server()->SnapNewItem(
|
2021-01-09 20:40:17 +00:00
|
|
|
NETOBJTYPE_LASER, GetID(), sizeof(CNetObj_Laser)));
|
2014-01-13 16:00:49 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!pObj)
|
2014-01-13 16:00:49 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-21 10:24:44 +00:00
|
|
|
pObj->m_X = (int)m_Pos.x;
|
|
|
|
pObj->m_Y = (int)m_Pos.y;
|
2010-08-11 10:33:37 +00:00
|
|
|
|
2021-09-19 18:48:50 +00:00
|
|
|
int SnappingClientVersion = SnappingClient >= 0 ? GameServer()->GetClientVersion(SnappingClient) : CLIENT_VERSIONNR;
|
2014-01-13 16:00:49 +00:00
|
|
|
|
2021-11-06 11:13:42 +00:00
|
|
|
CNetObj_EntityEx *pEntData = 0;
|
2021-09-19 18:48:50 +00:00
|
|
|
if(SnappingClientVersion >= VERSION_DDNET_SWITCH)
|
2021-11-06 11:13:42 +00:00
|
|
|
pEntData = static_cast<CNetObj_EntityEx *>(Server()->SnapNewItem(NETOBJTYPE_ENTITYEX, GetID(), sizeof(CNetObj_EntityEx)));
|
|
|
|
|
|
|
|
if(pEntData)
|
2010-11-13 13:22:19 +00:00
|
|
|
{
|
2021-11-06 11:13:42 +00:00
|
|
|
pEntData->m_SwitchNumber = m_Number;
|
|
|
|
pEntData->m_Layer = m_Layer;
|
|
|
|
pEntData->m_EntityClass = ENTITYCLASS_DOOR;
|
|
|
|
|
2021-09-19 18:48:50 +00:00
|
|
|
pObj->m_FromX = (int)m_To.x;
|
|
|
|
pObj->m_FromY = (int)m_To.y;
|
|
|
|
pObj->m_StartTick = 0;
|
2010-11-13 13:22:19 +00:00
|
|
|
}
|
2021-10-14 20:59:39 +00:00
|
|
|
else
|
2010-08-11 10:33:37 +00:00
|
|
|
{
|
2021-10-14 20:59:39 +00:00
|
|
|
CCharacter *Char = GameServer()->GetPlayerChar(SnappingClient);
|
|
|
|
|
|
|
|
if(SnappingClient > -1 && (GameServer()->m_apPlayers[SnappingClient]->GetTeam() == -1 || GameServer()->m_apPlayers[SnappingClient]->IsPaused()) && GameServer()->m_apPlayers[SnappingClient]->m_SpectatorID != SPEC_FREEVIEW)
|
|
|
|
Char = GameServer()->GetPlayerChar(GameServer()->m_apPlayers[SnappingClient]->m_SpectatorID);
|
|
|
|
|
|
|
|
if(Char && Char->Team() != TEAM_SUPER && Char->IsAlive() && GameServer()->Collision()->m_NumSwitchers > 0 && GameServer()->Collision()->m_pSwitchers[m_Number].m_Status[Char->Team()])
|
2021-05-17 09:41:15 +00:00
|
|
|
{
|
2021-10-14 20:59:39 +00:00
|
|
|
pObj->m_FromX = (int)m_To.x;
|
|
|
|
pObj->m_FromY = (int)m_To.y;
|
2021-05-17 09:41:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-10-14 20:59:39 +00:00
|
|
|
pObj->m_FromX = (int)m_Pos.x;
|
|
|
|
pObj->m_FromY = (int)m_Pos.y;
|
2021-05-17 09:41:15 +00:00
|
|
|
}
|
2021-10-14 20:59:39 +00:00
|
|
|
pObj->m_StartTick = Server()->Tick();
|
2010-08-11 10:33:37 +00:00
|
|
|
}
|
|
|
|
}
|