track notes at the region level in MidiPlaylist; resolve them (deliver note offs...
[ardour.git] / libs / ardour / midi_source.cc
index 4da2dbb8455f4bf6ae932660a6d3e08a31c7ace4..20119e20b69bcc7c080f41104ebecf9536d76aa9 100644 (file)
@@ -35,6 +35,7 @@
 #include "ardour/audioengine.h"
 #include "ardour/midi_model.h"
 #include "ardour/midi_ring_buffer.h"
+#include "ardour/midi_state_tracker.h"
 #include "ardour/midi_source.h"
 #include "ardour/session.h"
 #include "ardour/session_directory.h"
@@ -60,7 +61,7 @@ MidiSource::MidiSource (Session& s, string name, Source::Flag flags)
 {
 }
 
-MidiSource::MidiSource (Session& s, const XMLNode& node) 
+MidiSource::MidiSource (Session& s, const XMLNode& node)
        : Source (s, node)
        , _read_data_count(0)
        , _write_data_count(0)
@@ -72,7 +73,7 @@ MidiSource::MidiSource (Session& s, const XMLNode& node)
        _read_data_count = 0;
        _write_data_count = 0;
 
-       if (set_state (node)) {
+       if (set_state (node, Stateful::loading_state_version)) {
                throw failed_constructor();
        }
 }
@@ -94,7 +95,7 @@ MidiSource::get_state ()
 }
 
 int
-MidiSource::set_state (const XMLNode& node)
+MidiSource::set_state (const XMLNode& node, int version)
 {
        const XMLProperty* prop;
 
@@ -126,8 +127,9 @@ MidiSource::invalidate ()
 
 nframes_t
 MidiSource::midi_read (MidiRingBuffer<nframes_t>& dst, sframes_t source_start,
-               sframes_t start, nframes_t cnt,
-               sframes_t stamp_offset, sframes_t negative_stamp_offset) const
+                      sframes_t start, nframes_t cnt,
+                      sframes_t stamp_offset, sframes_t negative_stamp_offset,
+                      MidiStateTracker* tracker) const
 {
        Glib::Mutex::Lock lm (_lock);
 
@@ -152,13 +154,21 @@ MidiSource::midi_read (MidiRingBuffer<nframes_t>& dst, sframes_t source_start,
                        const sframes_t time_frames = BEATS_TO_FRAMES(i->time());
                        if (time_frames < source_start + start + cnt) {
                                dst.write(time_frames, i->event_type(), i->size(), i->buffer());
+                               if (tracker) {
+                                       Evoral::MIDIEvent<Evoral::MusicalTime>& ev (*(Evoral::MIDIEvent<Evoral::MusicalTime>*) (&(*i)));
+                                       if (ev.is_note_on()) {
+                                               tracker->add (ev.note(), ev.channel());
+                                       } else if (ev.is_note_off()) {
+                                               tracker->remove (ev.note(), ev.channel());
+                                       }
+                               }
                        } else {
                                break;
                        }
                }
                return cnt;
        } else {
-               return read_unlocked (dst, source_start, start, cnt, stamp_offset, negative_stamp_offset);
+               return read_unlocked (dst, source_start, start, cnt, stamp_offset, negative_stamp_offset, tracker);
        }
 }
 
@@ -177,7 +187,7 @@ MidiSource::file_changed (string path)
        struct stat stat_file;
 
        int e1 = stat (path.c_str(), &stat_file);
-       
+
        return !e1;
 }
 
@@ -252,7 +262,7 @@ MidiSource::session_saved()
                // cyclic dependency here, ugly :(
                newsrc->set_model(_model);
                _model->set_midi_source(newsrc.get());
-               
+
                newsrc->flush_midi();
 
                Switched.emit(newsrc);