2010-07-29 05:21:18 +00:00
|
|
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
|
|
|
#include <engine/config.h>
|
|
|
|
#include <engine/server.h>
|
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/server/gamecontext.h>
|
2010-08-21 17:32:42 +00:00
|
|
|
#include "dragger.h"
|
2010-07-29 05:21:18 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
2010-08-21 17:32:42 +00:00
|
|
|
// CDragger
|
2010-07-29 05:21:18 +00:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
const int LENGTH=700;
|
|
|
|
|
2010-09-22 10:43:59 +00:00
|
|
|
CDragger::CDragger(CGameWorld *pGameWorld, vec2 Pos, float Strength, bool NW, int CatchedTeam)
|
|
|
|
: CEntity(pGameWorld, NETOBJTYPE_LASER)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-30 23:45:42 +00:00
|
|
|
m_Pos = Pos;
|
|
|
|
m_Strength = Strength;
|
|
|
|
m_EvalTick = Server()->Tick();
|
|
|
|
m_NW = NW;
|
2010-09-22 10:43:59 +00:00
|
|
|
m_CatchedTeam = CatchedTeam;
|
2010-07-29 05:21:18 +00:00
|
|
|
GameWorld()->InsertEntity(this);
|
|
|
|
}
|
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
void CDragger::Move()
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
if (m_Target)
|
2010-07-29 05:21:18 +00:00
|
|
|
return;
|
2010-08-30 23:45:42 +00:00
|
|
|
CCharacter *Ents[16];
|
|
|
|
int Num = -1;
|
|
|
|
Num = GameServer()->m_World.FindEntities(m_Pos,LENGTH, (CEntity**)Ents, 16, NETOBJTYPE_CHARACTER);
|
2010-09-22 10:43:59 +00:00
|
|
|
int Id=-1;
|
|
|
|
int MinLen=0;
|
2010-08-30 23:45:42 +00:00
|
|
|
for (int i = 0; i < Num; i++)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
m_Target = Ents[i];
|
|
|
|
if(m_Target->Team() != m_CatchedTeam) continue;
|
|
|
|
int Res=0;
|
|
|
|
if (!m_NW)
|
|
|
|
Res = GameServer()->Collision()->IntersectNoLaser(m_Pos, m_Target->m_Pos, 0, 0);
|
|
|
|
else
|
|
|
|
Res = GameServer()->Collision()->IntersectNoLaserNW(m_Pos, m_Target->m_Pos, 0, 0);
|
2010-07-29 05:21:18 +00:00
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
if (Res==0)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
int Len=length(Ents[i]->m_Pos - m_Pos);
|
|
|
|
if (MinLen==0 || MinLen>Len)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
MinLen=Len;
|
|
|
|
Id=i;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-22 10:43:59 +00:00
|
|
|
if (Id!=-1)
|
|
|
|
{
|
|
|
|
m_Target = Ents[Id];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Target=0;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
void CDragger::Drag()
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
if (m_Target)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
|
|
|
|
int Res = 0;
|
|
|
|
if (!m_NW)
|
|
|
|
Res = GameServer()->Collision()->IntersectNoLaser(m_Pos, m_Target->m_Pos, 0, 0);
|
|
|
|
else
|
|
|
|
Res = GameServer()->Collision()->IntersectNoLaserNW(m_Pos, m_Target->m_Pos, 0, 0);
|
|
|
|
if (Res || length(m_Pos-m_Target->m_Pos)>700)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
m_Target=0;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-09-22 10:43:59 +00:00
|
|
|
else
|
|
|
|
if (length(m_Pos-m_Target->m_Pos)>28)
|
|
|
|
if(!((m_Target->m_CurrentTile >= TILE_STOPL && m_Target->m_CurrentTile <= TILE_STOPT) || (m_Target->m_CurrentFTile >= TILE_STOPL && m_Target->m_CurrentFTile <= TILE_STOPT)))
|
|
|
|
m_Target->m_Core.m_Vel+=normalize(m_Pos-m_Target->m_Pos)*m_Strength;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-21 17:32:42 +00:00
|
|
|
void CDragger::Reset()
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
|
|
|
}
|
|
|
|
|
2010-08-21 17:32:42 +00:00
|
|
|
void CDragger::Tick()
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
if (Server()->Tick()%int(Server()->TickSpeed()*0.15f)==0)
|
|
|
|
{
|
2010-08-30 23:45:42 +00:00
|
|
|
m_EvalTick=Server()->Tick();
|
|
|
|
int Index = GameServer()->Collision()->IsCp(m_Pos.x, m_Pos.y);
|
|
|
|
if (Index)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-30 23:45:42 +00:00
|
|
|
m_Core=GameServer()->Collision()->CpSpeed(Index);
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-30 23:45:42 +00:00
|
|
|
m_Pos+=m_Core;
|
|
|
|
Move();
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-08-30 23:45:42 +00:00
|
|
|
Drag();
|
2010-07-29 05:21:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
void CDragger::Snap(int SnappingClient)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
if (m_Target)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-09-22 10:43:59 +00:00
|
|
|
if(NetworkClipped(SnappingClient, m_Pos) && NetworkClipped(SnappingClient,m_Target->m_Pos))
|
|
|
|
return;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
else
|
2010-08-30 23:45:42 +00:00
|
|
|
if(NetworkClipped(SnappingClient,m_Pos))
|
2010-07-29 05:21:18 +00:00
|
|
|
return;
|
|
|
|
|
2010-09-08 16:22:11 +00:00
|
|
|
CCharacter * Char = GameServer()->GetPlayerChar(SnappingClient);
|
2010-09-22 10:43:59 +00:00
|
|
|
if(Char && m_Target
|
|
|
|
&& !Char->GetPlayer()->m_ShowOthers
|
|
|
|
&& Char->Team() != m_Target->Team()) return;
|
2010-09-08 16:22:11 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
CNetObj_Laser *obj = static_cast<CNetObj_Laser *>(Server()->SnapNewItem(NETOBJTYPE_LASER, m_Id, sizeof(CNetObj_Laser)));
|
|
|
|
|
|
|
|
obj->m_X = (int)m_Pos.x;
|
|
|
|
obj->m_Y = (int)m_Pos.y;
|
2010-08-30 23:45:42 +00:00
|
|
|
if (m_Target)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2010-08-30 23:45:42 +00:00
|
|
|
obj->m_FromX = (int)m_Target->m_Pos.x;
|
|
|
|
obj->m_FromY = (int)m_Target->m_Pos.y;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
obj->m_FromX = (int)m_Pos.x;
|
|
|
|
obj->m_FromY = (int)m_Pos.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
int StartTick = m_EvalTick;
|
|
|
|
if (StartTick < Server()->Tick() - 4)
|
|
|
|
StartTick = Server()->Tick() - 4;
|
|
|
|
else if (StartTick>Server()->Tick())
|
|
|
|
StartTick = Server()->Tick();
|
|
|
|
obj->m_StartTick = StartTick;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2010-09-22 10:43:59 +00:00
|
|
|
|
|
|
|
CDraggerTeam::CDraggerTeam(CGameWorld *pGameWorld, vec2 Pos, float Strength, bool NW) {
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; ++i) {
|
|
|
|
m_Draggers[i] = new CDragger(pGameWorld, Pos, Strength, NW, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CDraggerTeam::~CDraggerTeam() {
|
2010-09-22 10:49:19 +00:00
|
|
|
//for(int i = 0; i < MAX_CLIENTS; ++i) {
|
|
|
|
// delete m_Draggers[i];
|
|
|
|
//}
|
2010-09-22 10:43:59 +00:00
|
|
|
}
|
|
|
|
//? ??? ???
|
|
|
|
//? ????
|