(1) silence non-process FIFO message (2) move MIDI state tracking down to the MidiPor...
[ardour.git] / libs / ardour / midi_state_tracker.cc
1 /*
2     Copyright (C) 2006-2008 Paul Davis
3     Author: Torben Hohn
4
5     This program is free software; you can redistribute it and/or modify it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <iostream>
21 #include "ardour/event_type_map.h"
22 #include "ardour/midi_state_tracker.h"
23
24 using namespace std;
25 using namespace ARDOUR;
26
27
28 MidiStateTracker::MidiStateTracker ()
29 {
30         reset ();
31 }
32
33 void
34 MidiStateTracker::reset ()
35 {
36         memset (_active_notes, 0, sizeof (_active_notes));
37 }
38
39 void
40 MidiStateTracker::track_note_onoffs (const Evoral::MIDIEvent<MidiBuffer::TimeType>& event)
41 {
42         if (event.is_note_on()) {
43                 _active_notes [event.note() + 128 * event.channel()]++;
44         } else if (event.is_note_off()){
45                 if (_active_notes[event.note() + 128 * event.channel()]) {
46                         _active_notes [event.note() + 128 * event.channel()]--;
47                 }
48         }
49 }
50
51 void
52 MidiStateTracker::track (const MidiBuffer::iterator &from, const MidiBuffer::iterator &to, bool& looped)
53 {
54         looped = false;
55
56         for (MidiBuffer::iterator i = from; i != to; ++i) {
57                 const Evoral::MIDIEvent<MidiBuffer::TimeType> ev(*i, false);
58                 if (ev.event_type() == LoopEventType) {
59                         looped = true;
60                         continue;
61                 }
62
63                 track_note_onoffs (ev);
64         }
65 }
66
67 void
68 MidiStateTracker::resolve_notes (MidiBuffer &dst, nframes64_t time)
69 {
70         for (int channel = 0; channel < 16; ++channel) {
71                 for (int note = 0; note < 128; ++note) {
72                         while (_active_notes[channel * 128 + note]) {
73                                 uint8_t buffer[3] = { MIDI_CMD_NOTE_OFF | channel, note, 0 };
74                                 Evoral::MIDIEvent<MidiBuffer::TimeType> noteoff
75                                         (time, MIDI_CMD_NOTE_OFF, 3, buffer, false);
76                                 dst.push_back (noteoff);
77
78                                 _active_notes[channel * 128 + note]--;
79                         }
80                 }
81         }
82 }
83
84 void
85 MidiStateTracker::dump (ostream& o)
86 {
87         o << "******\n";
88         for (int c = 0; c < 16; ++c) {
89                 for (int x = 0; x < 128; ++x) {
90                         if (_active_notes[c * 128 + x]) {
91                                 o << "Channel " << c+1 << " Note " << x << " is on ("
92                                   << (int) _active_notes[c*128+x] <<  "times)\n";
93                         }
94                 }
95         }
96         o << "+++++\n";
97 }