2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Squid.h"
|
|
|
|
#include "../Vector3d.h"
|
2013-07-01 06:39:56 -04:00
|
|
|
#include "../Chunk.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cSquid::cSquid(void) :
|
2013-07-01 06:39:56 -04:00
|
|
|
super("Squid", 94, "", "", 0.95, 0.95)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cSquid::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
// Drops 0-3 Ink Sacs
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 3, E_ITEM_DYE, E_META_DYE_BLACK);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
void cSquid::Tick(float a_Dt, cChunk & a_Chunk)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-07-07 16:20:18 -04:00
|
|
|
// We must first process current location, and only then tick, otherwise we risk processing a location in a chunk
|
|
|
|
// that is not where the entity currently resides (FS #411)
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
Vector3d Pos = GetPosition();
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
// TODO: Not a real behavior, but cool :D
|
2013-07-07 16:20:18 -04:00
|
|
|
int RelX = (int)floor(Pos.x) - a_Chunk.GetPosX() * cChunkDef::Width;
|
|
|
|
int RelZ = (int)floor(Pos.z) - a_Chunk.GetPosZ() * cChunkDef::Width;
|
|
|
|
if (!IsBlockWater(a_Chunk.GetBlock(RelX, (int)floor(Pos.y), RelZ)) && !IsOnFire())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2013-07-01 06:39:56 -04:00
|
|
|
// Burn for 10 ticks, then decide again
|
|
|
|
StartBurning(10);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
2013-07-07 16:20:18 -04:00
|
|
|
|
|
|
|
super::Tick(a_Dt, a_Chunk);
|
2012-12-21 06:04:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|