Two examples showing a bit more convenient way to implement named parameters.
6 #include<lemon/list_graph.h>
10 ///Simple graph drawer
14 ///Data structure representing RGB colors.
16 ///Data structure representing RGB colors.
22 ///Default constructor
25 Color(double r,double g,double b) :_r(r),_g(g),_b(b) {};
26 ///Returns the red component
27 double getR() {return _r;}
28 ///Returns the green component
29 double getG() {return _g;}
30 ///Returns the blue component
31 double getB() {return _b;}
32 ///Set the color components
33 void set(double r,double g,double b) { _r=r;_g=g;_b=b; };
36 ///Default traits class of \ref GraphToEps
38 ///Default traits class of \ref GraphToEps
40 ///\c G is the type of the underlying graph.
42 struct DefaultGraphToEpsTraits
45 typedef typename Graph::Node Node;
46 typedef typename Graph::NodeIt NodeIt;
47 typedef typename Graph::Edge Edge;
48 typedef typename Graph::EdgeIt EdgeIt;
49 typedef typename Graph::InEdgeIt InEdgeIt;
50 typedef typename Graph::OutEdgeIt OutEdgeIt;
57 ConstMap<typename Graph::Node,xy<double> > _coords;
58 ConstMap<typename Graph::Node,double > _nodeSizes;
60 ConstMap<typename Graph::Node,Color > _nodeColors;
61 ConstMap<typename Graph::Edge,Color > _edgeColors;
63 ConstMap<typename Graph::Edge,double > _edgeWidths;
65 double _edgeWidthScale;
68 double _xBorder, _yBorder;
70 double _nodeBorderQuotient;
73 double _arrowLength, _arrowWidth;
78 ///\param _g is a reference to the graph to be printed
79 ///\param _os is a reference to the output stream.
80 ///By default it is <tt>std::cout</tt>
81 DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout) :
83 _coords(xy<double>(1,1)), _nodeSizes(1.0),
84 _nodeColors(Color(1,1,1)), _edgeColors(Color(0,0,0)),
85 _edgeWidths(1), _edgeWidthScale(0.3),
86 _nodeScale(1.0), _xBorder(10), _yBorder(10), _scale(1.0),
87 _nodeBorderQuotient(.1),
88 _drawArrows(false), _arrowLength(1), _arrowWidth(0.3) {}
91 ///Helper class to implement the named parameters of \ref graphToEps()
93 ///Helper class to implement the named parameters of \ref graphToEps()
94 ///\todo Is 'helper class' a good name for this?
96 template<class T> class GraphToEps : public T
98 typedef typename T::Graph Graph;
99 typedef typename Graph::Node Node;
100 typedef typename Graph::NodeIt NodeIt;
101 typedef typename Graph::Edge Edge;
102 typedef typename Graph::EdgeIt EdgeIt;
103 typedef typename Graph::InEdgeIt InEdgeIt;
104 typedef typename Graph::OutEdgeIt OutEdgeIt;
109 GraphToEps(const T &t) : T(t), dontPrint(false) {};
111 template<class X> struct CoordsTraits : public T {
113 CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
115 ///Sets the map of the node coordinates
117 ///Sets the map of the node coordinates.
118 ///\param x must be a node map with xy<double> or xy<int> values.
119 template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
121 return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
123 template<class X> struct NodeSizesTraits : public T {
125 NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
127 ///Sets the map of the node sizes
129 ///Sets the map of the node sizes
130 ///\param x must be a node map with \c double (or convertible) values.
131 template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
134 return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
136 template<class X> struct EdgeWidthsTraits : public T {
137 const X &_edgeWidths;
138 EdgeWidthsTraits(const T &t,const X &x) : T(t), _edgeWidths(x) {}
140 ///Sets the map of the edge widths
142 ///Sets the map of the edge widths
143 ///\param x must be a edge map with \c double (or convertible) values.
144 template<class X> GraphToEps<EdgeWidthsTraits<X> > edgeWidths(const X &x)
147 return GraphToEps<EdgeWidthsTraits<X> >(EdgeWidthsTraits<X>(*this,x));
150 template<class X> struct NodeColorsTraits : public T {
151 const X &_nodeColors;
152 NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
154 ///Sets the map of the node colors
156 ///Sets the map of the node colors
157 ///\param x must be a node map with \ref Color values.
158 template<class X> GraphToEps<NodeColorsTraits<X> >
159 nodeColors(const X &x)
162 return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
164 template<class X> struct EdgeColorsTraits : public T {
165 const X &_edgeColors;
166 EdgeColorsTraits(const T &t,const X &x) : T(t), _edgeColors(x) {}
168 ///Sets the map of the edge colors
170 ///Sets the map of the edge colors
171 ///\param x must be a edge map with \ref Color values.
172 template<class X> GraphToEps<EdgeColorsTraits<X> >
173 edgeColors(const X &x)
176 return GraphToEps<EdgeColorsTraits<X> >(EdgeColorsTraits<X>(*this,x));
178 ///Sets a global scale factor for node sizes
180 ///Sets a global scale factor for node sizes
182 GraphToEps<T> &nodeScale(double d) {_nodeScale=d;return *this;}
183 ///Sets a global scale factor for edge widths
185 ///Sets a global scale factor for edge widths
187 GraphToEps<T> &edgeWidthScale(double d) {_edgeWidthScale=d;return *this;}
188 ///Sets a global scale factor for the whole picture
190 ///Sets a global scale factor for the whole picture
192 GraphToEps<T> &scale(double d) {_scale=d;return *this;}
193 ///Sets the width of the border around the picture
195 ///Sets the width of the border around the picture
197 GraphToEps<T> &border(double b) {_xBorder=_yBorder=b;return *this;}
198 ///Sets the width of the border around the picture
200 ///Sets the width of the border around the picture
202 GraphToEps<T> &border(double x, double y) {
203 _xBorder=x;_yBorder=y;return *this;
205 ///Sets whether to draw arrows
207 ///Sets whether to draw arrows
209 GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
210 ///Sets the length of the arrowheads
212 ///Sets the length of the arrowheads
214 GraphToEps<T> &arrowLength(double d) {_arrowLength*=d;return *this;}
215 ///Sets the width of the arrowheads
217 ///Sets the width of the arrowheads
219 GraphToEps<T> &arrowWidth(double d) {_arrowWidth*=d;return *this;}
223 if(dontPrint) return;
225 os << "%!PS-Adobe-2.0 EPSF-2.0\n";
226 //\todo: Chech whether the graph is empty.
227 BoundingBox<double> bb;
228 for(NodeIt n(g);n!=INVALID;++n) {
229 double ns=_nodeSizes[n]*_nodeScale;
234 os << "%%BoundingBox: "
235 << bb.left()* _scale-_xBorder << ' '
236 << bb.bottom()*_scale-_yBorder << ' '
237 << bb.right()* _scale+_xBorder << ' '
238 << bb.top()* _scale+_yBorder << '\n';
239 //x1 y1 x2 y2 cr cg cb w
240 os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def\n";
241 os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc } bind def\n";
243 os << "/n { setrgbcolor 2 index 2 index 2 index c fill\n"
244 << " 0 0 0 setrgbcolor dup "
245 << _nodeBorderQuotient << " mul setlinewidth "
246 << 1+_nodeBorderQuotient/2 << " div c stroke\n"
248 os << "/arrl " << _arrowLength << " def\n";
249 os << "/arrw " << _arrowWidth << " def\n";
251 os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
252 //len w dx_norm dy_norm x1 y1 cr cg cb
253 os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def\n"
254 << " /w exch def /len exch def\n"
255 // << " 0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
256 << " newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
257 << " len w sub arrl sub dx dy lrl\n"
258 << " arrw dy dx neg lrl\n"
259 << " dx arrl w add mul dy w 2 div arrw add mul sub\n"
260 << " dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
261 << " dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
262 << " dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
263 << " arrw dy dx neg lrl\n"
264 << " len w sub arrl sub neg dx dy lrl\n"
265 << " closepath fill } bind def\n";
267 if(_scale!=1.0) os << _scale << " dup scale\n";
268 os << "%Edges:\ngsave\n";
269 for(NodeIt n(g);n!=INVALID;++n)
270 for(OutEdgeIt e(g,n);e!=INVALID;++e)
272 xy<double> d(_coords[g.target(e)]-_coords[g.source(e)]);
273 double l=sqrt(d.normSquare());
275 xy<double> x1(d*_nodeScale*_nodeSizes[g.source(e)]+
276 _coords[g.source(e)]);
277 os << l-(_nodeSizes[g.source(e)]+
278 _nodeSizes[g.target(e)])*_nodeScale << ' '
279 << _edgeWidths[e]*_edgeWidthScale << ' '
280 << d.x << ' ' << d.y << ' '
281 << x1.x << ' ' << x1.y << ' '
282 << _edgeColors[e].getR() << ' '
283 << _edgeColors[e].getG() << ' '
284 << _edgeColors[e].getB() << " arr\n";
286 else os << _coords[g.source(e)].x << ' '
287 << _coords[g.source(e)].y << ' '
288 << _coords[g.target(e)].x << ' '
289 << _coords[g.target(e)].y << ' '
290 << _edgeColors[e].getR() << ' '
291 << _edgeColors[e].getG() << ' '
292 << _edgeColors[e].getB() << ' '
293 << _edgeWidths[e]*_edgeWidthScale << " l\n";
294 os << "grestore\n%Nodes:\ngsave\n";
295 for(NodeIt n(g);n!=INVALID;++n)
296 os << _coords[n].x << ' ' << _coords[n].y << ' '
297 << _nodeSizes[n]*_nodeScale << ' '
298 << _nodeColors[n].getR() << ' '
299 << _nodeColors[n].getG() << ' '
300 << _nodeColors[n].getB() << " n\n";
301 os << "grestore\ngrestore\n";
306 ///Generates an EPS file from a graph
309 ///Generates an EPS file from a graph.
310 ///\param g is a reference to the graph to be printed
311 ///\param os is a reference to the output stream.
312 ///By default it is <tt>std::cout</tt>
314 ///This function also has a lot of \ref named-templ-param "named parameters",
315 ///they are declared as the members of class \ref GraphToEps. The following
316 ///example shows how to use these parameters.
318 /// graphToEps(g).scale(10).coords(coords)
319 /// .nodeScale(2).nodeSizes(sizes)
320 /// .edgeWidthScale(.4);
324 GraphToEps<DefaultGraphToEpsTraits<G> > graphToEps(G &g,std::ostream& os=std::cout)
326 return GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g));
331 using namespace lemon;
333 class ColorSet : public MapBase<int,Color>
336 Color operator[](int i) const
339 case 0: return Color(0,0,0);
340 case 1: return Color(1,0,0);
341 case 2: return Color(0,1,0);
342 case 3: return Color(0,0,1);
343 case 4: return Color(1,1,0);
344 case 5: return Color(1,0,1);
345 case 6: return Color(0,1,1);
346 case 7: return Color(1,1,1);
355 typedef ListGraph::Node Node;
356 typedef ListGraph::NodeIt NodeIt;
357 typedef ListGraph::Edge Edge;
366 ListGraph::NodeMap<Xy> coords(g);
367 ListGraph::NodeMap<double> sizes(g);
368 ListGraph::NodeMap<int> colors(g);
369 ListGraph::EdgeMap<int> ecolors(g);
370 ListGraph::EdgeMap<int> widths(g);
372 coords[n1]=Xy(50,50); sizes[n1]=1; colors[n1]=1;
373 coords[n2]=Xy(50,70); sizes[n2]=2; colors[n2]=2;
374 coords[n3]=Xy(70,70); sizes[n3]=1; colors[n3]=3;
375 coords[n4]=Xy(70,50); sizes[n4]=2; colors[n4]=4;
376 coords[n5]=Xy(85,60); sizes[n5]=3; colors[n5]=5;
380 e=g.addEdge(n1,n2); ecolors[e]=0; widths[e]=1;
381 e=g.addEdge(n2,n3); ecolors[e]=0; widths[e]=1;
382 e=g.addEdge(n3,n5); ecolors[e]=0; widths[e]=3;
383 e=g.addEdge(n5,n4); ecolors[e]=0; widths[e]=1;
384 e=g.addEdge(n4,n1); ecolors[e]=0; widths[e]=1;
385 e=g.addEdge(n2,n4); ecolors[e]=1; widths[e]=2;
386 e=g.addEdge(n3,n4); ecolors[e]=2; widths[e]=1;
388 graphToEps(g).scale(10).coords(coords).
389 nodeScale(2).nodeSizes(sizes).
390 nodeColors(composeMap(colorSet,colors)).
391 edgeColors(composeMap(colorSet,ecolors)).
392 edgeWidthScale(.4).edgeWidths(widths).
393 drawArrows().arrowWidth(1).arrowLength(1)