/* === S Y N F I G ========================================================= */ /*! \file svg_parser.cpp ** \brief Implementation of the Svg parser ** \brief Based on SVG XML specification 1.1 ** \brief See: http://www.w3.org/TR/xml11/ for deatils ** ** $Id:$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** Copyright (c) 2008 Chris Moore ** Copyright (c) 2009 Carlos A. Sosa Navarro ** Copyright (c) 2009 Nikita Kitaev ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License, or (at your option) any later version. ** ** This package is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** \endlegal */ /* ========================================================================= */ /* === H E A D E R S ======================================================= */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include "svg_parser.h" /* === U S I N G =========================================================== */ using namespace synfig; /* === G L O B A L S ======================================================= */ //PARSER PREFERENCES //Seperate transformations: apply transformations on a per-layer basis, rather than on canvases #define SVG_SEP_TRANSFORMS 1 //Resolve BLine transformations: resolve transformations instead of creating transformation layers #define SVG_RESOLVE_BLINE 1 /* === P R O C E D U R E S ================================================= */ Canvas::Handle synfig::open_svg(std::string _filepath,String &errors, String &warnings){ Canvas::Handle canvas; Svg_parser parser; try { canvas=parser.load_svg_canvas(_filepath,errors,warnings); //canvas->set_id(parser.get_id()); }catch(...){ std::cout<<"error"<get_root_node(); parser_node(pNode); } #ifdef LIBXMLCPP_EXCEPTIONS_ENABLED }catch(const std::exception& ex){ std::cout << "Exception caught: " << ex.what() << std::endl; } #endif //LIBXMLCPP_EXCEPTIONS_ENABLED Canvas::Handle canvas; if(nodeRoot){ //canvas=synfig::open_canvas(nodeRoot,_filepath,errors,warnings); canvas=synfig::open_canvas(nodeRoot,errors,warnings); } return canvas; } Svg_parser::Svg_parser(){ uid=0; kux=60; set_canvas=0;//we must run parser_canvas method // 0.5 in gamma parameter of color correct layer is 1/0.5 = 2 (thinking) it must be 2.2!!!! gamma.set_gamma(2.2); } /* String Svg_parser::get_id(){ if(!id_name.empty()) return id_name; return "random_id"; } void Svg_parser::set_id(String source){ const char bad_chars[]=" :#@$^&()*"; int start= source.find_last_of('/')+1; int end= source.find_last_of('.'); String x=source.substr(start,end-start); if(!x.empty()){ for(unsigned int i=0;i(node); const xmlpp::TextNode* nodeText = dynamic_cast(node); const xmlpp::CommentNode* nodeComment = dynamic_cast(node); if(nodeText && nodeText->is_white_space()) //Let's ignore the indenting - you don't always want to do this. return; Glib::ustring nodename = node->get_name(); if(!nodeText && !nodeComment && !nodename.empty()){ if(nodename.compare("svg")==0){ parser_svg (node); }else if(nodename.compare("namedview")==0){ parser_canvas(node); }else if(nodename.compare("defs")==0){ parser_defs (node); }else{ if(set_canvas==0) parser_canvas (node); parser_graphics(node,nodeRoot,"",NULL); if(nodename.compare("g")==0) return; } } if(!nodeContent){ xmlpp::Node::NodeList list = node->get_children(); for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter){ parser_node(*iter); //recursive } } } //parser elements void Svg_parser::parser_svg (const xmlpp::Node* node){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ width =etl::strprintf("%f",getDimension(nodeElement->get_attribute_value("width"))); height =etl::strprintf("%f",getDimension(nodeElement->get_attribute_value("height"))); docname=nodeElement->get_attribute_value("docname",""); } } void Svg_parser::parser_canvas (const xmlpp::Node* node){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ if(width.compare("")==0){ width=nodeElement->get_attribute_value("width",""); } if(height.compare("")==0){ height=nodeElement->get_attribute_value("height",""); } if(width.compare("")==0 && height.compare("")!=0){ width=height; } if(width.compare("")!=0 && height.compare("")==0){ height=width; } if(height.compare("")==0 && width.compare("")==0){ width="1024"; height="768"; } //build nodeRoot=document.create_root_node("canvas", "", ""); nodeRoot->set_attribute("version","0.5"); nodeRoot->set_attribute("width",width); nodeRoot->set_attribute("height",height); nodeRoot->set_attribute("xres","2834.645752"); nodeRoot->set_attribute("yres","2834.645752"); float view_x; float view_y; view_x=atof(width.c_str())/kux; view_y=atof(height.c_str())/kux; view_x=view_x/2.0; view_y=view_y/2.0; char attr_view_box[60]; sprintf(attr_view_box,"%f %f %f %f",-1.0*view_x,view_y,view_x,-1.0*view_y); nodeRoot->set_attribute("view-box",attr_view_box); ox=atof(width.c_str() )/2; oy=atof(height.c_str())/2; nodeRoot->set_attribute("antialias","1"); nodeRoot->set_attribute("fps","24.000"); nodeRoot->set_attribute("begin-time","0f"); nodeRoot->set_attribute("end-time","5s"); nodeRoot->set_attribute("bgcolor","0.500000 0.500000 0.500000 1.000000"); if(!id_name.empty()) nodeRoot->add_child("name")->set_child_text(id_name); else nodeRoot->add_child("name")->set_child_text("Synfig Animation 1"); } set_canvas=1; } void Svg_parser::parser_graphics(const xmlpp::Node* node,xmlpp::Element* root,String parent_style,Matrix* mtx_parent){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ Glib::ustring nodename = node->get_name(); if (nodename.compare("g")==0 || nodename.compare("path")==0 || nodename.compare("polygon")==0 || nodename.compare("rect")==0){} else return; //load sub-attributes Glib::ustring id =nodeElement->get_attribute_value("id"); Glib::ustring transform =nodeElement->get_attribute_value("transform"); //resolve transformations Matrix* mtx=NULL; if(!transform.empty()) mtx=parser_transform (transform); if (SVG_SEP_TRANSFORMS) { if(mtx_parent){ if(mtx) composeMatrix(&mtx,mtx_parent,mtx); else mtx=newMatrix(mtx_parent); } } if(nodename.compare("g")==0){ parser_layer (node,root->add_child("layer"),parent_style,mtx); return; } Glib::ustring obj_style =nodeElement->get_attribute_value("style"); Glib::ustring obj_fill =nodeElement->get_attribute_value("fill"); //style String fill =loadAttribute("fill",obj_style,parent_style,obj_fill,"none"); String fill_rule =loadAttribute("fill-rule",obj_style,parent_style,"evenodd"); String stroke =loadAttribute("stroke",obj_style,parent_style,"none"); String stroke_width =loadAttribute("stroke-width",obj_style,parent_style,"1px"); String stroke_linecap =loadAttribute("stroke-linecap",obj_style,parent_style,"butt"); String stroke_linejoin =loadAttribute("stroke-linejoin",obj_style,parent_style,"miter"); String stroke_opacity =loadAttribute("stroke-opacity",obj_style,parent_style,"1"); String fill_opacity =loadAttribute("fill-opacity",obj_style,parent_style,"1"); String opacity =loadAttribute("opacity",obj_style,parent_style,"1"); //Fill int typeFill=0; //nothing if(fill.compare("none")!=0){ typeFill=1; //simple } if(typeFill==1 && fill.compare(0,3,"url")==0){ typeFill=2; //gradient } //Stroke int typeStroke=0;//nothing if(stroke.compare("none")!=0){ typeStroke=1; //simple } if(typeStroke==1 && stroke.compare(0,3,"url")==0){ typeStroke=2; //gradient } xmlpp::Element* child_layer = root; xmlpp::Element* child_fill; xmlpp::Element* child_stroke; //make simple fills if(nodename.compare("rect")==0 && typeFill!=0){ if (mtx) child_layer = nodeStartBasicLayer(root->add_child("layer"), id); child_fill=child_layer; parser_rect(nodeElement,child_fill,fill,fill_opacity,opacity); if(typeFill==2){ build_fill (child_fill,fill,NULL); } parser_effects(nodeElement,child_layer,parent_style,mtx); return; } if ((!(SVG_RESOLVE_BLINE) && mtx) || typeFill==2 || typeStroke==2) child_layer = nodeStartBasicLayer(root->add_child("layer"), id); child_fill=child_layer; child_stroke=child_layer; //======================================================================= std::list k; //if we are creating a bline //First, create the list of Verteces if (SVG_RESOLVE_BLINE) { if(nodename.compare("path")==0){ k=parser_path_d (nodeElement->get_attribute_value("d"),mtx); } else if(nodename.compare("polygon")==0){ k=parser_path_polygon (nodeElement->get_attribute_value("points"),mtx); } } else { if(nodename.compare("path")==0){ k=parser_path_d (nodeElement->get_attribute_value("d"),NULL); } else if(nodename.compare("polygon")==0){ k=parser_path_polygon (nodeElement->get_attribute_value("points"),NULL); } } std::list::iterator aux; //int n = k.size(); if(typeFill!=0){//region layer /*if(typeFill==2){ child_fill=nodeStartBasicLayer(child_fill->add_child("layer")); }*/ for (aux = k.begin(); aux!=k.end(); aux++){ xmlpp::Element *child_region=child_fill->add_child("layer"); child_region->set_attribute("type","region"); child_region->set_attribute("active","true"); child_region->set_attribute("version","0.1"); child_region->set_attribute("desc",id); build_param (child_region->add_child("param"),"z_depth","real","0.0000000000"); build_param (child_region->add_child("param"),"amount","real","1.0000000000"); build_param (child_region->add_child("param"),"blend_method","integer","0"); build_color (child_region->add_child("param"),getRed(fill),getGreen(fill),getBlue(fill),atof(fill_opacity.data())*atof(opacity.data())); build_vector (child_region->add_child("param"),"offset",0,0, *(*aux)->offset_id ); build_param (child_region->add_child("param"),"invert","bool","false"); build_param (child_region->add_child("param"),"antialias","bool","true"); build_param (child_region->add_child("param"),"feather","real","0.0000000000"); build_param (child_region->add_child("param"),"blurtype","integer","1"); if(fill_rule.compare("evenodd")==0) build_param (child_region->add_child("param"),"winding_style","integer","1"); else build_param (child_region->add_child("param"),"winding_style","integer","0"); build_bline (child_region->add_child("param"),*(*aux)->points,(*aux)->loop,*(*aux)->bline_id); } } if(typeFill==2){ //gradient in onto mode (fill) if (SVG_RESOLVE_BLINE) build_fill(child_fill,fill,mtx); else build_fill(child_fill,fill,NULL); } if(typeStroke!=0){//outline layer if(typeStroke==2){ child_stroke=nodeStartBasicLayer(child_stroke->add_child("layer"),"stroke"); } for (aux=k.begin(); aux!=k.end(); aux++){ xmlpp::Element *child_outline=child_stroke->add_child("layer"); child_outline->set_attribute("type","outline"); child_outline->set_attribute("active","true"); child_outline->set_attribute("version","0.2"); child_outline->set_attribute("desc",id); build_param (child_outline->add_child("param"),"z_depth","real","0.0000000000"); build_param (child_outline->add_child("param"),"amount","real","1.0000000000"); build_param (child_outline->add_child("param"),"blend_method","integer","0"); build_color (child_outline->add_child("param"),getRed(stroke),getGreen(stroke),getBlue(stroke),atof(stroke_opacity.data())*atof(opacity.data())); build_vector (child_outline->add_child("param"),"offset",0,0,*(*aux)->offset_id); build_param (child_outline->add_child("param"),"invert","bool","false"); build_param (child_outline->add_child("param"),"antialias","bool","true"); build_param (child_outline->add_child("param"),"feather","real","0.0000000000"); build_param (child_outline->add_child("param"),"blurtype","integer","1"); //outline in nonzero build_param (child_outline->add_child("param"),"winding_style","integer","0"); build_bline (child_outline->add_child("param"),*(*aux)->points,(*aux)->loop,*(*aux)->bline_id); stroke_width=etl::strprintf("%f",getDimension(stroke_width)/kux); build_param (child_outline->add_child("param"),"width","real",stroke_width); build_param (child_outline->add_child("param"),"expand","real","0.0000000000"); if(stroke_linejoin.compare("miter")==0) build_param (child_outline->add_child("param"),"sharp_cusps","bool","true"); else build_param (child_outline->add_child("param"),"sharp_cusps","bool","false"); if(stroke_linecap.compare("butt")==0){ build_param (child_outline->add_child("param"),"round_tip[0]","bool","false"); build_param (child_outline->add_child("param"),"round_tip[1]","bool","false"); }else{ build_param (child_outline->add_child("param"),"round_tip[0]","bool","true"); build_param (child_outline->add_child("param"),"round_tip[1]","bool","true"); } build_param (child_outline->add_child("param"),"loopyness","real","1.0000000000"); build_param (child_outline->add_child("param"),"homogeneous_width","bool","true"); } if(typeStroke==2){ //gradient in onto mode (stroke) if (SVG_RESOLVE_BLINE) build_fill(child_stroke,stroke,mtx); else build_fill(child_stroke,stroke,NULL); } } if (SVG_RESOLVE_BLINE) parser_effects(nodeElement,child_layer,parent_style,NULL); else parser_effects(nodeElement,child_layer,parent_style,mtx); } } /* === LAYER PARSERS ======================================================= */ void Svg_parser::parser_layer(const xmlpp::Node* node,xmlpp::Element* root,String parent_style,Matrix* mtx){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ Glib::ustring label =nodeElement->get_attribute_value("label"); Glib::ustring style =nodeElement->get_attribute_value("style"); Glib::ustring fill =nodeElement->get_attribute_value("fill"); String layer_style; if(!style.empty()){ layer_style=style; }else if(!fill.empty()){ layer_style.append("fill:"); layer_style.append(fill); }else if(!parent_style.empty()){ layer_style=parent_style; } //build root->set_attribute("type","PasteCanvas"); root->set_attribute("active","true"); root->set_attribute("version","0.1"); if(!label.empty()) root->set_attribute("desc",label); else root->set_attribute("desc","Inline Canvas"); build_real(root->add_child("param"),"z_depth",0.0); build_real(root->add_child("param"),"amount",1.0); build_integer(root->add_child("param"),"blend_method",0); build_vector (root->add_child("param"),"origin",0,0); //printf(" canvas attributes "); //canvas xmlpp::Element *child_canvas=root->add_child("param"); child_canvas->set_attribute("name","canvas"); child_canvas=child_canvas->add_child("canvas"); const xmlpp::ContentNode* nodeContent = dynamic_cast(node); if(!nodeContent){ xmlpp::Node::NodeList list = node->get_children(); for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter){ Glib::ustring name =(*iter)->get_name(); parser_graphics (*iter,child_canvas,layer_style,mtx); } } if (SVG_SEP_TRANSFORMS) parser_effects(nodeElement,child_canvas,parent_style,NULL); else parser_effects(nodeElement,child_canvas,parent_style,mtx); } } void Svg_parser::parser_rect(const xmlpp::Element* nodeElement,xmlpp::Element* root,String fill, String fill_opacity, String opacity){ Glib::ustring rect_id =nodeElement->get_attribute_value("id"); Glib::ustring rect_x =nodeElement->get_attribute_value("x"); Glib::ustring rect_y =nodeElement->get_attribute_value("y"); Glib::ustring rect_width =nodeElement->get_attribute_value("width"); Glib::ustring rect_height =nodeElement->get_attribute_value("height"); xmlpp::Element *child_rect=root->add_child("layer"); child_rect->set_attribute("type","rectangle"); child_rect->set_attribute("active","true"); child_rect->set_attribute("version","0.2"); child_rect->set_attribute("desc",rect_id); build_real(child_rect->add_child("param"),"z_depth",0.0); build_real(child_rect->add_child("param"),"amount",1.0); build_integer(child_rect->add_child("param"),"blend_method",0); build_color (child_rect->add_child("param"),getRed (fill),getGreen (fill),getBlue(fill),atof(opacity.data())*atof(fill_opacity.data())); float auxx=atof(rect_x.c_str()); float auxy=atof(rect_y.c_str()); coor2vect(&auxx,&auxy); build_vector (child_rect->add_child("param"),"point1",auxx,auxy); auxx= atof(rect_x.c_str()) + atof(rect_width.c_str()); auxy= atof(rect_y.c_str()) + atof(rect_height.c_str()); coor2vect(&auxx,&auxy); build_vector (child_rect->add_child("param"),"point2",auxx,auxy); } /* === CONVERT TO PATH PARSERS ============================================= */ std::list Svg_parser::parser_path_polygon(Glib::ustring polygon_points, Matrix* mtx){ std::list k0; if(polygon_points.empty()) return k0; std::list points; std::vector tokens=get_tokens_path (polygon_points); unsigned int i; float ax,ay; ax=ay=0; for(i=0;i Svg_parser::parser_path_d(String path_d,Matrix* mtx){ std::list k; std::list k1; std::vector tokens=get_tokens_path(path_d); String command="M"; //the current command float ax,ay,tgx,tgy,tgx2,tgy2;//each method ax=ay=0; float actual_x=0,actual_y=0; //in svg coordinate space float old_x=0,old_y=0; //needed in rare cases float init_x=0,init_y=0; //for closepath commands for(unsigned int i=0;ix,k1.back()->y,tgx2,tgy2); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,tgx,tgy); }else{ k1.push_back(newVertex (ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); setSplit(k1.back(),TRUE); } }else if(command.compare("Q")==0 || command.compare("q")==0){ //quadractic curve //tg1 and tg2 tgx=actual_x+atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; tgy=actual_y+atof(tokens.at(i).data()); //point i++; actual_x+=atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; actual_y+=atof(tokens.at(i).data()); ax=actual_x; ay=actual_y; //mtx if(mtx){ transformPoint2D(mtx,&ax,&ay); transformPoint2D(mtx,&tgx,&tgy); } //adjust coor2vect(&ax,&ay); coor2vect(&tgx,&tgy); //save setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); setSplit(k1.back(),FALSE); k1.push_back(newVertex (ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); }else if(command.compare("L")==0 || command.compare("l")==0){ //line to //point actual_x+=atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; actual_y+=atof(tokens.at(i).data()); ax=actual_x; ay=actual_y; //mtx if(mtx) transformPoint2D(mtx,&ax,&ay); //adjust coor2vect(&ax,&ay); //save setTg2(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,k1.front()->x,k1.front()->y); }else{ k1.push_back(newVertex(ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); } }else if(command.compare("H")==0 || command.compare("h")==0){// horizontal move //the same that L but only Horizontal movement //point actual_x+=atof(tokens.at(i).data()); ax=actual_x; ay=old_y; //mtx if(mtx) transformPoint2D(mtx,&ax,&ay); //adjust coor2vect(&ax,&ay); //save setTg2(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,k1.front()->x,k1.front()->y); }else{ k1.push_back(newVertex(ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); } }else if(command.compare("V")==0 || command.compare("v")==0){//vertical //point actual_y+=atof(tokens.at(i).data()); ax=old_x; ay=actual_y; //mtx if(mtx) transformPoint2D(mtx,&ax,&ay); //adjust coor2vect(&ax,&ay); //save setTg2(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,k1.front()->x,k1.front()->y); }else{ k1.push_back(newVertex(ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,k1.back()->x,k1.back()->y); } }else if(command.compare("T")==0 || command.compare("t")==0){// I don't know what does it actual_x+=atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; actual_y+=atof(tokens.at(i).data()); }else if(command.compare("A")==0 || command.compare("a")==0){//elliptic arc //isn't complete support, is only for circles //this curve have 6 parameters //radius float radius_x,radius_y; float angle; bool sweep,large; //radius radius_x=atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; radius_y=atof(tokens.at(i).data()); //angle i++; angle=atof(tokens.at(i).data()); //flags i++; large=atoi(tokens.at(i).data()); i++; sweep=atoi(tokens.at(i).data()); //point i++; actual_x+=atof(tokens.at(i).data()); i++; if(tokens.at(i).compare(",")==0) i++; actual_y+=atof(tokens.at(i).data()); //how to draw? if(!large && !sweep){ //points tgx2 = old_x + radius_x*0.5; tgy2 = old_y ; tgx = actual_x; tgy = actual_y + radius_y*0.5; ax=actual_x; ay=actual_y; //transformations if(mtx){ transformPoint2D(mtx,&tgx2,&tgy2); transformPoint2D(mtx,&ax,&ay); transformPoint2D(mtx,&tgx,&tgy); } //adjust coor2vect(&tgx2,&tgy2); coor2vect(&ax,&ay); coor2vect(&tgx,&tgy); //save setTg2(k1.back(),k1.back()->x,k1.back()->y,tgx2,tgy2); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,tgx,tgy); }else{ k1.push_back(newVertex (ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); setSplit(k1.back(),TRUE); } }else if(!large && sweep){ //points tgx2 = old_x; tgy2 = old_y + radius_y*0.5; tgx = actual_x + radius_x*0.5; tgy = actual_y ; ax=actual_x; ay=actual_y; //transformations if(mtx){ transformPoint2D(mtx,&tgx2,&tgy2); transformPoint2D(mtx,&ax,&ay); transformPoint2D(mtx,&tgx,&tgy); } //adjust coor2vect(&tgx2,&tgy2); coor2vect(&ax,&ay); coor2vect(&tgx,&tgy); //save setTg2(k1.back(),k1.back()->x,k1.back()->y,tgx2,tgy2); if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,tgx,tgy); }else{ k1.push_back(newVertex (ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); setSplit(k1.back(),TRUE); } }else if( large && !sweep){//rare //this need more than one vertex }else if( large && sweep){//circles in inkscape are made with this kind of arc //intermediate point int sense=1; if(old_x>actual_x) sense =-1; float in_x,in_y,in_tgx1,in_tgy1,in_tgx2,in_tgy2; in_x = (old_x+actual_x)/2; in_y = old_y - sense*radius_y; in_tgx1 = in_x - sense*(radius_x*0.5); in_tgx2 = in_x + sense*(radius_x*0.5); in_tgy1 = in_y; in_tgy2 = in_y; //start/end points tgx2=old_x; tgy2=actual_y - sense*(radius_y*0.5); tgx =actual_x; tgy =actual_y - sense*(radius_y*0.5); ax=actual_x; ay=actual_y; //transformations if(mtx){ transformPoint2D(mtx,&tgx2,&tgy2); transformPoint2D(mtx,&tgx ,&tgy ); transformPoint2D(mtx,&ax,&ay); transformPoint2D(mtx,&in_tgx2,&in_tgy2); transformPoint2D(mtx,&in_tgx1,&in_tgy1); transformPoint2D(mtx,&in_x,&in_y); } //adjust coor2vect(&tgx2 , &tgy2); coor2vect(&ax , &ay ); coor2vect(&tgx , &tgy ); coor2vect(&in_tgx2 , &in_tgy2); coor2vect(&in_tgx1 , &in_tgy1); coor2vect(&in_x , &in_y ); //save the last tg2 setTg2(k1.back(),k1.back()->x,k1.back()->y,tgx2,tgy2); //save the intermediate point k1.push_back(newVertex (in_x,in_y)); setTg1(k1.back(),k1.back()->x,k1.back()->y, in_tgx1 , in_tgy1); setTg2(k1.back(),k1.back()->x,k1.back()->y, in_tgx2 , in_tgy2); setSplit(k1.back(),TRUE); //this could be changed //save the new point if(isFirst(k1.front(),ax,ay)){ setTg1(k1.front(),k1.front()->x,k1.front()->y,tgx,tgy); }else{ k1.push_back(newVertex (ax,ay)); setTg1(k1.back(),k1.back()->x,k1.back()->y,tgx,tgy); setSplit(k1.back(),TRUE); } } }else if(command.compare("z")==0){ k.push_front(newBLine(&k1, true)); k1.clear(); if (i(node); if(!nodeContent){ xmlpp::Node::NodeList list = node->get_children(); for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter){ Glib::ustring name =(*iter)->get_name(); if(name.compare("linearGradient")==0){ parser_linearGradient(*iter); }else if(name.compare("radialGradient")==0){ parser_radialGradient(*iter); } } } } /* === BUILDS ============================================================== */ void Svg_parser::build_transform(xmlpp::Element* root,Matrix* mtx){ if (mtx) { xmlpp::Element *child_transform=root->add_child("layer"); child_transform->set_attribute("type","warp"); child_transform->set_attribute("active","true"); child_transform->set_attribute("version","0.1"); child_transform->set_attribute("desc","Transform"); float x,y; x=100;y=100;coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"src_tl",x,y); x=200;y=200;coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"src_br",x,y); x=100;y=100; transformPoint2D(mtx,&x,&y);coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"dest_tl",x,y); x=200;y=100; transformPoint2D(mtx,&x,&y);coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"dest_tr",x,y); x=200;y=200; transformPoint2D(mtx,&x,&y);coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"dest_br",x,y); x=100;y=200; transformPoint2D(mtx,&x,&y);coor2vect(&x,&y); build_vector (child_transform->add_child("param"),"dest_bl",x,y); build_param (child_transform->add_child("param"),"clip","bool","false"); build_param (child_transform->add_child("param"),"horizon","real","4.0"); } } std::list* Svg_parser::find_colorStop(String name){ if(!name.empty()){ if(lg.empty()&& rg.empty()) return NULL; String find= name; if(find.at(0)=='#') find.erase(0,1); else return NULL; std::list::iterator aux=lg.begin(); while(aux!=lg.end()){//only find into linear gradients if(find.compare((*aux)->name)==0){ return (*aux)->stops; } aux++; } } return NULL; } void Svg_parser::build_fill(xmlpp::Element* root, String name,Matrix *mtx){ if(!name.empty()){ int start=name.find_first_of("#")+1; int end=name.find_first_of(")"); String find= name.substr(start,end-start); bool encounter=false; if(!lg.empty()){ std::list::iterator aux=lg.begin(); while(aux!=lg.end()){ if(find.compare((*aux)->name)==0){ build_linearGradient (root,*aux,mtx); encounter=true; } aux++; } } if(!encounter && !rg.empty()){ std::list::iterator aux=rg.begin(); while(aux!=rg.end()){ if(find.compare((*aux)->name)==0){ build_radialGradient (root,*aux,mtx); encounter=true; } aux++; } } } } void Svg_parser::build_stop_color(xmlpp::Element* root, std::list *stops){ std::list::iterator aux_stop=stops->begin(); while(aux_stop!=stops->end()){ xmlpp::Element *child=root->add_child("color"); child->set_attribute("pos",etl::strprintf("%f",(*aux_stop)->pos)); child->add_child("r")->set_child_text(etl::strprintf("%f",(*aux_stop)->r)); child->add_child("g")->set_child_text(etl::strprintf("%f",(*aux_stop)->g)); child->add_child("b")->set_child_text(etl::strprintf("%f",(*aux_stop)->b)); child->add_child("a")->set_child_text(etl::strprintf("%f",(*aux_stop)->a)); aux_stop++; } } void Svg_parser::build_linearGradient(xmlpp::Element* root,LinearGradient* data,Matrix* mtx){ if(data){ xmlpp::Element* gradient=root->add_child("layer"); gradient->set_attribute("type","linear_gradient"); gradient->set_attribute("active","true"); gradient->set_attribute("desc",data->name); build_param (gradient->add_child("param"),"z_depth","real","0"); build_param (gradient->add_child("param"),"amount","real","1"); //straight onto build_param (gradient->add_child("param"),"blend_method","integer","21"); float x1,y1,x2,y2; x1=data->x1; y1=data->y1; x2=data->x2; y2=data->y2; if (mtx || data->transform){ Matrix *mtx2=NULL; if (mtx && data->transform){ composeMatrix(&mtx2,mtx,data->transform); }else if (mtx){ mtx2=mtx; }else if (data->transform){ mtx2=data->transform; } //matrix transforms the gradient as a whole //it does not preserve angles, so we cant' simply transform both points float x3, y3, k; //set point (x3,y3) on the same gradient line as (x2,y2) //the gradient line is perpendicular to (x1,y1)(x2,y2) x3=x2+(y2-y1); y3=y2-(x2-x1); //transform everything transformPoint2D(mtx2,&x1,&y1); transformPoint2D(mtx2,&x2,&y2); transformPoint2D(mtx2,&x3,&y3); if (x2!=x3 && y2!=y3) {//divide by zero check //set k as slope between (x2,y2) and (x3,y3) //k is the slope of gradient lines post-transformation k=(y3-y2)/(x3-x2); //set point (x2,y2) on the gradient line passing through (x3,y3) //so that the line (x1,y1)(x2,y2) is perpendicular to (x2,y2)(x3,y3) x2= (x3*k+x1/k+y1-y3)/(k+(1/k)); y2= k*(x2-x3)+y3; } else if (x2==x3 && y2!=y3) { y2=y1; } else if (x2!=x3 && y2==y3) { x2=x1; } else { std::cout<<"SVG Import warning: gradient points equal each other"<add_child("param"),"p1",x1,y1); build_vector (gradient->add_child("param"),"p2",x2,y2); //gradient link xmlpp::Element *child_stops=gradient->add_child("param"); child_stops->set_attribute("name","gradient"); child_stops->set_attribute("guid",GUID::hasher(data->name).get_string()); build_stop_color (child_stops->add_child("gradient"),data->stops); build_param (gradient->add_child("param"),"loop","bool","false"); build_param (gradient->add_child("param"),"zigzag","bool","false"); } } void Svg_parser::build_radialGradient(xmlpp::Element* root,RadialGradient* data,Matrix* mtx){ if(data){ xmlpp::Element* gradient; if (mtx || data->transform) { xmlpp::Element* layer=root->add_child("layer"); layer->set_attribute("type","PasteCanvas"); layer->set_attribute("active","true"); layer->set_attribute("version","0.1"); layer->set_attribute("desc",data->name); build_param (layer->add_child("param"),"z_depth","real","0"); build_param (layer->add_child("param"),"amount","real","1"); build_param (layer->add_child("param"),"blend_method","integer","21"); //straight onto build_vector (layer->add_child("param"),"origin",0,0); xmlpp::Element *child=layer->add_child("param"); child->set_attribute("name","canvas"); xmlpp::Element* child_layer=child->add_child("canvas"); gradient=child_layer->add_child("layer"); gradient->set_attribute("desc",data->name); build_param (gradient->add_child("param"),"blend_method","integer","0"); //composite Matrix *mtx2=NULL; if (mtx && data->transform){ composeMatrix(&mtx2,mtx,data->transform); }else if (mtx){ mtx2=mtx; }else if (data->transform){ mtx2=data->transform; } build_transform(child_layer,mtx2); }else { gradient=root->add_child("layer"); gradient->set_attribute("desc",data->name); build_param (gradient->add_child("param"),"blend_method","integer","21"); //straight onto } gradient->set_attribute("type","radial_gradient"); gradient->set_attribute("active","true"); build_param (gradient->add_child("param"),"z_depth","real","0"); build_param (gradient->add_child("param"),"amount","real","1"); //gradient link xmlpp::Element *child_stops=gradient->add_child("param"); child_stops->set_attribute("name","gradient"); child_stops->set_attribute("guid",GUID::hasher(data->name).get_string()); build_stop_color (child_stops->add_child("gradient"),data->stops); //here the center point and radius float cx=data->cx; float cy=data->cy; float r =data->r; //adjust coor2vect (&cx,&cy); r=r/kux; build_vector (gradient->add_child("param"),"center",cx,cy); build_param (gradient->add_child("param"),"radius","real",r); build_param (gradient->add_child("param"),"loop","bool","false"); build_param (gradient->add_child("param"),"zigzag","bool","false"); } } void Svg_parser::parser_linearGradient(const xmlpp::Node* node){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ Glib::ustring id =nodeElement->get_attribute_value("id"); float x1 =atof(nodeElement->get_attribute_value("x1").data()); float y1 =atof(nodeElement->get_attribute_value("y1").data()); float x2 =atof(nodeElement->get_attribute_value("x2").data()); float y2 =atof(nodeElement->get_attribute_value("y2").data()); Glib::ustring link =nodeElement->get_attribute_value("href"); Glib::ustring transform =nodeElement->get_attribute_value("gradientTransform"); //resolve transformations Matrix* mtx=NULL; if(!transform.empty()) mtx=parser_transform (transform); std::list *stops; if(!link.empty()){ stops=find_colorStop (link); }else{ //color stops stops=new std::list(); const xmlpp::ContentNode* nodeContent = dynamic_cast(node); if(!nodeContent){ xmlpp::Node::NodeList list = node->get_children(); for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter){ Glib::ustring name =(*iter)->get_name(); if(name.compare("stop")==0){ const xmlpp::Element* nodeIter = dynamic_cast(*iter); Glib::ustring style =nodeIter->get_attribute_value("style"); float offset=atof(nodeIter->get_attribute_value("offset").data()); String stop_color; String opacity; if(!style.empty()){ extractSubAttribute (style,"stop-color",&stop_color); extractSubAttribute (style,"stop-opacity",&opacity); } if(opacity.empty()) opacity="1"; if(stop_color.empty()) stop_color="#000000";//black for default :S stops->push_back(newColorStop(stop_color,atof(opacity.data()),offset)); } } } } if(stops) lg.push_back(newLinearGradient(id,x1,y1,x2,y2,stops,mtx)); } } void Svg_parser::parser_radialGradient(const xmlpp::Node* node){ if(const xmlpp::Element* nodeElement = dynamic_cast(node)){ Glib::ustring id =nodeElement->get_attribute_value("id"); float cx =atof(nodeElement->get_attribute_value("cx").data()); float cy =atof(nodeElement->get_attribute_value("cy").data()); float fx =atof(nodeElement->get_attribute_value("fx").data()); float fy =atof(nodeElement->get_attribute_value("fy").data()); float r =atof(nodeElement->get_attribute_value("r").data()); Glib::ustring link =nodeElement->get_attribute_value("href");//basic Glib::ustring transform =nodeElement->get_attribute_value("gradientTransform"); if (cx!=fx || cy!=fy) std::cout<<"SVG Parser: ignoring focus attributes for radial gradient"; //resolve transformations Matrix* mtx=NULL; if(!transform.empty()) mtx=parser_transform (transform); std::list *stops=NULL; if(!link.empty()){ //inkscape always use link, i dont need parser stops here, but it's posible stops=find_colorStop (link); } if(stops) rg.push_back(newRadialGradient(id,cx,cy,r,stops,mtx)); } } ColorStop* Svg_parser::newColorStop(String color,float opacity,float pos){ ColorStop* _stop; _stop=(ColorStop*)malloc(sizeof(ColorStop)); float r=getRed(color); float g=getGreen(color); float b=getBlue(color); float a=opacity; Color ret=adjustGamma(r/255,g/255,b/255,a); _stop->r=ret.get_r(); _stop->g=ret.get_g(); _stop->b=ret.get_b(); _stop->a=ret.get_a(); _stop->pos=pos; return _stop; } Color Svg_parser::adjustGamma(float r,float g,float b,float a){ Color ret(r,g,b,a); if(gamma.get_gamma_r()!=1.0){ if(ret.get_r() < 0) ret.set_r(-gamma.r_F32_to_F32(-ret.get_r())); else ret.set_r(gamma.r_F32_to_F32(ret.get_r())); } if(gamma.get_gamma_g()!=1.0){ if(ret.get_g() < 0) ret.set_g(-gamma.g_F32_to_F32(-ret.get_g())); else ret.set_g(gamma.g_F32_to_F32(ret.get_g())); } if(gamma.get_gamma_b()!=1.0){ if(ret.get_b() < 0) ret.set_b(-gamma.b_F32_to_F32(-ret.get_b())); else ret.set_b(gamma.b_F32_to_F32(ret.get_b())); } return ret; } LinearGradient* Svg_parser::newLinearGradient(String name,float x1,float y1, float x2,float y2,std::list *stops, Matrix* transform){ LinearGradient* data; data=(LinearGradient*)malloc(sizeof(LinearGradient)); sprintf(data->name,"%s",name.data()); data->x1=x1; data->y1=y1; data->x2=x2; data->y2=y2; data->stops=stops; data->transform=transform; return data; } RadialGradient* Svg_parser::newRadialGradient(String name,float cx,float cy,float r,std::list *stops, Matrix* transform){ RadialGradient* data; data=(RadialGradient*)malloc(sizeof(RadialGradient)); sprintf(data->name,"%s",name.data()); data->cx=cx; data->cy=cy; data->r=r; data->stops=stops; data->transform=transform; return data; } BLine* Svg_parser::newBLine(std::list *points,bool loop){ BLine* data; data=(BLine*)malloc(sizeof(BLine)); //sprintf(data->name,"%s",name.data()); data->points=new std::list (*points); data->loop=loop; data->bline_id=new String(new_guid()); data->offset_id=new String(new_guid()); return data; } void Svg_parser::build_gamma(xmlpp::Element* root,float gamma){ root->set_attribute("type","colorcorrect"); root->set_attribute("active","true"); root->set_attribute("version","0.1"); root->set_attribute("desc","Gamma"); build_real (root->add_child("param"),"gamma",gamma); } void Svg_parser::build_translate(xmlpp::Element* root,float dx,float dy){ root->set_attribute("type","translate"); root->set_attribute("active","true"); root->set_attribute("version","0.1"); build_vector (root->add_child("param"),"origin",dx,dy); } void Svg_parser::build_rotate(xmlpp::Element* root,float dx,float dy,float angle){ root->set_attribute("type","rotate"); root->set_attribute("active","true"); root->set_attribute("version","0.1"); build_vector (root->add_child("param"),"origin",dx,dy); build_real (root->add_child("param"),"amount",angle); } void Svg_parser::build_points(xmlpp::Element* root,std::list p){ root->set_attribute("name","vector_list"); xmlpp::Element *child=root->add_child("dynamic_list"); child->set_attribute("type","vector"); std::list::iterator aux = p.begin(); while(aux!=p.end()){ xmlpp::Element *child_entry=child->add_child("entry"); xmlpp::Element *child_vector=child_entry->add_child("vector"); child_vector->add_child("x")->set_child_text(etl::strprintf("%f",(*aux)->x)); child_vector->add_child("y")->set_child_text(etl::strprintf("%f",(*aux)->y)); aux++; } } void Svg_parser::build_vertex(xmlpp::Element* root , Vertex *p){ xmlpp::Element *child_comp=root->add_child("composite"); child_comp->set_attribute("type","bline_point"); build_vector (child_comp->add_child("param"),"point",p->x,p->y); build_param (child_comp->add_child("width"),"","real","1.0000000000"); build_param (child_comp->add_child("origin"),"","real","0.5000000000"); if(p->split) build_param (child_comp->add_child("split"),"","bool","true"); else build_param (child_comp->add_child("split"),"","bool","false"); //tangent 1 xmlpp::Element *child_t1=child_comp->add_child("t1"); xmlpp::Element *child_rc=child_t1->add_child("radial_composite"); child_rc->set_attribute("type","vector"); build_param (child_rc->add_child("radius"),"","real",p->radius1); build_param (child_rc->add_child("theta"),"","angle",p->angle1); //tangent 2 xmlpp::Element *child_t2=child_comp->add_child("t2"); xmlpp::Element *child_rc2=child_t2->add_child("radial_composite"); child_rc2->set_attribute("type","vector"); build_param (child_rc2->add_child("radius"),"","real",p->radius2); build_param (child_rc2->add_child("theta"),"","angle",p->angle2); } void Svg_parser::build_bline(xmlpp::Element* root,std::list p,bool loop,String blineguid){ root->set_attribute("name","bline"); xmlpp::Element *child=root->add_child("bline"); child->set_attribute("type","bline_point"); if(loop) child->set_attribute("loop","true"); else child->set_attribute("loop","false"); if(!blineguid.empty()) child->set_attribute("guid",blineguid); std::list::iterator aux = p.begin(); while(aux!=p.end()){ if(*aux) build_vertex (child->add_child("entry"),*aux); aux++; } } void Svg_parser::build_param(xmlpp::Element* root,String name,String type,String value){ if(!type.empty() && !value.empty()){ if(!name.empty()) root->set_attribute("name",name); xmlpp::Element *child=root->add_child(type); child->set_attribute("value",value); }else{ root->get_parent()->remove_child(root); } } void Svg_parser::build_param(xmlpp::Element* root,String name,String type,float value){ if(!type.empty()){ if(!name.empty()) root->set_attribute("name",name); xmlpp::Element *child=root->add_child(type); child->set_attribute("value",etl::strprintf ("%f",value)); }else{ root->get_parent()->remove_child(root); } } void Svg_parser::build_param(xmlpp::Element* root,String name,String type,int value){ if(!type.empty()){ if(!name.empty()) root->set_attribute("name",name); xmlpp::Element *child=root->add_child(type); char *enteroc=new char[10]; sprintf(enteroc,"%d",value); child->set_attribute("value",enteroc); delete [] enteroc; }else{ root->get_parent()->remove_child(root); } } void Svg_parser::build_integer(xmlpp::Element* root,String name,int value){ if(name.compare("")!=0) root->set_attribute("name",name); xmlpp::Element *child=root->add_child("integer"); char *enteroc=new char[10]; sprintf(enteroc,"%d",value); child->set_attribute("value",enteroc); } void Svg_parser::build_real(xmlpp::Element* root,String name,float value){ if(name.compare("")!=0) root->set_attribute("name",name); xmlpp::Element *child=root->add_child("real"); char *realc=new char[20]; sprintf(realc,"%f",value); child->set_attribute("value",realc); } void Svg_parser::build_color(xmlpp::Element* root,float r,float g,float b,float a){ if(r>255 || g>255 || b>255 || a>1 || r<0 || g<0 || b<0 || a<0){ root->get_parent()->remove_child(root); printf("Color aborted\n"); return; } Color ret=adjustGamma(r/255,g/255,b/255,a); root->set_attribute("name","color"); xmlpp::Element *child=root->add_child("color"); child->add_child("r")->set_child_text(etl::strprintf("%f",ret.get_r())); child->add_child("g")->set_child_text(etl::strprintf("%f",ret.get_g())); child->add_child("b")->set_child_text(etl::strprintf("%f",ret.get_b())); child->add_child("a")->set_child_text(etl::strprintf("%f",ret.get_a())); } void Svg_parser::build_vector(xmlpp::Element* root,String name,float x,float y){ if(name.compare("")!=0) root->set_attribute("name",name); xmlpp::Element *child=root->add_child("vector"); child->add_child("x")->set_child_text(etl::strprintf("%f",x)); child->add_child("y")->set_child_text(etl::strprintf("%f",y)); } void Svg_parser::build_vector (xmlpp::Element* root,String name,float x,float y,String guid){ if(name.compare("")!=0) root->set_attribute("name",name); xmlpp::Element *child=root->add_child("vector"); if(!guid.empty()) child->set_attribute("guid",guid); child->add_child("x")->set_child_text(etl::strprintf("%f",x)); child->add_child("y")->set_child_text(etl::strprintf("%f",y)); } xmlpp::Element* Svg_parser::nodeStartBasicLayer(xmlpp::Element* root, String name){ root->set_attribute("type","PasteCanvas"); root->set_attribute("active","true"); root->set_attribute("version","0.1"); root->set_attribute("desc",name); build_param (root->add_child("param"),"z_depth","real","0"); build_param (root->add_child("param"),"amount","real","1"); build_param (root->add_child("param"),"blend_method","integer","0"); build_vector (root->add_child("param"),"origin",0,0); xmlpp::Element *child=root->add_child("param"); child->set_attribute("name","canvas"); return child->add_child("canvas"); } /* === COORDINATES & TRANSFORMATIONS ======================================= */ void Svg_parser::coor2vect(float *x,float *y){ float sx, sy; sx=*x; sy=*y; sy= atof(height.c_str())-sy; sx= sx - ox; sy= sy - oy; sx= sx / kux; sy= sy / kux; *x=sx; *y=sy; } void Svg_parser::setTg1(Vertex *p,float p1x,float p1y,float p2x,float p2y){ float rd=0,ag=0; float d1x,d1y,d2x,d2y,dx,dy; d1x=p1x*60; d1y=p1y*60; d2x=p2x*60; d2y=p2y*60; dx=d2x-d1x; dy=d2y-d1y; dx=dx*3; dy=dy*3; dx=dx/60; dy=dy/60; rd=sqrt(dx*dx + dy*dy); if(dx>0 && dy>0){ ag=PI + atan(dy/dx); }else if(dx>0 && dy<0){ ag=PI + atan(dy/dx); }else if(dx<0 && dy<0){ ag=atan(dy/dx); }else if(dx<0 && dy>0){ ag= 2*PI+atan(dy/dx); }else if(dx==0 && dy>0){ ag=-1*PI/2; }else if(dx==0 && dy<0){ ag=PI/2; }else if(dx==0 && dy==0){ ag=0; }else if(dx<0 && dy==0){ ag=0; }else if(dx>0 && dy==0){ ag=PI; } ag= (ag*180)/PI; p->radius1=rd; p->angle1=ag; } void Svg_parser::setTg2(Vertex* p,float p1x,float p1y,float p2x,float p2y){ float rd=0,ag=0; float d1x,d1y,d2x,d2y,dx,dy; d1x=p1x*60; d1y=p1y*60; d2x=p2x*60; d2y=p2y*60; dx=d2x-d1x; dy=d2y-d1y; dx=dx*3; dy=dy*3; dx=dx/60; dy=dy/60; rd=sqrt(dx*dx + dy*dy); if(dx>0 && dy>0){ ag=PI + atan(dy/dx); // printf("case 180-270\n"); }else if(dx>0 && dy<0){ ag=PI + atan(dy/dx); // printf("case 90-180\n"); }else if(dx<0 && dy<0){ ag=atan(dy/dx); // printf("case 0-90\n"); }else if(dx<0 && dy>0){ ag= 2*PI+atan(dy/dx); // printf("case 270-360\n"); }else if(dx==0 && dy>0){ ag=-1*PI/2; }else if(dx==0 && dy<0){ ag=PI/2; }else if(dx==0 && dy==0){ ag=0; }else if(dx<0 && dy==0){ ag=0; }else if(dx>0 && dy==0){ ag=PI; } ag= (ag*180)/PI; ag=ag-180; p->radius2=rd; p->angle2=ag; } void Svg_parser::setSplit(Vertex* p,bool val){ if(p!=NULL){ p->split=val; } } int Svg_parser::isFirst(Vertex* nodo,float a, float b){ if(nodo->x==a && nodo->y==b) return 1; return 0; } Vertex* Svg_parser::newVertex(float x,float y){ Vertex* vert; vert=(Vertex*)malloc(sizeof(Vertex)); vert->x=x; vert->y=y; vert->radius1=vert->radius2=vert->angle1=vert->angle2=0; return vert; } //matrices Matrix* Svg_parser::parser_transform(const String transform){ Matrix* a=NULL; String tf(transform); removeIntoS(&tf); std::vector tokens=tokenize(tf," "); std::vector::iterator aux=tokens.begin(); while(aux!=tokens.end()){ if((*aux).compare(0,9,"translate")==0){ float dx,dy; int start,end; start =(*aux).find_first_of("(")+1; end =(*aux).find_first_of(","); dx =atof((*aux).substr(start,end-start).data()); start =(*aux).find_first_of(",")+1; end =(*aux).size()-1; dy =atof((*aux).substr(start,end-start).data()); if(matrixIsNull(a)) a=newMatrix(1,0,0,1,dx,dy); else multiplyMatrix(&a,newMatrix(1,0,0,1,dx,dy)); }else if((*aux).compare(0,5,"scale")==0){ if(matrixIsNull(a)) a=newMatrix(1,0,0,1,0,0); }else if((*aux).compare(0,6,"rotate")==0){ float angle,seno,coseno; int start,end; start =(*aux).find_first_of("(")+1; end =(*aux).size()-1; angle=getRadian (atof((*aux).substr(start,end-start).data())); seno =sin(angle); coseno =cos(angle); if(matrixIsNull(a)) a=newMatrix(coseno,seno,-1*seno,coseno,0,0); else multiplyMatrix(&a,newMatrix(coseno,seno,-1*seno,coseno,0,0)); }else if((*aux).compare(0,6,"matrix")==0){ int start =(*aux).find_first_of('(')+1; int end =(*aux).find_first_of(')'); if(matrixIsNull(a)) a=newMatrix((*aux).substr(start,end-start)); else multiplyMatrix(&a,newMatrix((*aux).substr(start,end-start))); }else{ a=newMatrix(1,0,0,1,0,0); } aux++; } return a; } Matrix* Svg_parser::newMatrix(Matrix *a){ Matrix* data; data=(Matrix*)malloc(sizeof(Matrix)); data->a=a->a; data->b=a->b; data->c=a->c; data->d=a->d; data->e=a->e; data->f=a->f; return data; } Matrix* Svg_parser::newMatrix(float a,float b,float c,float d,float e,float f){ Matrix* data; data=(Matrix*)malloc(sizeof(Matrix)); data->a=a; data->b=b; data->c=c; data->d=d; data->e=e; data->f=f; return data; } Matrix* Svg_parser::newMatrix(const String mvector){ if(!mvector.empty()){ std::vector tokens=tokenize(mvector,","); if(tokens.size()!=6) return newMatrix(1,0,0,1,0,0); Matrix* data=(Matrix*)malloc(sizeof(Matrix)); data->a=atof(tokens.at(0).data()); data->b=atof(tokens.at(1).data()); data->c=atof(tokens.at(2).data()); data->d=atof(tokens.at(3).data()); data->e=atof(tokens.at(4).data()); data->f=atof(tokens.at(5).data()); return data; }else{ return newMatrix(1,0,0,1,0,0); } } void Svg_parser::transformPoint2D(Matrix *mtx,float *a,float *b){ float auxa,auxb; auxa=0; auxb=0; auxa= (*a)*(mtx->a) + (*b)*(mtx->c) + (mtx->e); auxb= (*a)*(mtx->b) + (*b)*(mtx->d) + (mtx->f); *a=auxa; *b=auxb; return; } void Svg_parser::composeMatrix(Matrix **mtx,Matrix* mtx1,Matrix* mtx2){ Matrix* aux=newMatrix(0,0,0,0,0,0); aux->a=(mtx1->a)*(mtx2->a)+(mtx1->c)*(mtx2->b); aux->b=(mtx1->b)*(mtx2->a)+(mtx1->d)*(mtx2->b); aux->c=(mtx1->a)*(mtx2->c)+(mtx1->c)*(mtx2->d); aux->d=(mtx1->b)*(mtx2->c)+(mtx1->d)*(mtx2->d); aux->e=(mtx1->a)*(mtx2->e)+(mtx1->c)*(mtx2->f)+(mtx1->e); aux->f=(mtx1->b)*(mtx2->e)+(mtx1->d)*(mtx2->f)+(mtx1->f); *mtx=aux; } void Svg_parser::multiplyMatrix(Matrix **mtx1,Matrix *mtx2){ Matrix* aux=newMatrix(0,0,0,0,0,0); aux->a=((*mtx1)->a)*(mtx2->a)+((*mtx1)->c)*(mtx2->b); aux->b=((*mtx1)->b)*(mtx2->a)+((*mtx1)->d)*(mtx2->b); aux->c=((*mtx1)->a)*(mtx2->c)+((*mtx1)->c)*(mtx2->d); aux->d=((*mtx1)->b)*(mtx2->c)+((*mtx1)->d)*(mtx2->d); aux->e=((*mtx1)->a)*(mtx2->e)+((*mtx1)->c)*(mtx2->f)+((*mtx1)->e); aux->f=((*mtx1)->b)*(mtx2->e)+((*mtx1)->d)*(mtx2->f)+((*mtx1)->f); (*mtx1)->a=aux->a; (*mtx1)->b=aux->b; (*mtx1)->c=aux->c; (*mtx1)->d=aux->d; (*mtx1)->e=aux->e; (*mtx1)->f=aux->f; } bool Svg_parser::matrixIsNull(Matrix *mtx){ if(mtx == NULL) return true; return false; } /* === EXTRA METHODS ======================================================= */ int Svg_parser::extractSubAttribute(const String attribute, String name,String* value){ int encounter=0; if(!attribute.empty()){ String str(attribute); removeS(&str); std::vector tokens=tokenize(str,";"); std::vector::iterator aux=tokens.begin(); while(aux!=tokens.end()){ int mid= (*aux).find_first_of(":"); if((*aux).substr(0,mid).compare(name)==0){ int end=(*aux).size(); *value=(*aux).substr(mid+1,end-mid); return 1; } aux++; } } return encounter; } String Svg_parser::loadAttribute(String name,const String path_style,const String master_style,const String defaultVal){ String value; int fnd=0; if(!path_style.empty()) fnd=extractSubAttribute(path_style,name,&value); if(fnd==0){ if(!master_style.empty()) fnd=extractSubAttribute(master_style,name,&value); if(fnd==0) value=defaultVal; } return value; } String Svg_parser::loadAttribute(String name,const String path_style,const String master_style,const String subattribute,const String defaultVal){ String value; int fnd=0; if(!path_style.empty()) fnd=extractSubAttribute(path_style,name,&value); if(fnd==0 && !master_style.empty()) fnd=extractSubAttribute(master_style,name,&value); if(fnd==0){ if(!subattribute.empty()) value=subattribute; else value=defaultVal; } return value; } std::vector Svg_parser::get_tokens_path(String path){ //mini path lexico-parser std::vector tokens; String buffer; int e=0; unsigned int i=0; char a; while(isize();i++){ if(input->at(i)==' '){ input->erase(i,1); } } } void Svg_parser::removeIntoS(String *input){ bool into=false; for(unsigned int i=0;isize();i++){ if(input->at(i)=='('){ into=true; }else if(input->at(i)==')'){ into=false; }else if(into && input->at(i)==' '){ input->erase(i,1); } } } std::vector Svg_parser::tokenize(const String& str,const String& delimiters){ std::vector tokens; String::size_type lastPos = str.find_first_not_of(delimiters, 0); String::size_type pos = str.find_first_of(delimiters, lastPos); while (String::npos != pos || String::npos != lastPos){ tokens.push_back(str.substr(lastPos, pos - lastPos)); lastPos = str.find_first_not_of(delimiters, pos); pos = str.find_first_of(delimiters, lastPos); } return tokens; } String Svg_parser::new_guid(){ uid++; return GUID::hasher(uid).get_string(); } #define COLOR_NAME(color, r, g, b) else if(name.compare(0,strlen(color),color)==0) \ {switch(position) \ {case 1: return r; case 2: return g; case 3: return b;} } int Svg_parser::getColor(String name, int position){ if (position<1 || position>3) return 0; COLOR_NAME("aliceblue",240, 248, 255) COLOR_NAME("antiquewhite",250, 235, 215) COLOR_NAME("aqua", 0, 255, 255) COLOR_NAME("aquamarine",127, 255, 212) COLOR_NAME("azure",240, 255, 255) COLOR_NAME("beige",245, 245, 220) COLOR_NAME("bisque",255, 228, 196) COLOR_NAME("black", 0, 0, 0) COLOR_NAME("blanchedalmond",255, 235, 205) COLOR_NAME("blue", 0, 0, 255) COLOR_NAME("blueviolet",138, 43, 226) COLOR_NAME("brown",165, 42, 42) COLOR_NAME("burlywood",222, 184, 135) COLOR_NAME("cadetblue", 95, 158, 160) COLOR_NAME("chartreuse",127, 255, 0) COLOR_NAME("chocolate",210, 105, 30) COLOR_NAME("coral",255, 127, 80) COLOR_NAME("cornflowerblue",100, 149, 237) COLOR_NAME("cornsilk",255, 248, 220) COLOR_NAME("crimson",220, 20, 60) COLOR_NAME("cyan", 0, 255, 255) COLOR_NAME("darkblue", 0, 0, 139) COLOR_NAME("darkcyan", 0, 139, 139) COLOR_NAME("darkgoldenrod",184, 134, 11) COLOR_NAME("darkgray",169, 169, 169) COLOR_NAME("darkgreen", 0, 100, 0) COLOR_NAME("darkgrey",169, 169, 169) COLOR_NAME("darkkhaki",189, 183, 107) COLOR_NAME("darkmagenta",139, 0, 139) COLOR_NAME("darkolivegreen", 85, 107, 47) COLOR_NAME("darkorange",255, 140, 0) COLOR_NAME("darkorchid",153, 50, 204) COLOR_NAME("darkred",139, 0, 0) COLOR_NAME("darksalmon",233, 150, 122) COLOR_NAME("darkseagreen",143, 188, 143) COLOR_NAME("darkslateblue", 72, 61, 139) COLOR_NAME("darkslategray", 47, 79, 79) COLOR_NAME("darkslategrey", 47, 79, 79) COLOR_NAME("darkturquoise", 0, 206, 209) COLOR_NAME("darkviolet",148, 0, 211) COLOR_NAME("deeppink",255, 20, 147) COLOR_NAME("deepskyblue", 0, 191, 255) COLOR_NAME("dimgray",105, 105, 105) COLOR_NAME("dimgrey",105, 105, 105) COLOR_NAME("dodgerblue", 30, 144, 255) COLOR_NAME("firebrick",178, 34, 34) COLOR_NAME("floralwhite",255, 250, 240) COLOR_NAME("forestgreen", 34, 139, 34) COLOR_NAME("fuchsia",255, 0, 255) COLOR_NAME("gainsboro",220, 220, 220) COLOR_NAME("ghostwhite",248, 248, 255) COLOR_NAME("gold",255, 215, 0) COLOR_NAME("goldenrod",218, 165, 32) COLOR_NAME("gray",128, 128, 128) COLOR_NAME("grey",128, 128, 128) COLOR_NAME("green", 0, 128, 0) COLOR_NAME("greenyellow",173, 255, 47) COLOR_NAME("honeydew",240, 255, 240) COLOR_NAME("hotpink",255, 105, 180) COLOR_NAME("indianred",205, 92, 92) COLOR_NAME("indigo", 75, 0, 130) COLOR_NAME("ivory",255, 255, 240) COLOR_NAME("khaki",240, 230, 140) COLOR_NAME("lavender",230, 230, 250) COLOR_NAME("lavenderblush",255, 240, 245) COLOR_NAME("lawngreen",124, 252, 0) COLOR_NAME("lemonchiffon",255, 250, 205) COLOR_NAME("lightblue",173, 216, 230) COLOR_NAME("lightcoral",240, 128, 128) COLOR_NAME("lightcyan",224, 255, 255) COLOR_NAME("lightgoldenrodyellow",250, 250, 210) COLOR_NAME("lightgray",211, 211, 211) COLOR_NAME("lightgreen",144, 238, 144) COLOR_NAME("lightgrey",211, 211, 211) COLOR_NAME("lightpink",255, 182, 193) COLOR_NAME("lightsalmon",255, 160, 122) COLOR_NAME("lightseagreen", 32, 178, 170) COLOR_NAME("lightskyblue",135, 206, 250) COLOR_NAME("lightslategray",119, 136, 153) COLOR_NAME("lightslategrey",119, 136, 153) COLOR_NAME("lightsteelblue",176, 196, 222) COLOR_NAME("lightyellow",255, 255, 224) COLOR_NAME("lime", 0, 255, 0) COLOR_NAME("limegreen", 50, 205, 50) COLOR_NAME("linen",250, 240, 230) COLOR_NAME("magenta",255, 0, 255) COLOR_NAME("maroon",128, 0, 0) COLOR_NAME("mediumaquamarine",102, 205, 170) COLOR_NAME("mediumblue", 0, 0, 205) COLOR_NAME("mediumorchid",186, 85, 211) COLOR_NAME("mediumpurple",147, 112, 219) COLOR_NAME("mediumseagreen", 60, 179, 113) COLOR_NAME("mediumslateblue",123, 104, 238) COLOR_NAME("mediumspringgreen", 0, 250, 154) COLOR_NAME("mediumturquoise", 72, 209, 204) COLOR_NAME("mediumvioletred",199, 21, 133) COLOR_NAME("midnightblue", 25, 25, 112) COLOR_NAME("mintcream",245, 255, 250) COLOR_NAME("mistyrose",255, 228, 225) COLOR_NAME("moccasin",255, 228, 181) COLOR_NAME("navajowhite",255, 222, 173) COLOR_NAME("navy", 0, 0, 128) COLOR_NAME("oldlace",253, 245, 230) COLOR_NAME("olive",128, 128, 0) COLOR_NAME("olivedrab",107, 142, 35) COLOR_NAME("orange",255, 165, 0) COLOR_NAME("orangered",255, 69, 0) COLOR_NAME("orchid",218, 112, 214) COLOR_NAME("palegoldenrod",238, 232, 170) COLOR_NAME("palegreen",152, 251, 152) COLOR_NAME("paleturquoise",175, 238, 238) COLOR_NAME("palevioletred",219, 112, 147) COLOR_NAME("papayawhip",255, 239, 213) COLOR_NAME("peachpuff",255, 218, 185) COLOR_NAME("peru",205, 133, 63) COLOR_NAME("pink",255, 192, 203) COLOR_NAME("plum",221, 160, 221) COLOR_NAME("powderblue",176, 224, 230) COLOR_NAME("purple",128, 0, 128) COLOR_NAME("red",255, 0, 0) COLOR_NAME("rosybrown",188, 143, 143) COLOR_NAME("royalblue", 65, 105, 225) COLOR_NAME("saddlebrown",139, 69, 19) COLOR_NAME("salmon",250, 128, 114) COLOR_NAME("sandybrown",244, 164, 96) COLOR_NAME("seagreen", 46, 139, 87) COLOR_NAME("seashell",255, 245, 238) COLOR_NAME("sienna",160, 82, 45) COLOR_NAME("silver",192, 192, 192) COLOR_NAME("skyblue",135, 206, 235) COLOR_NAME("slateblue",106, 90, 205) COLOR_NAME("slategray",112, 128, 144) COLOR_NAME("slategrey",112, 128, 144) COLOR_NAME("snow",255, 250, 250) COLOR_NAME("springgreen", 0, 255, 127) COLOR_NAME("steelblue", 70, 130, 180) COLOR_NAME("tan",210, 180, 140) COLOR_NAME("teal", 0, 128, 128) COLOR_NAME("thistle",216, 191, 216) COLOR_NAME("tomato",255, 99, 71) COLOR_NAME("turquoise", 64, 224, 208) COLOR_NAME("violet",238, 130, 238) COLOR_NAME("wheat",245, 222, 179) COLOR_NAME("white",255, 255, 255) COLOR_NAME("whitesmoke",245, 245, 245) COLOR_NAME("yellow",255, 255, 0) COLOR_NAME("yellowgreen",154, 205, 50) return 0; } #undef COLOR_NAME