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
|
#include "inputprocessor.h"
#include <list>
#include "hugin.hpp"
#include "instrument.h"
InputProcessor::InputProcessor(DrumKit& kit, std::list<Event*>* activeevents)
: kit(kit)
, activeevents(activeevents)
, is_stopping(false)
{
}
bool InputProcessor::process(const std::vector<event_t>& events, size_t pos, double resample_ratio)
{
for(const auto& event: events)
{
if(event.type == TYPE_ONSET)
{
if(!processOnset(event, pos, resample_ratio))
{
continue;
}
}
if(!processStop(event))
{
return false;
}
}
return true;
}
bool InputProcessor::processOnset(const event_t& event, size_t pos, double resample_ratio)
{
if(!kit.isValid()) {
return false;
}
if(event.instrument >= kit.instruments.size() ||
!kit.instruments[event.instrument] ||
!kit.instruments[event.instrument]->isValid())
{
ERR(inputprocessor, "Missing Instrument %d.\n", (int)event.instrument);
return false;
}
Instrument& instr(*kit.instruments[event.instrument]);
if(instr.getGroup() != "")
{
for(auto& ch: kit.channels)
{
for(Event* event: activeevents[ch.num])
{
if(event->getType() == Event::sample)
{
EventSample& event_sample = *(EventSample*)event;
if(event_sample.group == instr.getGroup() &&
event_sample.instrument != &instr)
{
event_sample.rampdown = 3000;
event_sample.ramp_start = event_sample.rampdown;
}
}
}
}
}
if(!instr.sample(event.velocity, event.offset + pos))
{
ERR(inputprocessor, "Missing Sample.\n");
return false;
}
Sample& s(*instr.sample(event.velocity, event.offset + pos));
for(auto& ch: kit.channels)
{
AudioFile* af = s.getAudioFile(&ch);
if(af)
{
}
if(af == nullptr || !af->isValid())
{
}
else
{
Event* evt = new EventSample(ch.num, 1.0, af, instr.getGroup(), &instr);
evt->offset = (event.offset + pos) * resample_ratio;
activeevents[ch.num].push_back(evt);
}
}
return true;
}
bool InputProcessor::processStop(const event_t& event)
{
if(event.type == TYPE_STOP)
{
is_stopping = true;
}
if(is_stopping)
{
int num_active_events = 0;
for(auto& ch: kit.channels)
{
num_active_events += activeevents[ch.num].size();
}
if(num_active_events == 0)
{
return false;
}
}
return true;
}
|