first vaguely working version using PresentationInfo
[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, 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
54         bool can_be_record_enabled ();
55         bool can_be_record_safe ();
56
57         DataType data_type () const {
58                 return DataType::MIDI;
59         }
60
61         void freeze_me (InterThreadInfo&);
62         void unfreeze ();
63
64         bool bounceable (boost::shared_ptr<Processor>, bool) const { return false; }
65         boost::shared_ptr<Region> bounce (InterThreadInfo&);
66         boost::shared_ptr<Region> bounce_range (framepos_t                   start,
67                                                 framepos_t                   end,
68                                                 InterThreadInfo&             iti,
69                                                 boost::shared_ptr<Processor> endpoint,
70                                                 bool                         include_endpoint);
71
72         int export_stuff (BufferSet&                   bufs,
73                           framepos_t                   start_frame,
74                           framecnt_t                   end_frame,
75                           boost::shared_ptr<Processor> endpoint,
76                           bool                         include_endpoint,
77                           bool                         for_export,
78                           bool                         for_freeze);
79
80         int set_state (const XMLNode&, int version);
81
82         void midi_panic(void);
83         bool write_immediate_event(size_t size, const uint8_t* buf);
84
85         /** A control that will send "immediate" events to a MIDI track when twiddled */
86         struct MidiControl : public AutomationControl {
87                 MidiControl(MidiTrack* route, const Evoral::Parameter& param,
88                             boost::shared_ptr<AutomationList> al = boost::shared_ptr<AutomationList>())
89                         : AutomationControl (route->session(), param, ParameterDescriptor(param), al)
90                         , _route (route)
91                 {}
92
93                 bool writable() const { return true; }
94
95                 MidiTrack* _route;
96
97         private:
98                 void actually_set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
99         };
100
101         virtual void set_parameter_automation_state (Evoral::Parameter param, AutoState);
102
103         NoteMode note_mode() const { return _note_mode; }
104         void set_note_mode (NoteMode m);
105
106         std::string describe_parameter (Evoral::Parameter param);
107
108         bool step_editing() const { return _step_editing; }
109         void set_step_editing (bool yn);
110         MidiRingBuffer<framepos_t>& step_edit_ring_buffer() { return _step_edit_ring_buffer; }
111
112         PBD::Signal1<void,bool> StepEditStatusChange;
113
114         boost::shared_ptr<SMFSource> write_source (uint32_t n = 0);
115
116         /* Configure capture/playback channels (see MidiChannelFilter). */
117         void set_capture_channel_mode (ChannelMode mode, uint16_t mask);
118         void set_playback_channel_mode (ChannelMode mode, uint16_t mask);
119         void set_playback_channel_mask (uint16_t mask);
120         void set_capture_channel_mask (uint16_t mask);
121
122         ChannelMode get_playback_channel_mode() const { return _playback_filter.get_channel_mode(); }
123         ChannelMode get_capture_channel_mode()  const { return _capture_filter.get_channel_mode(); }
124         uint16_t    get_playback_channel_mask() const { return _playback_filter.get_channel_mask(); }
125         uint16_t    get_capture_channel_mask()  const { return _capture_filter.get_channel_mask(); }
126
127         MidiChannelFilter& playback_filter() { return _playback_filter; }
128         MidiChannelFilter& capture_filter()  { return _capture_filter; }
129
130         boost::shared_ptr<MidiPlaylist> midi_playlist ();
131
132         PBD::Signal1<void, boost::weak_ptr<MidiSource> > DataRecorded;
133         boost::shared_ptr<MidiBuffer> get_gui_feed_buffer () const;
134
135         MonitorState monitoring_state () const;
136
137         void set_input_active (bool);
138         bool input_active () const;
139         PBD::Signal0<void> InputActiveChanged;
140
141 protected:
142         XMLNode& state (bool full);
143
144         void act_on_mute ();
145         void monitoring_changed (bool, PBD::Controllable::GroupControlDisposition);
146
147 private:
148         MidiRingBuffer<framepos_t> _immediate_events;
149         MidiRingBuffer<framepos_t> _step_edit_ring_buffer;
150         NoteMode                   _note_mode;
151         bool                       _step_editing;
152         bool                       _input_active;
153         MidiChannelFilter          _playback_filter;
154         MidiChannelFilter          _capture_filter;
155
156         virtual boost::shared_ptr<Diskstream> diskstream_factory (XMLNode const &);
157
158         boost::shared_ptr<MidiDiskstream> midi_diskstream () const;
159
160         void write_out_of_band_data (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, framecnt_t nframes);
161
162         void set_state_part_two ();
163         void set_state_part_three ();
164
165
166         int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, bool state_changing);
167         void push_midi_input_to_step_edit_ringbuffer (framecnt_t nframes);
168
169         void diskstream_data_recorded (boost::weak_ptr<MidiSource>);
170         PBD::ScopedConnection _diskstream_data_recorded_connection;
171
172         void track_input_active (IOChange, void*);
173         void map_input_active (bool);
174
175         /** Update automation controls to reflect any changes in buffers. */
176         void update_controls (const BufferSet& bufs);
177 };
178
179 } /* namespace ARDOUR*/
180
181 #endif /* __ardour_midi_track_h__ */