blob: 19b518cdae893f5fce9163a15a76d491a81a171d (
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
|
#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 );
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;
};
|