Files
cuberite-2a/source/BlockEntities/JukeboxEntity.h
T

57 lines
835 B
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
#pragma once
#include "BlockEntity.h"
2013-08-19 11:39:13 +02:00
#include "../Entities/Player.h"
2013-07-29 12:13:03 +01:00
namespace Json
{
class Value;
}
2013-11-14 16:05:55 +01:00
// tolua_begin
2013-07-29 12:13:03 +01:00
class cJukeboxEntity :
public cBlockEntity
{
typedef cBlockEntity super;
2013-07-29 12:13:03 +01:00
public:
2013-11-14 16:05:55 +01:00
// tolua_end
2013-07-29 12:13:03 +01:00
cJukeboxEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
virtual ~cJukeboxEntity();
2013-11-14 16:05:55 +01:00
bool LoadFromJson(const Json::Value & a_Value);
virtual void SaveToJson(Json::Value & a_Value) override;
2013-07-29 12:13:03 +01:00
2013-11-14 16:05:55 +01:00
// tolua_begin
int GetRecord(void);
void SetRecord(int a_Record);
void PlayRecord(void);
/// Ejects the currently held record as a pickup. Does nothing when no record inserted.
void EjectRecord(void);
// tolua_end
virtual void UsedBy(cPlayer * a_Player) override;
2013-07-29 12:13:03 +01:00
virtual void SendTo(cClientHandle & a_Client) override { };
private:
int m_Record;
2013-11-14 16:05:55 +01:00
} ; // tolua_end
2013-07-29 12:13:03 +01:00