1
0
Fork 0
cuberite-2a/src/BlockEntities/NoteEntity.h

64 lines
1.1 KiB
C
Raw Normal View History

#pragma once
#include "BlockEntity.h"
enum ENUM_NOTE_INSTRUMENTS
{
E_INST_HARP_PIANO = 0,
E_INST_DOUBLE_BASS = 1,
E_INST_SNARE_DRUM = 2,
E_INST_CLICKS = 3,
2017-06-30 08:46:58 +00:00
E_INST_BASS_DRUM = 4,
E_INST_FLUTE = 5,
E_INST_BELL = 6,
E_INST_GUITAR = 7,
E_INST_CHIME = 8,
E_INST_XYLOPHONE = 9
};
// tolua_begin
2014-07-17 20:50:58 +00:00
class cNoteEntity :
public cBlockEntity
{
// tolua_end
2020-04-13 16:38:06 +00:00
using Super = cBlockEntity;
public: // tolua_export
2015-07-31 14:49:10 +00:00
/** Creates a new note entity. a_World may be nullptr */
cNoteEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);
// tolua_begin
2016-02-05 21:45:45 +00:00
unsigned char GetNote(void);
void SetNote(unsigned char a_Note);
void IncrementNote(void);
void MakeSound(void);
2016-02-05 21:45:45 +00:00
// tolua_end
2016-02-05 21:45:45 +00:00
2017-06-15 13:32:33 +00:00
// cBlockEntity overrides:
virtual void CopyFrom(const cBlockEntity & a_Src) override;
virtual bool UsedBy(cPlayer * a_Player) override;
virtual void SendTo(cClientHandle &) override {}
/** Returns the relative pitch (used in the protocol)
from a note value between 0 and 24 (used in m_Note). */
static float PitchFromNote(unsigned char a_Note);
private:
unsigned char m_Note;
} ; // tolua_export