forked from pichenettes/stmlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added MIDI decoding functions, and data structures for synth voice al…
…location
- Loading branch information
pichenettes
committed
Mar 20, 2013
1 parent
0c5bd71
commit ad658a5
Showing
3 changed files
with
569 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
// Copyright 2012 Olivier Gillet. | ||
// | ||
// Author: Olivier Gillet ([email protected]) | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
// See http://creativecommons.org/licenses/MIT/ for more information. | ||
// | ||
// ----------------------------------------------------------------------------- | ||
// | ||
// Stack of currently pressed keys. | ||
// | ||
// Currently pressed keys are stored as a linked list. The linked list is used | ||
// as a LIFO stack to allow monosynth-like behaviour. An example of such | ||
// behaviour is: | ||
// player presses and holds C4-> C4 is played. | ||
// player presses and holds C5 (while holding C4) -> C5 is played. | ||
// player presses and holds G4 (while holding C4&C5)-> G4 is played. | ||
// player releases C5 -> G4 is played. | ||
// player releases G4 -> C4 is played. | ||
// | ||
// The nodes used in the linked list are pre-allocated from a pool of N | ||
// nodes, so the "pointers" (to the root element for example) are not actual | ||
// pointers, but indices of an element in the pool. | ||
// | ||
// Additionally, an array of pointers is stored to allow random access to the | ||
// n-th note, sorted by ascending order of pitch (for arpeggiation). | ||
|
||
#ifndef STMLIB_ALGORITHMS_NOTE_STACK_H_ | ||
#define STMLIB_ALGORITHMS_NOTE_STACK_H_ | ||
|
||
#include "stmlib/stmlib.h" | ||
|
||
#include <cstring> | ||
|
||
namespace stmlib { | ||
|
||
static const uint8_t kFreeSlot = 0xff; | ||
|
||
struct NoteEntry { | ||
uint8_t note; | ||
uint8_t velocity; | ||
uint8_t next_ptr; // Base 1. | ||
}; | ||
|
||
template<uint8_t capacity> | ||
class NoteStack { | ||
public: | ||
NoteStack() { } | ||
~NoteStack() { } | ||
|
||
void Init() { Clear(); } | ||
|
||
void NoteOn(uint8_t note, uint8_t velocity) { | ||
// Remove the note from the list first (in case it is already here). | ||
NoteOff(note); | ||
// In case of saturation, remove the least recently played note from the | ||
// stack. | ||
if (size_ == capacity) { | ||
uint8_t least_recent_note = 1; | ||
for (uint8_t i = 1; i <= capacity; ++i) { | ||
if (pool_[i].next_ptr == 0) { | ||
least_recent_note = pool_[i].note; | ||
} | ||
} | ||
NoteOff(least_recent_note); | ||
} | ||
// Now we are ready to insert the new note. Find a free slot to insert it. | ||
uint8_t free_slot = 1; | ||
for (uint8_t i = 1; i <= capacity; ++i) { | ||
if (pool_[i].note == kFreeSlot) { | ||
free_slot = i; | ||
break; | ||
} | ||
} | ||
pool_[free_slot].next_ptr = root_ptr_; | ||
pool_[free_slot].note = note; | ||
pool_[free_slot].velocity = velocity; | ||
root_ptr_ = free_slot; | ||
// The last step consists in inserting the note in the sorted list. | ||
for (uint8_t i = 0; i < size_; ++i) { | ||
if (pool_[sorted_ptr_[i]].note > note) { | ||
for (uint8_t j = size_; j > i; --j) { | ||
sorted_ptr_[j] = sorted_ptr_[j - 1]; | ||
} | ||
sorted_ptr_[i] = free_slot; | ||
free_slot = 0; | ||
break; | ||
} | ||
} | ||
if (free_slot) { | ||
sorted_ptr_[size_] = free_slot; | ||
} | ||
++size_; | ||
} | ||
|
||
void NoteOff(uint8_t note) { | ||
uint8_t current = root_ptr_; | ||
uint8_t previous = 0; | ||
while (current) { | ||
if (pool_[current].note == note) { | ||
break; | ||
} | ||
previous = current; | ||
current = pool_[current].next_ptr; | ||
} | ||
if (current) { | ||
if (previous) { | ||
pool_[previous].next_ptr = pool_[current].next_ptr; | ||
} else { | ||
root_ptr_ = pool_[current].next_ptr; | ||
} | ||
for (uint8_t i = 0; i < size_; ++i) { | ||
if (sorted_ptr_[i] == current) { | ||
for (uint8_t j = i; j < size_ - 1; ++j) { | ||
sorted_ptr_[j] = sorted_ptr_[j + 1]; | ||
} | ||
break; | ||
} | ||
} | ||
pool_[current].next_ptr = 0; | ||
pool_[current].note = kFreeSlot; | ||
pool_[current].velocity = 0; | ||
--size_; | ||
} | ||
} | ||
|
||
void Clear() { | ||
size_ = 0; | ||
memset(pool_ + 1, 0, sizeof(NoteEntry) * capacity); | ||
memset(sorted_ptr_ + 1, 0, capacity); | ||
root_ptr_ = 0; | ||
for (uint8_t i = 0; i <= capacity; ++i) { | ||
pool_[i].note = kFreeSlot; | ||
} | ||
} | ||
|
||
uint8_t size() const { return size_; } | ||
uint8_t max_size() const { return capacity; } | ||
const NoteEntry& most_recent_note() const { return pool_[root_ptr_]; } | ||
const NoteEntry& least_recent_note() const { | ||
uint8_t current = root_ptr_; | ||
while (current && pool_[current].next_ptr) { | ||
current = pool_[current].next_ptr; | ||
} | ||
return pool_[current]; | ||
} | ||
const NoteEntry& played_note(uint8_t index) const { | ||
uint8_t current = root_ptr_; | ||
index = size_ - index - 1; | ||
for (uint8_t i = 0; i < index; ++i) { | ||
current = pool_[current].next_ptr; | ||
} | ||
return pool_[current]; | ||
} | ||
const NoteEntry& sorted_note(uint8_t index) const { | ||
return pool_[sorted_ptr_[index]]; | ||
} | ||
const NoteEntry& note(uint8_t index) const { return pool_[index]; } | ||
NoteEntry* mutable_note(uint8_t index) { return &pool_[index]; } | ||
const NoteEntry& dummy() const { return pool_[0]; } | ||
|
||
private: | ||
uint8_t size_; | ||
NoteEntry pool_[capacity + 1]; // First element is a dummy node! | ||
uint8_t root_ptr_; // Base 1. | ||
uint8_t sorted_ptr_[capacity + 1]; // Base 1. | ||
|
||
DISALLOW_COPY_AND_ASSIGN(NoteStack); | ||
}; | ||
|
||
} // namespace stmlib | ||
|
||
#endif // STMLIB_ALGORITHMS_NOTE_STACK_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
// Copyright 2012 Olivier Gillet. | ||
// | ||
// Author: Olivier Gillet ([email protected]) | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
// See http://creativecommons.org/licenses/MIT/ for more information. | ||
// | ||
// ----------------------------------------------------------------------------- | ||
// | ||
// Polyphonic voice allocator. | ||
|
||
#ifndef STMLIB_ALGORITHMS_VOICE_ALLOCATOR_H_ | ||
#define STMLIB_ALGORITHMS_VOICE_ALLOCATOR_H_ | ||
|
||
#include "stmlib/stmlib.h" | ||
|
||
namespace stmlib { | ||
|
||
enum AllocatorFlags { | ||
NOT_ALLOCATED = 0xff, | ||
ACTIVE_NOTE = 0x80 | ||
}; | ||
|
||
template<uint8_t capacity> | ||
class VoiceAllocator { | ||
public: | ||
VoiceAllocator() { } | ||
|
||
void Init() { | ||
size_ = 0; | ||
Clear(); | ||
} | ||
|
||
uint8_t NoteOn(uint8_t note) { | ||
if (size_ == 0) { | ||
return kNotAllocated; | ||
} | ||
|
||
// First, check if there is a voice currently playing this note. In this | ||
// case, this voice will be responsible for retriggering this note. | ||
// Hint: if you're more into string instruments than keyboard instruments, | ||
// you can safely comment those lines. | ||
uint8_t voice = Find(note); | ||
|
||
// Then, try to find the least recently touched, currently inactive voice. | ||
if (voice == kNotAllocated) { | ||
for (uint8_t i = 0; i < capacity; ++i) { | ||
if (lru_[i] < size_ && !(pool_[lru_[i]] & ACTIVE_NOTE)) { | ||
voice = lru_[i]; | ||
} | ||
} | ||
} | ||
// If all voices are active, use the least recently played note | ||
// (voice-stealing). | ||
if (voice == kNotAllocated) { | ||
for (uint8_t i = 0; i < capacity; ++i) { | ||
if (lru_[i] < size_) { | ||
voice = lru_[i]; | ||
} | ||
} | ||
} | ||
pool_[voice] = note | ACTIVE_NOTE; | ||
Touch(voice); | ||
return voice; | ||
} | ||
|
||
uint8_t NoteOff(uint8_t note) { | ||
uint8_t voice = Find(note); | ||
if (voice != kNotAllocated) { | ||
pool_[voice] &= 0x7f; | ||
Touch(voice); | ||
} | ||
return voice; | ||
} | ||
|
||
uint8_t Find(uint8_t note) const { | ||
for (uint8_t i = 0; i < size_; ++i) { | ||
if ((pool_[i] & 0x7f) == note) { | ||
return i; | ||
} | ||
} | ||
return kNotAllocated; | ||
} | ||
|
||
void Clear() { | ||
ClearNotes(); | ||
for (uint8_t i = 0; i < capacity; ++i) { | ||
lru_[i] = capacity - i - 1; | ||
} | ||
} | ||
|
||
inline void ClearNotes() { | ||
memset(&pool_, 0, sizeof(pool_)); | ||
} | ||
|
||
inline void set_size(uint8_t size) { | ||
size_ = size; | ||
} | ||
|
||
inline uint8_t size() const { return size_; } | ||
|
||
private: | ||
void Touch(uint8_t voice) { | ||
int8_t source = capacity - 1; | ||
int8_t destination = capacity - 1; | ||
while (source >= 0) { | ||
if (lru_[source] != voice) { | ||
lru_[destination--] = lru_[source]; | ||
} | ||
--source; | ||
} | ||
lru_[0] = voice; | ||
} | ||
|
||
uint8_t pool_[capacity]; | ||
// Holds the indices of the voices sorted by most recent usage. | ||
uint8_t lru_[capacity]; | ||
uint8_t size_; | ||
|
||
DISALLOW_COPY_AND_ASSIGN(VoiceAllocator); | ||
}; | ||
|
||
} // namespace ambika | ||
|
||
#endif // STMLIB_ALGORITHMS_VOICE_ALLOCATOR_H_ |
Oops, something went wrong.