Plugin Order: remove from instant.xml and save to: plugin_metadata/plugin_order
[ardour.git] / libs / ardour / ardour / midi_cursor.h
1 /*
2     Copyright (C) 2016 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_midi_cursor_h__
21 #define __ardour_midi_cursor_h__
22
23 #include <set>
24
25 #include <boost/utility.hpp>
26
27
28
29 #include "pbd/signals.h"
30
31 #include "temporal/beats.h"
32 #include "evoral/Sequence.hpp"
33
34 #include "ardour/types.h"
35
36 namespace ARDOUR {
37
38 struct MidiCursor : public boost::noncopyable {
39         MidiCursor() : last_read_end(0) {}
40
41         void connect(PBD::Signal1<void, bool>& invalidated) {
42                 connections.drop_connections();
43                 invalidated.connect_same_thread(
44                         connections, boost::bind(&MidiCursor::invalidate, this, _1));
45         }
46
47         void invalidate(bool preserve_notes) {
48                 iter.invalidate(preserve_notes ? &active_notes : NULL);
49                 last_read_end = 0;
50         }
51
52         Evoral::Sequence<Temporal::Beats>::const_iterator        iter;
53         std::set<Evoral::Sequence<Temporal::Beats>::WeakNotePtr> active_notes;
54         samplepos_t                                             last_read_end;
55         PBD::ScopedConnectionList                              connections;
56 };
57
58 }
59
60 #endif /* __ardour_midi_cursor_h__ */