configurable midi audition synth
[ardour.git] / libs / ardour / ardour / auditioner.h
1 /*
2     Copyright (C) 2001 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_auditioner_h__
21 #define __ardour_auditioner_h__
22
23 #include <string>
24
25 #include <glibmm/threads.h>
26
27 #include "ardour/ardour.h"
28 #include "ardour/audio_track.h"
29 #include "ardour/midi_region.h"
30
31 #include "ardour/audio_diskstream.h"
32 #include "ardour/midi_diskstream.h"
33
34 namespace ARDOUR {
35
36 class Session;
37 class AudioRegion;
38 class AudioPlaylist;
39
40 class Auditioner : public Track
41 {
42   public:
43         Auditioner (Session&);
44         ~Auditioner ();
45
46         int init ();
47         int connect ();
48
49         void audition_region (boost::shared_ptr<Region>);
50
51         void seek_to_frame (frameoffset_t pos) { if (_seek_frame < 0 && !_seeking) { _seek_frame = pos; }}
52         void seek_to_percent (float const pos) { if (_seek_frame < 0 && !_seeking) { _seek_frame = floorf(length * pos / 100.0); }}
53
54         ARDOUR::AudioPlaylist& prepare_playlist ();
55
56         int play_audition (framecnt_t nframes);
57
58         MonitorState monitoring_state () const;
59
60         void cancel_audition () {
61                 g_atomic_int_set (&_auditioning, 0);
62         }
63
64         bool auditioning() const { return g_atomic_int_get (&_auditioning); }
65         bool needs_monitor() const { return via_monitor; }
66
67         virtual ChanCount input_streams () const;
68
69         frameoffset_t seek_frame() const { return _seeking ? _seek_frame : -1;}
70         void seek_response(frameoffset_t pos) {
71                 _seek_complete = true;
72                 if (_seeking) { current_frame = pos; _seek_complete = true;}
73         }
74
75         PBD::Signal2<void, ARDOUR::framecnt_t, ARDOUR::framecnt_t> AuditionProgress;
76
77         /* Track */
78         int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
79         DataType data_type () const;
80
81         int roll_audio (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
82         int roll_midi (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
83
84         boost::shared_ptr<Diskstream> create_diskstream ();
85         void set_diskstream (boost::shared_ptr<Diskstream> ds);
86
87         /* fake track */
88         void set_state_part_two () {}
89         int set_state (const XMLNode&, int) { return 0; }
90         bool bounceable (boost::shared_ptr<Processor>, bool) const { return false; }
91         void freeze_me (InterThreadInfo&) {}
92         void unfreeze () {}
93
94         boost::shared_ptr<Region> bounce (InterThreadInfo&)
95                 { return boost::shared_ptr<Region> (); }
96
97         boost::shared_ptr<Region> bounce_range (framepos_t, framepos_t, InterThreadInfo&, boost::shared_ptr<Processor>, bool)
98                 { return boost::shared_ptr<Region> (); }
99
100         int export_stuff (BufferSet&, framepos_t, framecnt_t, boost::shared_ptr<Processor>, bool, bool)
101                 { return -1; }
102
103         boost::shared_ptr<Diskstream> diskstream_factory (XMLNode const &)
104                 { return boost::shared_ptr<Diskstream> (); }
105
106         boost::shared_ptr<AudioDiskstream> audio_diskstream() const
107                 { return boost::dynamic_pointer_cast<AudioDiskstream> (_diskstream); }
108
109         boost::shared_ptr<MidiDiskstream> midi_diskstream() const
110                 { return boost::dynamic_pointer_cast<MidiDiskstream> (_diskstream); }
111
112
113   private:
114         boost::shared_ptr<AudioRegion> the_region;
115         boost::shared_ptr<MidiRegion> midi_region;
116         framepos_t current_frame;
117         mutable gint _auditioning;
118         Glib::Threads::Mutex lock;
119         framecnt_t length;
120         frameoffset_t _seek_frame;
121         bool _seeking;
122         bool _seek_complete;
123         bool via_monitor;
124         bool _midi_audition;
125         bool _synth_added;
126         bool _synth_changed;
127         bool _queue_panic;
128
129         boost::shared_ptr<Diskstream> _diskstream_audio;
130         boost::shared_ptr<Diskstream> _diskstream_midi;
131         boost::shared_ptr<Processor> asynth;
132
133         void drop_ports ();
134         void lookup_synth ();
135         void config_changed (std::string);
136         static void *_drop_ports (void *);
137         void actually_drop_ports ();
138         void output_changed (IOChange, void*);
139 };
140
141 }; /* namespace ARDOUR */
142
143 #endif /* __ardour_auditioner_h__ */