1
0
cuberite-2a/src/Entities/Floater.cpp

68 lines
1.2 KiB
C++
Raw Normal View History

2013-12-20 16:11:51 +00:00
2013-12-19 16:32:06 +00:00
#include "Globals.h"
#include "Floater.h"
#include "Player.h"
2013-12-19 21:44:10 +00:00
#include "../ClientHandle.h"
2013-12-19 16:32:06 +00:00
2013-12-20 16:11:51 +00:00
2013-12-19 16:32:06 +00:00
cFloater::cFloater(double a_X, double a_Y, double a_Z, Vector3d a_Speed, int a_PlayerID) :
cEntity(etFloater, a_X, a_Y, a_Z, 0.98, 0.98),
2013-12-20 16:11:51 +00:00
m_PickupCountDown(0),
2013-12-19 16:32:06 +00:00
m_PlayerID(a_PlayerID),
2013-12-20 16:11:51 +00:00
m_CanPickupItem(false)
2013-12-19 16:32:06 +00:00
{
SetSpeed(a_Speed);
}
void cFloater::SpawnOn(cClientHandle & a_Client)
{
a_Client.SendSpawnObject(*this, 90, m_PlayerID, 0, 0);
}
void cFloater::Tick(float a_Dt, cChunk & a_Chunk)
{
HandlePhysics(a_Dt, a_Chunk);
if (IsBlockWater(m_World->GetBlock((int) GetPosX(), (int) GetPosY(), (int) GetPosZ())) && m_World->GetBlockMeta((int) GetPosX(), (int) GetPosY(), (int) GetPosZ()) == 0)
2013-12-19 16:32:06 +00:00
{
if ((!m_CanPickupItem) && (m_World->GetTickRandomNumber(100) == 0))
2013-12-19 16:32:06 +00:00
{
SetPosY(GetPosY() - 1);
2013-12-19 16:32:06 +00:00
m_CanPickupItem = true;
m_PickupCountDown = 20;
LOGD("Floater %i can be picked up", GetUniqueID());
}
else
{
SetSpeedY(0.7);
2013-12-19 16:32:06 +00:00
}
}
SetSpeedX(GetSpeedX() * 0.95);
SetSpeedZ(GetSpeedZ() * 0.95);
if (CanPickup())
{
m_PickupCountDown--;
if (m_PickupCountDown == 0)
{
m_CanPickupItem = false;
LOGD("The fish is gone. Floater %i can not pick an item up.", GetUniqueID());
}
}
BroadcastMovementUpdate();
2013-12-20 16:11:51 +00:00
}