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. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/server/gamecontext.h>
|
2013-07-18 22:27:08 +00:00
|
|
|
#include <game/server/gamemodes/DDRace.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "projectile.h"
|
2008-08-14 18:25:44 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <engine/shared/config.h>
|
2010-09-08 16:22:11 +00:00
|
|
|
#include <game/server/teams.h>
|
2008-08-14 18:25:44 +00:00
|
|
|
|
2010-08-30 23:45:42 +00:00
|
|
|
CProjectile::CProjectile
|
|
|
|
(
|
2010-08-23 21:40:23 +00:00
|
|
|
CGameWorld *pGameWorld,
|
|
|
|
int Type,
|
|
|
|
int Owner,
|
|
|
|
vec2 Pos,
|
|
|
|
vec2 Dir,
|
|
|
|
int Span,
|
|
|
|
bool Freeze,
|
|
|
|
bool Explosive,
|
|
|
|
float Force,
|
|
|
|
int SoundImpact,
|
2010-11-13 13:22:19 +00:00
|
|
|
int Weapon,
|
|
|
|
int Layer,
|
|
|
|
int Number
|
2010-08-30 23:45:42 +00:00
|
|
|
)
|
2011-01-19 17:27:50 +00:00
|
|
|
: CEntity(pGameWorld, CGameWorld::ENTTYPE_PROJECTILE)
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Type = Type;
|
|
|
|
m_Pos = Pos;
|
|
|
|
m_Direction = Dir;
|
2018-03-24 13:01:01 +00:00
|
|
|
m_InitialLifeSpan = Span;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_LifeSpan = Span;
|
|
|
|
m_Owner = Owner;
|
|
|
|
m_Force = Force;
|
2014-04-02 17:55:42 +00:00
|
|
|
//m_Damage = Damage;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_SoundImpact = SoundImpact;
|
|
|
|
m_Weapon = Weapon;
|
|
|
|
m_StartTick = Server()->Tick();
|
|
|
|
m_Explosive = Explosive;
|
2011-04-11 22:27:52 +00:00
|
|
|
|
2011-04-09 06:41:31 +00:00
|
|
|
m_Layer = Layer;
|
|
|
|
m_Number = Number;
|
|
|
|
m_Freeze = Freeze;
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2014-03-15 16:48:25 +00:00
|
|
|
m_TuneZone = GameServer()->Collision()->IsTune(GameServer()->Collision()->GetMapIndex(m_Pos));
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
GameWorld()->InsertEntity(this);
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CProjectile::Reset()
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_LifeSpan > -2)
|
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 CProjectile::GetPos(float Time)
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float Curvature = 0;
|
|
|
|
float Speed = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
switch(m_Type)
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
case WEAPON_GRENADE:
|
2014-03-12 23:54:44 +00:00
|
|
|
if (!m_TuneZone)
|
|
|
|
{
|
|
|
|
Curvature = GameServer()->Tuning()->m_GrenadeCurvature;
|
|
|
|
Speed = GameServer()->Tuning()->m_GrenadeSpeed;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-13 14:49:58 +00:00
|
|
|
Curvature = GameServer()->TuningList()[m_TuneZone].m_GrenadeCurvature;
|
|
|
|
Speed = GameServer()->TuningList()[m_TuneZone].m_GrenadeSpeed;
|
2014-03-12 23:54:44 +00:00
|
|
|
}
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
break;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
case WEAPON_SHOTGUN:
|
2014-03-12 23:54:44 +00:00
|
|
|
if (!m_TuneZone)
|
|
|
|
{
|
|
|
|
Curvature = GameServer()->Tuning()->m_ShotgunCurvature;
|
|
|
|
Speed = GameServer()->Tuning()->m_ShotgunSpeed;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-13 14:49:58 +00:00
|
|
|
Curvature = GameServer()->TuningList()[m_TuneZone].m_ShotgunCurvature;
|
|
|
|
Speed = GameServer()->TuningList()[m_TuneZone].m_ShotgunSpeed;
|
2014-03-12 23:54:44 +00:00
|
|
|
}
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
break;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
case WEAPON_GUN:
|
2014-03-12 23:54:44 +00:00
|
|
|
if (!m_TuneZone)
|
|
|
|
{
|
|
|
|
Curvature = GameServer()->Tuning()->m_GunCurvature;
|
|
|
|
Speed = GameServer()->Tuning()->m_GunSpeed;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-13 14:49:58 +00:00
|
|
|
Curvature = GameServer()->TuningList()[m_TuneZone].m_GunCurvature;
|
|
|
|
Speed = GameServer()->TuningList()[m_TuneZone].m_GunSpeed;
|
2014-03-12 23:54:44 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
break;
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
return CalcPos(m_Pos, m_Direction, Curvature, Speed, Time);
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CProjectile::Tick()
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float Pt = (Server()->Tick()-m_StartTick-1)/(float)Server()->TickSpeed();
|
|
|
|
float Ct = (Server()->Tick()-m_StartTick)/(float)Server()->TickSpeed();
|
|
|
|
vec2 PrevPos = GetPos(Pt);
|
|
|
|
vec2 CurPos = GetPos(Ct);
|
2010-07-29 05:21:18 +00:00
|
|
|
vec2 ColPos;
|
|
|
|
vec2 NewPos;
|
2015-11-08 09:20:44 +00:00
|
|
|
int Collide = GameServer()->Collision()->IntersectLine(PrevPos, CurPos, &ColPos, &NewPos);
|
2011-07-21 01:13:59 +00:00
|
|
|
CCharacter *pOwnerChar = 0;
|
2008-08-14 18:25:44 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_Owner >= 0)
|
2011-07-21 01:13:59 +00:00
|
|
|
pOwnerChar = GameServer()->GetPlayerChar(m_Owner);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2018-07-17 17:25:38 +00:00
|
|
|
CCharacter *pTargetChr = 0;
|
2018-07-14 23:04:26 +00:00
|
|
|
|
2018-07-15 22:53:36 +00:00
|
|
|
if(pOwnerChar ? !(pOwnerChar->m_Hit&CCharacter::DISABLE_HIT_GRENADE) : g_Config.m_SvHit)
|
2018-07-14 23:04:26 +00:00
|
|
|
pTargetChr = GameServer()->m_World.IntersectCharacter(PrevPos, ColPos, m_Freeze ? 1.0f : 6.0f, ColPos, pOwnerChar, m_Owner);
|
2008-08-14 18:25:44 +00:00
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
if(m_LifeSpan > -1)
|
|
|
|
m_LifeSpan--;
|
2011-04-13 23:27:49 +00:00
|
|
|
|
2013-12-31 05:13:57 +00:00
|
|
|
int64_t TeamMask = -1LL;
|
2017-03-21 10:24:44 +00:00
|
|
|
bool IsWeaponCollide = false;
|
2010-10-02 01:25:42 +00:00
|
|
|
if
|
|
|
|
(
|
2011-07-21 01:13:59 +00:00
|
|
|
pOwnerChar &&
|
|
|
|
pTargetChr &&
|
|
|
|
pOwnerChar->IsAlive() &&
|
|
|
|
pTargetChr->IsAlive() &&
|
|
|
|
!pTargetChr->CanCollide(m_Owner)
|
2010-10-02 01:25:42 +00:00
|
|
|
)
|
|
|
|
{
|
2017-03-21 10:24:44 +00:00
|
|
|
IsWeaponCollide = true;
|
2010-09-22 19:01:09 +00:00
|
|
|
}
|
2011-07-21 01:13:59 +00:00
|
|
|
if (pOwnerChar && pOwnerChar->IsAlive())
|
2010-10-02 01:25:42 +00:00
|
|
|
{
|
2014-06-15 18:51:30 +00:00
|
|
|
TeamMask = pOwnerChar->Teams()->TeamMask(pOwnerChar->Team(), -1, m_Owner);
|
2010-10-02 01:25:42 +00:00
|
|
|
}
|
2014-04-05 14:17:05 +00:00
|
|
|
else if (m_Owner >= 0)
|
2014-03-29 22:15:45 +00:00
|
|
|
{
|
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
2018-01-22 13:15:53 +00:00
|
|
|
return;
|
2014-03-29 22:15:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 10:24:44 +00:00
|
|
|
if( ((pTargetChr && (pOwnerChar ? !(pOwnerChar->m_Hit&CCharacter::DISABLE_HIT_GRENADE) : g_Config.m_SvHit || m_Owner == -1 || pTargetChr == pOwnerChar)) || Collide || GameLayerClipped(CurPos)) && !IsWeaponCollide)
|
2010-08-31 12:29:03 +00:00
|
|
|
{
|
2014-08-25 10:18:38 +00:00
|
|
|
if(m_Explosive/*??*/ && (!pTargetChr || (pTargetChr && (!m_Freeze || (m_Weapon == WEAPON_SHOTGUN && Collide)))))
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2018-03-24 13:01:01 +00:00
|
|
|
int Number = 1;
|
|
|
|
if(GameServer()->EmulateBug(BUG_GRENADE_DOUBLEEXPLOSION) && m_LifeSpan == -1 && m_InitialLifeSpan == 0)
|
|
|
|
{
|
|
|
|
Number = 2;
|
|
|
|
}
|
|
|
|
for(int i = 0; i < Number; i++)
|
|
|
|
{
|
|
|
|
GameServer()->CreateExplosion(ColPos, m_Owner, m_Weapon, m_Owner == -1, (!pTargetChr ? -1 : pTargetChr->Team()),
|
|
|
|
(m_Owner != -1)? TeamMask : -1LL);
|
|
|
|
GameServer()->CreateSound(ColPos, m_SoundImpact,
|
|
|
|
(m_Owner != -1)? TeamMask : -1LL);
|
|
|
|
}
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2011-07-21 01:13:59 +00:00
|
|
|
else if(pTargetChr && m_Freeze && ((m_Layer == LAYER_SWITCH && GameServer()->Collision()->m_pSwitchers[m_Number].m_Status[pTargetChr->Team()]) || m_Layer != LAYER_SWITCH))
|
|
|
|
pTargetChr->Freeze();
|
2018-02-14 15:27:26 +00:00
|
|
|
|
2018-07-14 23:04:26 +00:00
|
|
|
if (pOwnerChar && ColPos && !GameLayerClipped(ColPos) &&
|
|
|
|
((m_Type == WEAPON_GRENADE && pOwnerChar->m_HasTeleGrenade) || (m_Type == WEAPON_GUN && pOwnerChar->m_HasTeleGun)))
|
2018-02-14 15:27:26 +00:00
|
|
|
{
|
2018-07-15 22:43:54 +00:00
|
|
|
int MapIndex = GameServer()->Collision()->GetPureMapIndex(pTargetChr ? pTargetChr->m_Pos : ColPos);
|
2018-07-14 23:04:26 +00:00
|
|
|
int TileFIndex = GameServer()->Collision()->GetFTileIndex(MapIndex);
|
2018-10-26 14:43:02 +00:00
|
|
|
bool IsSwitchTeleGun = GameServer()->Collision()->IsSwitch(MapIndex) == TILE_ALLOW_TELE_GUN;
|
2018-11-02 23:02:20 +00:00
|
|
|
bool IsBlueSwitchTeleGun = GameServer()->Collision()->IsSwitch(MapIndex) == TILE_ALLOW_BLUE_TELE_GUN;
|
2018-02-14 15:27:26 +00:00
|
|
|
|
2018-11-02 23:02:20 +00:00
|
|
|
if(IsSwitchTeleGun || IsBlueSwitchTeleGun) {
|
2018-10-26 15:05:21 +00:00
|
|
|
// Delay specifies which weapon the tile should work for.
|
|
|
|
// Delay = 0 means all.
|
|
|
|
int delay = GameServer()->Collision()->GetSwitchDelay(MapIndex);
|
|
|
|
|
|
|
|
if(delay == 1 && m_Type != WEAPON_GUN)
|
2018-11-02 23:02:20 +00:00
|
|
|
IsSwitchTeleGun = IsBlueSwitchTeleGun = false;
|
2018-10-26 15:05:21 +00:00
|
|
|
if(delay == 2 && m_Type != WEAPON_GRENADE)
|
2018-11-02 23:02:20 +00:00
|
|
|
IsSwitchTeleGun = IsBlueSwitchTeleGun = false;
|
2018-10-26 15:05:21 +00:00
|
|
|
if(delay == 3 && m_Type != WEAPON_RIFLE)
|
2018-11-02 23:02:20 +00:00
|
|
|
IsSwitchTeleGun = IsBlueSwitchTeleGun = false;
|
2018-10-26 15:05:21 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 14:50:56 +00:00
|
|
|
if (TileFIndex == TILE_ALLOW_TELE_GUN
|
2018-11-02 23:02:20 +00:00
|
|
|
|| TileFIndex == TILE_ALLOW_BLUE_TELE_GUN
|
2018-10-26 14:43:02 +00:00
|
|
|
|| IsSwitchTeleGun
|
2018-11-02 23:02:20 +00:00
|
|
|
|| IsBlueSwitchTeleGun
|
2018-10-26 14:43:02 +00:00
|
|
|
|| pTargetChr)
|
2018-02-14 15:27:26 +00:00
|
|
|
{
|
2018-07-14 23:04:26 +00:00
|
|
|
bool Found;
|
|
|
|
vec2 PossiblePos;
|
2018-02-14 15:27:26 +00:00
|
|
|
|
2018-07-14 23:04:26 +00:00
|
|
|
if (!Collide)
|
|
|
|
Found = GetNearestAirPosPlayer(pTargetChr->m_Pos, &PossiblePos);
|
|
|
|
else
|
|
|
|
Found = GetNearestAirPos(NewPos, CurPos, &PossiblePos);
|
2018-02-14 15:27:26 +00:00
|
|
|
|
2018-07-14 23:04:26 +00:00
|
|
|
if (Found && PossiblePos)
|
2018-02-14 15:27:26 +00:00
|
|
|
{
|
2018-07-15 09:58:12 +00:00
|
|
|
pOwnerChar->m_TeleGunPos = PossiblePos;
|
|
|
|
pOwnerChar->m_TeleGunTeleport = true;
|
2018-11-13 12:05:15 +00:00
|
|
|
pOwnerChar->m_IsBlueTeleGunTeleport = TileFIndex == TILE_ALLOW_BLUE_TELE_GUN || IsBlueSwitchTeleGun;
|
2018-02-14 15:27:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-06 22:06:43 +00:00
|
|
|
if(Collide && m_Bouncing != 0)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
m_StartTick = Server()->Tick();
|
2010-10-11 18:19:13 +00:00
|
|
|
m_Pos = NewPos+(-(m_Direction*4));
|
2010-07-29 05:21:18 +00:00
|
|
|
if (m_Bouncing == 1)
|
2010-09-06 22:06:43 +00:00
|
|
|
m_Direction.x = -m_Direction.x;
|
|
|
|
else if(m_Bouncing == 2)
|
2015-04-18 20:29:28 +00:00
|
|
|
m_Direction.y = -m_Direction.y;
|
2013-01-06 04:37:19 +00:00
|
|
|
if (fabs(m_Direction.x) < 1e-6)
|
|
|
|
m_Direction.x = 0;
|
|
|
|
if (fabs(m_Direction.y) < 1e-6)
|
|
|
|
m_Direction.y = 0;
|
2010-07-29 05:21:18 +00:00
|
|
|
m_Pos += m_Direction;
|
|
|
|
}
|
|
|
|
else if (m_Weapon == WEAPON_GUN)
|
|
|
|
{
|
2014-04-02 17:55:42 +00:00
|
|
|
GameServer()->CreateDamageInd(CurPos, -atan2(m_Direction.x, m_Direction.y), 10, (m_Owner != -1)? TeamMask : -1LL);
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
2018-01-22 13:15:53 +00:00
|
|
|
return;
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
|
|
|
else
|
2018-03-24 13:01:01 +00:00
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
if (!m_Freeze)
|
2018-01-22 13:15:53 +00:00
|
|
|
{
|
2010-07-29 05:21:18 +00:00
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
2018-01-22 13:15:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-03-24 13:01:01 +00:00
|
|
|
}
|
2010-07-29 05:21:18 +00:00
|
|
|
}
|
2011-04-11 22:27:52 +00:00
|
|
|
if(m_LifeSpan == -1)
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
2014-05-18 14:19:05 +00:00
|
|
|
if(m_Explosive)
|
|
|
|
{
|
|
|
|
if(m_Owner >= 0)
|
|
|
|
pOwnerChar = GameServer()->GetPlayerChar(m_Owner);
|
|
|
|
|
|
|
|
int64_t TeamMask = -1LL;
|
|
|
|
if (pOwnerChar && pOwnerChar->IsAlive())
|
|
|
|
{
|
|
|
|
TeamMask = pOwnerChar->Teams()->TeamMask(pOwnerChar->Team(), -1, m_Owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
GameServer()->CreateExplosion(ColPos, m_Owner, m_Weapon, m_Owner == -1, (!pOwnerChar ? -1 : pOwnerChar->Team()),
|
|
|
|
(m_Owner != -1)? TeamMask : -1LL);
|
|
|
|
GameServer()->CreateSound(ColPos, m_SoundImpact,
|
|
|
|
(m_Owner != -1)? TeamMask : -1LL);
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
GameServer()->m_World.DestroyEntity(this);
|
2018-01-22 13:15:53 +00:00
|
|
|
return;
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
2013-07-18 22:27:08 +00:00
|
|
|
|
|
|
|
int x = GameServer()->Collision()->GetIndex(PrevPos, CurPos);
|
2013-08-13 02:59:25 +00:00
|
|
|
int z;
|
|
|
|
if (g_Config.m_SvOldTeleportWeapons)
|
|
|
|
z = GameServer()->Collision()->IsTeleport(x);
|
|
|
|
else
|
|
|
|
z = GameServer()->Collision()->IsTeleportWeapon(x);
|
|
|
|
if (z && ((CGameControllerDDRace*)GameServer()->m_pController)->m_TeleOuts[z-1].size())
|
2013-07-18 22:27:08 +00:00
|
|
|
{
|
|
|
|
int Num = ((CGameControllerDDRace*)GameServer()->m_pController)->m_TeleOuts[z-1].size();
|
|
|
|
m_Pos = ((CGameControllerDDRace*)GameServer()->m_pController)->m_TeleOuts[z-1][(!Num)?Num:rand() % Num];
|
|
|
|
m_StartTick = Server()->Tick();
|
|
|
|
}
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
|
|
|
|
2012-01-09 23:49:31 +00:00
|
|
|
void CProjectile::TickPaused()
|
|
|
|
{
|
|
|
|
++m_StartTick;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CProjectile::FillInfo(CNetObj_Projectile *pProj)
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
pProj->m_X = (int)m_Pos.x;
|
|
|
|
pProj->m_Y = (int)m_Pos.y;
|
|
|
|
pProj->m_VelX = (int)(m_Direction.x*100.0f);
|
|
|
|
pProj->m_VelY = (int)(m_Direction.y*100.0f);
|
|
|
|
pProj->m_StartTick = m_StartTick;
|
|
|
|
pProj->m_Type = m_Type;
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CProjectile::Snap(int SnappingClient)
|
2008-08-14 18:25:44 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float Ct = (Server()->Tick()-m_StartTick)/(float)Server()->TickSpeed();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(NetworkClipped(SnappingClient, GetPos(Ct)))
|
2008-08-14 18:25:44 +00:00
|
|
|
return;
|
|
|
|
|
2011-07-21 01:13:59 +00:00
|
|
|
CCharacter* pSnapChar = GameServer()->GetPlayerChar(SnappingClient);
|
2010-11-14 10:13:11 +00:00
|
|
|
int Tick = (Server()->Tick()%Server()->TickSpeed())%((m_Explosive)?6:20);
|
2011-07-21 01:13:59 +00:00
|
|
|
if (pSnapChar && pSnapChar->IsAlive() && (m_Layer == LAYER_SWITCH && !GameServer()->Collision()->m_pSwitchers[m_Number].m_Status[pSnapChar->Team()] && (!Tick)))
|
2011-04-19 13:15:40 +00:00
|
|
|
return;
|
2010-11-14 09:36:00 +00:00
|
|
|
|
2014-01-12 14:48:53 +00:00
|
|
|
CCharacter *pOwnerChar = 0;
|
|
|
|
int64_t TeamMask = -1LL;
|
|
|
|
|
|
|
|
if(m_Owner >= 0)
|
|
|
|
pOwnerChar = GameServer()->GetPlayerChar(m_Owner);
|
|
|
|
|
|
|
|
if (pOwnerChar && pOwnerChar->IsAlive())
|
|
|
|
TeamMask = pOwnerChar->Teams()->TeamMask(pOwnerChar->Team(), -1, m_Owner);
|
|
|
|
|
|
|
|
if(m_Owner != -1 && !CmaskIsSet(TeamMask, SnappingClient))
|
2010-10-02 01:25:42 +00:00
|
|
|
return;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
CNetObj_Projectile *pProj = static_cast<CNetObj_Projectile *>(Server()->SnapNewItem(NETOBJTYPE_PROJECTILE, m_ID, sizeof(CNetObj_Projectile)));
|
2010-12-16 02:29:08 +00:00
|
|
|
if(pProj)
|
2014-12-01 00:31:58 +00:00
|
|
|
{
|
|
|
|
if(SnappingClient > -1 && GameServer()->m_apPlayers[SnappingClient] && GameServer()->m_apPlayers[SnappingClient]->m_ClientVersion >= VERSION_DDNET_ANTIPING_PROJECTILE)
|
|
|
|
FillExtraInfo(pProj);
|
|
|
|
else
|
|
|
|
FillInfo(pProj);
|
|
|
|
}
|
2008-08-14 18:25:44 +00:00
|
|
|
}
|
2011-04-09 06:41:31 +00:00
|
|
|
|
|
|
|
// DDRace
|
|
|
|
|
|
|
|
void CProjectile::SetBouncing(int Value)
|
|
|
|
{
|
|
|
|
m_Bouncing = Value;
|
|
|
|
}
|
2014-12-01 00:31:58 +00:00
|
|
|
|
|
|
|
void CProjectile::FillExtraInfo(CNetObj_Projectile *pProj)
|
|
|
|
{
|
2014-12-02 00:08:52 +00:00
|
|
|
const int MaxPos = 0x7fffffff/100;
|
2015-04-18 20:29:28 +00:00
|
|
|
if(abs((int)m_Pos.y)+1 >= MaxPos || abs((int)m_Pos.x)+1 >= MaxPos)
|
2014-12-02 00:08:52 +00:00
|
|
|
{
|
|
|
|
//If the modified data would be too large to fit in an integer, send normal data instead
|
|
|
|
FillInfo(pProj);
|
|
|
|
return;
|
|
|
|
}
|
2014-12-01 00:31:58 +00:00
|
|
|
//Send additional/modified info, by modifiying the fields of the netobj
|
|
|
|
float Angle = -atan2f(m_Direction.x, m_Direction.y);
|
|
|
|
|
|
|
|
int Data = 0;
|
|
|
|
Data |= (abs(m_Owner) & 255)<<0;
|
|
|
|
if(m_Owner < 0)
|
|
|
|
Data |= 1<<8;
|
|
|
|
Data |= 1<<9; //This bit tells the client to use the extra info
|
|
|
|
Data |= (m_Bouncing & 3)<<10;
|
|
|
|
if(m_Explosive)
|
|
|
|
Data |= 1<<12;
|
|
|
|
if(m_Freeze)
|
|
|
|
Data |= 1<<13;
|
|
|
|
|
2014-12-02 00:08:52 +00:00
|
|
|
pProj->m_X = (int)(m_Pos.x * 100.0f);
|
|
|
|
pProj->m_Y = (int)(m_Pos.y * 100.0f);
|
2014-12-01 00:31:58 +00:00
|
|
|
pProj->m_VelX = (int)(Angle * 1000000.0f);
|
|
|
|
pProj->m_VelY = Data;
|
|
|
|
pProj->m_StartTick = m_StartTick;
|
|
|
|
pProj->m_Type = m_Type;
|
|
|
|
}
|