Cuberite
A lightweight, fast and extensible game server for Minecraft
NoteEntity.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "BlockEntity.h"
5 
6 
7 
8 
9 
11 {
22 };
23 
24 
25 
26 
27 
28 // tolua_begin
29 
30 class cNoteEntity :
31  public cBlockEntity
32 {
33  // tolua_end
34 
36 
37 public: // tolua_export
38 
40  cNoteEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);
41 
42  // tolua_begin
43 
44  unsigned char GetNote(void);
45  void SetNote(unsigned char a_Note);
46  void IncrementNote(void);
47  void MakeSound(void);
48 
49  // tolua_end
50 
51  // cBlockEntity overrides:
52  virtual void CopyFrom(const cBlockEntity & a_Src) override;
53  virtual bool UsedBy(cPlayer * a_Player) override;
54  virtual void SendTo(cClientHandle &) override {}
55 
58  static float PitchFromNote(unsigned char a_Note);
59 
60 private:
61 
62  unsigned char m_Note;
63 } ; // tolua_export
ENUM_NOTE_INSTRUMENTS
Definition: NoteEntity.h:11
@ E_INST_DOUBLE_BASS
Definition: NoteEntity.h:13
@ E_INST_BELL
Definition: NoteEntity.h:18
@ E_INST_CLICKS
Definition: NoteEntity.h:15
@ E_INST_CHIME
Definition: NoteEntity.h:20
@ E_INST_SNARE_DRUM
Definition: NoteEntity.h:14
@ E_INST_FLUTE
Definition: NoteEntity.h:17
@ E_INST_GUITAR
Definition: NoteEntity.h:19
@ E_INST_XYLOPHONE
Definition: NoteEntity.h:21
@ E_INST_HARP_PIANO
Definition: NoteEntity.h:12
@ E_INST_BASS_DRUM
Definition: NoteEntity.h:16
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
Definition: ChunkDef.h:44
unsigned char BLOCKTYPE
The datatype used by blockdata.
Definition: ChunkDef.h:41
cBlockEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld *a_World)
Definition: BlockEntity.cpp:32
void SetNote(unsigned char a_Note)
Definition: NoteEntity.cpp:270
void MakeSound(void)
Definition: NoteEntity.cpp:47
unsigned char GetNote(void)
Definition: NoteEntity.cpp:261
virtual void CopyFrom(const cBlockEntity &a_Src) override
Copies all properties of a_Src into this entity, except for its m_World and location.
Definition: NoteEntity.cpp:24
void IncrementNote(void)
Definition: NoteEntity.cpp:279
unsigned char m_Note
Definition: NoteEntity.h:62
virtual void SendTo(cClientHandle &) override
Sends the packet defining the block entity to the client specified.
Definition: NoteEntity.h:54
virtual bool UsedBy(cPlayer *a_Player) override
Called when a player uses this entity; should open the UI window.
Definition: NoteEntity.cpp:35
cNoteEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld *a_World)
Creates a new note entity.
Definition: NoteEntity.cpp:13
static float PitchFromNote(unsigned char a_Note)
Returns the relative pitch (used in the protocol) from a note value between 0 and 24 (used in m_Note)...
Definition: NoteEntity.cpp:288
Definition: Player.h:29
Definition: World.h:53