64614704ec1751f405554c4e6fc10e6e34c563fa
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / valuedescexport.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuedescexport.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2008 Chris Moore
10 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "valuenodeadd.h"
34
35 #include "canvasadd.h"
36 #include "valuedescexport.h"
37 #include "layerparamconnect.h"
38
39 #include <synfigapp/canvasinterface.h>
40 #include <synfig/valuenode_const.h>
41
42 #include <synfigapp/general.h>
43
44 #endif
45
46 using namespace std;
47 using namespace etl;
48 using namespace synfig;
49 using namespace synfigapp;
50 using namespace Action;
51
52 /* === M A C R O S ========================================================= */
53
54 ACTION_INIT_NO_GET_LOCAL_NAME(Action::ValueDescExport);
55 ACTION_SET_NAME(Action::ValueDescExport,"ValueDescExport");
56 ACTION_SET_LOCAL_NAME(Action::ValueDescExport,N_("Export"));
57 ACTION_SET_TASK(Action::ValueDescExport,"export");
58 ACTION_SET_CATEGORY(Action::ValueDescExport,Action::CATEGORY_VALUEDESC);
59 ACTION_SET_PRIORITY(Action::ValueDescExport,0);
60 ACTION_SET_VERSION(Action::ValueDescExport,"0.0");
61 ACTION_SET_CVS_ID(Action::ValueDescExport,"$Id$");
62
63 /* === G L O B A L S ======================================================= */
64
65 /* === P R O C E D U R E S ================================================= */
66
67 /* === M E T H O D S ======================================================= */
68
69 Action::ValueDescExport::ValueDescExport()
70 {
71 }
72
73 synfig::String
74 Action::ValueDescExport::get_local_name()const
75 {
76         // TRANSLATORS: This is used in the 'history' dialog when a ValueNode is exported.  The first %s is what is exported, the 2nd is the name it is given.
77         return strprintf(_("Export '%s' as '%s'"),
78                                          value_desc.get_description(false).c_str(),
79                                          name.c_str());
80 }
81
82 Action::ParamVocab
83 Action::ValueDescExport::get_param_vocab()
84 {
85         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
86
87         ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
88                 .set_local_name(_("ValueDesc"))
89         );
90
91         ret.push_back(ParamDesc("name",Param::TYPE_STRING)
92                 .set_local_name(_("Name"))
93                 .set_desc(_("The name that you want this value to be exported as"))
94                 .set_user_supplied()
95         );
96
97         return ret;
98 }
99
100 bool
101 Action::ValueDescExport::is_candidate(const ParamList &x)
102 {
103         if(candidate_check(get_param_vocab(),x))
104         {
105                 ValueDesc value_desc=x.find("value_desc")->second.get_value_desc();
106                 if(!value_desc || value_desc.parent_is_canvas() || (value_desc.is_value_node() && value_desc.get_value_node()->is_exported()))
107                         return false;
108                 return true;
109         }
110         return false;
111 }
112
113 bool
114 Action::ValueDescExport::set_param(const synfig::String& param_name, const Action::Param &param)
115 {
116         if(param_name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
117         {
118                 value_desc=param.get_value_desc();
119
120                 return true;
121         }
122
123         if(param_name=="name" && param.get_type()==Param::TYPE_STRING)
124         {
125                 name=param.get_string();
126
127                 return true;
128         }
129
130         return Action::CanvasSpecific::set_param(param_name,param);
131 }
132
133 bool
134 Action::ValueDescExport::is_ready()const
135 {
136         if(!value_desc || name.empty())
137                 return false;
138         return Action::CanvasSpecific::is_ready();
139 }
140
141 void
142 Action::ValueDescExport::prepare()
143 {
144         clear();
145
146         ValueNode::Handle value_node;
147
148         if(value_desc.get_value_type()==ValueBase::TYPE_CANVAS)
149         {
150                 // action: CanvasAdd
151                 if(!value_desc.is_const())
152                         throw Error(_("Can only export Canvas when used as constant parameter"));
153                 Canvas::Handle canvas(value_desc.get_value().get(Canvas::Handle()));
154
155                 Action::Handle action(CanvasAdd::create());
156
157                 action->set_param("canvas",get_canvas());
158                 action->set_param("canvas_interface",get_canvas_interface());
159                 action->set_param("src",canvas);
160                 action->set_param("id",name);
161
162                 assert(action->is_ready());
163                 if(!action->is_ready())
164                         throw Error(Error::TYPE_NOTREADY);
165
166                 add_action_front(action);
167
168                 return;
169         }
170
171         if(value_desc.is_value_node())
172         {
173                 if(value_desc.get_value_node()->is_exported())
174                         throw Error(_("ValueBase is already exported"));
175
176                 value_node=value_desc.get_value_node();
177         }
178         else
179         {
180                 // action: LayerParamConnect
181                 if(!value_desc.parent_is_layer_param())
182                         throw Error(_("Unable to export parameter. (Bug?)"));
183
184                 value_node=ValueNode_Const::create(value_desc.get_value());
185
186                 Action::Handle action(LayerParamConnect::create());
187
188                 action->set_param("canvas",get_canvas());
189                 action->set_param("canvas_interface",get_canvas_interface());
190                 action->set_param("layer",value_desc.get_layer());
191                 action->set_param("param",value_desc.get_param_name());
192                 action->set_param("value_node",value_node);
193
194                 assert(action->is_ready());
195                 if(!action->is_ready())
196                         throw Error(Error::TYPE_NOTREADY);
197
198                 add_action_front(action);
199         }
200
201         // action: ValueNodeAdd
202         Action::Handle action(ValueNodeAdd::create());
203
204         action->set_param("canvas",get_canvas());
205         action->set_param("canvas_interface",get_canvas_interface());
206         action->set_param("new",value_node);
207         action->set_param("name",name);
208
209         assert(action->is_ready());
210         if(!action->is_ready())
211                 throw Error(Error::TYPE_NOTREADY);
212
213         add_action_front(action);
214 }