-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnotation.hpp
More file actions
216 lines (182 loc) · 4.65 KB
/
notation.hpp
File metadata and controls
216 lines (182 loc) · 4.65 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#ifndef SGR_NOTATION_HPP
#define SGR_NOTATION_HPP
/**
* @file notation.hpp
* Implements the notation namespace.
*
* @author Gašper Ažman, gasper.azman@gmail.com
* @since 2012-01-31
*/
#include "notation_pitch.hpp"
#include "notation_instrument.hpp"
#include "notation_volume.hpp"
#include "notation_timing.hpp"
#include "units.hpp"
#include <vector>
#include <set>
namespace sgr {
namespace notation {
/**
* Represents a duration and accentuation of a single note in a passage.
*/
struct hit {
/** start, in beats since start of sequence */
units::beat start;
/** duration, in beats since start of sequence */
units::beat duration;
/** accent, 0-1. May represent volume or some other form of
* accentuation. */
double accent;
hit(decltype(start) start, decltype(duration) duration, decltype(accent) accent)
: start{start}
, duration{duration}
, accent{accent}
{}
};
/** Holds a single played note. */
struct note {
instrument::instrument::pointer_type instrument;
volume::volume::pointer_type volume;
pitch::pitch::pointer_type pitch;
hit duration;
note(decltype(instrument) instrument, decltype(volume) volume,
decltype(pitch) pitch, decltype(duration) duration)
: instrument{instrument}
, volume{volume}
, pitch{pitch}
, duration{duration}
{}
};
/**
* This class enables listening for changes to a song object. This is useful,
* for instance, if you have a player and one part of the program is producing
* music in this fashion (song) that the player has to play in real time.
*/
class song_listener {
private:
song_listener()
: listeners()
{}
public:
struct interface {
virtual void notify(const note) = 0;
virtual ~interface() {}
};
static std::shared_ptr<song_listener>
create()
{
return std::shared_ptr<song_listener>(new song_listener());
}
void notify(const note n)
{
for (auto l : listeners) {
if (l) {
l->notify(n);
}
}
}
/* listener pattern support */
void listen(std::shared_ptr<interface> listener)
{
listeners.insert(listener);
}
void remove_listener(std::shared_ptr<interface> listener)
{
listeners.erase(listener);
}
virtual ~song_listener() {}
private:
/// listeners
std::set<std::shared_ptr<interface>> listeners;
}; /* end class song_listener */
/**
* This is supposed to be a lightweight class containing whole songs or just
* parts of songs. It is designed to be returned from functions etc.
*/
class song {
public:
song()
: notes_()
, timings_()
, listener(nullptr)
{}
/* actual song functions */
song& operator<<(const song& s)
{
for (auto n : s.notes_) {
add_note(n);
}
return *this;
}
song& operator<<(const std::vector<note>& notes_)
{
for (auto n : notes_) {
add_note(n);
}
return *this;
}
song& operator<<(const note n)
{
return add_note(n);
}
song& add_note(const note n)
{
notes_.push_back(n);
if (listener) { listener->notify(n); }
return *this;
}
song& add_timing(const timing::timing::pointer_type& t)
{
timings_.push_back(t);
return *this;
}
song& operator<<(const timing::timing::pointer_type& t)
{
return add_timing(t);
}
const std::vector<note>
active_notes_(units::beat beat) const
{
std::vector<note> instrs;
for (auto note : notes_) {
auto start = note.duration.start;
auto end = note.duration.start + note.duration.duration;
if (start >= beat && beat < end) {
instrs.push_back(note);
}
}
return instrs;
}
/* LISTENER SUPPORT */
void set_listener(std::shared_ptr<song_listener> listener)
{
this->listener = listener;
}
const std::shared_ptr<song_listener>
get_or_create_listener()
{
if (!listener) {
listener = song_listener::create();
}
return listener;
}
/* END LISTENER SUPPORT */
private:
/// notes_
std::vector<note> notes_;
std::vector<timing::timing::pointer_type> timings_;
public:
const decltype(notes_)& notes()
{
return notes_;
}
const decltype(timings_)& timings()
{
return timings_;
}
private:
std::shared_ptr<song_listener> listener;
};
} /* end namespace sgr */
} /* end namespace notation */
#endif