1 /* === S Y N F I G ========================================================= */
2 /*! \file activepointsetsmart.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 "activepointsetsmart.h"
34 #include "valuenodelinkconnect.h"
35 #include "valuenodereplace.h"
37 #include "activepointset.h"
38 #include "activepointadd.h"
40 #include "valuedescconnect.h"
41 #include <synfigapp/canvasinterface.h>
43 #include <synfigapp/general.h>
49 using namespace synfig;
50 using namespace synfigapp;
51 using namespace Action;
53 /* === M A C R O S ========================================================= */
55 ACTION_INIT(Action::ActivepointSetSmart);
56 ACTION_SET_NAME(Action::ActivepointSetSmart,"ActivepointSetSmart");
57 ACTION_SET_LOCAL_NAME(Action::ActivepointSetSmart,N_("Set Activepoint (Smart)"));
58 ACTION_SET_TASK(Action::ActivepointSetSmart,"set");
59 ACTION_SET_CATEGORY(Action::ActivepointSetSmart,Action::CATEGORY_ACTIVEPOINT);
60 ACTION_SET_PRIORITY(Action::ActivepointSetSmart,0);
61 ACTION_SET_VERSION(Action::ActivepointSetSmart,"0.0");
62 ACTION_SET_CVS_ID(Action::ActivepointSetSmart,"$Id$");
64 /* === G L O B A L S ======================================================= */
66 /* === P R O C E D U R E S ================================================= */
68 /* === M E T H O D S ======================================================= */
70 Action::ActivepointSetSmart::ActivepointSetSmart()
72 activepoint.set_time(Time::begin()-1);
78 Action::ActivepointSetSmart::get_param_vocab()
80 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
82 ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
83 .set_local_name(_("ValueDesc"))
86 ret.push_back(ParamDesc("activepoint",Param::TYPE_ACTIVEPOINT)
87 .set_local_name(_("New Activepoint"))
88 .set_desc(_("Activepoint to be added"))
92 ret.push_back(ParamDesc("time",Param::TYPE_TIME)
93 .set_local_name(_("Time"))
94 .set_desc(_("Time where activepoint is to be added"))
102 Action::ActivepointSetSmart::is_candidate(const ParamList &x)
104 if (!candidate_check(get_param_vocab(),x))
107 ValueDesc value_desc(x.find("value_desc")->second.get_value_desc());
109 return (value_desc.parent_is_value_node() &&
110 // We need a dynamic list.
111 ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node()) &&
112 // We need either an activepoint or a time.
113 (x.count("activepoint") || x.count("time")));
117 Action::ActivepointSetSmart::set_param(const synfig::String& name, const Action::Param ¶m)
119 if(name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
121 value_desc=param.get_value_desc();
123 if(!value_desc.parent_is_value_node())
126 value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
131 index=value_desc.get_index();
138 if(name=="activepoint" && param.get_type()==Param::TYPE_ACTIVEPOINT && !time_set)
140 activepoint=param.get_activepoint();
144 if(name=="time" && param.get_type()==Param::TYPE_TIME && activepoint.get_time()==Time::begin()-1)
146 activepoint.set_time(param.get_time());
155 return Action::CanvasSpecific::set_param(name,param);
157 return Action::CanvasSpecific::set_param(name,param);
161 Action::ActivepointSetSmart::is_ready()const
164 synfig::error("Missing value_node");
166 if(activepoint.get_time()==(Time::begin()-1))
167 synfig::error("Missing activepoint");
169 if(!value_node || activepoint.get_time()==(Time::begin()-1))
171 return Action::CanvasSpecific::is_ready();
174 // This function is called if a time is specified, but not
175 // a activepoint. In this case, we need to calculate the value
176 // of the activepoint
178 Action::ActivepointSetSmart::calc_activepoint()
181 const Time time(activepoint.get_time());
182 activepoint.set_state(value_node->list[index].status_at_time(time));
183 activepoint.set_priority(0);
186 activepoint=value_node->list[index].new_activepoint_at_time(activepoint.get_time());
188 // In this case, nothing is really changing, so there will be
189 // no need to redraw the window
194 Action::ActivepointSetSmart::enclose_activepoint(const synfig::Activepoint& activepoint)
196 times.insert(activepoint.get_time());
198 if(get_edit_mode()&MODE_ANIMATE_PAST) try
200 // Try to find prev keyframe
201 Keyframe keyframe(*get_canvas()->keyframe_list().find_prev(activepoint.get_time()));
203 if(times.count(keyframe.get_time()))
206 times.insert(keyframe.get_time());
208 try { value_node->list[index].find(keyframe.get_time()); }
209 catch(synfig::Exception::NotFound)
211 Action::Handle action(ActivepointAdd::create());
213 action->set_param("canvas",get_canvas());
214 action->set_param("canvas_interface",get_canvas_interface());
215 action->set_param("value_desc",value_desc);
217 if(!value_node->list[index].timing_info.empty())
219 action->set_param("time",keyframe.get_time());
223 synfig::Activepoint tmp;
226 tmp.set_time(keyframe.get_time());
227 action->set_param("activepoint",tmp);
230 assert(action->is_ready());
231 if(!action->is_ready())
232 throw Error(Error::TYPE_NOTREADY);
234 add_action_front(action);
238 catch(synfig::Exception::NotFound) { }
240 if(get_edit_mode()&MODE_ANIMATE_FUTURE)try
242 // Try to find next keyframe
243 Keyframe keyframe(*get_canvas()->keyframe_list().find_next(activepoint.get_time()));
245 if(times.count(keyframe.get_time()))
248 times.insert(keyframe.get_time());
250 try { value_node->list[index].find(keyframe.get_time()); }
251 catch(synfig::Exception::NotFound)
253 Action::Handle action(ActivepointAdd::create());
255 action->set_param("canvas",get_canvas());
256 action->set_param("canvas_interface",get_canvas_interface());
257 action->set_param("value_desc",value_desc);
259 if(!value_node->list[index].timing_info.empty())
261 action->set_param("time",keyframe.get_time());
265 synfig::Activepoint tmp;
268 tmp.set_time(keyframe.get_time());
269 action->set_param("activepoint",tmp);
272 assert(action->is_ready());
273 if(!action->is_ready())
274 throw Error(Error::TYPE_NOTREADY);
276 add_action_front(action);
280 catch(synfig::Exception::NotFound) { }
284 Action::ActivepointSetSmart::prepare()
289 // First, we need to add any activepoints necessary to
290 // maintain the integrity of the keyframes.
291 enclose_activepoint(activepoint);
295 if(value_node->list[index].find(activepoint)==value_node->list[index].timing_info.end())
298 // Then, let's try to replace the old activepoint, if it exists
299 enclose_activepoint(*value_node->list[index].find(activepoint));
301 Action::Handle action(ActivepointSet::create());
303 action->set_param("canvas",get_canvas());
304 action->set_param("canvas_interface",get_canvas_interface());
305 action->set_param("value_desc",value_desc);
306 action->set_param("activepoint",activepoint);
308 assert(action->is_ready());
309 if(!action->is_ready())
310 throw Error(Error::TYPE_NOTREADY);
312 add_action_front(action);
317 catch(Exception::NotFound){}
321 // Check to see if a activepoint exists at this point in time
322 activepoint.mimic(*value_node->list[index].find(activepoint.get_time()));
324 enclose_activepoint(*value_node->list[index].find(activepoint.get_time()));
326 Action::Handle action(ActivepointSet::create());
328 action->set_param("canvas",get_canvas());
329 action->set_param("canvas_interface",get_canvas_interface());
330 action->set_param("value_desc",value_desc);
331 action->set_param("activepoint",activepoint);
333 assert(action->is_ready());
334 if(!action->is_ready())
335 throw Error(Error::TYPE_NOTREADY);
337 add_action_front(action);
342 catch(Exception::NotFound){}
346 // At this point we know that the old activepoint doesn't exist,
347 // so we need to create it.
348 Action::Handle action(ActivepointAdd::create());
350 action->set_param("canvas",get_canvas());
351 action->set_param("canvas_interface",get_canvas_interface());
352 action->set_param("value_desc",value_desc);
353 action->set_param("activepoint",activepoint);
355 assert(action->is_ready());
356 if(!action->is_ready())
357 throw Error(Error::TYPE_NOTREADY);
359 add_action_front(action);
364 catch(Exception::NotFound){}
366 throw Error(_("Unable to determine how to proceed. This is a bug."));