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
|
#pragma once
#include <config.h>
#include <algorithm>
#include <array>
#include <vector>
#include "events.h"
#include "id.h"
#include "memory_heap.h"
#include "range.h"
#include "instrument.h"
class EventsDS
{
public:
template <typename T, typename... Args>
T& emplace(channel_t ch, Args&&... args);
void remove(EventID event_id);
template <typename T>
T& get(EventID event_id);
Event::Type getType(EventID event_id) const;
std::size_t numberOfEvents(channel_t ch) const;
template <typename T>
ContainerRange<std::vector<T>> iterateOver(channel_t ch);
const EventGroupIDs& getSampleEventGroupIDsOf(InstrumentID instrument_id) const;
const EventIDs& getEventIDsOf(EventGroupID event_group_id) const;
void startAddingNewGroup(InstrumentID instrument_id = InstrumentID());
void clear();
private:
struct ChannelData
{
std::vector<SampleEvent> sample_events;
};
using ChannelEventIndex = std::size_t;
struct EventInfo
{
Event::Type type;
channel_t ch;
ChannelEventIndex channel_event_index;
EventInfo(Event::Type type, channel_t ch, ChannelEventIndex channel_event_index)
: type(type), ch(ch), channel_event_index(channel_event_index) {}
};
struct GroupData
{
EventIDs event_ids;
std::size_t instrument_index;
};
std::array<ChannelData, NUM_CHANNELS> channel_data_array;
MemoryHeap<EventInfo> id_to_info;
MemoryHeap<GroupData> id_to_group_data;
std::array<EventGroupIDs, 128> instruments_sample_event_group_ids;
EventGroupID current_group_id;
InstrumentID current_groups_instrument_id;
void removeGroup(EventGroupID group_id, InstrumentID instrument_id = InstrumentID());
template <typename T>
T& getSample(EventInfo const& info);
};
template <typename T, typename... Args>
T& EventsDS::emplace(channel_t ch, Args&&... args)
{
assert(ch < NUM_CHANNELS);
static_assert(std::is_same<T, SampleEvent>::value, "Check event type");
if (std::is_same<T, SampleEvent>::value)
{
auto& sample_events = channel_data_array[ch].sample_events;
auto channel_event_index = sample_events.size();
sample_events.emplace_back(std::forward<Args>(args)...);
auto event_id = id_to_info.emplace(Event::Type::SampleEvent, ch, channel_event_index);
id_to_group_data.get(current_group_id).event_ids.push_back(event_id);
auto& sample_event = sample_events.back();
sample_event.id = event_id;
sample_event.group_id = current_group_id;
assert(sample_event.instrument_id == current_groups_instrument_id);
assert(sample_event.channel == ch);
return sample_event;
}
}
template <typename T>
T& EventsDS::get(EventID event_id)
{
return getSample<T>(id_to_info.get(event_id));
}
template <typename T>
ContainerRange<std::vector<T>> EventsDS::iterateOver(channel_t ch)
{
assert(ch < NUM_CHANNELS);
static_assert(std::is_same<T, SampleEvent>::value, "Check event type");
if (std::is_same<T, SampleEvent>::value)
{
auto& sample_events = channel_data_array[ch].sample_events;
return ContainerRange<std::vector<T>>(sample_events.begin(), sample_events.end());
}
}
template <typename T>
T& EventsDS::getSample(EventInfo const& info)
{
assert(info.ch < NUM_CHANNELS);
static_assert(std::is_same<T, SampleEvent>::value, "Check event type");
if (std::is_same<T, SampleEvent>::value)
{
return channel_data_array[info.ch].sample_events[info.channel_event_index];
}
}
|