summaryrefslogtreecommitdiffstats
path: root/source/cFurnaceEntity.h
blob: 21cdb1e38f0dd75fd311ee63594727f2832ae83d (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

#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;
};