Unbreak region brush drag wrt undo, avoid some dangling commands in the gui
[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 */
19
20 #include <iostream>
21 #include <cstdlib>
22 #include <cmath>
23 #include <ctime>
24 #include <string>
25 #include <set>
26
27 #include "pbd/error.h"
28 #include "pbd/pthread_utils.h"
29 #include "pbd/memento_command.h"
30 #include "pbd/stateful_diff_command.h"
31
32 #include <gtkmm2ext/utils.h>
33
34 #include "audio_region_view.h"
35 #include "audio_time_axis.h"
36 #include "editor.h"
37 #include "region_selection.h"
38 #include "time_fx_dialog.h"
39
40 #include "ardour/audioregion.h"
41 #include "ardour/midi_stretch.h"
42 #include "ardour/pitch.h"
43 #include "ardour/region.h"
44 #include "ardour/session.h"
45 #include "ardour/stretch.h"
46
47 #ifdef USE_RUBBERBAND
48 #include <rubberband/RubberBandStretcher.h>
49 using namespace RubberBand;
50 #endif
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57 using namespace Gtk;
58 using namespace Gtkmm2ext;
59
60 /** @return -1 in case of error, 1 if operation was cancelled by the user, 0 if everything went ok */
61 int
62 Editor::time_stretch (RegionSelection& regions, float fraction)
63 {
64         RegionList audio;
65         RegionList midi;
66         int aret;
67
68         begin_reversible_command (_("stretch/shrink"));
69
70         for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
71                 if  ((*i)->region()->data_type() == DataType::AUDIO) {
72                         audio.push_back ((*i)->region());
73                 } else if  ((*i)->region()->data_type() == DataType::MIDI) {
74                         midi.push_back ((*i)->region());
75                 }
76         }
77
78         if ((aret = time_fx (audio, fraction, false)) != 0) {
79                 commit_reversible_command ();
80                 return aret;
81         }
82
83         set<boost::shared_ptr<Playlist> > midi_playlists_affected;
84
85         for (RegionList::iterator i = midi.begin(); i != midi.end(); ++i) {
86                 boost::shared_ptr<Playlist> playlist = (*i)->playlist();
87
88                 if (playlist) {
89                         playlist->clear_changes ();
90                 }
91
92         }
93
94         ARDOUR::TimeFXRequest request;
95         request.time_fraction = fraction;
96
97         for (RegionList::iterator i = midi.begin(); i != midi.end(); ++i) {
98                 boost::shared_ptr<Playlist> playlist = (*i)->playlist();
99
100                 if (!playlist) {
101                         continue;
102                 }
103
104                 MidiStretch stretch (*_session, request);
105                 stretch.run (*i);
106
107                 playlist->replace_region (regions.front()->region(), stretch.results[0],
108                                           regions.front()->region()->position());
109                 midi_playlists_affected.insert (playlist);
110         }
111
112         for (set<boost::shared_ptr<Playlist> >::iterator p = midi_playlists_affected.begin(); p != midi_playlists_affected.end(); ++p) {
113                 _session->add_command (new StatefulDiffCommand (*p));
114         }
115
116         commit_reversible_command ();
117
118         return 0;
119 }
120
121 int
122 Editor::pitch_shift (RegionSelection& regions, float fraction)
123 {
124         RegionList rl;
125
126         for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
127                 rl.push_back ((*i)->region());
128         }
129
130         begin_reversible_command (_("pitch shift"));
131
132         int ret = time_fx (rl, fraction, true);
133
134         if (ret == 0) {
135                 commit_reversible_command ();
136         } else {
137                 abort_reversible_command ();
138         }
139
140         return ret;
141 }
142
143 /** @param val Percentage to time stretch by; ignored if pitch-shifting.
144  *  @param pitching true to pitch shift, false to time stretch.
145  *  @return -1 in case of error, 1 if operation was cancelled by the user, 0 if everything went ok */
146 int
147 Editor::time_fx (RegionList& regions, float val, bool pitching)
148 {
149         delete current_timefx;
150         current_timefx = new TimeFXDialog (*this, pitching);
151         current_timefx->regions = regions;
152
153         /* See if we have any audio regions on our list */
154         RegionList::iterator i = regions.begin ();
155         while (i != regions.end() && boost::dynamic_pointer_cast<AudioRegion> (*i) == 0) {
156                 ++i;
157         }
158
159         if (i == regions.end ()) {
160                 /* No audio regions; we can just do the timefx without a dialogue */
161                 do_timefx ();
162                 return 0;
163         }
164         
165         switch (current_timefx->run ()) {
166         case RESPONSE_ACCEPT:
167                 break;
168         default:
169                 current_timefx->hide ();
170                 return 1;
171         }
172
173         current_timefx->status = 0;
174
175         if (pitching) {
176
177                 float cents = current_timefx->pitch_octave_adjustment.get_value() * 1200.0;
178                 float pitch_fraction;
179                 cents += current_timefx->pitch_semitone_adjustment.get_value() * 100.0;
180                 cents += current_timefx->pitch_cent_adjustment.get_value();
181
182                 if (cents == 0.0) {
183                         // user didn't change anything
184                         current_timefx->hide ();
185                         return 0;
186                 }
187
188                 // one octave == 1200 cents
189                 // adding one octave doubles the frequency
190                 // ratio is 2^^octaves
191
192                 pitch_fraction = pow(2, cents/1200);
193
194                 current_timefx->request.time_fraction = 1.0;
195                 current_timefx->request.pitch_fraction = pitch_fraction;
196
197         } else {
198
199                 current_timefx->request.time_fraction = val;
200                 current_timefx->request.pitch_fraction = 1.0;
201
202         }
203
204 #ifdef USE_RUBBERBAND
205         /* parse options */
206
207         RubberBandStretcher::Options options = 0;
208
209         bool realtime = false;
210         bool precise = false;
211         bool peaklock = true;
212         bool longwin = false;
213         bool shortwin = false;
214         bool preserve_formants = false;
215         string txt;
216
217         enum {
218                 NoTransients,
219                 BandLimitedTransients,
220                 Transients
221         } transients = Transients;
222
223         precise = current_timefx->precise_button.get_active();
224         preserve_formants = current_timefx->preserve_formants_button.get_active();
225
226         txt = current_timefx->stretch_opts_selector.get_active_text ();
227
228         for (int i = 0; i <= 6; i++) {
229                 if (txt == rb_opt_strings[i]) {
230                         rb_current_opt = i;
231                         break;
232                 }
233         }
234
235         switch (rb_current_opt) {
236                 case 0:
237                         transients = NoTransients; peaklock = false; longwin = true; shortwin = false;
238                         break;
239                 case 1:
240                         transients = NoTransients; peaklock = false; longwin = false; shortwin = false;
241                         break;
242                 case 2:
243                         transients = NoTransients; peaklock = true; longwin = false; shortwin = false;
244                         break;
245                 case 3:
246                         transients = BandLimitedTransients; peaklock = true; longwin = false; shortwin = false;
247                         break;
248                 case 5:
249                         transients = Transients; peaklock = false; longwin = false; shortwin = true;
250                         break;
251                 case 6:
252                         transients = NoTransients;
253                         precise = true;
254                         preserve_formants = false;
255                         current_timefx->request.pitch_fraction = 1/val;
256                         shortwin = true;
257                         // peaklock = false;
258                         break;
259                 default:
260                         /* default/4 */
261                         transients = Transients; peaklock = true; longwin = false; shortwin = false;
262                         break;
263         };
264
265         if (realtime)          options |= RubberBandStretcher::OptionProcessRealTime;
266         if (precise)           options |= RubberBandStretcher::OptionStretchPrecise;
267         if (preserve_formants) options |= RubberBandStretcher::OptionFormantPreserved;
268         if (!peaklock)         options |= RubberBandStretcher::OptionPhaseIndependent;
269         if (longwin)           options |= RubberBandStretcher::OptionWindowLong;
270         if (shortwin)          options |= RubberBandStretcher::OptionWindowShort;
271
272         switch (transients) {
273         case NoTransients:
274                 options |= RubberBandStretcher::OptionTransientsSmooth;
275                 break;
276         case BandLimitedTransients:
277                 options |= RubberBandStretcher::OptionTransientsMixed;
278                 break;
279         case Transients:
280                 options |= RubberBandStretcher::OptionTransientsCrisp;
281                 break;
282         }
283
284         current_timefx->request.opts = (int) options;
285 #else
286         current_timefx->request.quick_seek = current_timefx->quick_button.get_active();
287         current_timefx->request.antialias = !current_timefx->antialias_button.get_active();
288 #endif
289         current_timefx->request.done = false;
290         current_timefx->request.cancel = false;
291
292         /* re-connect the cancel button and delete events */
293
294         current_timefx->first_cancel.disconnect();
295         current_timefx->first_delete.disconnect();
296
297         current_timefx->first_cancel = current_timefx->cancel_button->signal_clicked().connect
298                 (sigc::mem_fun (current_timefx, &TimeFXDialog::cancel_in_progress));
299         current_timefx->first_delete = current_timefx->signal_delete_event().connect
300                 (sigc::mem_fun (current_timefx, &TimeFXDialog::delete_in_progress));
301
302         if (pthread_create_and_store ("timefx", &current_timefx->request.thread, timefx_thread, current_timefx)) {
303                 current_timefx->hide ();
304                 error << _("timefx cannot be started - thread creation error") << endmsg;
305                 return -1;
306         }
307
308         pthread_detach (current_timefx->request.thread);
309
310         while (!current_timefx->request.done && !current_timefx->request.cancel) {
311                 gtk_main_iteration ();
312         }
313
314         pthread_join (current_timefx->request.thread, 0);
315
316         current_timefx->hide ();
317         return current_timefx->status;
318 }
319
320 void
321 Editor::do_timefx ()
322 {
323         boost::shared_ptr<Playlist> playlist;
324         boost::shared_ptr<Region>   new_region;
325         set<boost::shared_ptr<Playlist> > playlists_affected;
326
327         uint32_t const N = current_timefx->regions.size ();
328
329         for (RegionList::iterator i = current_timefx->regions.begin(); i != current_timefx->regions.end(); ++i) {
330                 boost::shared_ptr<Playlist> playlist = (*i)->playlist();
331
332                 if (playlist) {
333                         playlist->clear_changes ();
334                 }
335         }
336
337         for (RegionList::iterator i = current_timefx->regions.begin(); i != current_timefx->regions.end(); ++i) {
338
339                 boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion> (*i);
340
341                 if (!region || (playlist = region->playlist()) == 0) {
342                         continue;
343                 }
344
345                 if (current_timefx->request.cancel) {
346                         /* we were cancelled */
347                         /* XXX what to do about playlists already affected ? */
348                         current_timefx->status = 1;
349                         return;
350                 }
351
352                 Filter* fx;
353
354                 if (current_timefx->pitching) {
355                         fx = new Pitch (*_session, current_timefx->request);
356                 } else {
357 #ifdef USE_RUBBERBAND
358                         fx = new RBStretch (*_session, current_timefx->request);
359 #else
360                         fx = new STStretch (*_session, current_timefx->request);
361 #endif
362                 }
363
364                 current_timefx->descend (1.0 / N);
365
366                 if (fx->run (region, current_timefx)) {
367                         current_timefx->status = -1;
368                         current_timefx->request.done = true;
369                         delete fx;
370                         return;
371                 }
372
373                 if (!fx->results.empty()) {
374                         new_region = fx->results.front();
375
376                         playlist->replace_region (region, new_region, region->position());
377                         playlists_affected.insert (playlist);
378                 }
379
380                 current_timefx->ascend ();
381                 delete fx;
382         }
383
384         for (set<boost::shared_ptr<Playlist> >::iterator p = playlists_affected.begin(); p != playlists_affected.end(); ++p) {
385                 _session->add_command (new StatefulDiffCommand (*p));
386         }
387
388         current_timefx->status = 0;
389         current_timefx->request.done = true;
390 }
391
392 void*
393 Editor::timefx_thread (void *arg)
394 {
395         SessionEvent::create_per_thread_pool ("timefx events", 64);
396
397         TimeFXDialog* tsd = static_cast<TimeFXDialog*>(arg);
398
399         pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, 0);
400
401         tsd->editor.do_timefx ();
402
403         /* GACK! HACK! sleep for a bit so that our request buffer for the GUI
404            event loop doesn't die before any changes we made are processed
405            by the GUI ...
406         */
407
408 #ifdef PLATFORM_WINDOWS
409         Glib::usleep(2 * G_USEC_PER_SEC);
410 #else
411         struct timespec t = { 2, 0 };
412         nanosleep (&t, 0);
413 #endif
414         return 0;
415 }
416