1 /* === S Y N F I G ========================================================= */
2 /*! \file waypointadd.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2008 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
33 #include "waypointadd.h"
34 #include <synfigapp/canvasinterface.h>
35 #include <synfigapp/main.h>
37 #include <synfigapp/general.h>
43 using namespace synfig;
44 using namespace synfigapp;
45 using namespace Action;
47 /* === M A C R O S ========================================================= */
49 ACTION_INIT(Action::WaypointAdd);
50 ACTION_SET_NAME(Action::WaypointAdd,"waypoint_add");
51 ACTION_SET_LOCAL_NAME(Action::WaypointAdd,N_("Add Waypoint"));
52 ACTION_SET_TASK(Action::WaypointAdd,"add");
53 ACTION_SET_CATEGORY(Action::WaypointAdd,Action::CATEGORY_WAYPOINT);
54 ACTION_SET_PRIORITY(Action::WaypointAdd,0);
55 ACTION_SET_VERSION(Action::WaypointAdd,"0.0");
56 ACTION_SET_CVS_ID(Action::WaypointAdd,"$Id$");
58 /* === G L O B A L S ======================================================= */
60 /* === P R O C E D U R E S ================================================= */
62 /* === M E T H O D S ======================================================= */
64 Action::WaypointAdd::WaypointAdd()
66 waypoint.set_time(Time::begin()-1);
72 Action::WaypointAdd::get_param_vocab()
74 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
76 ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
77 .set_local_name(_("Destination ValueNode (Animated)"))
80 ret.push_back(ParamDesc("waypoint",Param::TYPE_WAYPOINT)
81 .set_local_name(_("New Waypoint"))
82 .set_desc(_("Waypoint to be added"))
86 ret.push_back(ParamDesc("time",Param::TYPE_TIME)
87 .set_local_name(_("Time"))
88 .set_desc(_("Time where waypoint is to be added"))
96 Action::WaypointAdd::is_candidate(const ParamList &x)
98 return (candidate_check(get_param_vocab(),x) &&
99 // We need an animated valuenode.
100 ValueNode_Animated::Handle::cast_dynamic(x.find("value_node")->second.get_value_node()) &&
101 // We need either a waypoint or a time.
102 (x.count("waypoint") || x.count("time")));
106 Action::WaypointAdd::set_param(const synfig::String& name, const Action::Param ¶m)
108 if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
110 value_node=ValueNode_Animated::Handle::cast_dynamic(param.get_value_node());
114 return static_cast<bool>(value_node);
116 if(name=="waypoint" && param.get_type()==Param::TYPE_WAYPOINT && !time_set)
118 waypoint=param.get_waypoint();
122 if(name=="time" && param.get_type()==Param::TYPE_TIME && waypoint.get_time()==Time::begin()-1)
124 waypoint.set_time(param.get_time());
133 return Action::CanvasSpecific::set_param(name,param);
137 Action::WaypointAdd::is_ready()const
139 if(!value_node || waypoint.get_time()==(Time::begin()-1))
141 return Action::CanvasSpecific::is_ready();
144 // This function is called if a time is specified, but not
145 // a waypoint. In this case, we need to calculate the value
148 Action::WaypointAdd::calc_waypoint()
150 Time time=waypoint.get_time();
151 Waypoint original(waypoint);
152 waypoint=value_node->new_waypoint_at_time(time);
153 waypoint.mimic(original);
154 waypoint.set_before(synfigapp::Main::get_interpolation());
155 waypoint.set_after(synfigapp::Main::get_interpolation());
158 ValueNode_Animated::WaypointList &waypoint_list(value_node->waypoint_list());
159 ValueNode_Animated::WaypointList::iterator iter;
161 if(waypoint_list.empty())
163 waypoint.set_value((*value_node)(time));
167 ValueNode_Animated::WaypointList::iterator closest=waypoint_list.begin();
169 for(iter=waypoint_list.begin();iter!=waypoint_list.end();++iter)
171 const Real dist(abs(iter->get_time()-time));
172 if(dist<abs(closest->get_time()-time))
175 if(!closest->is_static())
176 waypoint.set_value_node(closest->get_value_node());
178 waypoint.set_value((*value_node)(time));
183 Action::WaypointAdd::perform()
185 try { value_node->find(waypoint.get_time()); throw Error(_("A Waypoint already exists at this point in time (%s)"),waypoint.get_time().get_string().c_str());}
186 catch(synfig::Exception::NotFound) { }
188 try { if(value_node->find(waypoint)!=value_node->waypoint_list().end()) throw Error(_("This waypoint is already in the ValueNode"));}
189 catch(synfig::Exception::NotFound) { }
191 value_node->add(waypoint);
193 value_node->changed();
194 /*_if(get_canvas_interface())
196 get_canvas_interface()->signal_value_node_changed()(value_node);
198 else synfig::warning("CanvasInterface not set on action");*/
202 Action::WaypointAdd::undo()
204 value_node->erase(waypoint);
206 value_node->changed();
207 /*_if(get_canvas_interface())
209 get_canvas_interface()->signal_value_node_changed()(value_node);
211 else synfig::warning("CanvasInterface not set on action");*/