summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/NoteEntity.cpp
blob: a9af13c552b4a590000c33596d585e2ab0a8a237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "NoteEntity.h"
#include "../World.h"
#include "json/value.h"





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)
{
}





void cNoteEntity::UsedBy(cPlayer * a_Player)
{
	UNUSED(a_Player);
	IncrementPitch();
	MakeSound();
}





void cNoteEntity::MakeSound(void)
{
	char instrument;
	AString sampleName;
	
	switch (m_World->GetBlock(m_PosX, m_PosY - 1, m_PosZ))
	{
		case E_BLOCK_PLANKS:
		case E_BLOCK_LOG:
		case E_BLOCK_NOTE_BLOCK:
		{
			// TODO: add other wood-based blocks if needed
			instrument = E_INST_DOUBLE_BASS;
			sampleName = "note.db";
			break;
		}
		
		case E_BLOCK_SAND:
		case E_BLOCK_GRAVEL:
		case E_BLOCK_SOULSAND:
		{
			instrument = E_INST_SNARE_DRUM;
			sampleName = "note.snare";
			break;
		}
		
		case E_BLOCK_GLASS:
		case E_BLOCK_GLASS_PANE:
		case E_BLOCK_GLOWSTONE:
		{
			instrument = E_INST_CLICKS;
			sampleName = "note.hat";
			break;
		}

		case E_BLOCK_STONE:
		case E_BLOCK_STONE_BRICKS:
		case E_BLOCK_COBBLESTONE:
		case E_BLOCK_OBSIDIAN:
		case E_BLOCK_NETHERRACK:
		case E_BLOCK_BRICK:
		case E_BLOCK_NETHER_BRICK:
		{
			// TODO: add other stone-based blocks if needed
			instrument = E_INST_BASS_DRUM;
			sampleName = "note.bassattack";
			break;
		}

		default:
		{
			instrument = E_INST_HARP_PIANO;
			sampleName = "note.harp";
			break;
		}
	}

	m_World->BroadcastBlockAction(m_PosX, m_PosY, m_PosZ, instrument, m_Pitch, E_BLOCK_NOTE_BLOCK);
	
	// TODO: instead of calculating the power function over and over, make a precalculated table - there's only 24 pitches after all
	float calcPitch = pow(2.0f, ((float)m_Pitch - 12.0f) / 12.0f);
	m_World->BroadcastSoundEffect(sampleName, (double)m_PosX, (double)m_PosY, (double)m_PosZ, 3.0f, calcPitch);
}





char cNoteEntity::GetPitch(void)
{
	return m_Pitch;
}





void cNoteEntity::SetPitch(char a_Pitch)
{
	m_Pitch = a_Pitch % 25;
}





void cNoteEntity::IncrementPitch(void)
{
	SetPitch(m_Pitch + 1);
}