From 6ceade76b32fe5e63901ae926b7198870c1b79a4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 18 Mar 2017 18:37:19 +0100 Subject: Lua bindings to access MIDI region/source note-events --- libs/ardour/lua_api.cc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'libs/ardour/lua_api.cc') diff --git a/libs/ardour/lua_api.cc b/libs/ardour/lua_api.cc index c32a9e9338..8499e5c7ff 100644 --- a/libs/ardour/lua_api.cc +++ b/libs/ardour/lua_api.cc @@ -820,3 +820,17 @@ LuaAPI::new_noteptr (uint8_t chan, Evoral::Beats beat_time, Evoral::Beats length { return boost::shared_ptr > (new Evoral::Note(chan, beat_time, length, note, velocity)); } + +std::list > > +LuaAPI::note_list (boost::shared_ptr mm) +{ + typedef typename boost::shared_ptr > NotePtr; + + std::list note_ptr_list; + + const MidiModel::Notes& notes = mm->notes(); + for (MidiModel::Notes::const_iterator i = notes.begin(); i != notes.end(); ++i) { + note_ptr_list.push_back (*i); + } + return note_ptr_list; +} -- cgit v1.2.3