X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fmidi_track.h;h=d9a11540e4ae97ac33c8f944a0dd9431c75ace94;hb=88c82aeb56c62d9d0c0acff51e360492ad9b8d23;hp=f2542f0f6b9e2d45b0353aa41e8b648db3263648;hpb=91fac4c96dc6210dcc056da70dc608700d7eb570;p=ardour.git diff --git a/libs/ardour/ardour/midi_track.h b/libs/ardour/ardour/midi_track.h index f2542f0f6b..d9a11540e4 100644 --- a/libs/ardour/ardour/midi_track.h +++ b/libs/ardour/ardour/midi_track.h @@ -28,7 +28,6 @@ namespace ARDOUR { class InterThreadInfo; -class MidiDiskstream; class MidiPlaylist; class RouteGroup; class SMFSource; @@ -37,39 +36,31 @@ class Session; class LIBARDOUR_API MidiTrack : public Track { public: - MidiTrack (Session&, std::string name, Route::Flag f = Route::Flag (0), TrackMode m = Normal); + MidiTrack (Session&, std::string name, TrackMode m = Normal); ~MidiTrack (); int init (); - int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler); - - void realtime_handle_transport_stopped (); void realtime_locate (); - void non_realtime_locate (framepos_t); - - boost::shared_ptr create_diskstream (); - void set_diskstream (boost::shared_ptr); - void set_record_enabled (bool yn, void *src); + void non_realtime_locate (samplepos_t); - DataType data_type () const { - return DataType::MIDI; - } + bool can_be_record_enabled (); + bool can_be_record_safe (); void freeze_me (InterThreadInfo&); void unfreeze (); bool bounceable (boost::shared_ptr, bool) const { return false; } boost::shared_ptr bounce (InterThreadInfo&); - boost::shared_ptr bounce_range (framepos_t start, - framepos_t end, + boost::shared_ptr bounce_range (samplepos_t start, + samplepos_t end, InterThreadInfo& iti, boost::shared_ptr endpoint, bool include_endpoint); int export_stuff (BufferSet& bufs, - framepos_t start_frame, - framecnt_t end_frame, + samplepos_t start_sample, + samplecnt_t end_sample, boost::shared_ptr endpoint, bool include_endpoint, bool for_export, @@ -88,9 +79,13 @@ public: , _route (route) {} - void set_value (double val); + bool writable() const { return true; } + void restore_value (); MidiTrack* _route; + + private: + void actually_set_value (double val, PBD::Controllable::GroupControlDisposition group_override); }; virtual void set_parameter_automation_state (Evoral::Parameter param, AutoState); @@ -102,7 +97,7 @@ public: bool step_editing() const { return _step_editing; } void set_step_editing (bool yn); - MidiRingBuffer& step_edit_ring_buffer() { return _step_edit_ring_buffer; } + MidiRingBuffer& step_edit_ring_buffer() { return _step_edit_ring_buffer; } PBD::Signal1 StepEditStatusChange; @@ -122,53 +117,57 @@ public: MidiChannelFilter& playback_filter() { return _playback_filter; } MidiChannelFilter& capture_filter() { return _capture_filter; } + virtual void filter_input (BufferSet& bufs); + boost::shared_ptr midi_playlist (); PBD::Signal1 > DataRecorded; boost::shared_ptr get_gui_feed_buffer () const; - void set_monitoring (MonitorChoice); MonitorState monitoring_state () const; + MonitorState get_auto_monitoring_state () const; + + MidiBuffer const& immediate_event_buffer () const { return _immediate_event_buffer; } void set_input_active (bool); bool input_active () const; PBD::Signal0 InputActiveChanged; protected: - XMLNode& state (bool full); + + XMLNode& state (bool save_template); void act_on_mute (); + void monitoring_changed (bool, PBD::Controllable::GroupControlDisposition); -private: - MidiRingBuffer _immediate_events; - MidiRingBuffer _step_edit_ring_buffer; - NoteMode _note_mode; - bool _step_editing; - bool _input_active; - MidiChannelFilter _playback_filter; - MidiChannelFilter _capture_filter; + void snapshot_out_of_band_data (samplecnt_t nframes); + void write_out_of_band_data (BufferSet& bufs, samplecnt_t /* nframes */) const; - virtual boost::shared_ptr diskstream_factory (XMLNode const &); - - boost::shared_ptr midi_diskstream () const; - void write_out_of_band_data (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, framecnt_t nframes); +private: + MidiRingBuffer _immediate_events; + MidiBuffer _immediate_event_buffer; + MidiRingBuffer _step_edit_ring_buffer; + NoteMode _note_mode; + bool _step_editing; + bool _input_active; + MidiChannelFilter _playback_filter; + MidiChannelFilter _capture_filter; void set_state_part_two (); void set_state_part_three (); - - int no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, bool state_changing); - void push_midi_input_to_step_edit_ringbuffer (framecnt_t nframes); - - void diskstream_data_recorded (boost::weak_ptr); - PBD::ScopedConnection _diskstream_data_recorded_connection; + int no_roll_unlocked (pframes_t nframes, samplepos_t start_sample, samplepos_t end_sample, bool state_changing); + void push_midi_input_to_step_edit_ringbuffer (samplecnt_t nframes); void track_input_active (IOChange, void*); void map_input_active (bool); + void data_recorded (boost::weak_ptr src); + /** Update automation controls to reflect any changes in buffers. */ - void update_controls (const BufferSet& bufs); + void update_controls (BufferSet const& bufs); + void restore_controls (); }; } /* namespace ARDOUR*/