ddnet/src/game/gamecore.cpp

571 lines
23 KiB
C++
Raw Normal View History

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 "gamecore.h"
2007-09-22 18:55:00 +00:00
2010-10-31 17:47:10 +00:00
#include <engine/shared/config.h>
2013-07-18 22:27:17 +00:00
#include <engine/server/server.h>
2010-05-29 07:25:38 +00:00
const char *CTuningParams::m_apNames[] =
{
2010-05-29 07:25:38 +00:00
#define MACRO_TUNING_PARAM(Name,ScriptName,Value) #ScriptName,
#include "tuning.h"
#undef MACRO_TUNING_PARAM
};
2010-05-29 07:25:38 +00:00
bool CTuningParams::Set(int Index, float Value)
{
2010-05-29 07:25:38 +00:00
if(Index < 0 || Index >= Num())
return false;
2010-05-29 07:25:38 +00:00
((CTuneParam *)this)[Index] = Value;
return true;
}
2010-05-29 07:25:38 +00:00
bool CTuningParams::Get(int Index, float *pValue)
{
2010-05-29 07:25:38 +00:00
if(Index < 0 || Index >= Num())
return false;
2010-05-29 07:25:38 +00:00
*pValue = (float)((CTuneParam *)this)[Index];
return true;
}
2010-05-29 07:25:38 +00:00
bool CTuningParams::Set(const char *pName, float Value)
{
2010-05-29 07:25:38 +00:00
for(int i = 0; i < Num(); i++)
if(str_comp_nocase(pName, m_apNames[i]) == 0)
return Set(i, Value);
return false;
}
2010-05-29 07:25:38 +00:00
bool CTuningParams::Get(const char *pName, float *pValue)
{
2010-05-29 07:25:38 +00:00
for(int i = 0; i < Num(); i++)
if(str_comp_nocase(pName, m_apNames[i]) == 0)
return Get(i, pValue);
return false;
}
float HermiteBasis1(float v)
2007-09-22 18:55:00 +00:00
{
return 2*v*v*v - 3*v*v+1;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
float VelocityRamp(float Value, float Start, float Range, float Curvature)
{
2010-05-29 07:25:38 +00:00
if(Value < Start)
return 1.0f;
return 1.0f/powf(Curvature, (Value-Start)/Range);
}
2013-07-22 15:20:34 +00:00
void CCharacterCore::Init(CWorldCore *pWorld, CCollision *pCollision, CTeamsCore* pTeams)
{
m_pWorld = pWorld;
m_pCollision = pCollision;
m_pTeams = pTeams;
m_Id = -1;
2013-08-05 17:58:51 +00:00
m_Hook = true;
m_Collision = true;
2013-07-22 15:20:34 +00:00
}
2013-08-14 17:45:39 +00:00
void CCharacterCore::Init(CWorldCore *pWorld, CCollision *pCollision, CTeamsCore* pTeams, std::map<int, std::vector<vec2> > *pTeleOuts)
{
2010-05-29 07:25:38 +00:00
m_pWorld = pWorld;
m_pCollision = pCollision;
2013-07-18 22:27:17 +00:00
m_pTeleOuts = pTeleOuts;
m_pTeams = pTeams;
m_Id = -1;
2013-08-05 17:58:51 +00:00
m_Hook = true;
m_Collision = true;
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Reset()
{
2010-05-29 07:25:38 +00:00
m_Pos = vec2(0,0);
m_Vel = vec2(0,0);
2013-07-18 22:27:17 +00:00
m_NewHook = false;
2010-05-29 07:25:38 +00:00
m_HookPos = vec2(0,0);
m_HookDir = vec2(0,0);
m_HookTick = 0;
m_HookState = HOOK_IDLE;
m_HookedPlayer = -1;
m_Jumped = 0;
m_TriggeredEvents = 0;
2013-08-05 17:58:51 +00:00
m_Hook = true;
m_Collision = true;
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Tick(bool UseInput)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
float PhysSize = 28.0f;
int MapIndex = Collision()->GetPureMapIndex(m_Pos);;
int MapIndexL = Collision()->GetPureMapIndex(vec2(m_Pos.x + (28/2)+4,m_Pos.y));
int MapIndexR = Collision()->GetPureMapIndex(vec2(m_Pos.x - (28/2)-4,m_Pos.y));
int MapIndexT = Collision()->GetPureMapIndex(vec2(m_Pos.x,m_Pos.y + (28/2)+4));
int MapIndexB = Collision()->GetPureMapIndex(vec2(m_Pos.x,m_Pos.y - (28/2)-4));
//dbg_msg("","N%d L%d R%d B%d T%d",MapIndex,MapIndexL,MapIndexR,MapIndexB,MapIndexT);
m_TileIndex = Collision()->GetTileIndex(MapIndex);
m_TileFlags = Collision()->GetTileFlags(MapIndex);
m_TileIndexL = Collision()->GetTileIndex(MapIndexL);
m_TileFlagsL = Collision()->GetTileFlags(MapIndexL);
m_TileIndexR = Collision()->GetTileIndex(MapIndexR);
m_TileFlagsR = Collision()->GetTileFlags(MapIndexR);
m_TileIndexB = Collision()->GetTileIndex(MapIndexB);
m_TileFlagsB = Collision()->GetTileFlags(MapIndexB);
m_TileIndexT = Collision()->GetTileIndex(MapIndexT);
m_TileFlagsT = Collision()->GetTileFlags(MapIndexT);
m_TileFIndex = Collision()->GetFTileIndex(MapIndex);
m_TileFFlags = Collision()->GetFTileFlags(MapIndex);
m_TileFIndexL = Collision()->GetFTileIndex(MapIndexL);
m_TileFFlagsL = Collision()->GetFTileFlags(MapIndexL);
m_TileFIndexR = Collision()->GetFTileIndex(MapIndexR);
m_TileFFlagsR = Collision()->GetFTileFlags(MapIndexR);
m_TileFIndexB = Collision()->GetFTileIndex(MapIndexB);
m_TileFFlagsB = Collision()->GetFTileFlags(MapIndexB);
m_TileFIndexT = Collision()->GetFTileIndex(MapIndexT);
m_TileFFlagsT = Collision()->GetFTileFlags(MapIndexT);
m_TileSIndex = (UseInput && IsRightTeam(MapIndex))?Collision()->GetDTileIndex(MapIndex):0;
m_TileSFlags = (UseInput && IsRightTeam(MapIndex))?Collision()->GetDTileFlags(MapIndex):0;
m_TileSIndexL = (UseInput && IsRightTeam(MapIndexL))?Collision()->GetDTileIndex(MapIndexL):0;
m_TileSFlagsL = (UseInput && IsRightTeam(MapIndexL))?Collision()->GetDTileFlags(MapIndexL):0;
m_TileSIndexR = (UseInput && IsRightTeam(MapIndexR))?Collision()->GetDTileIndex(MapIndexR):0;
m_TileSFlagsR = (UseInput && IsRightTeam(MapIndexR))?Collision()->GetDTileFlags(MapIndexR):0;
m_TileSIndexB = (UseInput && IsRightTeam(MapIndexB))?Collision()->GetDTileIndex(MapIndexB):0;
m_TileSFlagsB = (UseInput && IsRightTeam(MapIndexB))?Collision()->GetDTileFlags(MapIndexB):0;
m_TileSIndexT = (UseInput && IsRightTeam(MapIndexT))?Collision()->GetDTileIndex(MapIndexT):0;
m_TileSFlagsT = (UseInput && IsRightTeam(MapIndexT))?Collision()->GetDTileFlags(MapIndexT):0;
2010-05-29 07:25:38 +00:00
m_TriggeredEvents = 0;
2008-09-23 07:43:41 +00:00
// get ground state
2010-05-29 07:25:38 +00:00
bool Grounded = false;
if(m_pCollision->CheckPoint(m_Pos.x+PhysSize/2, m_Pos.y+PhysSize/2+5))
2010-05-29 07:25:38 +00:00
Grounded = true;
if(m_pCollision->CheckPoint(m_Pos.x-PhysSize/2, m_Pos.y+PhysSize/2+5))
2010-05-29 07:25:38 +00:00
Grounded = true;
2010-05-29 07:25:38 +00:00
vec2 TargetDirection = normalize(vec2(m_Input.m_TargetX, m_Input.m_TargetY));
2007-09-22 18:55:00 +00:00
2010-05-29 07:25:38 +00:00
m_Vel.y += m_pWorld->m_Tuning.m_Gravity;
2010-05-29 07:25:38 +00:00
float MaxSpeed = Grounded ? m_pWorld->m_Tuning.m_GroundControlSpeed : m_pWorld->m_Tuning.m_AirControlSpeed;
float Accel = Grounded ? m_pWorld->m_Tuning.m_GroundControlAccel : m_pWorld->m_Tuning.m_AirControlAccel;
float Friction = Grounded ? m_pWorld->m_Tuning.m_GroundFriction : m_pWorld->m_Tuning.m_AirFriction;
2008-09-23 07:43:41 +00:00
// handle input
2010-05-29 07:25:38 +00:00
if(UseInput)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
m_Direction = m_Input.m_Direction;
2008-09-23 07:43:41 +00:00
// setup angle
float a = 0;
2010-05-29 07:25:38 +00:00
if(m_Input.m_TargetX == 0)
a = atanf((float)m_Input.m_TargetY);
2008-09-23 07:43:41 +00:00
else
a = atanf((float)m_Input.m_TargetY/(float)m_Input.m_TargetX);
2010-05-29 07:25:38 +00:00
if(m_Input.m_TargetX < 0)
a = a+pi;
m_Angle = (int)(a*256.0f);
2008-09-23 07:43:41 +00:00
// handle jump
2010-05-29 07:25:38 +00:00
if(m_Input.m_Jump)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
if(!(m_Jumped&1))
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
if(Grounded)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
m_TriggeredEvents |= COREEVENT_GROUND_JUMP;
m_Vel.y = -m_pWorld->m_Tuning.m_GroundJumpImpulse;
m_Jumped |= 1;
2008-09-23 07:43:41 +00:00
}
2010-05-29 07:25:38 +00:00
else if(!(m_Jumped&2))
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
m_TriggeredEvents |= COREEVENT_AIR_JUMP;
m_Vel.y = -m_pWorld->m_Tuning.m_AirJumpImpulse;
m_Jumped |= 3;
2008-09-23 07:43:41 +00:00
}
}
}
else
2010-05-29 07:25:38 +00:00
m_Jumped &= ~1;
2008-09-23 07:43:41 +00:00
// handle hook
2010-05-29 07:25:38 +00:00
if(m_Input.m_Hook)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
if(m_HookState == HOOK_IDLE)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
m_HookState = HOOK_FLYING;
m_HookPos = m_Pos+TargetDirection*PhysSize*1.5f;
m_HookDir = TargetDirection;
m_HookedPlayer = -1;
m_HookTick = 0;
m_TriggeredEvents |= COREEVENT_HOOK_LAUNCH;
}
2008-09-23 07:43:41 +00:00
}
else
{
2010-05-29 07:25:38 +00:00
m_HookedPlayer = -1;
m_HookState = HOOK_IDLE;
m_HookPos = m_Pos;
}
2008-09-23 07:43:41 +00:00
}
2008-09-23 07:43:41 +00:00
// add the speed modification according to players wanted direction
2010-05-29 07:25:38 +00:00
if(m_Direction < 0)
m_Vel.x = SaturatedAdd(-MaxSpeed, MaxSpeed, m_Vel.x, -Accel);
if(m_Direction > 0)
m_Vel.x = SaturatedAdd(-MaxSpeed, MaxSpeed, m_Vel.x, Accel);
if(m_Direction == 0)
m_Vel.x *= Friction;
2007-09-22 18:55:00 +00:00
// handle jumping
2007-12-09 09:48:53 +00:00
// 1 bit = to keep track if a jump has been made on this input
// 2 bit = to keep track if a air-jump has been made
2010-05-29 07:25:38 +00:00
if(Grounded)
m_Jumped &= ~2;
2008-09-23 07:43:41 +00:00
// do hook
2010-05-29 07:25:38 +00:00
if(m_HookState == HOOK_IDLE)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
m_HookedPlayer = -1;
m_HookState = HOOK_IDLE;
m_HookPos = m_Pos;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
else if(m_HookState >= HOOK_RETRACT_START && m_HookState < HOOK_RETRACT_END)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
m_HookState++;
2008-09-23 07:43:41 +00:00
}
2010-05-29 07:25:38 +00:00
else if(m_HookState == HOOK_RETRACT_END)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
m_HookState = HOOK_RETRACTED;
m_TriggeredEvents |= COREEVENT_HOOK_RETRACT;
m_HookState = HOOK_RETRACTED;
2008-09-23 07:43:41 +00:00
}
2010-05-29 07:25:38 +00:00
else if(m_HookState == HOOK_FLYING)
2008-09-23 07:43:41 +00:00
{
2010-05-29 07:25:38 +00:00
vec2 NewPos = m_HookPos+m_HookDir*m_pWorld->m_Tuning.m_HookFireSpeed;
2013-07-18 22:27:17 +00:00
if((!m_NewHook && distance(m_Pos, NewPos) > m_pWorld->m_Tuning.m_HookLength)
|| (m_NewHook && distance(m_HookTeleBase, NewPos) > m_pWorld->m_Tuning.m_HookLength))
2008-03-22 13:03:52 +00:00
{
2010-05-29 07:25:38 +00:00
m_HookState = HOOK_RETRACT_START;
NewPos = m_Pos + normalize(NewPos-m_Pos) * m_pWorld->m_Tuning.m_HookLength;
m_pReset = true;
}
2008-09-23 07:43:41 +00:00
// make sure that the hook doesn't go though the ground
2010-05-29 07:25:38 +00:00
bool GoingToHitGround = false;
bool GoingToRetract = false;
2013-07-18 22:27:17 +00:00
bool GoingThroughTele = false;
int teleNr = 0;
2013-08-13 02:59:25 +00:00
int Hit = m_pCollision->IntersectLineTeleHook(m_HookPos, NewPos, &NewPos, 0, &teleNr, true);
2013-07-18 22:27:17 +00:00
//m_NewHook = false;
2010-05-29 07:25:38 +00:00
if(Hit)
2008-09-23 14:38:13 +00:00
{
2010-05-29 07:25:38 +00:00
if(Hit&CCollision::COLFLAG_NOHOOK)
GoingToRetract = true;
2013-07-18 22:27:17 +00:00
else if (Hit&CCollision::COLFLAG_TELE)
GoingThroughTele = true;
2008-09-23 14:38:13 +00:00
else
2010-05-29 07:25:38 +00:00
GoingToHitGround = true;
m_pReset = true;
2008-09-23 14:38:13 +00:00
}
2007-09-22 18:55:00 +00:00
2008-09-23 07:43:41 +00:00
// Check against other players first
if(this->m_Hook && m_pWorld && m_pWorld->m_Tuning.m_PlayerHooking)
2008-09-23 07:43:41 +00:00
{
float Distance = 0.0f;
2007-09-22 18:55:00 +00:00
for(int i = 0; i < MAX_CLIENTS; i++)
{
CCharacterCore *pCharCore = m_pWorld->m_apCharacters[i];
if(!pCharCore || pCharCore == this || !m_pTeams->CanCollide(i, m_Id))
2007-09-22 18:55:00 +00:00
continue;
vec2 ClosestPoint = closest_point_on_line(m_HookPos, NewPos, pCharCore->m_Pos);
2013-07-19 01:22:47 +00:00
if(distance(pCharCore->m_Pos, ClosestPoint) < PhysSize+2.0f)
2007-09-22 18:55:00 +00:00
{
if (m_HookedPlayer == -1 || distance(m_HookPos, pCharCore->m_Pos) < Distance)
2009-01-09 22:41:26 +00:00
{
2010-05-29 07:25:38 +00:00
m_TriggeredEvents |= COREEVENT_HOOK_ATTACH_PLAYER;
m_HookState = HOOK_GRABBED;
m_HookedPlayer = i;
Distance = distance(m_HookPos, pCharCore->m_Pos);
2009-01-09 22:41:26 +00:00
}
2007-09-22 18:55:00 +00:00
}
}
2008-09-23 07:43:41 +00:00
}
2010-05-29 07:25:38 +00:00
if(m_HookState == HOOK_FLYING)
2008-09-23 07:43:41 +00:00
{
// check against ground
2010-05-29 07:25:38 +00:00
if(GoingToHitGround)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
m_TriggeredEvents |= COREEVENT_HOOK_ATTACH_GROUND;
m_HookState = HOOK_GRABBED;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
else if(GoingToRetract)
2008-09-23 14:38:13 +00:00
{
2010-05-29 07:25:38 +00:00
m_TriggeredEvents |= COREEVENT_HOOK_HIT_NOHOOK;
m_HookState = HOOK_RETRACT_START;
2008-09-23 14:38:13 +00:00
}
2013-08-14 17:45:39 +00:00
if(GoingThroughTele && (*m_pTeleOuts)[teleNr-1].size())
2013-07-18 22:27:17 +00:00
{
m_TriggeredEvents = 0;
m_HookedPlayer = -1;
2013-07-18 22:27:17 +00:00
m_NewHook = true;
2013-08-14 17:45:39 +00:00
int Num = (*m_pTeleOuts)[teleNr-1].size();
m_HookPos = (*m_pTeleOuts)[teleNr-1][(!Num)?Num:rand() % Num]+TargetDirection*PhysSize*1.5f;
2013-07-18 22:27:17 +00:00
m_HookDir = TargetDirection;
m_HookTeleBase = m_HookPos;
}
else
{
m_HookPos = NewPos;
}
2007-09-22 18:55:00 +00:00
}
}
2010-05-29 07:25:38 +00:00
if(m_HookState == HOOK_GRABBED)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
if(m_HookedPlayer != -1)
2007-09-22 18:55:00 +00:00
{
CCharacterCore *pCharCore = m_pWorld->m_apCharacters[m_HookedPlayer];
if(pCharCore)
m_HookPos = pCharCore->m_Pos;
else
{
// release hook
2010-05-29 07:25:38 +00:00
m_HookedPlayer = -1;
m_HookState = HOOK_RETRACTED;
m_HookPos = m_Pos;
}
2007-09-22 18:55:00 +00:00
// keep players hooked for a max of 1.5sec
2010-05-29 07:25:38 +00:00
//if(Server()->Tick() > hook_tick+(Server()->TickSpeed()*3)/2)
2007-09-22 18:55:00 +00:00
//release_hooked();
}
// don't do this hook rutine when we are hook to a player
2010-05-29 07:25:38 +00:00
if(m_HookedPlayer == -1 && distance(m_HookPos, m_Pos) > 46.0f)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
vec2 HookVel = normalize(m_HookPos-m_Pos)*m_pWorld->m_Tuning.m_HookDragAccel;
2007-09-22 18:55:00 +00:00
// the hook as more power to drag you up then down.
// this makes it easier to get on top of an platform
2010-05-29 07:25:38 +00:00
if(HookVel.y > 0)
HookVel.y *= 0.3f;
2007-09-22 18:55:00 +00:00
// the hook will boost it's power if the player wants to move
// in that direction. otherwise it will dampen everything abit
if((HookVel.x < 0 && m_Direction < 0) || (HookVel.x > 0 && m_Direction > 0))
2010-05-29 07:25:38 +00:00
HookVel.x *= 0.95f;
2007-09-22 18:55:00 +00:00
else
2010-05-29 07:25:38 +00:00
HookVel.x *= 0.75f;
2010-05-29 07:25:38 +00:00
vec2 NewVel = m_Vel+HookVel;
2007-09-22 18:55:00 +00:00
// check if we are under the legal limit for the hook
2010-05-29 07:25:38 +00:00
if(length(NewVel) < m_pWorld->m_Tuning.m_HookDragSpeed || length(NewVel) < length(m_Vel))
m_Vel = NewVel; // no problem. apply
2007-09-22 18:55:00 +00:00
}
2009-01-11 11:54:41 +00:00
// release hook (max hook time is 1.25
2010-05-29 07:25:38 +00:00
m_HookTick++;
if(m_HookedPlayer != -1 && (m_HookTick > SERVER_TICK_SPEED+SERVER_TICK_SPEED/5 || !m_pWorld->m_apCharacters[m_HookedPlayer]))
{
2010-05-29 07:25:38 +00:00
m_HookedPlayer = -1;
m_HookState = HOOK_RETRACTED;
m_HookPos = m_Pos;
}
2007-09-22 18:55:00 +00:00
}
if(m_pWorld)
2007-09-22 18:55:00 +00:00
{
for(int i = 0; i < MAX_CLIENTS; i++)
{
CCharacterCore *pCharCore = m_pWorld->m_apCharacters[i];
if(!pCharCore)
2007-09-22 18:55:00 +00:00
continue;
2007-09-22 18:55:00 +00:00
//player *p = (player*)ent;
//if(pCharCore == this) // || !(p->flags&FLAG_ALIVE)
if(pCharCore == this || (m_Id != -1 && !m_pTeams->CanCollide(m_Id, i)))
2007-09-22 18:55:00 +00:00
continue; // make sure that we don't nudge our self
2007-09-22 18:55:00 +00:00
// handle player <-> player collision
float Distance = distance(m_Pos, pCharCore->m_Pos);
vec2 Dir = normalize(m_Pos - pCharCore->m_Pos);
if(pCharCore->m_Collision && this->m_Collision && m_pWorld->m_Tuning.m_PlayerCollision && Distance < PhysSize*1.25f && Distance > 0.0f)
2007-09-22 18:55:00 +00:00
{
float a = (PhysSize*1.45f - Distance);
float Velocity = 0.5f;
2011-01-18 05:50:24 +00:00
// make sure that we don't add excess force by checking the
// direction against the current velocity. if not zero.
if (length(m_Vel) > 0.0001)
Velocity = 1-(dot(normalize(m_Vel), Dir)+1)/2;
2011-01-18 05:50:24 +00:00
m_Vel += Dir*a*(Velocity*0.75f);
m_Vel *= 0.85f;
}
2007-09-22 18:55:00 +00:00
// handle hook influence
if(m_Hook && m_HookedPlayer == i && m_pWorld->m_Tuning.m_PlayerHooking)
2007-09-22 18:55:00 +00:00
{
if(Distance > PhysSize*1.50f) // TODO: fix tweakable variable
2007-09-22 18:55:00 +00:00
{
float Accel = m_pWorld->m_Tuning.m_HookDragAccel * (Distance/m_pWorld->m_Tuning.m_HookLength);
2010-05-29 07:25:38 +00:00
float DragSpeed = m_pWorld->m_Tuning.m_HookDragSpeed;
2011-08-31 10:10:15 +00:00
// add force to the hooked player
vec2 Temp = pCharCore->m_Vel;
Temp.x = SaturatedAdd(-DragSpeed, DragSpeed, pCharCore->m_Vel.x, Accel*Dir.x*1.5f);
Temp.y = SaturatedAdd(-DragSpeed, DragSpeed, pCharCore->m_Vel.y, Accel*Dir.y*1.5f);
if(Temp.x > 0 && ((pCharCore->m_TileIndex == TILE_STOP && pCharCore->m_TileFlags == ROTATION_270) || (pCharCore->m_TileIndexL == TILE_STOP && pCharCore->m_TileFlagsL == ROTATION_270) || (pCharCore->m_TileIndexL == TILE_STOPS && (pCharCore->m_TileFlagsL == ROTATION_90 || pCharCore->m_TileFlagsL ==ROTATION_270)) || (pCharCore->m_TileIndexL == TILE_STOPA) || (pCharCore->m_TileFIndex == TILE_STOP && pCharCore->m_TileFFlags == ROTATION_270) || (pCharCore->m_TileFIndexL == TILE_STOP && pCharCore->m_TileFFlagsL == ROTATION_270) || (pCharCore->m_TileFIndexL == TILE_STOPS && (pCharCore->m_TileFFlagsL == ROTATION_90 || pCharCore->m_TileFFlagsL == ROTATION_270)) || (pCharCore->m_TileFIndexL == TILE_STOPA) || (pCharCore->m_TileSIndex == TILE_STOP && pCharCore->m_TileSFlags == ROTATION_270) || (pCharCore->m_TileSIndexL == TILE_STOP && pCharCore->m_TileSFlagsL == ROTATION_270) || (pCharCore->m_TileSIndexL == TILE_STOPS && (pCharCore->m_TileSFlagsL == ROTATION_90 || pCharCore->m_TileSFlagsL == ROTATION_270)) || (pCharCore->m_TileSIndexL == TILE_STOPA)))
Temp.x = 0;
if(Temp.x < 0 && ((pCharCore->m_TileIndex == TILE_STOP && pCharCore->m_TileFlags == ROTATION_90) || (pCharCore->m_TileIndexR == TILE_STOP && pCharCore->m_TileFlagsR == ROTATION_90) || (pCharCore->m_TileIndexR == TILE_STOPS && (pCharCore->m_TileFlagsR == ROTATION_90 || pCharCore->m_TileFlagsR == ROTATION_270)) || (pCharCore->m_TileIndexR == TILE_STOPA) || (pCharCore->m_TileFIndex == TILE_STOP && pCharCore->m_TileFFlags == ROTATION_90) || (pCharCore->m_TileFIndexR == TILE_STOP && pCharCore->m_TileFFlagsR == ROTATION_90) || (pCharCore->m_TileFIndexR == TILE_STOPS && (pCharCore->m_TileFFlagsR == ROTATION_90 || pCharCore->m_TileFFlagsR == ROTATION_270)) || (pCharCore->m_TileFIndexR == TILE_STOPA) || (pCharCore->m_TileSIndex == TILE_STOP && pCharCore->m_TileSFlags == ROTATION_90) || (pCharCore->m_TileSIndexR == TILE_STOP && pCharCore->m_TileSFlagsR == ROTATION_90) || (pCharCore->m_TileSIndexR == TILE_STOPS && (pCharCore->m_TileSFlagsR == ROTATION_90 || pCharCore->m_TileSFlagsR == ROTATION_270)) || (pCharCore->m_TileSIndexR == TILE_STOPA)))
Temp.x = 0;
if(Temp.y < 0 && ((pCharCore->m_TileIndex == TILE_STOP && pCharCore->m_TileFlags == ROTATION_180) || (pCharCore->m_TileIndexB == TILE_STOP && pCharCore->m_TileFlagsB == ROTATION_180) || (pCharCore->m_TileIndexB == TILE_STOPS && (pCharCore->m_TileFlagsB == ROTATION_0 || pCharCore->m_TileFlagsB == ROTATION_180)) || (pCharCore->m_TileIndexB == TILE_STOPA) || (pCharCore->m_TileFIndex == TILE_STOP && pCharCore->m_TileFFlags == ROTATION_180) || (pCharCore->m_TileFIndexB == TILE_STOP && pCharCore->m_TileFFlagsB == ROTATION_180) || (pCharCore->m_TileFIndexB == TILE_STOPS && (pCharCore->m_TileFFlagsB == ROTATION_0 || pCharCore->m_TileFFlagsB == ROTATION_180)) || (pCharCore->m_TileFIndexB == TILE_STOPA) || (pCharCore->m_TileSIndex == TILE_STOP && pCharCore->m_TileSFlags == ROTATION_180) || (pCharCore->m_TileSIndexB == TILE_STOP && pCharCore->m_TileSFlagsB == ROTATION_180) || (pCharCore->m_TileSIndexB == TILE_STOPS && (pCharCore->m_TileSFlagsB == ROTATION_0 || pCharCore->m_TileSFlagsB == ROTATION_180)) || (pCharCore->m_TileSIndexB == TILE_STOPA)))
Temp.y = 0;
if(Temp.y > 0 && ((pCharCore->m_TileIndex == TILE_STOP && pCharCore->m_TileFlags == ROTATION_0) || (pCharCore->m_TileIndexT == TILE_STOP && pCharCore->m_TileFlagsT == ROTATION_0) || (pCharCore->m_TileIndexT == TILE_STOPS && (pCharCore->m_TileFlagsT == ROTATION_0 || pCharCore->m_TileFlagsT == ROTATION_180)) || (pCharCore->m_TileIndexT == TILE_STOPA) || (pCharCore->m_TileFIndex == TILE_STOP && pCharCore->m_TileFFlags == ROTATION_0) || (pCharCore->m_TileFIndexT == TILE_STOP && pCharCore->m_TileFFlagsT == ROTATION_0) || (pCharCore->m_TileFIndexT == TILE_STOPS && (pCharCore->m_TileFFlagsT == ROTATION_0 || pCharCore->m_TileFFlagsT == ROTATION_180)) || (pCharCore->m_TileFIndexT == TILE_STOPA) || (pCharCore->m_TileSIndex == TILE_STOP && pCharCore->m_TileSFlags == ROTATION_0) || (pCharCore->m_TileSIndexT == TILE_STOP && pCharCore->m_TileSFlagsT == ROTATION_0) || (pCharCore->m_TileSIndexT == TILE_STOPS && (pCharCore->m_TileSFlagsT == ROTATION_0 || pCharCore->m_TileSFlagsT == ROTATION_180)) || (pCharCore->m_TileSIndexT == TILE_STOPA)))
Temp.y = 0;
// add a little bit force to the guy who has the grip
pCharCore->m_Vel = Temp;
Temp.x = SaturatedAdd(-DragSpeed, DragSpeed, m_Vel.x, -Accel*Dir.x*0.25f);
Temp.y = SaturatedAdd(-DragSpeed, DragSpeed, m_Vel.y, -Accel*Dir.y*0.25f);
2010-11-01 01:51:17 +00:00
if(Temp.x > 0 && ((m_TileIndex == TILE_STOP && m_TileFlags == ROTATION_270) || (m_TileIndexL == TILE_STOP && m_TileFlagsL == ROTATION_270) || (m_TileIndexL == TILE_STOPS && (m_TileFlagsL == ROTATION_90 || m_TileFlagsL ==ROTATION_270)) || (m_TileIndexL == TILE_STOPA) || (m_TileFIndex == TILE_STOP && m_TileFFlags == ROTATION_270) || (m_TileFIndexL == TILE_STOP && m_TileFFlagsL == ROTATION_270) || (m_TileFIndexL == TILE_STOPS && (m_TileFFlagsL == ROTATION_90 || m_TileFFlagsL == ROTATION_270)) || (m_TileFIndexL == TILE_STOPA) || (m_TileSIndex == TILE_STOP && m_TileSFlags == ROTATION_270) || (m_TileSIndexL == TILE_STOP && m_TileSFlagsL == ROTATION_270) || (m_TileSIndexL == TILE_STOPS && (m_TileSFlagsL == ROTATION_90 || m_TileSFlagsL == ROTATION_270)) || (m_TileSIndexL == TILE_STOPA)))
Temp.x = 0;
2010-11-01 01:51:17 +00:00
if(Temp.x < 0 && ((m_TileIndex == TILE_STOP && m_TileFlags == ROTATION_90) || (m_TileIndexR == TILE_STOP && m_TileFlagsR == ROTATION_90) || (m_TileIndexR == TILE_STOPS && (m_TileFlagsR == ROTATION_90 || m_TileFlagsR == ROTATION_270)) || (m_TileIndexR == TILE_STOPA) || (m_TileFIndex == TILE_STOP && m_TileFFlags == ROTATION_90) || (m_TileFIndexR == TILE_STOP && m_TileFFlagsR == ROTATION_90) || (m_TileFIndexR == TILE_STOPS && (m_TileFFlagsR == ROTATION_90 || m_TileFFlagsR == ROTATION_270)) || (m_TileFIndexR == TILE_STOPA) || (m_TileSIndex == TILE_STOP && m_TileSFlags == ROTATION_90) || (m_TileSIndexR == TILE_STOP && m_TileSFlagsR == ROTATION_90) || (m_TileSIndexR == TILE_STOPS && (m_TileSFlagsR == ROTATION_90 || m_TileSFlagsR == ROTATION_270)) || (m_TileSIndexR == TILE_STOPA)))
Temp.x = 0;
2010-11-01 01:51:17 +00:00
if(Temp.y < 0 && ((m_TileIndex == TILE_STOP && m_TileFlags == ROTATION_180) || (m_TileIndexB == TILE_STOP && m_TileFlagsB == ROTATION_180) || (m_TileIndexB == TILE_STOPS && (m_TileFlagsB == ROTATION_0 || m_TileFlagsB == ROTATION_180)) || (m_TileIndexB == TILE_STOPA) || (m_TileFIndex == TILE_STOP && m_TileFFlags == ROTATION_180) || (m_TileFIndexB == TILE_STOP && m_TileFFlagsB == ROTATION_180) || (m_TileFIndexB == TILE_STOPS && (m_TileFFlagsB == ROTATION_0 || m_TileFFlagsB == ROTATION_180)) || (m_TileFIndexB == TILE_STOPA) || (m_TileSIndex == TILE_STOP && m_TileSFlags == ROTATION_180) || (m_TileSIndexB == TILE_STOP && m_TileSFlagsB == ROTATION_180) || (m_TileSIndexB == TILE_STOPS && (m_TileSFlagsB == ROTATION_0 || m_TileSFlagsB == ROTATION_180)) || (m_TileSIndexB == TILE_STOPA)))
Temp.y = 0;
2010-11-01 01:51:17 +00:00
if(Temp.y > 0 && ((m_TileIndex == TILE_STOP && m_TileFlags == ROTATION_0) || (m_TileIndexT == TILE_STOP && m_TileFlagsT == ROTATION_0) || (m_TileIndexT == TILE_STOPS && (m_TileFlagsT == ROTATION_0 || m_TileFlagsT == ROTATION_180)) || (m_TileIndexT == TILE_STOPA) || (m_TileFIndex == TILE_STOP && m_TileFFlags == ROTATION_0) || (m_TileFIndexT == TILE_STOP && m_TileFFlagsT == ROTATION_0) || (m_TileFIndexT == TILE_STOPS && (m_TileFFlagsT == ROTATION_0 || m_TileFFlagsT == ROTATION_180)) || (m_TileFIndexT == TILE_STOPA) || (m_TileSIndex == TILE_STOP && m_TileSFlags == ROTATION_0) || (m_TileSIndexT == TILE_STOP && m_TileSFlagsT == ROTATION_0) || (m_TileSIndexT == TILE_STOPS && (m_TileSFlagsT == ROTATION_0 || m_TileSFlagsT == ROTATION_180)) || (m_TileSIndexT == TILE_STOPA)))
Temp.y = 0;
m_Vel = Temp;
2007-09-22 18:55:00 +00:00
}
}
}
2013-07-18 22:27:17 +00:00
if (m_HookState != HOOK_FLYING)
{
m_NewHook = false;
}
}
// clamp the velocity to something sane
2010-05-29 07:25:38 +00:00
if(length(m_Vel) > 6000)
m_Vel = normalize(m_Vel) * 6000;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Move()
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
float RampValue = VelocityRamp(length(m_Vel)*50, m_pWorld->m_Tuning.m_VelrampStart, m_pWorld->m_Tuning.m_VelrampRange, m_pWorld->m_Tuning.m_VelrampCurvature);
2010-05-29 07:25:38 +00:00
m_Vel.x = m_Vel.x*RampValue;
vec2 NewPos = m_Pos;
m_pCollision->MoveBox(&NewPos, &m_Vel, vec2(28.0f, 28.0f), 0);
2010-05-29 07:25:38 +00:00
m_Vel.x = m_Vel.x*(1.0f/RampValue);
if(m_pWorld && m_pWorld->m_Tuning.m_PlayerCollision && this->m_Collision)
{
// check player collision
float Distance = distance(m_Pos, NewPos);
int End = Distance+1;
vec2 LastPos = m_Pos;
for(int i = 0; i < End; i++)
{
float a = i/Distance;
vec2 Pos = mix(m_Pos, NewPos, a);
for(int p = 0; p < MAX_CLIENTS; p++)
{
CCharacterCore *pCharCore = m_pWorld->m_apCharacters[p];
if(!pCharCore || pCharCore == this || (m_Id != -1 && !m_pTeams->CanCollide(m_Id, p)) || !pCharCore->m_Collision)
continue;
float D = distance(Pos, pCharCore->m_Pos);
if(D < 28.0f && D > 0.0f)
{
if(a > 0.0f)
m_Pos = LastPos;
else if(distance(NewPos, pCharCore->m_Pos) > D)
m_Pos = NewPos;
return;
}
2011-12-26 13:31:05 +00:00
else if(D <= 0.001f && D >= -0.001f)
{
if(a > 0.0f)
m_Pos = LastPos;
else if(distance(NewPos, pCharCore->m_Pos) > D)
m_Pos = NewPos;
return;
}
}
LastPos = Pos;
}
}
m_Pos = NewPos;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Write(CNetObj_CharacterCore *pObjCore)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
pObjCore->m_X = round(m_Pos.x);
pObjCore->m_Y = round(m_Pos.y);
2010-05-29 07:25:38 +00:00
pObjCore->m_VelX = round(m_Vel.x*256.0f);
pObjCore->m_VelY = round(m_Vel.y*256.0f);
pObjCore->m_HookState = m_HookState;
pObjCore->m_HookTick = m_HookTick;
pObjCore->m_HookX = round(m_HookPos.x);
pObjCore->m_HookY = round(m_HookPos.y);
pObjCore->m_HookDx = round(m_HookDir.x*256.0f);
pObjCore->m_HookDy = round(m_HookDir.y*256.0f);
pObjCore->m_HookedPlayer = m_HookedPlayer;
pObjCore->m_Jumped = m_Jumped;
pObjCore->m_Direction = m_Direction;
pObjCore->m_Angle = m_Angle;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Read(const CNetObj_CharacterCore *pObjCore)
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
m_Pos.x = pObjCore->m_X;
m_Pos.y = pObjCore->m_Y;
m_Vel.x = pObjCore->m_VelX/256.0f;
m_Vel.y = pObjCore->m_VelY/256.0f;
m_HookState = pObjCore->m_HookState;
m_HookTick = pObjCore->m_HookTick;
m_HookPos.x = pObjCore->m_HookX;
m_HookPos.y = pObjCore->m_HookY;
m_HookDir.x = pObjCore->m_HookDx/256.0f;
m_HookDir.y = pObjCore->m_HookDy/256.0f;
m_HookedPlayer = pObjCore->m_HookedPlayer;
m_Jumped = pObjCore->m_Jumped;
m_Direction = pObjCore->m_Direction;
m_Angle = pObjCore->m_Angle;
2007-09-22 18:55:00 +00:00
}
2010-05-29 07:25:38 +00:00
void CCharacterCore::Quantize()
2007-09-22 18:55:00 +00:00
{
2010-05-29 07:25:38 +00:00
CNetObj_CharacterCore Core;
Write(&Core);
Read(&Core);
2007-09-22 18:55:00 +00:00
}
2011-01-06 03:46:10 +00:00
// DDRace
2011-01-06 03:46:10 +00:00
bool CCharacterCore::IsRightTeam(int MapIndex)
{
if(Collision()->m_pSwitchers)
if(m_pTeams->Team(m_Id) != TEAM_SUPER)
return Collision()->m_pSwitchers[Collision()->GetDTileNumber(MapIndex)].m_Status[m_pTeams->Team(m_Id)];
return false;
}