summaryrefslogtreecommitdiff
path: root/libs/ardour/session_command.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-10-21 22:59:29 +0000
committerDavid Robillard <d@drobilla.net>2006-10-21 22:59:29 +0000
commit22e41063d5b0c4c80eab3e3a375b734ca7d76169 (patch)
treee95cc99ff4e2f12bb41d1fdb0d1abf9525e92416 /libs/ardour/session_command.cc
parentfedf3d34f32264ac57c6a222b678dc90f2bb1a88 (diff)
Merged with trunk R999.
git-svn-id: svn://localhost/ardour2/branches/midi@1000 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_command.cc')
-rw-r--r--libs/ardour/session_command.cc102
1 files changed, 45 insertions, 57 deletions
diff --git a/libs/ardour/session_command.cc b/libs/ardour/session_command.cc
index fb15304e9f..d71ba34fc7 100644
--- a/libs/ardour/session_command.cc
+++ b/libs/ardour/session_command.cc
@@ -28,74 +28,62 @@ 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;
return 0;
- }
-
-
- /* create command */
+ }
+
+
+ /* create command */
string obj_T = n->children().front()->name();
- if (obj_T == "AudioRegion" || obj_T == "MidiRegion" || obj_T == "Region")
- {
- if (regions.count(id))
- return new MementoCommand<Region>(*regions[id], before, after);
+ if (obj_T == "AudioRegion" || obj_T == "MidiRegion" || obj_T == "Region") {
+ if (regions.count(id))
+ return new MementoCommand<Region>(*regions[id], before, after);
+ } else if (obj_T == "AudioSource" || obj_T == "MidiSource") {
+ if (sources.count(id))
+ return new MementoCommand<Source>(*sources[id], before, after);
+ } else if (obj_T == "Location") {
+ return new MementoCommand<Location>(*_locations.get_location_by_id(id), before, after);
+ } else if (obj_T == "Locations") {
+ return new MementoCommand<Locations>(_locations, before, after);
+ } else if (obj_T == "TempoMap") {
+ return new MementoCommand<TempoMap>(*_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<Playlist>(*pl, before, after);
+ } else if (obj_T == "Route") { // includes AudioTrack
+ return new MementoCommand<Route>(*route_by_id(id), before, after);
+ } else if (obj_T == "Curve") {
+ if (curves.count(id))
+ return new MementoCommand<Curve>(*curves[id], before, after);
+ } else if (obj_T == "AutomationList") {
+ if (automation_lists.count(id))
+ return new MementoCommand<AutomationList>(*automation_lists[id], before, after);
+ } else if (registry.count(id)) { // For Editor and AutomationLine which are off-limits here
+ return new MementoCommand<StatefulDestructible>(*registry[id], before, after);
}
- else if (obj_T == "Source" || obj_T == "AudioSource" || obj_T == "MidiSource")
- {
- if (sources.count(id))
- return new MementoCommand<Source>(*sources[id], before, after);
- }
- else if (obj_T == "Location")
- return new MementoCommand<Location>(*_locations.get_location_by_id(id), before, after);
- else if (obj_T == "Locations")
- return new MementoCommand<Locations>(_locations, before, after);
- else if (obj_T == "TempoMap")
- return new MementoCommand<TempoMap>(*_tempo_map, before, after);
- else if (obj_T == "Playlist" || obj_T == "MidiPlaylist" || obj_T == "AudioPlaylist")
- {
- if (Playlist *pl = playlist_by_name(child->property("name")->value()))
- return new MementoCommand<Playlist>(*pl, before, after);
- }
- else if (obj_T == "Route") // inlcudes AudioTrack
- return new MementoCommand<Route>(*route_by_id(id), before, after);
- else if (obj_T == "Curve")
- {
- if (curves.count(id))
- return new MementoCommand<Curve>(*curves[id], before, after);
- }
- else if (obj_T == "AutomationList")
- {
- if (automation_lists.count(id))
- return new MementoCommand<AutomationList>(*automation_lists[id], before, after);
- }
- // For Editor and AutomationLine which are off-limits here
- else if (registry.count(id))
- return new MementoCommand<StatefulDestructible>(*registry[id], before, after);
-
/* we failed */
error << _("could not reconstitute MementoCommand from XMLNode. id=") << id.to_s() << endmsg;
return 0;
-
- return 0;
}
// solo