X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_pt_import.cc;h=db9fc03b2d6029ccccb0e36d8cbfc6f520014703;hb=e5a181c323243a03338f5a9934a5df254986370d;hp=8689d94391c0b0954d3b2c7d81bf171f471785de;hpb=d686cb213f624fb6c006d00eeb53b0e2bf640330;p=ardour.git diff --git a/gtk2_ardour/editor_pt_import.cc b/gtk2_ardour/editor_pt_import.cc index 8689d94391..db9fc03b2d 100644 --- a/gtk2_ardour/editor_pt_import.cc +++ b/gtk2_ardour/editor_pt_import.cc @@ -29,13 +29,12 @@ #include "pbd/shortpath.h" #include "pbd/stateful_diff_command.h" -#include - #include "ardour/audio_track.h" #include "ardour/audiofilesource.h" #include "ardour/audioregion.h" #include "ardour/midi_region.h" #include "ardour/midi_track.h" +#include "ardour/midi_model.h" #include "ardour/operations.h" #include "ardour/region_factory.h" #include "ardour/smf_source.h" @@ -60,7 +59,7 @@ #include "mouse_cursors.h" #include "editor_cursors.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace std; using namespace ARDOUR; @@ -83,12 +82,12 @@ Editor::external_pt_dialog () return; } - Gtk::FileChooserDialog dialog(_("Import PT Session"), FILE_CHOOSER_ACTION_OPEN); - dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); - dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK); + Gtk::FileChooserDialog dialog (_("Import PT Session"), FILE_CHOOSER_ACTION_OPEN); + dialog.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); + dialog.add_button (Gtk::Stock::OK, Gtk::RESPONSE_OK); while (true) { - int result = dialog.run(); + int result = dialog.run (); if (result == Gtk::RESPONSE_OK) { ptpath = dialog.get_filename (); @@ -100,8 +99,8 @@ Editor::external_pt_dialog () } } - if (ptpath.length()) { - do_ptimport(ptpath, SrcBest); + if (ptpath.length ()) { + do_ptimport (ptpath, SrcBest); break; } @@ -111,6 +110,15 @@ Editor::external_pt_dialog () } } +struct midipair { + midipair (uint16_t idx, string n) + : ptfindex (idx) + , trname (n) + {} + uint16_t ptfindex; + string trname; +}; + void Editor::do_ptimport (std::string ptpath, SrcQuality quality) @@ -121,18 +129,27 @@ Editor::do_ptimport (std::string ptpath, vector to_import; string fullpath; bool ok = false; + bool onefailed = false; PTFFormat ptf; - framepos_t pos = -1; + samplepos_t pos = -1; + uint32_t srate = _session->sample_rate (); vector ptfwavpair; vector ptfregpair; - if (ptf.load(ptpath) == -1) { - MessageDialog msg (_("Doesn't seem to be a valid PT session file (.ptf only currently supported)")); + if (ptf.load (ptpath, srate) == -1) { + MessageDialog msg (_("Doesn't seem to be a valid PT session file")); msg.run (); return; - } + } else { + MessageDialog msg (string_compose (_("PT v%1 Session @ %2Hz\n\n%3 audio files\n%4 audio regions\n%5 active audio regions\n%6 midi regions\n%7 active midi regions\n\nContinue..."), (int)ptf.version, ptf.sessionrate, ptf.audiofiles.size (), ptf.regions.size (), ptf.tracks.size (), ptf.midiregions.size (), ptf.miditracks.size ())); + msg.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); + int result = msg.run (); + if (result != Gtk::RESPONSE_OK) { + return; + } + } current_interthread_info = &import_status; import_status.current = 1; import_status.total = ptf.audiofiles.size (); @@ -143,33 +160,53 @@ Editor::do_ptimport (std::string ptpath, SourceList just_one; SourceList imported; - for (vector::iterator a = ptf.audiofiles.begin(); a != ptf.audiofiles.end(); ++a) { + for (vector::iterator a = ptf.audiofiles.begin (); a != ptf.audiofiles.end (); ++a) { ptflookup_t p; - fullpath = Glib::build_filename (Glib::path_get_dirname(ptpath), "Audio Files"); + fullpath = Glib::build_filename (Glib::path_get_dirname (ptpath), "Audio Files"); fullpath = Glib::build_filename (fullpath, a->filename); to_import.clear (); to_import.push_back (fullpath); ipw.show (); ok = import_sndfiles (to_import, Editing::ImportDistinctFiles, Editing::ImportAsRegion, quality, pos, 1, -1, track, false, instrument); - if (!import_status.sources.empty()) { + if (!import_status.sources.empty ()) { p.index1 = a->index; - p.id = import_status.sources.back()->id(); - - ptfwavpair.push_back(p); - imported.push_back(import_status.sources.back()); + p.id = import_status.sources.back ()->id (); + + ptfwavpair.push_back (p); + imported.push_back (import_status.sources.back ()); + } else { + /* ptformat does not know the length of sources so we cannot do this: + XMLNode srcxml (X_("Source")); + srcxml.set_property ("name", a->filename); + srcxml.set_property ("type", "audio"); + srcxml.set_property ("id", PBD::ID ().to_s ()); + boost::shared_ptr source = SourceFactory::createSilent (*_session, srcxml, a->length, _session->sample_rate ()); + p.index1 = a->index; + p.id = source->id (); + ptfwavpair.push_back (p); + imported.push_back (source); + */ + onefailed = true; } } - for (vector::iterator a = ptf.regions.begin(); - a != ptf.regions.end(); ++a) { - for (vector::iterator p = ptfwavpair.begin(); - p != ptfwavpair.end(); ++p) { - if (p->index1 == a->wave.index) { - for (SourceList::iterator x = imported.begin(); - x != imported.end(); ++x) { - if ((*x)->id() == p->id) { - // Matched an uncreated ptf region to ardour region + if (onefailed) { + MessageDialog msg (_("Failed to load one or more of the audio files. Click to attempt partial import.")); + msg.run (); + } else { + MessageDialog msg (_("Success! All audio files found. Click to complete import.")); + msg.run (); + } + + for (vector::iterator a = ptf.regions.begin (); + a != ptf.regions.end (); ++a) { + for (vector::iterator p = ptfwavpair.begin (); + p != ptfwavpair.end (); ++p) { + if ((p->index1 == a->wave.index) && (strcmp (a->wave.filename.c_str (), "") != 0)) { + for (SourceList::iterator x = imported.begin (); x != imported.end (); ++x) { + if ((*x)->id () == p->id) { + /* Matched an uncreated ptf region to ardour region */ ptflookup_t rp; PropertyList plist; @@ -181,15 +218,15 @@ Editor::do_ptimport (std::string ptpath, plist.add (ARDOUR::Properties::whole_file, false); plist.add (ARDOUR::Properties::external, true); - just_one.clear(); - just_one.push_back(*x); + just_one.clear (); + just_one.push_back (*x); boost::shared_ptr r = RegionFactory::create (just_one, plist); - regions.push_back(r); + regions.push_back (r); - rp.id = regions.back()->id(); + rp.id = regions.back ()->id (); rp.index1 = a->index; - ptfregpair.push_back(rp); + ptfregpair.push_back (rp); } } } @@ -201,37 +238,51 @@ Editor::do_ptimport (std::string ptpath, vector usedtracks; ptflookup_t utr; - for (vector::iterator a = ptf.tracks.begin(); - a != ptf.tracks.end(); ++a) { - for (vector::iterator p = ptfregpair.begin(); - p != ptfregpair.end(); ++p) { + for (vector::iterator a = ptf.tracks.begin (); a != ptf.tracks.end (); ++a) { + for (vector::iterator p = ptfregpair.begin (); + p != ptfregpair.end (); ++p) { - if ((p->index1 == a->reg.index)) { - // Matched a ptf active region to an ardour region + if (p->index1 == a->reg.index) { + /* Matched a ptf active region to an ardour region */ utr.index1 = a->index; utr.index2 = nth; utr.id = p->id; boost::shared_ptr r = RegionFactory::region_by_id (p->id); - vector::iterator lookuptr = usedtracks.begin(); + vector::iterator lookuptr = usedtracks.begin (); vector::iterator found; - if ((found = std::find(lookuptr, usedtracks.end(), utr)) != usedtracks.end()) { - DEBUG_TRACE (DEBUG::FileUtils, string_compose ("\twav(%1) reg(%2) ptf_tr(%3) ard_tr(%4)\n", a->reg.wave.filename.c_str(), a->reg.index, found->index1, found->index2)); - existing_track = get_nth_selected_audio_track(found->index2); - // Put on existing track - boost::shared_ptr playlist = existing_track->playlist(); + if ((found = std::find (lookuptr, usedtracks.end (), utr)) != usedtracks.end ()) { + DEBUG_TRACE (DEBUG::FileUtils, string_compose ("\twav(%1) reg(%2) ptf_tr(%3) ard_tr(%4)\n", a->reg.wave.filename.c_str (), a->reg.index, found->index1, found->index2)); + existing_track = get_nth_selected_audio_track (found->index2); // FIXME, don't rely on selection + /* Put on existing track */ + boost::shared_ptr playlist = existing_track->playlist (); boost::shared_ptr copy (RegionFactory::create (r, true)); playlist->clear_changes (); playlist->add_region (copy, a->reg.startpos); //_session->add_command (new StatefulDiffCommand (playlist)); } else { - // Put on a new track - DEBUG_TRACE (DEBUG::FileUtils, string_compose ("\twav(%1) reg(%2) new_tr(%3)\n", a->reg.wave.filename.c_str(), a->reg.index, nth)); - list > at (_session->new_audio_track (1, 2, Normal, 0, 1)); - if (at.empty()) { + /* Put on a new track */ + DEBUG_TRACE (DEBUG::FileUtils, string_compose ("\twav(%1) reg(%2) new_tr(%3)\n", a->reg.wave.filename.c_str (), a->reg.index, nth)); + list > at (_session->new_audio_track (1, 2, 0, 1, "", PresentationInfo::max_order, Normal)); + if (at.empty ()) { return; } - existing_track = at.back(); - existing_track->set_name (a->name); + existing_track = at.back (); + std::string trackname; + try { + trackname = Glib::convert_with_fallback (a->name, "UTF-8", "UTF-8", "_"); + } catch (Glib::ConvertError& err) { + trackname = string_compose ("Invalid %1", a->index); + } + /* TODO legalize track name (no slashes, no colons) */ +#if 0 /* TODO -- "find_route_name" is currently private */ + /* generate a unique name by adding a number if needed */ + uint32_t id = 0; + if (!_session->find_route_name (trackname.c_str (), id, trackname, false)) { + fatal << _("PTImport: UINT_MAX routes? impossible!") << endmsg; + abort(); /*NOTREACHED*/ + } +#endif + existing_track->set_name (trackname); boost::shared_ptr playlist = existing_track->playlist(); boost::shared_ptr copy (RegionFactory::create (r, true)); playlist->clear_changes (); @@ -239,12 +290,86 @@ Editor::do_ptimport (std::string ptpath, //_session->add_command (new StatefulDiffCommand (playlist)); nth++; } - usedtracks.push_back(utr); + usedtracks.push_back (utr); + } + } + } + + /* MIDI - Find list of unique midi tracks first */ + + vector uniquetr; + + for (vector::iterator a = ptf.miditracks.begin (); a != ptf.miditracks.end (); ++a) { + bool found = false; + for (vector::iterator b = uniquetr.begin (); b != uniquetr.end (); ++b) { + if (b->trname == a->name) { + found = true; + break; } } + if (!found) { + uniquetr.push_back (midipair (a->index, a->name)); + //printf(" : %d : %s\n", a->index, a->name.c_str()); + } + } + + std::map > midi_tracks; + /* MIDI - Create unique midi tracks and a lookup table for used tracks */ + for (vector::iterator a = uniquetr.begin (); a != uniquetr.end (); ++a) { + ptflookup_t miditr; + list > mt (_session->new_midi_track ( + ChanCount (DataType::MIDI, 1), + ChanCount (DataType::MIDI, 1), + true, + instrument, (Plugin::PresetRecord*) 0, + (RouteGroup*) 0, + 1, + a->trname, + PresentationInfo::max_order, + Normal)); + assert (mt.size () == 1); + midi_tracks[a->ptfindex] = mt.front (); + } + + /* MIDI - Add midi regions one-by-one to corresponding midi tracks */ + for (vector::iterator a = ptf.miditracks.begin (); a != ptf.miditracks.end (); ++a) { + + boost::shared_ptr midi_track = midi_tracks[a->index]; + assert (midi_track); + boost::shared_ptr playlist = midi_track->playlist (); + samplepos_t f = (samplepos_t)a->reg.startpos * srate / 1920000.; + samplecnt_t length = (samplecnt_t)a->reg.length * srate / 1920000.; + MusicSample pos (f, 0); + boost::shared_ptr src = _session->create_midi_source_by_stealing_name (midi_track); + PropertyList plist; + plist.add (ARDOUR::Properties::start, 0); + plist.add (ARDOUR::Properties::length, length); + plist.add (ARDOUR::Properties::name, PBD::basename_nosuffix (src->name ())); + //printf(" : %d - trackname: (%s)\n", a->index, src->name ().c_str ()); + boost::shared_ptr region = (RegionFactory::create (src, plist)); + /* sets beat position */ + region->set_position (pos.sample, pos.division); + midi_track->playlist ()->add_region (region, pos.sample, 1.0, false, pos.division); + + boost::shared_ptr mr = boost::dynamic_pointer_cast(region); + boost::shared_ptr mm = mr->midi_source (0)->model (); + MidiModel::NoteDiffCommand *midicmd; + midicmd = mm->new_note_diff_command ("Import ProTools MIDI"); + + for (vector::iterator j = a->reg.midi.begin (); j != a->reg.midi.end (); ++j) { + //printf(" : MIDI : pos=%f len=%f\n", (float)j->pos / 960000., (float)j->length / 960000.); + Temporal::Beats start = (Temporal::Beats)(j->pos / 960000.); + Temporal::Beats len = (Temporal::Beats)(j->length / 960000.); + /* PT C-2 = 0, Ardour C-1 = 0, subtract twelve to convert ? */ + midicmd->add (boost::shared_ptr > (new Evoral::Note ((uint8_t)1, start, len, j->note, j->velocity))); + } + mm->apply_command (_session, midicmd); + boost::shared_ptr copy (RegionFactory::create (mr, true)); + playlist->clear_changes (); + playlist->add_region (copy, f); } - import_status.sources.clear(); + import_status.sources.clear (); if (ok) { _session->save_state ("");