b69ac328c0
git-svn-id: http://mc-server.googlecode.com/svn/trunk@428 0a769ca7-a7f5-676a-18bf-c427514a06d6
61 lines
897 B
C++
61 lines
897 B
C++
|
|
#pragma once
|
|
|
|
#include "cBlockEntity.h"
|
|
#include "cWindowOwner.h"
|
|
#include "FileDefine.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Json
|
|
{
|
|
class Value;
|
|
}
|
|
|
|
class cClientHandle;
|
|
class cServer;
|
|
class cItem;
|
|
class cNBTData;
|
|
|
|
|
|
|
|
|
|
class cFurnaceEntity :
|
|
public cBlockEntity,
|
|
public cWindowOwner
|
|
{
|
|
public:
|
|
cFurnaceEntity(int a_X, int a_Y, int a_Z, cWorld * a_World);
|
|
virtual ~cFurnaceEntity();
|
|
virtual void Destroy();
|
|
|
|
bool LoadFromFile(cFile & a_File); // deprecated format
|
|
|
|
bool LoadFromJson(const Json::Value& a_Value );
|
|
virtual void SaveToJson(Json::Value& a_Value ) override;
|
|
|
|
bool Tick( float a_Dt );
|
|
|
|
virtual void UsedBy( cPlayer * a_Player ) override;
|
|
|
|
bool StartCooking();
|
|
|
|
void ResetCookTimer();
|
|
|
|
private:
|
|
|
|
cItem * m_Items;
|
|
cItem * m_CookingItem;
|
|
float m_CookTime;
|
|
float m_TimeCooked;
|
|
|
|
float m_BurnTime;
|
|
float m_TimeBurned;
|
|
};
|
|
|
|
|
|
|
|
|