1 /* === S Y N F I G ========================================================= */
2 /*! \file savecanvas.cpp
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 #ifdef HAVE_SYS_ERRNO_H
34 # include <sys/errno.h>
37 #include "savecanvas.h"
39 #include "valuenode.h"
40 #include "valuenode_subtract.h"
41 #include "valuenode_animated.h"
42 #include "valuenode_composite.h"
43 #include "valuenode_const.h"
44 #include "valuenode_linear.h"
45 #include "valuenode_dynamiclist.h"
46 #include "valuenode_reference.h"
47 #include "valuenode_segcalctangent.h"
48 #include "valuenode_segcalcvertex.h"
49 #include "valuenode_bline.h"
54 #include "paramdesc.h"
56 #include <libxml++/libxml++.h>
57 #include <ETL/stringf>
62 #include <libxml/tree.h>
67 /* === U S I N G =========================================================== */
71 using namespace synfig;
73 /* === M A C R O S ========================================================= */
75 #define COLOR_VALUE_TYPE_FORMAT "%f"
76 #define VECTOR_VALUE_TYPE_FORMAT "%0.10f"
77 #define TIME_TYPE_FORMAT "%0.3f"
78 #define VIEW_BOX_FORMAT "%f %f %f %f"
80 /* === G L O B A L S ======================================================= */
82 /* === P R O C E D U R E S ================================================= */
84 xmlpp::Element* encode_canvas(xmlpp::Element* root,Canvas::ConstHandle canvas);
85 xmlpp::Element* encode_value_node(xmlpp::Element* root,ValueNode::ConstHandle value_node,Canvas::ConstHandle canvas);
87 xmlpp::Element* encode_keyframe(xmlpp::Element* root,const Keyframe &kf, float fps)
89 root->set_name("keyframe");
90 root->set_attribute("time",kf.get_time().get_string(fps));
91 if(!kf.get_description().empty())
92 root->set_child_text(kf.get_description());
97 xmlpp::Element* encode_real(xmlpp::Element* root,Real v)
99 root->set_name("real");
100 root->set_attribute("value",strprintf(VECTOR_VALUE_TYPE_FORMAT,v));
104 xmlpp::Element* encode_time(xmlpp::Element* root,Time t, float /*fps*/=0)
106 root->set_name("time");
107 //root->set_attribute("value",t.get_string(fps));
108 root->set_attribute("value",t.get_string());
112 xmlpp::Element* encode_integer(xmlpp::Element* root,int i)
114 root->set_name("integer");
115 root->set_attribute("value",strprintf("%i",i));
119 xmlpp::Element* encode_bool(xmlpp::Element* root,bool b)
121 root->set_name("bool");
122 root->set_attribute("value",b?"true":"false");
126 xmlpp::Element* encode_string(xmlpp::Element* root,const String &str)
128 root->set_name("string");
129 root->set_child_text(str);
133 xmlpp::Element* encode_vector(xmlpp::Element* root,Vector vect)
135 root->set_name("vector");
136 root->add_child("x")->set_child_text(strprintf(VECTOR_VALUE_TYPE_FORMAT,(float)vect[0]));
137 root->add_child("y")->set_child_text(strprintf(VECTOR_VALUE_TYPE_FORMAT,(float)vect[1]));
141 xmlpp::Element* encode_color(xmlpp::Element* root,Color color)
143 root->set_name("color");
144 root->add_child("r")->set_child_text(strprintf(COLOR_VALUE_TYPE_FORMAT,(float)color.get_r()));
145 root->add_child("g")->set_child_text(strprintf(COLOR_VALUE_TYPE_FORMAT,(float)color.get_g()));
146 root->add_child("b")->set_child_text(strprintf(COLOR_VALUE_TYPE_FORMAT,(float)color.get_b()));
147 root->add_child("a")->set_child_text(strprintf(COLOR_VALUE_TYPE_FORMAT,(float)color.get_a()));
151 xmlpp::Element* encode_angle(xmlpp::Element* root,Angle theta)
153 root->set_name("angle");
154 root->set_attribute("value",strprintf("%f",(float)Angle::deg(theta).get()));
158 xmlpp::Element* encode_segment(xmlpp::Element* root,Segment seg)
160 root->set_name("segment");
161 encode_vector(root->add_child("p1")->add_child("vector"),seg.p1);
162 encode_vector(root->add_child("t1")->add_child("vector"),seg.t1);
163 encode_vector(root->add_child("p2")->add_child("vector"),seg.p2);
164 encode_vector(root->add_child("t2")->add_child("vector"),seg.t2);
168 xmlpp::Element* encode_bline_point(xmlpp::Element* root,BLinePoint bline_point)
170 root->set_name(ValueBase::type_name(ValueBase::TYPE_BLINEPOINT));
172 encode_vector(root->add_child("vertex")->add_child("vector"),bline_point.get_vertex());
173 encode_vector(root->add_child("t1")->add_child("vector"),bline_point.get_tangent1());
175 if(bline_point.get_split_tangent_flag())
176 encode_vector(root->add_child("t2")->add_child("vector"),bline_point.get_tangent2());
178 encode_real(root->add_child("width")->add_child("real"),bline_point.get_width());
179 encode_real(root->add_child("origin")->add_child("real"),bline_point.get_origin());
183 xmlpp::Element* encode_gradient(xmlpp::Element* root,Gradient x)
185 root->set_name("gradient");
187 Gradient::const_iterator iter;
189 for(iter=x.begin();iter!=x.end();iter++)
191 xmlpp::Element *cpoint(encode_color(root->add_child("color"),iter->color));
192 cpoint->set_attribute("pos",strprintf("%f",iter->pos));
198 xmlpp::Element* encode_value(xmlpp::Element* root,const ValueBase &data,Canvas::ConstHandle canvas=0);
200 xmlpp::Element* encode_list(xmlpp::Element* root,std::list<ValueBase> list, Canvas::ConstHandle canvas=0)
202 root->set_name("list");
206 encode_value(root->add_child("value"),list.front(),canvas);
213 xmlpp::Element* encode_value(xmlpp::Element* root,const ValueBase &data,Canvas::ConstHandle canvas)
215 switch(data.get_type())
217 case ValueBase::TYPE_REAL:
218 return encode_real(root,data.get(Real()));
219 case ValueBase::TYPE_TIME:
221 return encode_time(root,data.get(Time()),canvas->rend_desc().get_frame_rate());
223 return encode_time(root,data.get(Time()));
224 case ValueBase::TYPE_INTEGER:
225 return encode_integer(root,data.get(int()));
226 case ValueBase::TYPE_COLOR:
227 return encode_color(root,data.get(Color()));
228 case ValueBase::TYPE_VECTOR:
229 return encode_vector(root,data.get(Vector()));
230 case ValueBase::TYPE_ANGLE:
231 return encode_angle(root,data.get(Angle()));
232 case ValueBase::TYPE_BOOL:
233 return encode_bool(root,data.get(bool()));
234 case ValueBase::TYPE_STRING:
235 return encode_string(root,data.get(String()));
236 case ValueBase::TYPE_SEGMENT:
237 return encode_segment(root,data.get(Segment()));
238 case ValueBase::TYPE_BLINEPOINT:
239 return encode_bline_point(root,data.get(BLinePoint()));
240 case ValueBase::TYPE_GRADIENT:
241 return encode_gradient(root,data.get(Gradient()));
242 case ValueBase::TYPE_LIST:
243 return encode_list(root,data,canvas);
244 case ValueBase::TYPE_CANVAS:
245 return encode_canvas(root,data.get(Canvas::Handle()).get());
246 case ValueBase::TYPE_NIL:
247 synfig::error("Encountered NIL ValueBase");
248 root->set_name("nil");
251 synfig::error(strprintf("Unknown value(%s), cannot create XML representation!",ValueBase::type_name(data.get_type()).c_str()));
252 root->set_name("nil");
257 xmlpp::Element* encode_animated(xmlpp::Element* root,ValueNode_Animated::ConstHandle value_node,Canvas::ConstHandle canvas=0)
260 root->set_name("animated");
262 root->set_attribute("type",ValueBase::type_name(value_node->get_type()));
264 const ValueNode_Animated::WaypointList &waypoint_list=value_node->waypoint_list();
265 ValueNode_Animated::WaypointList::const_iterator iter;
267 for(iter=waypoint_list.begin();iter!=waypoint_list.end();++iter)
269 xmlpp::Element *waypoint_node=root->add_child("waypoint");
270 //waypoint_node->set_attribute("time",iter->get_time().get_string(canvas->rend_desc().get_frame_rate()));
271 waypoint_node->set_attribute("time",iter->get_time().get_string());
273 //waypoint_node->add_child(encode_value(iter->get_value(),canvas));
274 if(iter->get_value_node()->is_exported())
275 waypoint_node->set_attribute("use",iter->get_value_node()->get_relative_id(canvas));
277 ValueNode::ConstHandle value_node = iter->get_value_node();
278 if(ValueNode_Const::ConstHandle::cast_dynamic(value_node)) {
279 const ValueBase data = ValueNode_Const::ConstHandle::cast_dynamic(value_node)->get_value();
280 if (data.get_type() == ValueBase::TYPE_CANVAS)
281 waypoint_node->set_attribute("use",data.get(Canvas::Handle()).get()->get_relative_id(canvas));
283 encode_value_node(waypoint_node->add_child("value_node"),iter->get_value_node(),canvas);
286 encode_value_node(waypoint_node->add_child("value_node"),iter->get_value_node(),canvas);
289 switch(iter->get_before())
291 case INTERPOLATION_HALT:
292 waypoint_node->set_attribute("before","halt");
294 case INTERPOLATION_LINEAR:
295 // This is the default value for angles, so don't add a new attribute for them
296 if (value_node->get_type() != ValueBase::TYPE_ANGLE)
297 waypoint_node->set_attribute("before","linear");
299 case INTERPOLATION_MANUAL:
300 waypoint_node->set_attribute("before","manual");
302 case INTERPOLATION_CONSTANT:
303 waypoint_node->set_attribute("before","constant");
305 case INTERPOLATION_TCB:
306 // This is the default value, so don't add a new attribute (unless it's an angle - they default to linear)
307 if (value_node->get_type() == ValueBase::TYPE_ANGLE)
308 waypoint_node->set_attribute("before","auto");
311 error("Unknown waypoint type for \"before\" attribute");
314 switch(iter->get_after())
316 case INTERPOLATION_HALT:
317 waypoint_node->set_attribute("after","halt");
319 case INTERPOLATION_LINEAR:
320 // This is the default value for angles, so don't add a new attribute for them
321 if (value_node->get_type() != ValueBase::TYPE_ANGLE)
322 waypoint_node->set_attribute("after","linear");
324 case INTERPOLATION_MANUAL:
325 waypoint_node->set_attribute("after","manual");
327 case INTERPOLATION_CONSTANT:
328 waypoint_node->set_attribute("after","constant");
330 case INTERPOLATION_TCB:
331 // This is the default value, so don't add a new attribute (unless it's an angle - they default to linear)
332 if (value_node->get_type() == ValueBase::TYPE_ANGLE)
333 waypoint_node->set_attribute("after","auto");
336 error("Unknown waypoint type for \"after\" attribute");
339 if(iter->get_tension()!=0.0)
340 waypoint_node->set_attribute("tension",strprintf("%f",iter->get_tension()));
341 if(iter->get_time_tension()!=0.0)
342 waypoint_node->set_attribute("temporal-tension",strprintf("%f",iter->get_time_tension()));
343 if(iter->get_continuity()!=0.0)
344 waypoint_node->set_attribute("continuity",strprintf("%f",iter->get_continuity()));
345 if(iter->get_bias()!=0.0)
346 waypoint_node->set_attribute("bias",strprintf("%f",iter->get_bias()));
353 xmlpp::Element* encode_composite(xmlpp::Element* root,ValueNode_Composite::ConstHandle value_node,Canvas::ConstHandle canvas=0)
356 root->set_name("composite");
358 root->set_attribute("type",ValueBase::type_name(value_node->get_type()));
361 for(i=0;i<value_node->link_count();i++)
363 string name(strprintf("c%d",i+1));
364 assert(value_node->get_link(i));
365 if(value_node->get_link(i)->is_exported())
366 root->set_attribute(name,value_node->get_link(i)->get_relative_id(canvas));
368 encode_value_node(root->add_child(name)->add_child("value_node"),value_node->get_link(i).constant(),canvas);
374 xmlpp::Element* encode_subtract(xmlpp::Element* root,ValueNode_Subtract::ConstHandle value_node,Canvas::ConstHandle canvas=0)
377 root->set_name("subtract");
379 ValueNode::ConstHandle lhs=value_node->get_lhs();
380 ValueNode::ConstHandle rhs=value_node->get_rhs();
381 ValueNode::ConstHandle scalar=value_node->get_scalar();
386 root->set_attribute("type",ValueBase::type_name(value_node->get_type()));
389 warning("LHS is equal to RHS, this <subtract> will always be zero!");
391 //if(value_node->get_scalar()!=1)
392 // root->set_attribute("scalar",strprintf(VECTOR_VALUE_TYPE_FORMAT,value_node->get_scalar()));
394 if(!scalar->get_id().empty())
395 root->set_attribute("scalar",scalar->get_relative_id(canvas));
397 encode_value_node(root->add_child("scalar")->add_child("value_node"),scalar,canvas);
399 if(!lhs->get_id().empty())
400 root->set_attribute("lhs",lhs->get_relative_id(canvas));
402 encode_value_node(root->add_child("lhs")->add_child("value_node"),lhs,canvas);
404 if(!rhs->get_id().empty())
405 root->set_attribute("rhs",rhs->get_relative_id(canvas));
407 encode_value_node(root->add_child("rhs")->add_child("value_node"),rhs,canvas);
412 xmlpp::Element* encode_dynamic_list(xmlpp::Element* root,ValueNode_DynamicList::ConstHandle value_node,Canvas::ConstHandle canvas=0)
415 const float fps(canvas?canvas->rend_desc().get_frame_rate():0);
417 root->set_name(value_node->get_name());
419 root->set_attribute("type",ValueBase::type_name(value_node->get_contained_type()));
421 vector<ValueNode_DynamicList::ListEntry>::const_iterator iter;
423 ValueNode_BLine::ConstHandle bline_value_node(ValueNode_BLine::ConstHandle::cast_dynamic(value_node));
427 if(bline_value_node->get_loop())
428 root->set_attribute("loop","true");
430 root->set_attribute("loop","false");
433 for(iter=value_node->list.begin();iter!=value_node->list.end();++iter)
435 xmlpp::Element *entry_node=root->add_child("entry");
436 assert(iter->value_node);
437 if(!iter->value_node->get_id().empty())
438 entry_node->set_attribute("use",iter->value_node->get_relative_id(canvas));
440 encode_value_node(entry_node->add_child("value_node"),iter->value_node,canvas);
444 typedef synfig::ValueNode_DynamicList::ListEntry::Activepoint Activepoint;
445 typedef synfig::ValueNode_DynamicList::ListEntry::ActivepointList ActivepointList;
446 String begin_sequence;
449 const ActivepointList& timing_info(iter->timing_info);
450 ActivepointList::const_iterator entry_iter;
452 for(entry_iter=timing_info.begin();entry_iter!=timing_info.end();++entry_iter)
453 if(entry_iter->state==true)
455 if(entry_iter->priority)
457 printf("begin priority is %d\n", entry_iter->priority);
458 begin_sequence+=strprintf("p%d ",entry_iter->priority);
460 begin_sequence+=entry_iter->time.get_string(fps)+", ";
464 if(entry_iter->priority)
466 printf("end priority is %d\n", entry_iter->priority);
467 end_sequence+=strprintf("p%d ",entry_iter->priority);
469 end_sequence+=entry_iter->time.get_string(fps)+", ";
472 // If this is just a plane-jane vanilla entry,
473 // then don't bother with begins and ends
474 if(end_sequence.empty() && begin_sequence=="SOT, ")
475 begin_sequence.clear();
477 if(!begin_sequence.empty())
479 // Remove the last ", " stuff
480 begin_sequence=String(begin_sequence.begin(),begin_sequence.end()-2);
482 entry_node->set_attribute("on",begin_sequence);
485 if(!end_sequence.empty())
487 // Remove the last ", " stuff
488 end_sequence=String(end_sequence.begin(),end_sequence.end()-2);
490 entry_node->set_attribute("off",end_sequence);
498 // Generic linkable data node entry
499 xmlpp::Element* encode_linkable_value_node(xmlpp::Element* root,LinkableValueNode::ConstHandle value_node,Canvas::ConstHandle canvas=0)
502 root->set_name(value_node->get_name());
504 root->set_attribute("type",ValueBase::type_name(value_node->get_type()));
507 for(i=0;i<value_node->link_count();i++)
509 ValueNode::ConstHandle link=value_node->get_link(i).constant();
511 throw runtime_error("Bad link");
512 if(link->is_exported())
513 root->set_attribute(value_node->link_name(i),link->get_relative_id(canvas));
515 encode_value_node(root->add_child(value_node->link_name(i))->add_child("value_node"),link,canvas);
521 xmlpp::Element* encode_value_node(xmlpp::Element* root,ValueNode::ConstHandle value_node,Canvas::ConstHandle canvas)
525 if(ValueNode_Animated::ConstHandle::cast_dynamic(value_node))
526 encode_animated(root,ValueNode_Animated::ConstHandle::cast_dynamic(value_node),canvas);
528 if(ValueNode_Composite::ConstHandle::cast_dynamic(value_node))
529 encode_composite(root,ValueNode_Composite::ConstHandle::cast_dynamic(value_node),canvas);
531 if(ValueNode_Subtract::ConstHandle::cast_dynamic(value_node))
532 encode_subtract(root,ValueNode_Subtract::ConstHandle::cast_dynamic(value_node),canvas);
534 if(ValueNode_DynamicList::ConstHandle::cast_dynamic(value_node))
535 encode_dynamic_list(root,ValueNode_DynamicList::ConstHandle::cast_dynamic(value_node),canvas);
536 else if(ValueNode_Const::ConstHandle::cast_dynamic(value_node))
538 encode_value(root,ValueNode_Const::ConstHandle::cast_dynamic(value_node)->get_value(),canvas);
541 if(LinkableValueNode::ConstHandle::cast_dynamic(value_node))
542 encode_linkable_value_node(root,LinkableValueNode::ConstHandle::cast_dynamic(value_node),canvas);
545 error(_("Unknown ValueNode Type (%s), cannot create an XML representation"),value_node->get_local_name().c_str());
546 root->set_name("nil");
551 if(!value_node->get_id().empty())
552 root->set_attribute("id",value_node->get_id());
554 if(value_node->rcount()>1)
555 root->set_attribute("guid",(value_node->get_guid()^canvas->get_root()->get_guid()).get_string());
560 xmlpp::Element* encode_layer(xmlpp::Element* root,Layer::ConstHandle layer)
562 root->set_name("layer");
564 root->set_attribute("type",layer->get_name());
565 root->set_attribute("active",layer->active()?"true":"false");
567 if(!layer->get_version().empty())
568 root->set_attribute("version",layer->get_version());
569 if(!layer->get_description().empty())
570 root->set_attribute("desc",layer->get_description());
571 if(!layer->get_group().empty())
572 root->set_attribute("group",layer->get_group());
574 Layer::Vocab vocab(layer->get_param_vocab());
575 Layer::Vocab::const_iterator iter;
577 const Layer::DynamicParamList &dynamic_param_list=layer->dynamic_param_list();
579 for(iter=vocab.begin();iter!=vocab.end();++iter)
581 // Handle dynamic parameters
582 if(dynamic_param_list.count(iter->get_name()))
584 xmlpp::Element *node=root->add_child("param");
585 node->set_attribute("name",iter->get_name());
587 handle<const ValueNode> value_node=dynamic_param_list.find(iter->get_name())->second;
589 // If the valuenode has no ID, then it must be defined in-place
590 if(value_node->get_id().empty())
592 encode_value_node(node->add_child("value_node"),value_node,layer->get_canvas().constant());
596 node->set_attribute("use",value_node->get_relative_id(layer->get_canvas()));
599 else // Handle normal parameters
600 if(iter->get_critical())
602 ValueBase value=layer->get_param(iter->get_name());
603 if(!value.is_valid())
605 error("Layer doesn't know its own vocabulary -- "+iter->get_name());
609 if(value.get_type()==ValueBase::TYPE_CANVAS)
611 // the ->is_inline() below was crashing if the canvas
612 // contained a PasteCanvas with the default <No Image
613 // Selected> Canvas setting; this avoids the crash
614 if (!value.get(Canvas::LooseHandle()))
617 if (!value.get(Canvas::LooseHandle())->is_inline())
619 Canvas::Handle child(value.get(Canvas::LooseHandle()));
621 if(!value.get(Canvas::Handle()))
623 xmlpp::Element *node=root->add_child("param");
624 node->set_attribute("name",iter->get_name());
625 node->set_attribute("use",child->get_relative_id(layer->get_canvas()));
629 xmlpp::Element *node=root->add_child("param");
630 node->set_attribute("name",iter->get_name());
632 encode_value(node->add_child("value"),value,layer->get_canvas().constant());
640 xmlpp::Element* encode_canvas(xmlpp::Element* root,Canvas::ConstHandle canvas)
643 const RendDesc &rend_desc=canvas->rend_desc();
644 root->set_name("canvas");
646 if(canvas->is_root())
647 root->set_attribute("version","0.1");
649 if(!canvas->get_id().empty() && !canvas->is_root() && !canvas->is_inline())
650 root->set_attribute("id",canvas->get_id());
652 if(!canvas->parent() || canvas->parent()->rend_desc().get_w()!=canvas->rend_desc().get_w())
653 root->set_attribute("width",strprintf("%d",rend_desc.get_w()));
655 if(!canvas->parent() || canvas->parent()->rend_desc().get_h()!=canvas->rend_desc().get_h())
656 root->set_attribute("height",strprintf("%d",rend_desc.get_h()));
658 if(!canvas->parent() || canvas->parent()->rend_desc().get_x_res()!=canvas->rend_desc().get_x_res())
659 root->set_attribute("xres",strprintf("%f",rend_desc.get_x_res()));
661 if(!canvas->parent() || canvas->parent()->rend_desc().get_y_res()!=canvas->rend_desc().get_y_res())
662 root->set_attribute("yres",strprintf("%f",rend_desc.get_y_res()));
665 if(!canvas->parent() ||
666 canvas->parent()->rend_desc().get_tl()!=canvas->rend_desc().get_tl() ||
667 canvas->parent()->rend_desc().get_br()!=canvas->rend_desc().get_br())
668 root->set_attribute("view-box",strprintf(VIEW_BOX_FORMAT,
669 rend_desc.get_tl()[0],
670 rend_desc.get_tl()[1],
671 rend_desc.get_br()[0],
672 rend_desc.get_br()[1])
675 if(!canvas->parent() || canvas->parent()->rend_desc().get_antialias()!=canvas->rend_desc().get_antialias())
676 root->set_attribute("antialias",strprintf("%d",rend_desc.get_antialias()));
678 if(!canvas->parent())
679 root->set_attribute("fps",strprintf(TIME_TYPE_FORMAT,rend_desc.get_frame_rate()));
681 if(!canvas->parent() || canvas->parent()->rend_desc().get_time_start()!=canvas->rend_desc().get_time_start())
682 root->set_attribute("begin-time",rend_desc.get_time_start().get_string(rend_desc.get_frame_rate()));
684 if(!canvas->parent() || canvas->parent()->rend_desc().get_time_end()!=canvas->rend_desc().get_time_end())
685 root->set_attribute("end-time",rend_desc.get_time_end().get_string(rend_desc.get_frame_rate()));
687 if(!canvas->is_inline())
689 root->set_attribute("bgcolor",strprintf(VIEW_BOX_FORMAT,
690 rend_desc.get_bg_color().get_r(),
691 rend_desc.get_bg_color().get_g(),
692 rend_desc.get_bg_color().get_b(),
693 rend_desc.get_bg_color().get_a())
696 if(!canvas->get_name().empty())
697 root->add_child("name")->set_child_text(canvas->get_name());
698 if(!canvas->get_description().empty())
699 root->add_child("desc")->set_child_text(canvas->get_description());
700 if(!canvas->get_author().empty())
701 root->add_child("author")->set_child_text(canvas->get_description());
703 std::list<String> meta_keys(canvas->get_meta_data_keys());
704 while(!meta_keys.empty())
706 xmlpp::Element* meta_element(root->add_child("meta"));
707 meta_element->set_attribute("name",meta_keys.front());
708 meta_element->set_attribute("content",canvas->get_meta_data(meta_keys.front()));
709 meta_keys.pop_front();
711 for(KeyframeList::const_iterator iter=canvas->keyframe_list().begin();iter!=canvas->keyframe_list().end();++iter)
712 encode_keyframe(root->add_child("keyframe"),*iter,canvas->rend_desc().get_frame_rate());
715 // Output the <defs> section
716 if(!canvas->is_inline() && !canvas->value_node_list().empty() || !canvas->children().empty())
718 xmlpp::Element *node=root->add_child("defs");
719 const ValueNodeList &value_node_list(canvas->value_node_list());
721 for(ValueNodeList::const_iterator iter=value_node_list.begin();iter!=value_node_list.end();++iter)
723 // If the value_node is a constant, then use the shorthand
724 if(handle<ValueNode_Const>::cast_dynamic(*iter))
726 ValueNode_Const::Handle value_node(ValueNode_Const::Handle::cast_dynamic(*iter));
727 reinterpret_cast<xmlpp::Element*>(encode_value(node->add_child("value"),value_node->get_value()))->set_attribute("id",value_node->get_id());
730 encode_value_node(node->add_child("value_node"),*iter,canvas);
734 for(Canvas::Children::const_iterator iter=canvas->children().begin();iter!=canvas->children().end();++iter)
736 encode_canvas(node->add_child("canvas"),*iter);
740 Canvas::const_reverse_iterator iter;
742 for(iter=canvas->rbegin();iter!=canvas->rend();++iter)
743 encode_layer(root->add_child("layer"),*iter);
749 synfig::save_canvas(const String &filename, Canvas::ConstHandle canvas)
751 ChangeLocale change_locale(LC_NUMERIC, "C");
753 synfig::String tmp_filename(filename+".TMP");
755 if (String(filename.begin() + filename.find_last_of('.')+1, filename.end()) == "sifz")
756 xmlSetCompressMode(9);
758 xmlSetCompressMode(0);
763 xmlpp::Document document;
765 encode_canvas(document.create_root_node("canvas"),canvas);
767 document.write_to_file_formatted(tmp_filename);
769 catch(...) { synfig::error("synfig::save_canvas(): Caught unknown exception"); return false; }
773 // On Win32 platforms, rename() has bad behavior. work around it.
774 char old_file[80]="sif.XXXXXXXX";
776 rename(filename.c_str(),old_file);
777 if(rename(tmp_filename.c_str(),filename.c_str())!=0)
779 rename(old_file,tmp_filename.c_str());
780 synfig::error("synfig::save_canvas(): Unable to rename file to correct filename, errno=%d",errno);
785 if(rename(tmp_filename.c_str(),filename.c_str())!=0)
787 synfig::error("synfig::save_canvas(): Unable to rename file to correct filename, errno=%d",errno);
796 synfig::canvas_to_string(Canvas::ConstHandle canvas)
798 ChangeLocale change_locale(LC_NUMERIC, "C");
801 xmlpp::Document document;
803 encode_canvas(document.create_root_node("canvas"),canvas);
805 return document.write_to_string_formatted();