2012-09-29 09:41:47 -04:00
|
|
|
#pragma once
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Sign.h"
|
|
|
|
#include "../Player.h"
|
|
|
|
|
|
|
|
class cBlockBedHandler : public cBlockHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockBedHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-29 16:43:42 -04:00
|
|
|
virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, NIBBLETYPE a_BlockMeta, int a_X, int a_Y, int a_Z, char a_Dir) override;
|
|
|
|
virtual void OnDestroyed(cWorld *a_World, int a_X, int a_Y, int a_Z) override;
|
|
|
|
virtual void OnUse(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z) override;
|
2012-09-29 09:41:47 -04:00
|
|
|
|
|
|
|
|
2012-09-29 16:43:42 -04:00
|
|
|
virtual bool IsUseable() override
|
2012-09-29 09:41:47 -04:00
|
|
|
{
|
2012-09-29 16:43:42 -04:00
|
|
|
return true;
|
2012-09-29 09:41:47 -04:00
|
|
|
}
|
2012-09-29 16:43:42 -04:00
|
|
|
|
2012-09-29 09:41:47 -04:00
|
|
|
virtual int GetDropID() override
|
|
|
|
{
|
|
|
|
return E_ITEM_BED;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool AllowBlockOnTop() override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-09-29 16:43:42 -04:00
|
|
|
// Bed specific helper functions
|
2012-09-29 09:41:47 -04:00
|
|
|
static NIBBLETYPE RotationToMetaData( float a_Rotation )
|
|
|
|
{
|
|
|
|
a_Rotation += 180 + (180/4); // So its not aligned with axis
|
|
|
|
if( a_Rotation > 360.f ) a_Rotation -= 360.f;
|
|
|
|
|
|
|
|
a_Rotation = (a_Rotation/360) * 4;
|
|
|
|
|
|
|
|
return ((char)a_Rotation+2) % 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Vector3i MetaDataToDirection( NIBBLETYPE a_MetaData )
|
|
|
|
{
|
|
|
|
switch( a_MetaData )
|
|
|
|
{
|
|
|
|
case 0: // south +z
|
|
|
|
return Vector3i(0, 0, 1);
|
|
|
|
case 1: // west -x
|
|
|
|
return Vector3i(-1, 0, 0);
|
|
|
|
case 2: // north -z
|
|
|
|
return Vector3i(0, 0, -1);
|
|
|
|
case 3: // east +x
|
|
|
|
return Vector3i(1, 0, 0);
|
|
|
|
};
|
|
|
|
return Vector3i();
|
|
|
|
}
|
|
|
|
};
|