SVGLoader.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 
18 #ifndef _GAZEBO_SVGLOADER_HH_
19 #define _GAZEBO_SVGLOADER_HH_
20 
21 #include <stdexcept>
22 #include <string>
23 #include <vector>
24 
25 #include <ignition/math/Vector2.hh>
26 #include <ignition/math/Matrix3.hh>
27 
28 #include <gazebo/common/Console.hh>
29 #include <gazebo/math/Vector2d.hh>
30 #include <gazebo/math/Matrix3.hh>
31 
32 class TiXmlElement;
33 class TiXmlNode;
34 
35 namespace gazebo
36 {
37  namespace common
38  {
39  class SVGLoaderPrivate;
40 
42  class GZ_COMMON_VISIBLE SvgError: public std::runtime_error
43  {
46  public: SvgError(const std::string &_what);
47  };
48 
51  {
53  public: SVGCommand() : cmd(' ') {}
54 
56  public: virtual ~SVGCommand() = default;
57 
59  public: char cmd;
60 
62  public: std::vector<double> numbers;
63  };
64 
67  {
69  std::string id;
70 
72  std::string style;
73 
75  std::string transform;
76 
78  std::vector< std::vector<SVGCommand> > subpaths;
79 
81  std::vector< std::vector<ignition::math::Vector2d> > polylines;
82  };
83 
86  {
89  public: SVGLoader(unsigned int _samples);
90 
92  public: ~SVGLoader();
93 
98  public: bool Parse(const std::string &_filename,
99  std::vector<SVGPath> &_paths);
100 
108  public: static void PathsToClosedPolylines(
109  const std::vector<common::SVGPath> &_paths,
110  double _tol,
111  std::vector< std::vector<math::Vector2d> > &_closedPolys,
112  std::vector< std::vector<math::Vector2d> > &_openPolys)
113  GAZEBO_DEPRECATED(6.0);
114 
120  public: static void PathsToClosedPolylines(
121  const std::vector<common::SVGPath> &_paths,
122  double _tol,
123  std::vector< std::vector<ignition::math::Vector2d> > &_closedPolys,
124  std::vector< std::vector<ignition::math::Vector2d> > &_openPolys);
125 
129  public: void DumpPaths(const std::vector<SVGPath> &_paths,
130  std::ostream &_out) const;
131 
135  private: void GetPathCommands(const std::vector<std::string> &_tokens,
136  SVGPath &_path);
137 
141  private: void GetPathAttribs(TiXmlElement *_pElement, SVGPath &_path);
142 
146  private: void GetSvgPaths(TiXmlNode *_pParent,
147  std::vector<SVGPath> &_paths);
148 
152  private: void ExpandCommands(
153  const std::vector< std::vector<SVGCommand> > &_subpaths,
154  SVGPath& _path);
155 
160  private: void SplitSubpaths(const std::vector<SVGCommand> &_cmds,
161  std::vector< std::vector<SVGCommand> > &_subpaths);
162 
167  private: void PathToPoints(const SVGPath &_path,
168  double _resolution,
169  std::vector< std::vector<ignition::math::Vector2d> > &_polys);
170 
176  private: ignition::math::Vector2d SubpathToPolyline(
177  const std::vector<SVGCommand> &_subpath,
178  ignition::math::Vector2d _last,
179  std::vector<ignition::math::Vector2d> &_polyline);
180 
183  private: SVGLoaderPrivate *dataPtr;
184  };
185  }
186 }
187 
188 #endif
SVG command data structure.
Definition: SVGLoader.hh:50
Handles errors during SVG parsing.
Definition: SVGLoader.hh:42
#define GAZEBO_DEPRECATED(version)
Definition: CommonTypes.hh:47
Definition: SVGLoaderPrivate.hh:33
#define GZ_COMMON_VISIBLE
Definition: system.hh:91
A loader for SVG files.
Definition: SVGLoader.hh:85
std::vector< std::vector< SVGCommand > > subpaths
A list of subpaths (as lists of commands)
Definition: SVGLoader.hh:78
SVGCommand()
Constructor.
Definition: SVGLoader.hh:53
std::vector< double > numbers
Coordinates for the command.
Definition: SVGLoader.hh:62
std::string transform
A 2D transform (or a list of transforms)
Definition: SVGLoader.hh:75
std::string style
The style (i.e. stroke style, color, thickness etc)
Definition: SVGLoader.hh:72
std::vector< std::vector< ignition::math::Vector2d > > polylines
The polylines described by the commands.
Definition: SVGLoader.hh:81
std::string id
An id or name.
Definition: SVGLoader.hh:69
char cmd
A letter that describe the segment.
Definition: SVGLoader.hh:59
An SVG path element data structure.
Definition: SVGLoader.hh:66