summaryrefslogblamecommitdiffstats
path: root/source/BlockEntities/NoteEntity.h
blob: 84c4972de2a08ec4bd8ec33f1e599818ef6c2f02 (plain) (tree)






























                               
                                   
       



                                                                     
                                                                 

















                                                                   

#pragma once

#include "BlockEntity.h"


namespace Json
{
	class Value;
}





enum ENUM_NOTE_INSTRUMENTS
{
	E_INST_HARP_PIANO  = 0,
	E_INST_DOUBLE_BASS = 1,
	E_INST_SNARE_DRUM  = 2,
	E_INST_CLICKS      = 3,
	E_INST_BASS_DRUM   = 4
};





class cNoteEntity : 
	public cBlockEntity
{
	typedef cBlockEntity super;
public:

	/// Creates a new note entity that is not assigned to a world
	cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ);
	
	cNoteEntity(int a_X, int a_Y, int a_Z, cWorld * a_World);

	bool LoadFromJson( const Json::Value& a_Value );
	virtual void SaveToJson( Json::Value& a_Value ) override;

	char GetPitch( void );
	void SetPitch( char a_Pitch );
	void IncrementPitch( void );
	void MakeSound( void );
	virtual void UsedBy( cPlayer * a_Player ) override;
	virtual void SendTo(cClientHandle & a_Client) override { };

private:
	unsigned char m_Pitch;
};