remove Auditioner::prepare_playlist() - not used
[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/track.h"
29
30 namespace ARDOUR {
31
32 class Session;
33 class AudioDiskstream;
34 class AudioRegion;
35 class AudioPlaylist;
36 class MidiDiskstream;
37 class MidiRegion;
38
39 class LIBARDOUR_API Auditioner : public Track
40 {
41   public:
42         Auditioner (Session&);
43         ~Auditioner ();
44
45         int init ();
46         int connect ();
47
48         void audition_region (boost::shared_ptr<Region>);
49
50         void seek_to_frame (frameoffset_t pos) { if (_seek_frame < 0 && !_seeking) { _seek_frame = pos; }}
51         void seek_to_percent (float const pos) { if (_seek_frame < 0 && !_seeking) { _seek_frame = floorf(length * pos / 100.0); }}
52
53         int play_audition (framecnt_t nframes);
54
55         MonitorState monitoring_state () const;
56
57         void cancel_audition () {
58                 g_atomic_int_set (&_auditioning, 0);
59         }
60
61         bool auditioning() const { return g_atomic_int_get (&_auditioning); }
62         bool needs_monitor() const { return via_monitor; }
63
64         virtual ChanCount input_streams () const;
65
66         frameoffset_t seek_frame() const { return _seeking ? _seek_frame : -1;}
67         void seek_response(frameoffset_t pos) {
68                 _seek_complete = true;
69                 if (_seeking) { current_frame = pos; _seek_complete = true;}
70         }
71
72         PBD::Signal2<void, ARDOUR::framecnt_t, ARDOUR::framecnt_t> AuditionProgress;
73
74         /* Track */
75         int roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
76         DataType data_type () const;
77
78         int roll_audio (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
79         int roll_midi (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, int declick, bool& need_butler);
80
81         /* fake track */
82         void set_state_part_two () {}
83         int set_state (const XMLNode&, int) { return 0; }
84         bool bounceable (boost::shared_ptr<Processor>, bool) const { return false; }
85         void freeze_me (InterThreadInfo&) {}
86         void unfreeze () {}
87
88         boost::shared_ptr<Region> bounce (InterThreadInfo&)
89                 { return boost::shared_ptr<Region> (); }
90
91         boost::shared_ptr<Region> bounce_range (framepos_t, framepos_t, InterThreadInfo&, boost::shared_ptr<Processor>, bool)
92                 { return boost::shared_ptr<Region> (); }
93
94         int export_stuff (BufferSet&, framepos_t, framecnt_t, boost::shared_ptr<Processor>, bool, bool, bool)
95                 { return -1; }
96
97   private:
98         boost::shared_ptr<AudioRegion> the_region;
99         boost::shared_ptr<MidiRegion> midi_region;
100         framepos_t current_frame;
101         mutable gint _auditioning;
102         Glib::Threads::Mutex lock;
103         framecnt_t length;
104         frameoffset_t _seek_frame;
105         bool _seeking;
106         bool _seek_complete;
107         bool via_monitor;
108         bool _midi_audition;
109         bool _synth_added;
110         bool _synth_changed;
111         bool _queue_panic;
112
113         boost::shared_ptr<Processor> asynth;
114
115         void drop_ports ();
116         void lookup_synth ();
117         void config_changed (std::string);
118         static void *_drop_ports (void *);
119         void actually_drop_ports ();
120         void output_changed (IOChange, void*);
121         frameoffset_t _import_position;
122 };
123
124 }; /* namespace ARDOUR */
125
126 #endif /* __ardour_auditioner_h__ */