2 * src/lemon/graph_to_eps.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
17 #ifndef LEMON_GRAPH_TO_EPS_H
18 #define LEMON_GRAPH_TO_EPS_H
30 #include<lemon/maps.h>
31 #include<lemon/bezier.h>
35 ///\brief Simple graph drawer
37 ///\author Alpar Juttner
41 ///Data structure representing RGB colors.
43 ///Data structure representing RGB colors.
49 ///Default constructor
52 Color(double r,double g,double b) :_r(r),_g(g),_b(b) {};
53 ///Returns the red component
55 ///\todo \c red() could be a better name...
56 double getR() const {return _r;}
57 ///Returns the green component
58 double getG() const {return _g;}
59 ///Returns the blue component
60 double getB() const {return _b;}
61 ///Set the color components
62 void set(double r,double g,double b) { _r=r;_g=g;_b=b; };
65 ///Maps <tt>int</tt>s to different \ref Color "Color"s
67 ///This map assing one of the predefined \ref Color "Color"s
68 ///to each <tt>int</tt>. It is possible to change the colors as well as their
69 ///number. The integer range is cyclically mapped to the provided set of colors.
71 ///This is a true \ref concept::ReferenceMap "reference map", so you can also
72 ///change the actual colors.
74 class ColorSet : public MapBase<int,Color>
76 std::vector<Color> colors;
81 ///\param have_white indicates wheter white is
82 ///amongst the provided color (\c true) or not (\c false). If it is true,
83 ///white will be assigned to \c 0.
84 ///\param num the number of the allocated colors. If it is \c 0
85 ///the default color configuration is set up (26 color plus the while).
86 ///If \c num is less then 26/27 then the default color list is cut. Otherwise
87 ///the color list is filled repeatedly with the default color list.
88 ColorSet(bool have_white=false,int num=0)
91 if(have_white) colors.push_back(Color(1,1,1));
93 colors.push_back(Color(0,0,0));
94 colors.push_back(Color(1,0,0));
95 colors.push_back(Color(0,1,0));
96 colors.push_back(Color(0,0,1));
97 colors.push_back(Color(1,1,0));
98 colors.push_back(Color(1,0,1));
99 colors.push_back(Color(0,1,1));
101 colors.push_back(Color(.5,0,0));
102 colors.push_back(Color(0,.5,0));
103 colors.push_back(Color(0,0,.5));
104 colors.push_back(Color(.5,.5,0));
105 colors.push_back(Color(.5,0,.5));
106 colors.push_back(Color(0,.5,.5));
108 colors.push_back(Color(.5,.5,.5));
109 colors.push_back(Color(1,.5,.5));
110 colors.push_back(Color(.5,1,.5));
111 colors.push_back(Color(.5,.5,1));
112 colors.push_back(Color(1,1,.5));
113 colors.push_back(Color(1,.5,1));
114 colors.push_back(Color(.5,1,1));
116 colors.push_back(Color(1,.5,0));
117 colors.push_back(Color(.5,1,0));
118 colors.push_back(Color(1,0,.5));
119 colors.push_back(Color(0,1,.5));
120 colors.push_back(Color(0,.5,1));
121 colors.push_back(Color(.5,0,1));
122 } while(int(colors.size())<num);
123 // colors.push_back(Color(1,1,1));
124 if(num>0) colors.resize(num);
127 Color &operator[](int i)
129 return colors[i%colors.size()];
132 const Color &operator[](int i) const
134 return colors[i%colors.size()];
137 void set(int i,const Color &c)
139 colors[i%colors.size()]=c;
141 ///Sets the number of the exiting colors.
142 void resize(int s) { colors.resize(s);}
143 ///Returns the munber of the existing colors.
144 std::size_t size() { return colors.size();}
147 ///Returns a visible distinct \ref Color
149 ///Returns a \ref Color which is as different from the given parameter
150 ///as it is possible.
151 inline Color distantColor(const Color &c)
153 return Color(c.getR()<.5?1:0,c.getG()<.5?1:0,c.getB()<.5?1:0);
155 ///Returns black for light colors and white for the dark ones.
157 ///Returns black for light colors and white for the dark ones.
158 ///\todo weighted average would be better
159 inline Color distantBW(const Color &c){
160 // double v=(c.getR()+c.getG()+c.getB())<1.5?1:0;
161 double v=(.2125*c.getR()+.7154*c.getG()+.0721*c.getB())<.5?1:0;
165 ///Default traits class of \ref GraphToEps
167 ///Default traits class of \ref GraphToEps
169 ///\c G is the type of the underlying graph.
171 struct DefaultGraphToEpsTraits
174 typedef typename Graph::Node Node;
175 typedef typename Graph::NodeIt NodeIt;
176 typedef typename Graph::Edge Edge;
177 typedef typename Graph::EdgeIt EdgeIt;
178 typedef typename Graph::InEdgeIt InEdgeIt;
179 typedef typename Graph::OutEdgeIt OutEdgeIt;
186 ConstMap<typename Graph::Node,xy<double> > _coords;
187 ConstMap<typename Graph::Node,double > _nodeSizes;
188 ConstMap<typename Graph::Node,int > _nodeShapes;
190 ConstMap<typename Graph::Node,Color > _nodeColors;
191 ConstMap<typename Graph::Edge,Color > _edgeColors;
193 ConstMap<typename Graph::Edge,double > _edgeWidths;
195 static const double A4HEIGHT = 841.8897637795276;
196 static const double A4WIDTH = 595.275590551181;
197 static const double A4BORDER = 15;
200 double _edgeWidthScale;
203 double _xBorder, _yBorder;
205 double _nodeBorderQuotient;
208 double _arrowLength, _arrowWidth;
210 bool _showNodes, _showEdges;
212 bool _enableParallel;
216 ConstMap<typename Graph::Node,bool > _nodeTexts;
217 double _nodeTextSize;
219 bool _showNodePsText;
220 ConstMap<typename Graph::Node,bool > _nodePsTexts;
221 char *_nodePsTextsPreamble;
224 bool _pleaseRemoveOsStream;
229 std::string _copyright;
231 enum NodeTextColorType
232 { DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
233 ConstMap<typename Graph::Node,Color > _nodeTextColors;
238 ///\param _g is a reference to the graph to be printed
239 ///\param _os is a reference to the output stream.
240 ///\param _os is a reference to the output stream.
241 ///\param _pros If it is \c true, then the \c ostream referenced by \c _os
242 ///will be explicitly deallocated by the destructor.
243 ///By default it is <tt>std::cout</tt>
244 DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout,
247 _coords(xy<double>(1,1)), _nodeSizes(1.0), _nodeShapes(0),
248 _nodeColors(Color(1,1,1)), _edgeColors(Color(0,0,0)),
249 _edgeWidths(1), _edgeWidthScale(0.3),
250 _nodeScale(1.0), _xBorder(10), _yBorder(10), _scale(1.0),
251 _nodeBorderQuotient(.1),
252 _drawArrows(false), _arrowLength(1), _arrowWidth(0.3),
253 _showNodes(true), _showEdges(true),
254 _enableParallel(false), _parEdgeDist(1),
255 _showNodeText(false), _nodeTexts(false), _nodeTextSize(1),
256 _showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0),
258 _pleaseRemoveOsStream(_pros), _scaleToA4(false),
259 _nodeTextColorType(SAME_COL), _nodeTextColors(Color(0,0,0))
263 ///Helper class to implement the named parameters of \ref graphToEps()
265 ///Helper class to implement the named parameters of \ref graphToEps()
266 ///\todo Is 'helper class' a good name for this?
268 ///\todo Follow PostScript's DSC.
269 /// Use own dictionary.
270 ///\todo Useful new features.
271 /// - Linestyles: dotted, dashed etc.
272 /// - A second color and percent value for the lines.
273 template<class T> class GraphToEps : public T
275 typedef typename T::Graph Graph;
276 typedef typename Graph::Node Node;
277 typedef typename Graph::NodeIt NodeIt;
278 typedef typename Graph::Edge Edge;
279 typedef typename Graph::EdgeIt EdgeIt;
280 typedef typename Graph::InEdgeIt InEdgeIt;
281 typedef typename Graph::OutEdgeIt OutEdgeIt;
283 static const int INTERPOL_PREC=20;
294 ///\image html nodeshape_0.png
295 ///\image latex nodeshape_0.eps "CIRCLE shape (0)" width=2cm
298 ///\image html nodeshape_1.png
299 ///\image latex nodeshape_1.eps "SQUARE shape (1)" width=2cm
303 ///\image html nodeshape_2.png
304 ///\image latex nodeshape_2.eps "DIAMOND shape (2)" width=2cm
313 edgeLess(const Graph &_g) : g(_g) {}
314 bool operator()(Edge a,Edge b) const
316 Node ai=min(g.source(a),g.target(a));
317 Node aa=max(g.source(a),g.target(a));
318 Node bi=min(g.source(b),g.target(b));
319 Node ba=max(g.source(b),g.target(b));
321 (ai==bi && (aa < ba ||
322 (aa==ba && ai==g.source(a) && bi==g.target(b))));
325 bool isParallel(Edge e,Edge f) const
327 return (g.source(e)==g.source(f)&&g.target(e)==g.target(f))||
328 (g.source(e)==g.target(f)&&g.target(e)==g.source(f));
330 static xy<double> rot(xy<double> v)
332 return xy<double>(v.y,-v.x);
335 static std::string psOut(const xy<TT> &p)
337 std::ostringstream os;
338 os << p.x << ' ' << p.y;
341 static std::string psOut(const Color &c)
343 std::ostringstream os;
344 os << c.getR() << ' ' << c.getG() << ' ' << c.getB();
349 GraphToEps(const T &t) : T(t), dontPrint(false) {};
351 template<class X> struct CoordsTraits : public T {
353 CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
355 ///Sets the map of the node coordinates
357 ///Sets the map of the node coordinates.
358 ///\param x must be a node map with xy<double> or \ref xy "xy<int>" values.
359 template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
361 return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
363 template<class X> struct NodeSizesTraits : public T {
365 NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
367 ///Sets the map of the node sizes
369 ///Sets the map of the node sizes
370 ///\param x must be a node map with \c double (or convertible) values.
371 template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
374 return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
376 template<class X> struct NodeShapesTraits : public T {
377 const X &_nodeShapes;
378 NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
380 ///Sets the map of the node shapes
382 ///Sets the map of the node shapes.
383 ///The availabe shape values
384 ///can be found in \ref NodeShapes "enum NodeShapes".
385 ///\param x must be a node map with \c int (or convertible) values.
387 template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x)
390 return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x));
392 template<class X> struct NodeTextsTraits : public T {
394 NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
396 ///Sets the text printed on the nodes
398 ///Sets the text printed on the nodes
399 ///\param x must be a node map with type that can be pushed to a standard
401 template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x)
405 return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x));
407 template<class X> struct NodePsTextsTraits : public T {
408 const X &_nodePsTexts;
409 NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
411 ///Inserts a PostScript block to the nodes
413 ///With this command it is possible to insert a verbatim PostScript
414 ///block to the nodes.
415 ///The PS current point will be moved to the centre of the node before
416 ///the PostScript block inserted.
418 ///Before and after the block a newline character is inserted to you
419 ///don't have to bother with the separators.
421 ///\param x must be a node map with type that can be pushed to a standard
424 ///\sa nodePsTextsPreamble()
425 ///\todo Offer the choise not to move to the centre but pass the coordinates
426 ///to the Postscript block inserted.
427 template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x)
430 _showNodePsText=true;
431 return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x));
433 template<class X> struct EdgeWidthsTraits : public T {
434 const X &_edgeWidths;
435 EdgeWidthsTraits(const T &t,const X &x) : T(t), _edgeWidths(x) {}
437 ///Sets the map of the edge widths
439 ///Sets the map of the edge widths
440 ///\param x must be a edge map with \c double (or convertible) values.
441 template<class X> GraphToEps<EdgeWidthsTraits<X> > edgeWidths(const X &x)
444 return GraphToEps<EdgeWidthsTraits<X> >(EdgeWidthsTraits<X>(*this,x));
447 template<class X> struct NodeColorsTraits : public T {
448 const X &_nodeColors;
449 NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
451 ///Sets the map of the node colors
453 ///Sets the map of the node colors
454 ///\param x must be a node map with \ref Color values.
455 template<class X> GraphToEps<NodeColorsTraits<X> >
456 nodeColors(const X &x)
459 return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
461 template<class X> struct NodeTextColorsTraits : public T {
462 const X &_nodeTextColors;
463 NodeTextColorsTraits(const T &t,const X &x) : T(t), _nodeTextColors(x) {}
465 ///Sets the map of the node text colors
467 ///Sets the map of the node text colors
468 ///\param x must be a node map with \ref Color values.
469 template<class X> GraphToEps<NodeTextColorsTraits<X> >
470 nodeTextColors(const X &x)
473 _nodeTextColorType=CUST_COL;
474 return GraphToEps<NodeTextColorsTraits<X> >
475 (NodeTextColorsTraits<X>(*this,x));
477 template<class X> struct EdgeColorsTraits : public T {
478 const X &_edgeColors;
479 EdgeColorsTraits(const T &t,const X &x) : T(t), _edgeColors(x) {}
481 ///Sets the map of the edge colors
483 ///Sets the map of the edge colors
484 ///\param x must be a edge map with \ref Color values.
485 template<class X> GraphToEps<EdgeColorsTraits<X> >
486 edgeColors(const X &x)
489 return GraphToEps<EdgeColorsTraits<X> >(EdgeColorsTraits<X>(*this,x));
491 ///Sets a global scale factor for node sizes
493 ///Sets a global scale factor for node sizes
495 GraphToEps<T> &nodeScale(double d) {_nodeScale=d;return *this;}
496 ///Sets a global scale factor for edge widths
498 ///Sets a global scale factor for edge widths
500 GraphToEps<T> &edgeWidthScale(double d) {_edgeWidthScale=d;return *this;}
501 ///Sets a global scale factor for the whole picture
503 ///Sets a global scale factor for the whole picture
505 GraphToEps<T> &scale(double d) {_scale=d;return *this;}
506 ///Sets the width of the border around the picture
508 ///Sets the width of the border around the picture
510 GraphToEps<T> &border(double b) {_xBorder=_yBorder=b;return *this;}
511 ///Sets the width of the border around the picture
513 ///Sets the width of the border around the picture
515 GraphToEps<T> &border(double x, double y) {
516 _xBorder=x;_yBorder=y;return *this;
518 ///Sets whether to draw arrows
520 ///Sets whether to draw arrows
522 GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
523 ///Sets the length of the arrowheads
525 ///Sets the length of the arrowheads
527 GraphToEps<T> &arrowLength(double d) {_arrowLength*=d;return *this;}
528 ///Sets the width of the arrowheads
530 ///Sets the width of the arrowheads
532 GraphToEps<T> &arrowWidth(double d) {_arrowWidth*=d;return *this;}
534 ///Scales the drawing to fit to A4 page
536 ///Scales the drawing to fit to A4 page
538 GraphToEps<T> &scaleToA4() {_scaleToA4=true;return *this;}
540 ///Enables parallel edges
542 ///Enables parallel edges
543 ///\todo Partially implemented
544 GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
550 GraphToEps<T> &parEdgeDist(double d) {_parEdgeDist*=d;return *this;}
556 GraphToEps<T> &hideEdges(bool b=true) {_showEdges=!b;return *this;}
561 GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
563 ///Sets the size of the node texts
565 ///Sets the size of the node texts
567 GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
569 ///Sets the color of the node texts to be different from the node color
571 ///Sets the color of the node texts to be as different from the node color
574 GraphToEps<T> &distantColorNodeTexts()
575 {_nodeTextColorType=DIST_COL;return *this;}
576 ///Sets the color of the node texts to be black or white and always visible.
578 ///Sets the color of the node texts to be black or white according to
580 ///different from the node color
582 GraphToEps<T> &distantBWNodeTexts()
583 {_nodeTextColorType=DIST_BW;return *this;}
585 ///Gives a preamble block for node Postscript block.
587 ///Gives a preamble block for node Postscript block.
590 GraphToEps<T> & nodePsTextsPreamble(const char *str) {
591 _nodePsTextsPreamble=s ;return *this;
593 ///Sets whether the the graph is undirected
595 ///Sets whether the the graph is undirected
597 GraphToEps<T> &undir(bool b=true) {_undir=b;return *this;}
598 ///Sets whether the the graph is directed
600 ///Sets whether the the graph is directed.
601 ///Use it to show the undirected edges as a pair of directed ones.
602 GraphToEps<T> &bidir(bool b=true) {_undir=!b;return *this;}
606 ///Sets the title of the generated image,
607 ///namely it inserts a <tt>%%Title:</tt> DSC field to the header of
609 GraphToEps<T> &title(const std::string &t) {_title=t;return *this;}
610 ///Sets the copyright statement.
612 ///Sets the copyright statement of the generated image,
613 ///namely it inserts a <tt>%%Copyright:</tt> DSC field to the header of
615 ///\todo Multiline copyright notice could be supported.
616 GraphToEps<T> ©right(const std::string &t) {_copyright=t;return *this;}
619 bool isInsideNode(xy<double> p, double r,int t)
623 return p.normSquare()<=r*r;
625 return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r;
627 return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r;
637 ///Like other functions using
638 ///\ref named-templ-func-param "named template parameters",
639 ///this function calles the algorithm itself, i.e. in this case
640 ///it draws the graph.
642 if(dontPrint) return;
644 os << "%!PS-Adobe-2.0 EPSF-2.0\n";
645 if(_title.size()>0) os << "%%Title: " << _title << '\n';
646 if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n';
647 // << "%%Copyright: XXXX\n"
648 os << "%%Creator: LEMON GraphToEps function\n";
653 gettimeofday(&tv, 0);
654 ctime_r(&tv.tv_sec,cbuf);
655 os << "%%CreationDate: " << cbuf;
657 ///\todo: Chech whether the graph is empty.
658 BoundingBox<double> bb;
659 for(NodeIt n(g);n!=INVALID;++n) {
660 double ns=_nodeSizes[n]*_nodeScale;
666 os <<"%%BoundingBox: 0 0 596 842\n%%DocumentPaperSizes: a4\n";
667 else os << "%%BoundingBox: "
668 << bb.left()* _scale-_xBorder << ' '
669 << bb.bottom()*_scale-_yBorder << ' '
670 << bb.right()* _scale+_xBorder << ' '
671 << bb.top()* _scale+_yBorder << '\n';
673 os << "%%EndComments\n";
675 //x1 y1 x2 y2 x3 y3 cr cg cb w
676 os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
677 << " 4 2 roll 1 index 1 index curveto stroke } bind def\n";
678 os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def\n";
680 os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def\n";
682 os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
683 << " 2 index 1 index sub 2 index 2 index add lineto\n"
684 << " 2 index 1 index sub 2 index 2 index sub lineto\n"
685 << " 2 index 1 index add 2 index 2 index sub lineto\n"
686 << " closepath pop pop pop} bind def\n";
688 os << "/di { newpath 2 index 1 index add 2 index moveto\n"
689 << " 2 index 2 index 2 index add lineto\n"
690 << " 2 index 1 index sub 2 index lineto\n"
691 << " 2 index 2 index 2 index sub lineto\n"
692 << " closepath pop pop pop} bind def\n";
694 os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
695 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
697 os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
698 << " setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n"
700 os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
701 << " setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n"
703 os << "/arrl " << _arrowLength << " def\n";
704 os << "/arrw " << _arrowWidth << " def\n";
706 os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
707 //len w dx_norm dy_norm x1 y1 cr cg cb
708 os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def\n"
709 << " /w exch def /len exch def\n"
710 // << " 0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
711 << " newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
712 << " len w sub arrl sub dx dy lrl\n"
713 << " arrw dy dx neg lrl\n"
714 << " dx arrl w add mul dy w 2 div arrw add mul sub\n"
715 << " dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
716 << " dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
717 << " dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
718 << " arrw dy dx neg lrl\n"
719 << " len w sub arrl sub neg dx dy lrl\n"
720 << " closepath fill } bind def\n";
721 os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
722 << " neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n";
726 if(bb.height()>bb.width()) {
727 double sc= min((A4HEIGHT-2*A4BORDER)/bb.height(),
728 (A4WIDTH-2*A4BORDER)/bb.width());
729 os << ((A4WIDTH -2*A4BORDER)-sc*bb.width())/2 + A4BORDER << ' '
730 << ((A4HEIGHT-2*A4BORDER)-sc*bb.height())/2 + A4BORDER << " translate\n"
731 << sc << " dup scale\n"
732 << -bb.left() << ' ' << -bb.bottom() << " translate\n";
735 //\todo Verify centering
736 double sc= min((A4HEIGHT-2*A4BORDER)/bb.width(),
737 (A4WIDTH-2*A4BORDER)/bb.height());
738 os << ((A4WIDTH -2*A4BORDER)-sc*bb.height())/2 + A4BORDER << ' '
739 << ((A4HEIGHT-2*A4BORDER)-sc*bb.width())/2 + A4BORDER << " translate\n"
740 << sc << " dup scale\n90 rotate\n"
741 << -bb.left() << ' ' << -bb.top() << " translate\n";
743 else if(_scale!=1.0) os << _scale << " dup scale\n";
746 os << "%Edges:\ngsave\n";
747 if(_enableParallel) {
748 std::vector<Edge> el;
749 for(EdgeIt e(g);e!=INVALID;++e)
750 if((!_undir||g.source(e)<g.target(e))&&_edgeWidths[e]>0)
752 sort(el.begin(),el.end(),edgeLess(g));
754 typename std::vector<Edge>::iterator j;
755 for(typename std::vector<Edge>::iterator i=el.begin();i!=el.end();i=j) {
756 for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ;
759 for(typename std::vector<Edge>::iterator e=i;e!=j;++e)
760 sw+=_edgeWidths[*e]*_edgeWidthScale+_parEdgeDist;
763 xy<double> dvec(_coords[g.target(*i)]-_coords[g.source(*i)]);
764 double l=sqrt(dvec.normSquare());
765 xy<double> d(dvec/l);
767 // m=xy<double>(_coords[g.target(*i)]+_coords[g.source(*i)])/2.0;
769 // m=xy<double>(_coords[g.source(*i)])+
770 // dvec*(double(_nodeSizes[g.source(*i)])/
771 // (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)]));
773 m=xy<double>(_coords[g.source(*i)])+
774 d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0;
776 for(typename std::vector<Edge>::iterator e=i;e!=j;++e) {
777 sw+=_edgeWidths[*e]*_edgeWidthScale/2.0;
778 xy<double> mm=m+rot(d)*sw/.75;
781 xy<double> s=_coords[g.source(*e)];
782 xy<double> t=_coords[g.target(*e)];
783 double rn=_nodeSizes[g.target(*e)]*_nodeScale;
784 node_shape=_nodeShapes[g.target(*e)];
785 Bezier3 bez(s,mm,mm,t);
787 for(int i=0;i<INTERPOL_PREC;++i)
788 if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2;
790 xy<double> apoint=bez((t1+t2)/2);
791 rn = _arrowLength+_edgeWidths[*e]*_edgeWidthScale;
794 for(int i=0;i<INTERPOL_PREC;++i)
795 if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2;
797 xy<double> linend=bez((t1+t2)/2);
798 bez=bez.before((t1+t2)/2);
799 // rn=_nodeSizes[g.source(*e)]*_nodeScale;
800 // node_shape=_nodeShapes[g.source(*e)];
802 // for(int i=0;i<INTERPOL_PREC;++i)
803 // if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t1=(t1+t2)/2;
804 // else t2=(t1+t2)/2;
805 // bez=bez.after((t1+t2)/2);
806 os << _edgeWidths[*e]*_edgeWidthScale << " setlinewidth "
807 << _edgeColors[*e].getR() << ' '
808 << _edgeColors[*e].getG() << ' '
809 << _edgeColors[*e].getB() << " setrgbcolor newpath\n"
810 << bez.p1.x << ' ' << bez.p1.y << " moveto\n"
811 << bez.p2.x << ' ' << bez.p2.y << ' '
812 << bez.p3.x << ' ' << bez.p3.y << ' '
813 << bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n";
814 xy<double> dd(rot(linend-apoint));
815 dd*=(.5*_edgeWidths[*e]*_edgeWidthScale+_arrowWidth)/
816 sqrt(dd.normSquare());
817 os << "newpath " << psOut(apoint) << " moveto "
818 << psOut(linend+dd) << " lineto "
819 << psOut(linend-dd) << " lineto closepath fill\n";
822 os << _coords[g.source(*e)].x << ' '
823 << _coords[g.source(*e)].y << ' '
824 << mm.x << ' ' << mm.y << ' '
825 << _coords[g.target(*e)].x << ' '
826 << _coords[g.target(*e)].y << ' '
827 << _edgeColors[*e].getR() << ' '
828 << _edgeColors[*e].getG() << ' '
829 << _edgeColors[*e].getB() << ' '
830 << _edgeWidths[*e]*_edgeWidthScale << " lb\n";
832 sw+=_edgeWidths[*e]*_edgeWidthScale/2.0+_parEdgeDist;
836 else for(EdgeIt e(g);e!=INVALID;++e)
837 if((!_undir||g.source(e)<g.target(e))&&_edgeWidths[e]>0)
839 xy<double> d(_coords[g.target(e)]-_coords[g.source(e)]);
840 double rn=_nodeSizes[g.target(e)]*_nodeScale;
841 int node_shape=_nodeShapes[g.target(e)];
843 for(int i=0;i<INTERPOL_PREC;++i)
844 if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2;
846 double l=sqrt(d.normSquare());
849 os << l*(1-(t1+t2)/2) << ' '
850 << _edgeWidths[e]*_edgeWidthScale << ' '
851 << d.x << ' ' << d.y << ' '
852 << _coords[g.source(e)].x << ' '
853 << _coords[g.source(e)].y << ' '
854 << _edgeColors[e].getR() << ' '
855 << _edgeColors[e].getG() << ' '
856 << _edgeColors[e].getB() << " arr\n";
858 else os << _coords[g.source(e)].x << ' '
859 << _coords[g.source(e)].y << ' '
860 << _coords[g.target(e)].x << ' '
861 << _coords[g.target(e)].y << ' '
862 << _edgeColors[e].getR() << ' '
863 << _edgeColors[e].getG() << ' '
864 << _edgeColors[e].getB() << ' '
865 << _edgeWidths[e]*_edgeWidthScale << " l\n";
869 os << "%Nodes:\ngsave\n";
870 for(NodeIt n(g);n!=INVALID;++n) {
871 os << _coords[n].x << ' ' << _coords[n].y << ' '
872 << _nodeSizes[n]*_nodeScale << ' '
873 << _nodeColors[n].getR() << ' '
874 << _nodeColors[n].getG() << ' '
875 << _nodeColors[n].getB() << ' ';
876 switch(_nodeShapes[n]) {
889 os << "%Node texts:\ngsave\n";
890 os << "/fosi " << _nodeTextSize << " def\n";
891 os << "(Helvetica) findfont fosi scalefont setfont\n";
892 for(NodeIt n(g);n!=INVALID;++n) {
893 switch(_nodeTextColorType) {
895 os << psOut(distantColor(_nodeColors[n])) << " setrgbcolor\n";
898 os << psOut(distantBW(_nodeColors[n])) << " setrgbcolor\n";
901 os << psOut(distantColor(_nodeTextColors[n])) << " setrgbcolor\n";
904 os << "0 0 0 setrgbcolor\n";
906 os << _coords[n].x << ' ' << _coords[n].y
907 << " (" << _nodeTexts[n] << ") cshow\n";
911 if(_showNodePsText) {
912 os << "%Node PS blocks:\ngsave\n";
913 for(NodeIt n(g);n!=INVALID;++n)
914 os << _coords[n].x << ' ' << _coords[n].y
915 << " moveto\n" << _nodePsTexts[n] << "\n";
919 os << "grestore\nshowpage\n";
922 if(_pleaseRemoveOsStream) {delete &os;}
927 ///Generates an EPS file from a graph
930 ///Generates an EPS file from a graph.
931 ///\param g is a reference to the graph to be printed
932 ///\param os is a reference to the output stream.
933 ///By default it is <tt>std::cout</tt>
935 ///This function also has a lot of
936 ///\ref named-templ-func-param "named parameters",
937 ///they are declared as the members of class \ref GraphToEps. The following
938 ///example shows how to use these parameters.
940 /// graphToEps(g,os).scale(10).coords(coords)
941 /// .nodeScale(2).nodeSizes(sizes)
942 /// .edgeWidthScale(.4).run();
944 ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
945 ///to the end of the parameter list.
947 ///\sa graphToEps(G &g, char *file_name)
949 GraphToEps<DefaultGraphToEpsTraits<G> >
950 graphToEps(G &g, std::ostream& os=std::cout)
953 GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g,os));
956 ///Generates an EPS file from a graph
959 ///This function does the same as
960 ///\ref graphToEps(G &g,std::ostream& os)
961 ///but it writes its output into the file \c file_name
962 ///instead of a stream.
963 ///\sa graphToEps(G &g, std::ostream& os)
965 GraphToEps<DefaultGraphToEpsTraits<G> >
966 graphToEps(G &g,const char *file_name)
968 return GraphToEps<DefaultGraphToEpsTraits<G> >
969 (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name),true));
972 } //END OF NAMESPACE LEMON
974 #endif // LEMON_GRAPH_TO_EPS_H