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
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 "waypointadd.h"
33 #include <synfigapp/canvasinterface.h>
34 #include <synfigapp/main.h>
36 #include <synfigapp/general.h>
42 using namespace synfig;
43 using namespace synfigapp;
44 using namespace Action;
46 /* === M A C R O S ========================================================= */
48 ACTION_INIT(Action::WaypointAdd);
49 ACTION_SET_NAME(Action::WaypointAdd,"waypoint_add");
50 ACTION_SET_LOCAL_NAME(Action::WaypointAdd,N_("Add Waypoint"));
51 ACTION_SET_TASK(Action::WaypointAdd,"add");
52 ACTION_SET_CATEGORY(Action::WaypointAdd,Action::CATEGORY_WAYPOINT);
53 ACTION_SET_PRIORITY(Action::WaypointAdd,0);
54 ACTION_SET_VERSION(Action::WaypointAdd,"0.0");
55 ACTION_SET_CVS_ID(Action::WaypointAdd,"$Id$");
57 /* === G L O B A L S ======================================================= */
59 /* === P R O C E D U R E S ================================================= */
61 /* === M E T H O D S ======================================================= */
63 Action::WaypointAdd::WaypointAdd()
65 waypoint.set_time(Time::begin()-1);
71 Action::WaypointAdd::get_param_vocab()
73 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
75 ret.push_back(ParamDesc("value_node",Param::TYPE_VALUENODE)
76 .set_local_name(_("Destination ValueNode (Animated)"))
79 ret.push_back(ParamDesc("waypoint",Param::TYPE_WAYPOINT)
80 .set_local_name(_("New Waypoint"))
81 .set_desc(_("Waypoint to be added"))
85 ret.push_back(ParamDesc("time",Param::TYPE_TIME)
86 .set_local_name(_("Time"))
87 .set_desc(_("Time where waypoint is to be added"))
95 Action::WaypointAdd::is_candidate(const ParamList &x)
97 if(candidate_check(get_param_vocab(),x))
99 if(!ValueNode_Animated::Handle::cast_dynamic(x.find("value_node")->second.get_value_node()))
102 // We need either a waypoint or a time.
103 if(x.count("waypoint") || x.count("time"))
110 Action::WaypointAdd::set_param(const synfig::String& name, const Action::Param ¶m)
112 if(name=="value_node" && param.get_type()==Param::TYPE_VALUENODE)
114 value_node=ValueNode_Animated::Handle::cast_dynamic(param.get_value_node());
118 return static_cast<bool>(value_node);
120 if(name=="waypoint" && param.get_type()==Param::TYPE_WAYPOINT && !time_set)
122 waypoint=param.get_waypoint();
126 if(name=="time" && param.get_type()==Param::TYPE_TIME && waypoint.get_time()==Time::begin()-1)
128 waypoint.set_time(param.get_time());
137 return Action::CanvasSpecific::set_param(name,param);
141 Action::WaypointAdd::is_ready()const
143 if(!value_node || waypoint.get_time()==(Time::begin()-1))
145 return Action::CanvasSpecific::is_ready();
148 // This function is called if a time is specified, but not
149 // a waypoint. In this case, we need to calculate the value
152 Action::WaypointAdd::calc_waypoint()
154 Time time=waypoint.get_time();
155 Waypoint original(waypoint);
156 waypoint=value_node->new_waypoint_at_time(time);
157 waypoint.mimic(original);
158 waypoint.set_before(synfigapp::Main::get_interpolation());
159 waypoint.set_after(synfigapp::Main::get_interpolation());
162 ValueNode_Animated::WaypointList &waypoint_list(value_node->waypoint_list());
163 ValueNode_Animated::WaypointList::iterator iter;
165 if(waypoint_list.empty())
167 waypoint.set_value((*value_node)(time));
171 ValueNode_Animated::WaypointList::iterator closest=waypoint_list.begin();
173 for(iter=waypoint_list.begin();iter!=waypoint_list.end();++iter)
175 const Real dist(abs(iter->get_time()-time));
176 if(dist<abs(closest->get_time()-time))
179 if(!closest->is_static())
180 waypoint.set_value_node(closest->get_value_node());
182 waypoint.set_value((*value_node)(time));
187 Action::WaypointAdd::perform()
189 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());}
190 catch(synfig::Exception::NotFound) { }
192 try { if(value_node->find(waypoint)!=value_node->waypoint_list().end()) throw Error(_("This waypoint is already in the ValueNode"));}
193 catch(synfig::Exception::NotFound) { }
195 value_node->add(waypoint);
197 value_node->changed();
198 /*_if(get_canvas_interface())
200 get_canvas_interface()->signal_value_node_changed()(value_node);
202 else synfig::warning("CanvasInterface not set on action");*/
206 Action::WaypointAdd::undo()
208 value_node->erase(waypoint);
210 value_node->changed();
211 /*_if(get_canvas_interface())
213 get_canvas_interface()->signal_value_node_changed()(value_node);
215 else synfig::warning("CanvasInterface not set on action");*/