1 /* === S Y N F I G ========================================================= */
2 /*! \file activepointsimpleadd.cpp
3 ** \brief Simple add activepoint File
8 ** Copyright (c) 2004 Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "activepointsimpleadd.h"
33 #include <synfigapp/canvasinterface.h>
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
43 /* === M A C R O S ========================================================= */
45 ACTION_INIT(Action::ActivepointSimpleAdd);
46 ACTION_SET_NAME(Action::ActivepointSimpleAdd,"waypoint_simpleadd");
47 ACTION_SET_LOCAL_NAME(Action::ActivepointSimpleAdd,"Simply Add Waypoint");
48 ACTION_SET_TASK(Action::ActivepointSimpleAdd,"add");
49 ACTION_SET_CATEGORY(Action::ActivepointSimpleAdd,Action::CATEGORY_WAYPOINT);
50 ACTION_SET_PRIORITY(Action::ActivepointSimpleAdd,0);
51 ACTION_SET_VERSION(Action::ActivepointSimpleAdd,"0.0");
52 ACTION_SET_CVS_ID(Action::ActivepointSimpleAdd,"$Id$");
54 /* === G L O B A L S ======================================================= */
56 /* === P R O C E D U R E S ================================================= */
58 /* === M E T H O D S ======================================================= */
60 Action::ActivepointSimpleAdd::ActivepointSimpleAdd()
63 activepoint.set_time(Time::begin()-1);
67 Action::ActivepointSimpleAdd::get_param_vocab()
69 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
71 ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
72 .set_local_name(_("Destination ValueNode (Animated)"))
75 ret.push_back(ParamDesc("activepoint",Param::TYPE_ACTIVEPOINT)
76 .set_local_name(_("Activepoint"))
77 .set_desc(_("Activepoint to be added"))
84 Action::ActivepointSimpleAdd::is_candidate(const ParamList &x)
86 if(candidate_check(get_param_vocab(),x))
88 ValueDesc value_desc(x.find("value_desc")->second.get_value_desc());
89 if(!value_desc.parent_is_value_node() || !ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node()))
94 return candidate_check(get_param_vocab(),x);
98 Action::ActivepointSimpleAdd::set_param(const synfig::String& name, const Action::Param ¶m)
100 if(name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
102 ValueDesc value_desc(param.get_value_desc());
104 if(!value_desc.parent_is_value_node())
107 value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
112 index=value_desc.get_index();
116 if(name=="activepoint" && param.get_type()==Param::TYPE_ACTIVEPOINT)
118 activepoint = param.get_activepoint();
123 return Action::CanvasSpecific::set_param(name,param);
127 Action::ActivepointSimpleAdd::is_ready()const
129 if(!value_node && activepoint.get_time() != (Time::begin()-1))
131 return Action::CanvasSpecific::is_ready();
135 Action::ActivepointSimpleAdd::perform()
137 //remove any pretenders that lie at our destination
138 ValueNode_DynamicList::ListEntry::findresult iter = value_node->list[index]
139 .find_time(activepoint.get_time());
141 time_overwrite = false;
144 overwritten_ap = *iter.first;
145 time_overwrite = true;
146 value_node->list[index].erase(overwritten_ap);
149 //add the value node in since it's safe
150 value_node->list[index].add(activepoint);
153 value_node->list[index].timing_info.sort();
155 // Signal that a valuenode has been changed
156 value_node->changed();
160 Action::ActivepointSimpleAdd::undo()
162 //remove our old version...
163 ValueNode_DynamicList::ListEntry::findresult iter = value_node->list[index].find_uid(activepoint);
167 throw Error(_("The activepoint to remove no longer exists"));
170 //remove the offending value
171 value_node->list[index].erase(*iter.first); //could also just use waypoint
175 value_node->list[index].add(overwritten_ap);
179 value_node->list[index].timing_info.sort();
181 // Signal that a valuenode has been changed
182 value_node->changed();