Gnome::Canvas -> ArdourCanvas and some other small fixes
[ardour.git] / gtk2_ardour / editor_timefx.cc
1 /*
2     Copyright (C) 2000 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     $Id$
19 */
20
21 #include <cstdlib>
22 #include <cmath>
23
24 #include <string>
25
26 #include <pbd/error.h>
27 #include <pbd/pthread_utils.h>
28
29 #include "editor.h"
30 #include "audio_time_axis.h"
31 #include "regionview.h"
32 #include "region_selection.h"
33
34 #include <ardour/session.h>
35 #include <ardour/region.h>
36 #include <ardour/audioplaylist.h>
37 #include <ardour/audio_track.h>
38 #include <ardour/audioregion.h>
39 #include <ardour/diskstream.h>
40
41 #include "i18n.h"
42
43 using namespace ARDOUR;
44 using namespace sigc;
45 using namespace Gtk;
46
47 Editor::TimeStretchDialog::TimeStretchDialog (Editor& e)
48         : ArdourDialog ("time stretch dialog"),
49           editor (e),
50           quick_button (_("Quick but Ugly")),
51           antialias_button (_("Skip Anti-aliasing")),
52           cancel_button (_("Cancel")),
53           action_button (_("Stretch/Shrink it"))
54 {
55         set_modal (true);
56         set_position (Gtk::WIN_POS_MOUSE);
57         set_title (_("ardour: timestretch"));
58         set_name (N_("TimeStretchDialog"));
59
60         set_hide_on_stop (false);
61
62         add (packer);
63
64         packer.set_spacing (5);
65         packer.set_border_width (5);
66         packer.pack_start (upper_button_box);
67         packer.pack_start (progress_bar);
68         packer.pack_start (lower_button_box);
69         
70         upper_button_box.set_homogeneous (true);
71         upper_button_box.set_spacing (5);
72         upper_button_box.set_border_width (5);
73         upper_button_box.pack_start (quick_button, true, true);
74         upper_button_box.pack_start (antialias_button, true, true);
75
76         lower_button_box.set_homogeneous (true);
77         lower_button_box.set_spacing (5);
78         lower_button_box.set_border_width (5);
79         lower_button_box.pack_start (action_button, true, true);
80         lower_button_box.pack_start (cancel_button, true, true);
81
82         action_button.set_name (N_("TimeStretchButton"));
83         cancel_button.set_name (N_("TimeStretchButton"));
84         quick_button.set_name (N_("TimeStretchButton"));
85         antialias_button.set_name (N_("TimeStretchButton"));
86         progress_bar.set_name (N_("TimeStretchProgress"));
87
88         action_button.signal_clicked().connect (bind (mem_fun(*this, &ArdourDialog::stop), 1));
89 }
90
91 gint
92 Editor::TimeStretchDialog::update_progress ()
93 {
94         progress_bar.set_fraction (request.progress/100);
95         return request.running;
96 }
97
98 void
99 Editor::TimeStretchDialog::cancel_timestretch_in_progress ()
100 {
101         status = -2;
102         request.running = false;
103 }
104
105 gint
106 Editor::TimeStretchDialog::delete_timestretch_in_progress (GdkEventAny* ev)
107 {
108         status = -2;
109         request.running = false;
110         return TRUE;
111 }
112
113 int
114 Editor::run_timestretch (AudioRegionSelection& regions, float fraction)
115 {
116         pthread_t thread;
117
118         if (current_timestretch == 0) {
119                 current_timestretch = new TimeStretchDialog (*this);
120         }
121
122         current_timestretch->progress_bar.set_fraction (0.0f);
123         current_timestretch->first_cancel = current_timestretch->cancel_button.signal_clicked().connect (bind (mem_fun (*current_timestretch, &ArdourDialog::stop), -1));
124         // GTK2FIX
125         // current_timestretch->first_delete = current_timestretch->signal_delete_event().connect (mem_fun (*current_timestretch, &ArdourDialog::wm_close_event));
126
127         current_timestretch->run ();
128
129         if (current_timestretch->run_status() != 1) {
130                 // GTK2FIX
131                 // current_timestretch->close ();
132                 return 1; /* no error, but we did nothing */
133         }
134
135         current_timestretch->status = 0;
136         current_timestretch->regions = regions;
137         current_timestretch->request.fraction = fraction;
138         current_timestretch->request.quick_seek = current_timestretch->quick_button.get_active();
139         current_timestretch->request.antialias = !current_timestretch->antialias_button.get_active();
140         current_timestretch->request.progress = 0.0f;
141         current_timestretch->request.running = true;
142         
143         /* re-connect the cancel button and delete events */
144         
145         current_timestretch->first_cancel.disconnect();
146         current_timestretch->first_delete.disconnect();
147         
148         current_timestretch->cancel_button.signal_clicked().connect (mem_fun (current_timestretch, &TimeStretchDialog::cancel_timestretch_in_progress));
149         current_timestretch->signal_delete_event().connect (mem_fun (current_timestretch, &TimeStretchDialog::delete_timestretch_in_progress));
150
151         if (pthread_create_and_store ("timestretch", &thread, 0, timestretch_thread, current_timestretch)) {
152                 // GTK2FIX
153           //current_timestretch->close ();
154                 error << _("timestretch cannot be started - thread creation error") << endmsg;
155                 return -1;
156         }
157
158         pthread_detach (thread);
159
160         sigc::connection c = Glib::signal_timeout().connect (mem_fun (current_timestretch, &TimeStretchDialog::update_progress), 100);
161
162         while (current_timestretch->request.running) {
163                 gtk_main_iteration ();
164         }
165
166         c.disconnect ();
167         
168         // GTK2FIX
169         // current_timestretch->close ();
170         return current_timestretch->status;
171 }
172
173 void
174 Editor::do_timestretch (TimeStretchDialog& dialog)
175 {
176         AudioTrack* at;
177         Playlist* playlist;
178         AudioRegion* new_region;
179
180         for (AudioRegionSelection::iterator i = dialog.regions.begin(); i != dialog.regions.end(); ) {
181
182                 AudioRegion& aregion ((*i)->region);
183                 TimeAxisView* tv = &(*i)->get_time_axis_view();
184                 AudioTimeAxisView* atv;
185                 AudioRegionSelection::iterator tmp;
186                 
187                 tmp = i;
188                 ++tmp;
189
190                 if ((atv = dynamic_cast<AudioTimeAxisView*> (tv)) == 0) {
191                         i = tmp;
192                         continue;
193                 }
194
195                 if ((at = dynamic_cast<AudioTrack*> (&atv->route())) == 0) {
196                         i = tmp;
197                         continue;
198                 }
199         
200                 if ((playlist = at->disk_stream().playlist()) == 0) {
201                         i = tmp;
202                         continue;
203                 }
204
205                 dialog.request.region = &aregion;
206
207                 if (!dialog.request.running) {
208                         /* we were cancelled */
209                         dialog.status = 1;
210                         return;
211                 }
212
213                 if ((new_region = session->tempoize_region (dialog.request)) == 0) {
214                         dialog.status = -1;
215                         dialog.request.running = false;
216                         return;
217                 }
218
219                 session->add_undo (playlist->get_memento());
220                 playlist->replace_region (aregion, *new_region, aregion.position());
221                 session->add_redo_no_execute (playlist->get_memento());
222
223                 i = tmp;
224         }
225
226         dialog.status = 0;
227         dialog.request.running = false;
228 }
229
230 void*
231 Editor::timestretch_thread (void *arg)
232 {
233         PBD::ThreadCreated (pthread_self(), X_("TimeFX"));
234
235         TimeStretchDialog* tsd = static_cast<TimeStretchDialog*>(arg);
236
237         pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, 0);
238
239         tsd->editor.do_timestretch (*tsd);
240
241         return 0;
242 }
243