-
Notifications
You must be signed in to change notification settings - Fork 1
/
track.hpp
126 lines (99 loc) · 2.94 KB
/
track.hpp
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
/*
Copyright (c) 2014 Auston Sterling
See LICENSE for copying permissions.
-----Track Class Header-----
Auston Sterling
austonst@gmail.com
Contains the header for the Track class, representing a MIDI track.
*/
#ifndef _track_hpp_
#define _track_hpp_
#include "event.hpp"
#include "note.hpp"
#include <vector>
#include <queue>
namespace midi
{
//Helper struct to track when a note is pressed and how long it is held
struct NoteTime
{
Note note;
std::uint32_t begin;
std::uint32_t duration;
Instrument instrument;
};
class NoteTimeComparer
{
public:
bool operator()(const NoteTime & nt1, const NoteTime & nt2)
{
return nt1.begin > nt2.begin;
}
};
//Forward declaration of NoteTrack
class NoteTrack;
//Parent class to the more specific types of tracks
class Track
{
public:
//Common functions
virtual ~Track() {};
virtual void clear() = 0;
virtual std::size_t size() const = 0;
virtual Track* clone() const = 0;
//Retrieve the contents of the track as a vector of uint8_t's
virtual std::vector<std::uint8_t> data() const = 0;
private:
};
//A track the way MIDI percieves it: as a series of events
class EventTrack : public Track
{
public:
//Standard stuff
~EventTrack();
//Operations on the events
void clear();
std::size_t size() const;
void add(const Event & ev);
//Implementation of Track::data
std::vector<std::uint8_t> data() const;
//Convert to NoteTrack
NoteTrack toNotes() const;
operator NoteTrack() const;
//Clone function
Track* clone() const;
private:
std::vector<Event*> event_;
};
//A track the way human beans see it: as a series of notes
class NoteTrack : public Track
{
public:
//Operations on the notes
void clear();
std::size_t size() const;
void add(Note note, std::uint32_t time, std::uint32_t duration,
Instrument instrument = Instrument::ACOUSTIC_GRAND_PIANO);
void add(NoteTime nt);
void add(Chord chord, std::uint32_t time, std::uint32_t duration,
Instrument instrument = Instrument::ACOUSTIC_GRAND_PIANO);
void addAfterLastPress(Note note, std::uint32_t deltaTime,
std::uint32_t duration,
Instrument instrument = Instrument::ACOUSTIC_GRAND_PIANO);
void addAfterLastPress(Chord chord, std::uint32_t deltaTime,
std::uint32_t duration,
Instrument instrument = Instrument::ACOUSTIC_GRAND_PIANO);
//Implementation of Track::data
std::vector<std::uint8_t> data() const;
//Accessor for read-only examination or debugging
const std::vector<NoteTime> & note() const {return note_;}
//Convert to EventTrack
EventTrack toEvents() const;
operator EventTrack() const;
//Clone function
Track* clone() const;
private:
std::vector<NoteTime> note_;
};
} //Namespace
#endif