summaryrefslogtreecommitdiffstats
path: root/source/cFurnaceEntity.h
blob: 99209acf84288059204472fab4084e7c1e528edf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once

#include "cBlockEntity.h"
#include "cWindowOwner.h"
#include "FileDefine.h"

namespace Json
{
	class Value;
}

class cChunk;
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, cChunk* a_Chunk);
	virtual ~cFurnaceEntity();
	virtual void Destroy();

	bool LoadFromFile(cFile & a_File);  // deprecated format

	bool LoadFromJson(const Json::Value& a_Value );
	void SaveToJson  (Json::Value& a_Value );

	bool Tick( float a_Dt );
	virtual void UsedBy( cPlayer & a_Player );

	bool StartCooking();

	void ResetCookTimer();
private:
	cItem* m_Items;
	cItem* m_CookingItem;
	float m_CookTime;
	float m_TimeCooked;

	float m_BurnTime;
	float m_TimeBurned;
};