1 /* === S Y N F I G ========================================================= */
2 /*! \file valuedescset.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007 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 "layerparamset.h"
34 #include "valuenodeconstset.h"
35 #include "valuedescconnect.h"
36 #include "waypointsetsmart.h"
38 #include "valuedescset.h"
39 #include <synfigapp/canvasinterface.h>
40 #include <synfig/valuenode_composite.h>
41 #include <synfig/valuenode_radialcomposite.h>
42 #include <synfig/valuenode_reference.h>
43 #include <synfigapp/main.h>
49 using namespace synfig;
50 using namespace synfigapp;
51 using namespace Action;
53 /* === M A C R O S ========================================================= */
54 #define ACTION_INIT2(class) \
55 Action::Base* class::create() { return new class(); } \
56 synfig::String class::get_name()const { return name__; }
58 ACTION_INIT2(Action::ValueDescSet);
59 ACTION_SET_NAME(Action::ValueDescSet,"value_desc_set");
60 ACTION_SET_LOCAL_NAME(Action::ValueDescSet,"Set ValueDesc");
61 ACTION_SET_TASK(Action::ValueDescSet,"set");
62 ACTION_SET_CATEGORY(Action::ValueDescSet,Action::CATEGORY_VALUEDESC);
63 ACTION_SET_PRIORITY(Action::ValueDescSet,0);
64 ACTION_SET_VERSION(Action::ValueDescSet,"0.0");
65 ACTION_SET_CVS_ID(Action::ValueDescSet,"$Id$");
67 /* === G L O B A L S ======================================================= */
69 /* === P R O C E D U R E S ================================================= */
71 /* === M E T H O D S ======================================================= */
73 Action::ValueDescSet::ValueDescSet():
79 Action::ValueDescSet::get_local_name()const
81 String name("ValueDesc");
86 else if(value_desc.parent_is_layer_param())
88 if(value_desc.get_layer()->get_description().empty())
89 name=value_desc.get_layer()->get_local_name();
91 name=value_desc.get_layer()->get_description();
92 name+="->"+value_desc.get_param_name();
94 else if(value_desc.parent_is_value_node())
96 synfig::LinkableValueNode::Handle value_node(synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node()));
97 name=value_node->link_local_name(value_desc.get_index());
100 for(node=value_node.get();!node->parent_set.empty() && !dynamic_cast<Layer*>(node);node=*node->parent_set.begin());
101 Layer::Handle parent_layer(dynamic_cast<Layer*>(node));
104 if(parent_layer->get_description().empty())
105 name=parent_layer->get_local_name()+"=>"+name;
107 name=parent_layer->get_description()+"=>"+name;
111 return strprintf(_("Set %s"),name.c_str());
115 Action::ValueDescSet::get_param_vocab()
117 ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
119 ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
120 .set_local_name(_("ValueDesc"))
123 ret.push_back(ParamDesc("new_value",Param::TYPE_VALUE)
124 .set_local_name(_("ValueBase"))
127 ret.push_back(ParamDesc("time",Param::TYPE_TIME)
128 .set_local_name(_("Time"))
136 Action::ValueDescSet::is_candidate(const ParamList &x)
138 return candidate_check(get_param_vocab(),x);
142 Action::ValueDescSet::set_param(const synfig::String& name, const Action::Param ¶m)
144 if(name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
146 value_desc=param.get_value_desc();
151 if(name=="new_value" && param.get_type()==Param::TYPE_VALUE)
153 value=param.get_value();
158 if(name=="time" && param.get_type()==Param::TYPE_TIME)
160 time=param.get_time();
165 return Action::CanvasSpecific::set_param(name,param);
169 Action::ValueDescSet::is_ready()const
171 if(!value_desc || !value.is_valid())
173 return Action::CanvasSpecific::is_ready();
177 Action::ValueDescSet::prepare()
181 // If our tangents are merged, and
182 // our first tangent is being manipulated,
183 // then we also need to adjust the other
185 if( value_desc.parent_is_value_node() &&
186 value_desc.get_parent_value_node()->get_type()==ValueBase::TYPE_BLINEPOINT &&
187 (value_desc.get_index()==4 || value_desc.get_index()==5) &&
188 (*value_desc.get_parent_value_node())(time).get(BLinePoint()).get_split_tangent_flag()==false)
190 printf("a tangent got changed - #%d\n", value_desc.get_index()-3);
193 ValueNode_Composite::Handle parent_value_node;
194 parent_value_node=parent_value_node.cast_dynamic(value_desc.get_parent_value_node());
195 assert(parent_value_node);
197 Vector t1((*parent_value_node->get_link("t1"))(time));
198 Vector t2((*parent_value_node->get_link("t2"))(time));
199 printf("current values are: t1(%.2f, %2.f) t2(%.2f, %.2f)\n", t1[0], t1[1], t2[0], t2[1]);
202 if (value_desc.get_index()==4) {
203 printf("copying change to tangent 2\n");
205 ValueNode_Composite::Handle parent_value_node;
206 parent_value_node=parent_value_node.cast_dynamic(value_desc.get_parent_value_node());
208 assert(parent_value_node);
210 Action::Handle action(Action::create("value_desc_set"));
213 throw Error(_("Unable to find action value_desc_set (bug)"));
215 action->set_param("canvas",get_canvas());
216 action->set_param("canvas_interface",get_canvas_interface());
217 action->set_param("time",time);
218 action->set_param("new_value",value);
219 action->set_param("value_desc",ValueDesc(parent_value_node,5));
221 if(!action->is_ready())
222 throw Error(Error::TYPE_NOTREADY);
228 // If we are a reference value node, then
229 // we need to distribute the changes to the
230 // referenced value node
231 if(value_desc.is_value_node() && ValueNode_Reference::Handle::cast_dynamic(value_desc.get_value_node()))
233 ValueDesc reference_value_desc(ValueNode_Reference::Handle::cast_dynamic(value_desc.get_value_node()),0);
235 Action::Handle action(Action::create("value_desc_set"));
238 throw Error(_("Unable to find action value_desc_set (bug)"));
240 action->set_param("canvas",get_canvas());
241 action->set_param("canvas_interface",get_canvas_interface());
242 action->set_param("time",time);
243 action->set_param("new_value",value);
244 action->set_param("value_desc",reference_value_desc);
246 if(!action->is_ready())
247 throw Error(Error::TYPE_NOTREADY);
254 // If we are a composite value node, then
255 // we need to distribute the changes to the
257 if(value_desc.is_value_node() && ValueNode_Composite::Handle::cast_dynamic(value_desc.get_value_node()))
259 ValueBase components[6];
261 switch(value.get_type())
263 case ValueBase::TYPE_VECTOR:
264 components[0]=value.get(Vector())[0];
265 components[1]=value.get(Vector())[1];
268 case ValueBase::TYPE_COLOR:
269 components[0]=value.get(Color()).get_r();
270 components[1]=value.get(Color()).get_g();
271 components[2]=value.get(Color()).get_b();
272 components[3]=value.get(Color()).get_a();
275 case ValueBase::TYPE_SEGMENT:
276 components[0]=value.get(Segment()).p1;
277 components[1]=value.get(Segment()).t1;
278 components[2]=value.get(Segment()).p2;
279 components[3]=value.get(Segment()).t2;
282 case ValueBase::TYPE_BLINEPOINT:
284 BLinePoint bline_point(value);
285 components[0]=bline_point.get_vertex();
286 components[1]=bline_point.get_width();
287 components[2]=bline_point.get_origin();
288 components[3]=bline_point.get_split_tangent_flag();
289 components[4]=bline_point.get_tangent1();
290 components[5]=bline_point.get_tangent2();
295 throw Error("Bad type for composite (%s)",ValueBase::type_name(value.get_type()).c_str());
299 for(int i=0;i<n_components;i++)
301 ValueDesc component_value_desc(ValueNode_Composite::Handle::cast_dynamic(value_desc.get_value_node()),i);
303 Action::Handle action(Action::create("value_desc_set"));
306 throw Error(_("Unable to find action value_desc_set (bug)"));
308 action->set_param("canvas",get_canvas());
309 action->set_param("canvas_interface",get_canvas_interface());
310 action->set_param("time",time);
311 action->set_param("new_value",components[i]);
312 action->set_param("value_desc",component_value_desc);
314 if(!action->is_ready())
315 throw Error(Error::TYPE_NOTREADY);
324 // If we are a RADIAL composite value node, then
325 // we need to distribute the changes to the
327 if(value_desc.is_value_node() && ValueNode_RadialComposite::Handle::cast_dynamic(value_desc.get_value_node()))
329 ValueBase components[6];
331 switch(value.get_type())
333 case ValueBase::TYPE_VECTOR:
335 Vector vect(value.get(Vector()));
336 components[0]=vect.mag();
337 components[1]=Angle(Angle::tan(vect[1],vect[0]));
341 case ValueBase::TYPE_COLOR:
342 components[0]=value.get(Color()).get_y();
343 components[1]=value.get(Color()).get_s();
344 components[2]=value.get(Color()).get_hue();
345 components[3]=value.get(Color()).get_a();
349 throw Error("Bad type for radial composite (%s)",ValueBase::type_name(value.get_type()).c_str());
352 for(int i=0;i<n_components;i++)
354 ValueDesc component_value_desc(ValueNode_RadialComposite::Handle::cast_dynamic(value_desc.get_value_node()),i);
356 Action::Handle action(Action::create("value_desc_set"));
359 throw Error(_("Unable to find action value_desc_set (bug)"));
361 action->set_param("canvas",get_canvas());
362 action->set_param("canvas_interface",get_canvas_interface());
363 action->set_param("time",time);
364 action->set_param("new_value",components[i]);
365 action->set_param("value_desc",component_value_desc);
367 if(!action->is_ready())
368 throw Error(Error::TYPE_NOTREADY);
376 // If we are merging the tangents of a BLinePoint,
377 // we must also set the second tangent for things
378 // to interpolate properly
379 if (value_desc.parent_is_value_node() &&
380 value_desc.get_parent_value_node()->get_type()==ValueBase::TYPE_BLINEPOINT &&
381 value_desc.get_index()==3)
383 ValueNode_Composite::Handle parent_value_node;
384 parent_value_node=parent_value_node.cast_dynamic(value_desc.get_parent_value_node());
386 assert(parent_value_node);
388 // are we splitting or merging the tangents?
389 if (value.get(bool()))
391 // we are splitting tangents
393 Action::Handle action(Action::create("value_desc_set"));
396 throw Error(_("Unable to find action value_desc_set (bug)"));
398 action->set_param("canvas",get_canvas());
399 action->set_param("canvas_interface",get_canvas_interface());
400 action->set_param("time",time);
401 action->set_param("new_value",(*parent_value_node->get_link(4))(time));
402 action->set_param("value_desc",ValueDesc(parent_value_node,5));
404 if(!action->is_ready())
405 throw Error(Error::TYPE_NOTREADY);
411 // we are merging tangents
413 // the merged tangent should be the average of the 2 tangents we're merging
414 ValueBase average(((Vector)((*parent_value_node->get_link("t1"))(time)) +
415 (Vector)((*parent_value_node->get_link("t2"))(time))) / 2);
418 Action::Handle action(Action::create("value_desc_set"));
421 throw Error(_("Unable to find action value_desc_set (bug)"));
423 action->set_param("canvas",get_canvas());
424 action->set_param("canvas_interface",get_canvas_interface());
425 action->set_param("time",time);
426 action->set_param("new_value",average);
427 action->set_param("value_desc",ValueDesc(parent_value_node,4));
429 if(!action->is_ready())
430 throw Error(Error::TYPE_NOTREADY);
436 Action::Handle action(Action::create("value_desc_set"));
439 throw Error(_("Unable to find action value_desc_set (bug)"));
441 action->set_param("canvas",get_canvas());
442 action->set_param("canvas_interface",get_canvas_interface());
443 action->set_param("time",time);
444 action->set_param("new_value",average);
445 action->set_param("value_desc",ValueDesc(parent_value_node,5));
447 if(!action->is_ready())
448 throw Error(Error::TYPE_NOTREADY);
457 if( value_desc.parent_is_value_node())
460 if(value_desc.get_parent_value_node()->get_type()==ValueBase::TYPE_BLINEPOINT)
463 if(value_desc.get_index()==4)
466 if((*value_desc.get_parent_value_node())(time).get(BLinePoint()).get_split_tangent_flag()==false)
476 // If we are in animate editing mode
477 if(get_edit_mode()&MODE_ANIMATE)
480 ValueNode_Animated::Handle& value_node(value_node_animated);
482 // If this value isn't a ValueNode_Animated, but
483 // it is somewhat constant, then go ahead and convert
484 // it to a ValueNode_Animated.
485 if(!value_desc.is_value_node() || ValueNode_Const::Handle::cast_dynamic(value_desc.get_value_node()))
488 if(value_desc.is_value_node())
489 value=ValueNode_Const::Handle::cast_dynamic(value_desc.get_value_node())->get_value();
491 value=value_desc.get_value();
493 if(!value_node)value_node=ValueNode_Animated::create(value,time);
494 //if(!value_node)value_node=ValueNode_Animated::create(value.get_type());
496 Action::Handle action;
498 if(!value_desc.is_value_node())
500 action=(ValueDescConnect::create());
501 action->set_param("dest",value_desc);
502 action->set_param("src",ValueNode::Handle(value_node));
506 action=Action::create("value_node_replace");
507 action->set_param("dest",value_desc.get_value_node());
508 action->set_param("src",ValueNode::Handle(value_node));
511 action->set_param("canvas",get_canvas());
512 action->set_param("canvas_interface",get_canvas_interface());
514 if(!action->is_ready())
515 throw Error(Error::TYPE_NOTREADY);
518 add_action_front(action);
522 value_node=value_node.cast_dynamic(value_desc.get_value_node());
527 throw Error(_("Direct manipulation of this ValueNode type is not yet supported"));
529 Action::Handle action(WaypointSetSmart::create());
531 //Waypoint waypoint(value,time);
533 Waypoint waypoint(value_node->new_waypoint_at_time(time));
534 waypoint.set_value(value);
536 waypoint.set_before(synfigapp::Main::get_interpolation());
537 waypoint.set_after(synfigapp::Main::get_interpolation());
539 action->set_param("canvas",get_canvas());
540 action->set_param("canvas_interface",get_canvas_interface());
541 action->set_param("value_node",ValueNode::Handle(value_node));
542 action->set_param("waypoint",waypoint);
544 if(!action->is_ready())
545 throw Error(Error::TYPE_NOTREADY);
554 if(value_desc.is_value_node())
556 if(ValueNode_Const::Handle::cast_dynamic(value_desc.get_value_node()))
558 Action::Handle action(ValueNodeConstSet::create());
560 action->set_param("canvas",get_canvas());
561 action->set_param("canvas_interface",get_canvas_interface());
562 action->set_param("value_node",value_desc.get_value_node());
563 action->set_param("new_value",value);
565 if(!action->is_ready())
566 throw Error(Error::TYPE_NOTREADY);
568 add_action_front(action);
572 if(ValueNode_Animated::Handle::cast_dynamic(value_desc.get_value_node()))
573 throw Error(_("You must be in Animate-Editing-Mode to directly manipulate this value"));
575 throw Error(_("Direct manipulation of this ValueNode type is not yet supported"));
578 if(value_desc.parent_is_layer_param() && !value_desc.is_value_node())
580 Action::Handle layer_param_set(LayerParamSet::create());
582 layer_param_set->set_param("canvas",get_canvas());
583 layer_param_set->set_param("canvas_interface",get_canvas_interface());
584 layer_param_set->set_param("layer",value_desc.get_layer());
585 layer_param_set->set_param("param",value_desc.get_param_name());
586 layer_param_set->set_param("new_value",value);
588 if(!layer_param_set->is_ready())
589 throw Error(Error::TYPE_NOTREADY);
591 add_action_front(layer_param_set);
595 throw Error(_("Unsupported ValueDesc type"));