Add AutomationControl::set_value_unchecked() and AutomationControl::writable() and...
[ardour.git] / libs / ardour / ardour / midi_track.h
1 /*
2     Copyright (C) 2006 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_track_h__
21 #define __ardour_midi_track_h__
22
23 #include "ardour/midi_channel_filter.h"
24 #include "ardour/midi_ring_buffer.h"
25 #include "ardour/track.h"
26
27 namespace ARDOUR
28 {
29
30 class InterThreadInfo;
31 class MidiDiskstream;
32 class MidiPlaylist;
33 class RouteGroup;
34 class SMFSource;
35 class Session;
36
37 class LIBARDOUR_API MidiTrack : public Track
38 {
39 public:
40         MidiTrack (Session&, std::string name, Route::Flag f = Route::Flag (0), TrackMode m = Normal);
41         ~MidiTrack ();
42
43         int init ();
44
45         int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
46
47         void realtime_handle_transport_stopped ();
48         void realtime_locate ();
49         void non_realtime_locate (framepos_t);
50
51         boost::shared_ptr<Diskstream> create_diskstream ();
52         void set_diskstream (boost::shared_ptr<Diskstream>);
53         void set_record_enabled (bool yn, void *src);
54         void set_record_safe (bool yn, void *src);
55
56         DataType data_type () const {
57                 return DataType::MIDI;
58         }
59
60         void freeze_me (InterThreadInfo&);
61         void unfreeze ();
62
63         bool bounceable (boost::shared_ptr<Processor>, bool) const { return false; }
64         boost::shared_ptr<Region> bounce (InterThreadInfo&);
65         boost::shared_ptr<Region> bounce_range (framepos_t                   start,
66                                                 framepos_t                   end,
67                                                 InterThreadInfo&             iti,
68                                                 boost::shared_ptr<Processor> endpoint,
69                                                 bool                         include_endpoint);
70
71         int export_stuff (BufferSet&                   bufs,
72                           framepos_t                   start_frame,
73                           framecnt_t                   end_frame,
74                           boost::shared_ptr<Processor> endpoint,
75                           bool                         include_endpoint,
76                           bool                         for_export,
77                           bool                         for_freeze);
78
79         int set_state (const XMLNode&, int version);
80
81         void midi_panic(void);
82         bool write_immediate_event(size_t size, const uint8_t* buf);
83
84         /** A control that will send "immediate" events to a MIDI track when twiddled */
85         struct MidiControl : public AutomationControl {
86                 MidiControl(MidiTrack* route, const Evoral::Parameter& param,
87                             boost::shared_ptr<AutomationList> al = boost::shared_ptr<AutomationList>())
88                         : AutomationControl (route->session(), param, ParameterDescriptor(param), al)
89                         , _route (route)
90                 {}
91
92                 void set_value (double val);
93                 void set_value_unchecked (double);
94                 bool writable() const { return true; }
95
96                 MidiTrack* _route;
97         };
98
99         virtual void set_parameter_automation_state (Evoral::Parameter param, AutoState);
100
101         NoteMode note_mode() const { return _note_mode; }
102         void set_note_mode (NoteMode m);
103
104         std::string describe_parameter (Evoral::Parameter param);
105
106         bool step_editing() const { return _step_editing; }
107         void set_step_editing (bool yn);
108         MidiRingBuffer<framepos_t>& step_edit_ring_buffer() { return _step_edit_ring_buffer; }
109
110         PBD::Signal1<void,bool> StepEditStatusChange;
111
112         boost::shared_ptr<SMFSource> write_source (uint32_t n = 0);
113
114         /* Configure capture/playback channels (see MidiChannelFilter). */
115         void set_capture_channel_mode (ChannelMode mode, uint16_t mask);
116         void set_playback_channel_mode (ChannelMode mode, uint16_t mask);
117         void set_playback_channel_mask (uint16_t mask);
118         void set_capture_channel_mask (uint16_t mask);
119
120         ChannelMode get_playback_channel_mode() const { return _playback_filter.get_channel_mode(); }
121         ChannelMode get_capture_channel_mode()  const { return _capture_filter.get_channel_mode(); }
122         uint16_t    get_playback_channel_mask() const { return _playback_filter.get_channel_mask(); }
123         uint16_t    get_capture_channel_mask()  const { return _capture_filter.get_channel_mask(); }
124
125         MidiChannelFilter& playback_filter() { return _playback_filter; }
126         MidiChannelFilter& capture_filter()  { return _capture_filter; }
127
128         boost::shared_ptr<MidiPlaylist> midi_playlist ();
129
130         PBD::Signal1<void, boost::weak_ptr<MidiSource> > DataRecorded;
131         boost::shared_ptr<MidiBuffer> get_gui_feed_buffer () const;
132
133         void set_monitoring (MonitorChoice);
134         MonitorState monitoring_state () const;
135
136         void set_input_active (bool);
137         bool input_active () const;
138         PBD::Signal0<void> InputActiveChanged;
139
140 protected:
141         XMLNode& state (bool full);
142
143         void act_on_mute ();
144
145 private:
146         MidiRingBuffer<framepos_t> _immediate_events;
147         MidiRingBuffer<framepos_t> _step_edit_ring_buffer;
148         NoteMode                   _note_mode;
149         bool                       _step_editing;
150         bool                       _input_active;
151         MidiChannelFilter          _playback_filter;
152         MidiChannelFilter          _capture_filter;
153
154         virtual boost::shared_ptr<Diskstream> diskstream_factory (XMLNode const &);
155
156         boost::shared_ptr<MidiDiskstream> midi_diskstream () const;
157
158         void write_out_of_band_data (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, framecnt_t nframes);
159
160         void set_state_part_two ();
161         void set_state_part_three ();
162
163
164         int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, bool state_changing);
165         void push_midi_input_to_step_edit_ringbuffer (framecnt_t nframes);
166
167         void diskstream_data_recorded (boost::weak_ptr<MidiSource>);
168         PBD::ScopedConnection _diskstream_data_recorded_connection;
169
170         void track_input_active (IOChange, void*);
171         void map_input_active (bool);
172
173         /** Update automation controls to reflect any changes in buffers. */
174         void update_controls (const BufferSet& bufs);
175 };
176
177 } /* namespace ARDOUR*/
178
179 #endif /* __ardour_midi_track_h__ */