From 2592a320d42dd4a157ee16101c042d875d3142be Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 19 Oct 2006 22:02:30 +0000 Subject: major changes to Region, AudioRegion, Playlist, AudioPlaylist and Crossfade state management, to try to fix undo/redo. Not finished, butthe speedups etc. are in place git-svn-id: svn://localhost/ardour2/trunk@993 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_command.cc | 92 +++++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 51 deletions(-) (limited to 'libs/ardour/session_command.cc') diff --git a/libs/ardour/session_command.cc b/libs/ardour/session_command.cc index b54e5c8398..c5c31b7c17 100644 --- a/libs/ardour/session_command.cc +++ b/libs/ardour/session_command.cc @@ -28,22 +28,23 @@ Command *Session::memento_command_factory(XMLNode *n) id = PBD::ID(n->property("obj_id")->value()); /* get before/after */ - if (n->name() == "MementoCommand") - { - before = new XMLNode(*n->children().front()); - after = new XMLNode(*n->children().back()); - child = before; - } else if (n->name() == "MementoUndoCommand") - { - before = new XMLNode(*n->children().front()); - child = before; - } - else if (n->name() == "MementoRedoCommand") - { - after = new XMLNode(*n->children().front()); - child = after; - } + if (n->name() == "MementoCommand") { + before = new XMLNode(*n->children().front()); + after = new XMLNode(*n->children().back()); + child = before; + } else if (n->name() == "MementoUndoCommand") { + before = new XMLNode(*n->children().front()); + child = before; + } else if (n->name() == "MementoRedoCommand") { + after = new XMLNode(*n->children().front()); + child = after; + } else if (n->name() == "PlaylistCommand") { + before = new XMLNode(*n->children().front()); + after = new XMLNode(*n->children().back()); + child = before; + } + if (!child) { error << _("Tried to reconstitute a MementoCommand with no contents, failing. id=") << id.to_s() << endmsg; @@ -53,43 +54,32 @@ Command *Session::memento_command_factory(XMLNode *n) /* create command */ string obj_T = n->children().front()->name(); - if (obj_T == "AudioRegion" || obj_T == "Region") - { - if (audio_regions.count(id)) - return new MementoCommand(*audio_regions[id], before, after); - } - else if (obj_T == "AudioSource") - { - if (audio_sources.count(id)) - return new MementoCommand(*audio_sources[id], before, after); - } - else if (obj_T == "Location") - return new MementoCommand(*_locations.get_location_by_id(id), before, after); - else if (obj_T == "Locations") - return new MementoCommand(_locations, before, after); - else if (obj_T == "TempoMap") - return new MementoCommand(*_tempo_map, before, after); - else if (obj_T == "Playlist" || obj_T == "AudioPlaylist") - { - if (Playlist *pl = playlist_by_name(child->property("name")->value())) - return new MementoCommand(*pl, before, after); - } - else if (obj_T == "Route") // inlcudes AudioTrack - return new MementoCommand(*route_by_id(id), before, after); - else if (obj_T == "Curve") - { - if (curves.count(id)) - return new MementoCommand(*curves[id], before, after); - } - else if (obj_T == "AutomationList") - { - if (automation_lists.count(id)) - return new MementoCommand(*automation_lists[id], before, after); + if (obj_T == "AudioRegion" || obj_T == "Region") { + if (audio_regions.count(id)) + return new MementoCommand(*audio_regions[id], before, after); + } else if (obj_T == "AudioSource") { + if (audio_sources.count(id)) + return new MementoCommand(*audio_sources[id], before, after); + } else if (obj_T == "Location") { + return new MementoCommand(*_locations.get_location_by_id(id), before, after); + } else if (obj_T == "Locations") { + return new MementoCommand(_locations, before, after); + } else if (obj_T == "TempoMap") { + return new MementoCommand(*_tempo_map, before, after); + } else if (obj_T == "Playlist" || obj_T == "AudioPlaylist") { + if (Playlist *pl = playlist_by_name(child->property("name")->value())) + return new MementoCommand(*pl, before, after); + } else if (obj_T == "Route") { // includes AudioTrack + return new MementoCommand(*route_by_id(id), before, after); + } else if (obj_T == "Curve") { + if (curves.count(id)) + return new MementoCommand(*curves[id], before, after); + } else if (obj_T == "AutomationList") { + if (automation_lists.count(id)) + return new MementoCommand(*automation_lists[id], before, after); + } else if (registry.count(id)) { // For Editor and AutomationLine which are off-limits here + return new MementoCommand(*registry[id], before, after); } - // For Editor and AutomationLine which are off-limits here - else if (registry.count(id)) - return new MementoCommand(*registry[id], before, after); - /* we failed */ error << _("could not reconstitute MementoCommand from XMLNode. id=") << id.to_s() << endmsg; -- cgit v1.2.3