1
0
Fork 0
cuberite-2a/src/Entities/ExpOrb.cpp

78 lines
1.6 KiB
C++
Raw Normal View History

2013-11-25 19:05:52 +00:00
#include "Globals.h"
#include "ExpOrb.h"
#include "Player.h"
#include "../ClientHandle.h"
2014-03-14 23:32:49 +00:00
cExpOrb::cExpOrb(double a_X, double a_Y, double a_Z, int a_Reward)
2014-07-17 21:15:53 +00:00
: cEntity(etExpOrb, a_X, a_Y, a_Z, 0.98, 0.98)
2014-03-14 23:32:49 +00:00
, m_Reward(a_Reward)
, m_Timer(0.f)
2013-11-25 19:05:52 +00:00
{
2014-03-14 23:32:49 +00:00
SetMaxHealth(5);
SetHealth(5);
2013-11-25 19:05:52 +00:00
}
2014-03-14 23:32:49 +00:00
cExpOrb::cExpOrb(const Vector3d & a_Pos, int a_Reward)
2014-07-17 21:15:53 +00:00
: cEntity(etExpOrb, a_Pos.x, a_Pos.y, a_Pos.z, 0.98, 0.98)
2014-03-14 23:32:49 +00:00
, m_Reward(a_Reward)
, m_Timer(0.f)
2013-11-25 19:05:52 +00:00
{
2014-03-14 23:32:49 +00:00
SetMaxHealth(5);
SetHealth(5);
2013-11-25 19:05:52 +00:00
}
void cExpOrb::SpawnOn(cClientHandle & a_Client)
{
a_Client.SendExperienceOrb(*this);
m_bDirtyOrientation = false;
m_bDirtyHead = false;
}
void cExpOrb::Tick(float a_Dt, cChunk & a_Chunk)
{
2013-12-11 15:14:08 +00:00
cPlayer * a_ClosestPlayer(m_World->FindClosestPlayer(Vector3f(GetPosition()), 5));
2014-10-20 20:55:07 +00:00
if (a_ClosestPlayer != nullptr)
2013-11-25 19:05:52 +00:00
{
Vector3f a_PlayerPos(a_ClosestPlayer->GetPosition());
2013-12-11 15:14:08 +00:00
a_PlayerPos.y++;
2013-11-25 19:05:52 +00:00
Vector3f a_Distance(a_PlayerPos - GetPosition());
2013-12-11 15:14:08 +00:00
double Distance(a_Distance.Length());
if (Distance < 0.1f)
2013-11-25 19:05:52 +00:00
{
2013-12-14 11:50:08 +00:00
LOGD("Player %s picked up an ExpOrb. His reward is %i", a_ClosestPlayer->GetName().c_str(), m_Reward);
2013-11-25 19:05:52 +00:00
a_ClosestPlayer->DeltaExperience(m_Reward);
2014-02-14 21:49:23 +00:00
m_World->BroadcastSoundEffect("random.orb", GetPosX(), GetPosY(), GetPosZ(), 0.5f, (float)(0.75 + ((float)((GetUniqueID() * 23) % 32)) / 64));
2014-02-14 21:49:23 +00:00
Destroy();
2013-11-25 19:05:52 +00:00
}
a_Distance.Normalize();
2013-12-15 14:57:38 +00:00
a_Distance *= ((float) (5.5 - Distance));
SetSpeedX( a_Distance.x);
SetSpeedY( a_Distance.y);
SetSpeedZ( a_Distance.z);
2013-12-11 15:14:08 +00:00
BroadcastMovementUpdate();
2013-11-25 19:05:52 +00:00
}
2013-12-11 15:14:08 +00:00
HandlePhysics(a_Dt, a_Chunk);
2014-03-14 23:32:49 +00:00
m_Timer += a_Dt;
if (m_Timer >= 1000 * 60 * 5) // 5 minutes
{
Destroy(true);
}
2014-02-14 21:49:23 +00:00
}