diff options
author | madmaxoft <github@xoft.cz> | 2013-11-14 17:14:54 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-14 17:14:54 +0100 |
commit | 4533fc34ecae9a7a6d89f49a6b25628dde348773 (patch) | |
tree | 459ba89528502da3f44d0d261a1f9442c5d9e607 /source/BlockEntities/NoteEntity.cpp | |
parent | Exported cJukeboxEntity to Lua API. (diff) | |
download | cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.gz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.bz2 cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.lz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.xz cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.tar.zst cuberite-4533fc34ecae9a7a6d89f49a6b25628dde348773.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockEntities/NoteEntity.cpp | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/source/BlockEntities/NoteEntity.cpp b/source/BlockEntities/NoteEntity.cpp index f06c90927..1b0620299 100644 --- a/source/BlockEntities/NoteEntity.cpp +++ b/source/BlockEntities/NoteEntity.cpp @@ -9,16 +9,6 @@ -cNoteEntity::cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ) : - super(E_BLOCK_NOTE_BLOCK, a_BlockX, a_BlockY, a_BlockZ, NULL), - m_Pitch(0) -{ -} - - - - - cNoteEntity::cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) : super(E_BLOCK_NOTE_BLOCK, a_BlockX, a_BlockY, a_BlockZ, a_World), m_Pitch(0) @@ -29,7 +19,7 @@ cNoteEntity::cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_Wo -void cNoteEntity::UsedBy( cPlayer * a_Player ) +void cNoteEntity::UsedBy(cPlayer * a_Player) { IncrementPitch(); MakeSound(); @@ -39,7 +29,7 @@ void cNoteEntity::UsedBy( cPlayer * a_Player ) -void cNoteEntity::MakeSound( void ) +void cNoteEntity::MakeSound(void) { char instrument; AString sampleName; @@ -107,7 +97,7 @@ void cNoteEntity::MakeSound( void ) -char cNoteEntity::GetPitch( void ) +char cNoteEntity::GetPitch(void) { return m_Pitch; } @@ -116,7 +106,7 @@ char cNoteEntity::GetPitch( void ) -void cNoteEntity::SetPitch( char a_Pitch ) +void cNoteEntity::SetPitch(char a_Pitch) { m_Pitch = a_Pitch % 25; } @@ -125,16 +115,16 @@ void cNoteEntity::SetPitch( char a_Pitch ) -void cNoteEntity::IncrementPitch( void ) +void cNoteEntity::IncrementPitch(void) { - SetPitch( m_Pitch + 1 ); + SetPitch(m_Pitch + 1); } -bool cNoteEntity::LoadFromJson( const Json::Value & a_Value ) +bool cNoteEntity::LoadFromJson(const Json::Value & a_Value) { m_PosX = a_Value.get("x", 0).asInt(); @@ -150,7 +140,7 @@ bool cNoteEntity::LoadFromJson( const Json::Value & a_Value ) -void cNoteEntity::SaveToJson( Json::Value & a_Value ) +void cNoteEntity::SaveToJson(Json::Value & a_Value) { a_Value["x"] = m_PosX; a_Value["y"] = m_PosY; |