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>
35 #include <synfigapp/general.h>
41 using namespace synfig;
42 using namespace synfigapp;
43 using namespace Action;
45 /* === M A C R O S ========================================================= */
47 ACTION_INIT(Action::ActivepointSimpleAdd);
48 ACTION_SET_NAME(Action::ActivepointSimpleAdd,"waypoint_simpleadd");
49 ACTION_SET_LOCAL_NAME(Action::ActivepointSimpleAdd,N_("Simply Add Waypoint"));
50 ACTION_SET_TASK(Action::ActivepointSimpleAdd,"add");
51 ACTION_SET_CATEGORY(Action::ActivepointSimpleAdd,Action::CATEGORY_WAYPOINT);
52 ACTION_SET_PRIORITY(Action::ActivepointSimpleAdd,0);
53 ACTION_SET_VERSION(Action::ActivepointSimpleAdd,"0.0");
54 ACTION_SET_CVS_ID(Action::ActivepointSimpleAdd,"$Id$");
56 /* === G L O B A L S ======================================================= */
58 /* === P R O C E D U R E S ================================================= */
60 /* === M E T H O D S ======================================================= */
62 Action::ActivepointSimpleAdd::ActivepointSimpleAdd()
65 activepoint.set_time(Time::begin()-1);
69 Action::ActivepointSimpleAdd::get_param_vocab()
71 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
73 ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
74 .set_local_name(_("Destination ValueNode (Animated)"))
77 ret.push_back(ParamDesc("activepoint",Param::TYPE_ACTIVEPOINT)
78 .set_local_name(_("Activepoint"))
79 .set_desc(_("Activepoint to be added"))
86 Action::ActivepointSimpleAdd::is_candidate(const ParamList &x)
88 if(candidate_check(get_param_vocab(),x))
90 ValueDesc value_desc(x.find("value_desc")->second.get_value_desc());
91 if(!value_desc.parent_is_value_node() || !ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node()))
96 return candidate_check(get_param_vocab(),x);
100 Action::ActivepointSimpleAdd::set_param(const synfig::String& name, const Action::Param ¶m)
102 if(name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
104 ValueDesc value_desc(param.get_value_desc());
106 if(!value_desc.parent_is_value_node())
109 value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
114 index=value_desc.get_index();
118 if(name=="activepoint" && param.get_type()==Param::TYPE_ACTIVEPOINT)
120 activepoint = param.get_activepoint();
125 return Action::CanvasSpecific::set_param(name,param);
129 Action::ActivepointSimpleAdd::is_ready()const
131 if(!value_node && activepoint.get_time() != (Time::begin()-1))
133 return Action::CanvasSpecific::is_ready();
137 Action::ActivepointSimpleAdd::perform()
139 //remove any pretenders that lie at our destination
140 ValueNode_DynamicList::ListEntry::findresult iter = value_node->list[index]
141 .find_time(activepoint.get_time());
143 time_overwrite = false;
146 overwritten_ap = *iter.first;
147 time_overwrite = true;
148 value_node->list[index].erase(overwritten_ap);
151 //add the value node in since it's safe
152 value_node->list[index].add(activepoint);
155 value_node->list[index].timing_info.sort();
157 // Signal that a valuenode has been changed
158 value_node->changed();
162 Action::ActivepointSimpleAdd::undo()
164 //remove our old version...
165 ValueNode_DynamicList::ListEntry::findresult iter = value_node->list[index].find_uid(activepoint);
169 throw Error(_("The activepoint to remove no longer exists"));
172 //remove the offending value
173 value_node->list[index].erase(*iter.first); //could also just use waypoint
177 value_node->list[index].add(overwritten_ap);
181 value_node->list[index].timing_info.sort();
183 // Signal that a valuenode has been changed
184 value_node->changed();