LTC slave rewrite #2
[ardour.git] / libs / ardour / ardour / midi_model.h
1 /*
2     Copyright (C) 2007 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
21 #ifndef __ardour_midi_model_h__
22 #define __ardour_midi_model_h__
23
24 #include <queue>
25 #include <deque>
26 #include <utility>
27 #include <boost/utility.hpp>
28 #include <glibmm/threads.h>
29 #include "pbd/command.h"
30 #include "ardour/types.h"
31 #include "ardour/midi_buffer.h"
32 #include "ardour/midi_ring_buffer.h"
33 #include "ardour/automatable_sequence.h"
34 #include "ardour/types.h"
35 #include "evoral/Note.hpp"
36 #include "evoral/Sequence.hpp"
37
38 namespace ARDOUR {
39
40 class Session;
41 class MidiSource;
42
43 /** This is a higher level (than MidiBuffer) model of MIDI data, with separate
44  * representations for notes (instead of just unassociated note on/off events)
45  * and controller data.  Controller data is represented as part of the
46  * Automatable base (i.e. in a map of AutomationList, keyed by Parameter).
47  * Because of this MIDI controllers and automatable controllers/widgets/etc
48  * are easily interchangeable.
49  */
50 class MidiModel : public AutomatableSequence<Evoral::MusicalTime> {
51 public:
52         typedef Evoral::MusicalTime TimeType;
53
54         MidiModel (boost::shared_ptr<MidiSource>);
55
56         NoteMode note_mode() const { return (percussive() ? Percussive : Sustained); }
57         void set_note_mode(NoteMode mode) { set_percussive(mode == Percussive); };
58
59         class DiffCommand : public Command {
60         public:
61
62                 DiffCommand (boost::shared_ptr<MidiModel> m, const std::string& name);
63
64                 const std::string& name () const { return _name; }
65
66                 virtual void operator() () = 0;
67                 virtual void undo () = 0;
68
69                 virtual int set_state (const XMLNode&, int version) = 0;
70                 virtual XMLNode & get_state () = 0;
71
72                 boost::shared_ptr<MidiModel> model() const { return _model; }
73
74         protected:
75                 boost::shared_ptr<MidiModel> _model;
76                 const std::string            _name;
77
78         };
79
80         class NoteDiffCommand : public DiffCommand {
81         public:
82
83                 NoteDiffCommand (boost::shared_ptr<MidiModel> m, const std::string& name) : DiffCommand (m, name) {}
84                 NoteDiffCommand (boost::shared_ptr<MidiModel> m, const XMLNode& node);
85
86                 enum Property {
87                         NoteNumber,
88                         Velocity,
89                         StartTime,
90                         Length,
91                         Channel
92                 };
93
94                 void operator() ();
95                 void undo ();
96
97                 int set_state (const XMLNode&, int version);
98                 XMLNode & get_state ();
99
100                 void add (const NotePtr note);
101                 void remove (const NotePtr note);
102                 void side_effect_remove (const NotePtr note);
103
104                 void change (const NotePtr note, Property prop, uint8_t new_value);
105                 void change (const NotePtr note, Property prop, TimeType new_time);
106
107                 bool adds_or_removes() const {
108                         return !_added_notes.empty() || !_removed_notes.empty();
109                 }
110
111                 NoteDiffCommand& operator+= (const NoteDiffCommand& other);
112
113         private:
114                 struct NoteChange {
115                         NoteDiffCommand::Property property;
116                         NotePtr note;
117                         union {
118                                 uint8_t  old_value;
119                                 TimeType old_time;
120                         };
121                         union {
122                                 uint8_t  new_value;
123                                 TimeType new_time;
124                         };
125                 };
126
127                 typedef std::list<NoteChange> ChangeList;
128                 ChangeList _changes;
129
130                 typedef std::list< boost::shared_ptr< Evoral::Note<TimeType> > > NoteList;
131                 NoteList _added_notes;
132                 NoteList _removed_notes;
133
134                 std::set<NotePtr> side_effect_removals;
135
136                 XMLNode &marshal_change(const NoteChange&);
137                 NoteChange unmarshal_change(XMLNode *xml_note);
138
139                 XMLNode &marshal_note(const NotePtr note);
140                 NotePtr unmarshal_note(XMLNode *xml_note);
141         };
142
143         /* Currently this class only supports changes of sys-ex time, but could be expanded */
144         class SysExDiffCommand : public DiffCommand {
145         public:
146                 SysExDiffCommand (boost::shared_ptr<MidiModel> m, const XMLNode& node);
147
148                 enum Property {
149                         Time,
150                 };
151
152                 int set_state (const XMLNode&, int version);
153                 XMLNode & get_state ();
154
155                 void remove (SysExPtr sysex);
156                 void operator() ();
157                 void undo ();
158
159                 void change (boost::shared_ptr<Evoral::Event<TimeType> >, TimeType);
160
161         private:
162                 struct Change {
163                         boost::shared_ptr<Evoral::Event<TimeType> > sysex;
164                         SysExDiffCommand::Property property;
165                         TimeType old_time;
166                         TimeType new_time;
167                 };
168
169                 typedef std::list<Change> ChangeList;
170                 ChangeList _changes;
171
172                 std::list<SysExPtr> _removed;
173
174                 XMLNode & marshal_change (const Change &);
175                 Change unmarshal_change (XMLNode *);
176         };
177
178         class PatchChangeDiffCommand : public DiffCommand {
179         public:
180                 PatchChangeDiffCommand (boost::shared_ptr<MidiModel>, const std::string &);
181                 PatchChangeDiffCommand (boost::shared_ptr<MidiModel>, const XMLNode &);
182
183                 int set_state (const XMLNode &, int version);
184                 XMLNode & get_state ();
185
186                 void operator() ();
187                 void undo ();
188
189                 void add (PatchChangePtr);
190                 void remove (PatchChangePtr);
191                 void change_time (PatchChangePtr, TimeType);
192                 void change_channel (PatchChangePtr, uint8_t);
193                 void change_program (PatchChangePtr, uint8_t);
194                 void change_bank (PatchChangePtr, int);
195
196                 enum Property {
197                         Time,
198                         Channel,
199                         Program,
200                         Bank
201                 };
202
203         private:
204                 struct Change {
205                         PatchChangePtr patch;
206                         Property       property;
207                         union {
208                                 TimeType   old_time;
209                                 uint8_t    old_channel;
210                                 int        old_bank;
211                                 uint8_t    old_program;
212                         };
213                         union {
214                                 uint8_t    new_channel;
215                                 TimeType   new_time;
216                                 uint8_t    new_program;
217                                 int        new_bank;
218                         };
219                 };
220
221                 typedef std::list<Change> ChangeList;
222                 ChangeList _changes;
223
224                 std::list<PatchChangePtr> _added;
225                 std::list<PatchChangePtr> _removed;
226
227                 XMLNode & marshal_change (const Change &);
228                 Change unmarshal_change (XMLNode *);
229
230                 XMLNode & marshal_patch_change (constPatchChangePtr);
231                 PatchChangePtr unmarshal_patch_change (XMLNode *);
232         };
233
234         MidiModel::NoteDiffCommand* new_note_diff_command (const std::string name = "midi edit");
235         MidiModel::SysExDiffCommand* new_sysex_diff_command (const std::string name = "midi edit");
236         MidiModel::PatchChangeDiffCommand* new_patch_change_diff_command (const std::string name = "midi edit");
237         void apply_command (Session& session, Command* cmd);
238         void apply_command_as_subcommand (Session& session, Command* cmd);
239
240         bool sync_to_source ();
241         bool write_to(boost::shared_ptr<MidiSource> source);
242         bool write_section_to (boost::shared_ptr<MidiSource> source, Evoral::MusicalTime begin = Evoral::MinMusicalTime,
243         Evoral::MusicalTime end = Evoral::MaxMusicalTime);
244
245         // MidiModel doesn't use the normal AutomationList serialisation code
246         // since controller data is stored in the .mid
247         XMLNode& get_state();
248         int set_state(const XMLNode&) { return 0; }
249
250         PBD::Signal0<void> ContentsChanged;
251
252         boost::shared_ptr<const MidiSource> midi_source ();
253         void set_midi_source (boost::shared_ptr<MidiSource>);
254
255         boost::shared_ptr<Evoral::Note<TimeType> > find_note (NotePtr);
256         PatchChangePtr find_patch_change (Evoral::event_id_t);
257         boost::shared_ptr<Evoral::Note<TimeType> > find_note (gint note_id);
258         boost::shared_ptr<Evoral::Event<TimeType> > find_sysex (gint);
259
260         InsertMergePolicy insert_merge_policy () const;
261         void set_insert_merge_policy (InsertMergePolicy);
262
263         boost::shared_ptr<Evoral::Control> control_factory(const Evoral::Parameter& id);
264
265         void insert_silence_at_start (TimeType);
266         void transpose (TimeType, TimeType, int);
267
268 protected:
269         int resolve_overlaps_unlocked (const NotePtr, void* arg = 0);
270
271 private:
272         struct WriteLockImpl : public AutomatableSequence<TimeType>::WriteLockImpl {
273                 WriteLockImpl(Glib::Threads::Mutex::Lock* slock, Glib::Threads::RWLock& s, Glib::Threads::Mutex& c)
274                         : AutomatableSequence<TimeType>::WriteLockImpl(s, c)
275                         , source_lock (slock)
276                 {}
277                 ~WriteLockImpl() {
278                         delete source_lock;
279                 }
280                 Glib::Threads::Mutex::Lock* source_lock;
281         };
282
283 public:
284         WriteLock edit_lock();
285         WriteLock write_lock();
286
287 private:
288         friend class DeltaCommand;
289
290         void source_interpolation_changed (Evoral::Parameter, Evoral::ControlList::InterpolationStyle);
291         void source_automation_state_changed (Evoral::Parameter, AutoState);
292         void control_list_interpolation_changed (Evoral::Parameter, Evoral::ControlList::InterpolationStyle);
293         void automation_list_automation_state_changed (Evoral::Parameter, AutoState);
294
295         void control_list_marked_dirty ();
296
297         PBD::ScopedConnectionList _midi_source_connections;
298
299         // We cannot use a boost::shared_ptr here to avoid a retain cycle
300         boost::weak_ptr<MidiSource> _midi_source;
301         InsertMergePolicy _insert_merge_policy;
302 };
303
304 } /* namespace ARDOUR */
305
306 /* This is a very long comment and stuff oh my god it's so long what are we going to do oh no oh no*/
307
308 #endif /* __ardour_midi_model_h__ */
309