Merged with trunk R1141
[ardour.git] / libs / ardour / ardour / midi_track.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Written by Dave 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/track.h>
24
25 namespace ARDOUR
26 {
27
28 class Session;
29 class MidiDiskstream;
30 class MidiPlaylist;
31 class RouteGroup;
32
33 class MidiTrack : public Track
34 {
35 public:
36         MidiTrack (Session&, string name, Route::Flag f = Route::Flag (0), TrackMode m = Normal);
37         MidiTrack (Session&, const XMLNode&);
38         ~MidiTrack ();
39         
40         int set_name (string str, void *src);
41
42         int roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
43                 jack_nframes_t offset, int declick, bool can_record, bool rec_monitors_input);
44         
45         int no_roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
46                 jack_nframes_t offset, bool state_changing, bool can_record, bool rec_monitors_input);
47         
48         int silent_roll (jack_nframes_t nframes, jack_nframes_t start_frame, jack_nframes_t end_frame, 
49                 jack_nframes_t offset, bool can_record, bool rec_monitors_input);
50
51         void process_output_buffers (BufferSet& bufs,
52                                      jack_nframes_t start_frame, jack_nframes_t end_frame,
53                                      jack_nframes_t nframes, jack_nframes_t offset, bool with_redirects, int declick,
54                                      bool meter);
55
56         boost::shared_ptr<MidiDiskstream> midi_diskstream() const;
57
58         int use_diskstream (string name);
59         int use_diskstream (const PBD::ID& id);
60
61         int set_mode (TrackMode m);
62
63         void set_latency_delay (jack_nframes_t);
64
65         int export_stuff (BufferSet& bufs,
66                 jack_nframes_t nframes, jack_nframes_t end_frame);
67
68         void freeze (InterThreadInfo&);
69         void unfreeze ();
70
71         void bounce (InterThreadInfo&);
72         void bounce_range (jack_nframes_t start, jack_nframes_t end, InterThreadInfo&);
73
74         int set_state(const XMLNode& node);
75
76 protected:
77         XMLNode& state (bool full);
78
79 private:
80         int set_diskstream (boost::shared_ptr<MidiDiskstream> ds);
81
82         void set_state_part_two ();
83         void set_state_part_three ();
84 };
85
86 } /* namespace ARDOUR*/
87
88 #endif /* __ardour_midi_track_h__ */