region list patch #2 from chris g, slightly reworked by me; sv_se po changes, possibl...
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index 10438bfb023085c20b192f45577906db3e79b120..ac68f6d907cacb0d6226f4fd301211d6bfb47c2b 100644 (file)
 
 */
 
+/* Note: public Editor methods are documented in public_editor.h */
+
 #include <unistd.h>
 #include <climits>
 
 #include <gtkmm/messagedialog.h>
 
-#include "export_session_dialog.h"
-#include "export_region_dialog.h"
-#include "export_range_markers_dialog.h"
+#include "export_main_dialog.h"
 #include "editor.h"
 #include "public_editor.h"
 #include "selection.h"
 
 #include <pbd/pthread_utils.h>
 #include <ardour/types.h>
-#include <ardour/export.h>
 #include <ardour/audio_track.h>
 #include <ardour/audiofilesource.h>
 #include <ardour/audio_diskstream.h>
 #include <ardour/audioregion.h>
 #include <ardour/audioplaylist.h>
 #include <ardour/chan_count.h>
+#include <ardour/session_directory.h>
 #include <ardour/source_factory.h>
 #include <ardour/audiofilesource.h>
 
@@ -52,77 +52,59 @@ using namespace PBD;
 using namespace Gtk;
 
 void
-Editor::export_session()
+Editor::export_audio ()
 {
-       if (session) {
-               export_range (session->current_start_frame(), session->current_end_frame());
-       }
+       ExportMainDialog dialog (*this);
+       dialog.set_session (session);
+       dialog.run();
 }
 
 void
 Editor::export_selection ()
 {
-       if (session) {
-               if (selection->time.empty()) {
-                       MessageDialog message (*this, _("There is no selection to export.\n\nSelect a selection using the range mouse mode"));
-                       message.run ();
-                       return;
-               }
-
-               export_range (selection->time.front().start, selection->time.front().end);
-       }
+       ExportMainDialog dialog (*this);
+       dialog.set_session (session);
+       dialog.select_timespan (X_("selection"));
+       dialog.run();
 }
 
 void
-Editor::export_range (nframes_t start, nframes_t end)
+Editor::export_range ()
 {
-       if (session) {
-               if (export_dialog == 0) {
-                       export_dialog = new ExportSessionDialog (*this);
-               }
-               
-               export_dialog->connect_to_session (session);
-               export_dialog->set_range (start, end);
-               export_dialog->start_export();
-       }
-}      
+       Marker* marker;
 
-void
-Editor::export_region ()
-{
-       if (clicked_regionview == 0) {
-               return;
+       if ((marker = reinterpret_cast<Marker *> (marker_menu_item->get_data ("marker"))) == 0) {
+               fatal << _("programming error: marker canvas item has no marker object pointer!") << endmsg;
+               /*NOTREACHED*/
        }
 
-       ExportDialog* dialog = new ExportRegionDialog (*this, clicked_regionview->region());
-               
-       dialog->connect_to_session (session);
-       dialog->set_range (
-               clicked_regionview->region()->first_frame(), 
-               clicked_regionview->region()->last_frame());
-       dialog->start_export();
+       Location* l;
+       bool is_start;
+
+       if (((l = find_location_from_marker (marker, is_start)) != 0) && (l->end() > l->start())) {
+               ExportMainDialog dialog (*this);
+               dialog.set_session (session);
+               dialog.select_timespan (l->id().to_s());
+               dialog.run();
+       }
 }
 
+/** Export the first selected region */
 void
-Editor::export_range_markers ()
+Editor::export_region ()
 {
-       if (session) {
-
-               if (session->locations()->num_range_markers() == 0) {
-                       MessageDialog message (*this, _("There are no ranges to export.\n\nCreate 1 or more ranges by dragging the mouse in the range bar"));
-                       message.run ();
-                       return;
-               }
-               
-
-               if (export_range_markers_dialog == 0) {
-                       export_range_markers_dialog = new ExportRangeMarkersDialog(*this);
-               }
-               
-               export_range_markers_dialog->connect_to_session (session);
-               export_range_markers_dialog->start_export();
-       }
-}      
+//     if (selection->regions.empty()) {
+//             return;
+//     }
+// 
+//     boost::shared_ptr<Region> r = selection->regions.front()->region();
+//     
+//     ExportDialog* dialog = new ExportRegionDialog (*this, r);
+//             
+//     dialog->connect_to_session (session);
+//     dialog->set_range (clicked_regionview->region()->first_frame(), clicked_regionview->region()->last_frame());
+//     dialog->start_export();
+}
 
 int
 Editor::write_region_selection (RegionSelection& regions)
@@ -153,7 +135,12 @@ Editor::bounce_region_selection ()
                itt.cancel = false;
                itt.progress = 0.0f;
 
-               track->bounce_range (region->position(), region->position() + region->length(), itt);
+               boost::shared_ptr<Region> r = track->bounce_range (region->position(), region->position() + region->length(), itt);
+               cerr << "Result of bounce of "
+                    << region->name() << " len = " << region->length()
+                    << " was "
+                    << r->name() << " len = " << r->length()
+                    << endl;
        }
 }
 
@@ -161,16 +148,18 @@ bool
 Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
 {
        boost::shared_ptr<AudioFileSource> fs;
-       const nframes_t chunk_size = 4096;
-       nframes_t to_read;
+       const nframes64_t chunk_size = 4096;
+       nframes64_t to_read;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       nframes_t pos;
+       nframes64_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
        vector<boost::shared_ptr<AudioFileSource> > sources;
        uint32_t nchans;
-       
+
+       const string sound_directory = session->session_directory().sound_path().to_string();
+
        nchans = region->n_channels();
        
        /* don't do duplicate of the entire source if that's what is going on here */
@@ -186,11 +175,11 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
                        
                        for (cnt = 0; cnt < 999999; ++cnt) {
                                if (nchans == 1) {
-                                       snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", session->sound_dir().c_str(),
+                                       snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", sound_directory.c_str(),
                                                  legalize_for_path(region->name()).c_str(), cnt);
                                }
                                else {
-                                       snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", session->sound_dir().c_str(),
+                                       snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", sound_directory.c_str(),
                                                  legalize_for_path(region->name()).c_str(), cnt, n);
                                }
 
@@ -228,7 +217,7 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
        pos = region->position();
 
        while (to_read) {
-               nframes_t this_time;
+               nframes64_t this_time;
 
                this_time = min (to_read, chunk_size);
 
@@ -306,27 +295,29 @@ bool
 Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list<AudioRange>& range)
 {
        boost::shared_ptr<AudioFileSource> fs;
-       const nframes_t chunk_size = 4096;
-       nframes_t nframes;
+       const nframes64_t chunk_size = 4096;
+       nframes64_t nframes;
        Sample buf[chunk_size];
        gain_t gain_buffer[chunk_size];
-       nframes_t pos;
+       nframes64_t pos;
        char s[PATH_MAX+1];
        uint32_t cnt;
        string path;
        vector<boost::shared_ptr<AudioFileSource> > sources;
 
-       uint32_t channels = count.get(DataType::AUDIO);
+       const string sound_directory = session->session_directory().sound_path().to_string();
+
+       uint32_t channels = count.n_audio();
 
        for (uint32_t n=0; n < channels; ++n) {
                
                for (cnt = 0; cnt < 999999; ++cnt) {
                        if (channels == 1) {
-                               snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", session->sound_dir().c_str(),
+                               snprintf (s, sizeof(s), "%s/%s_%" PRIu32 ".wav", sound_directory.c_str(),
                                          legalize_for_path(playlist.name()).c_str(), cnt);
                        }
                        else {
-                               snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", session->sound_dir().c_str(),
+                               snprintf (s, sizeof(s), "%s/%s_%" PRIu32 "-%" PRId32 ".wav", sound_directory.c_str(),
                                          legalize_for_path(playlist.name()).c_str(), cnt, n);
                        }
                        
@@ -361,7 +352,7 @@ Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list
                pos = (*i).start;
                
                while (nframes) {
-                       nframes_t this_time;
+                       nframes64_t this_time;
                        
                        this_time = min (nframes, chunk_size);
 
@@ -393,7 +384,7 @@ Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list
 
                        while (nframes) {
 
-                               nframes_t this_time = min (nframes, chunk_size);
+                               nframes64_t this_time = min (nframes, chunk_size);
                                memset (buf, 0, sizeof (Sample) * this_time);
 
                                for (uint32_t n=0; n < channels; ++n) {