3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #ifndef LEMON_GRAPH_TO_EPS_H
20 #define LEMON_GRAPH_TO_EPS_H
25 #include <lemon/bits/mingw32_time.h>
36 #include<lemon/math.h>
37 #include<lemon/bits/invalid.h>
38 #include<lemon/dim2.h>
39 #include<lemon/maps.h>
40 #include<lemon/color.h>
41 #include<lemon/bits/bezier.h>
46 ///\brief Simple graph drawer
48 ///\author Alpar Juttner
55 typedef typename MT::Key Key;
56 typedef typename MT::Value Value;
59 _NegY(const MT &m,bool b) : map(m), yscale(1-b*2) {}
60 Value operator[](Key n) { return Value(map[n].x,map[n].y*yscale);}
63 ///Default traits class of \ref GraphToEps
65 ///Default traits class of \ref GraphToEps
67 ///\c G is the type of the underlying graph.
69 struct DefaultGraphToEpsTraits
72 typedef typename Graph::Node Node;
73 typedef typename Graph::NodeIt NodeIt;
74 typedef typename Graph::Edge Edge;
75 typedef typename Graph::EdgeIt EdgeIt;
76 typedef typename Graph::InEdgeIt InEdgeIt;
77 typedef typename Graph::OutEdgeIt OutEdgeIt;
84 typedef ConstMap<typename Graph::Node,dim2::Point<double> > CoordsMapType;
85 CoordsMapType _coords;
86 ConstMap<typename Graph::Node,double > _nodeSizes;
87 ConstMap<typename Graph::Node,int > _nodeShapes;
89 ConstMap<typename Graph::Node,Color > _nodeColors;
90 ConstMap<typename Graph::Edge,Color > _edgeColors;
92 ConstMap<typename Graph::Edge,double > _edgeWidths;
94 double _edgeWidthScale;
97 double _xBorder, _yBorder;
99 double _nodeBorderQuotient;
102 double _arrowLength, _arrowWidth;
104 bool _showNodes, _showEdges;
106 bool _enableParallel;
110 ConstMap<typename Graph::Node,bool > _nodeTexts;
111 double _nodeTextSize;
113 bool _showNodePsText;
114 ConstMap<typename Graph::Node,bool > _nodePsTexts;
115 char *_nodePsTextsPreamble;
119 bool _pleaseRemoveOsStream;
124 std::string _copyright;
126 enum NodeTextColorType
127 { DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
128 ConstMap<typename Graph::Node,Color > _nodeTextColors;
131 bool _autoEdgeWidthScale;
133 bool _absoluteNodeSizes;
134 bool _absoluteEdgeWidths;
142 ///\param _g is a reference to the graph to be printed
143 ///\param _os is a reference to the output stream.
144 ///\param _os is a reference to the output stream.
145 ///\param _pros If it is \c true, then the \c ostream referenced by \c _os
146 ///will be explicitly deallocated by the destructor.
147 ///By default it is <tt>std::cout</tt>
148 DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout,
151 _coords(dim2::Point<double>(1,1)), _nodeSizes(.01), _nodeShapes(0),
152 _nodeColors(WHITE), _edgeColors(BLACK),
153 _edgeWidths(1.0), _edgeWidthScale(0.003),
154 _nodeScale(1.0), _xBorder(10), _yBorder(10), _scale(1.0),
155 _nodeBorderQuotient(.1),
156 _drawArrows(false), _arrowLength(1), _arrowWidth(0.3),
157 _showNodes(true), _showEdges(true),
158 _enableParallel(false), _parEdgeDist(1),
159 _showNodeText(false), _nodeTexts(false), _nodeTextSize(1),
160 _showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0),
162 _pleaseRemoveOsStream(_pros), _scaleToA4(false),
163 _nodeTextColorType(SAME_COL), _nodeTextColors(BLACK),
164 _autoNodeScale(false),
165 _autoEdgeWidthScale(false),
166 _absoluteNodeSizes(false),
167 _absoluteEdgeWidths(false),
173 ///Helper class to implement the named parameters of \ref graphToEps()
175 ///Helper class to implement the named parameters of \ref graphToEps()
176 ///\todo Is 'helper class' a good name for this?
178 ///\todo Follow PostScript's DSC.
179 /// Use own dictionary.
180 ///\todo Useful new features.
181 /// - Linestyles: dotted, dashed etc.
182 /// - A second color and percent value for the lines.
183 template<class T> class GraphToEps : public T
185 // Can't believe it is required by the C++ standard
191 using T::_nodeShapes;
192 using T::_nodeColors;
193 using T::_edgeColors;
194 using T::_edgeWidths;
196 using T::_edgeWidthScale;
201 using T::_nodeBorderQuotient;
203 using T::_drawArrows;
204 using T::_arrowLength;
205 using T::_arrowWidth;
210 using T::_enableParallel;
211 using T::_parEdgeDist;
213 using T::_showNodeText;
215 using T::_nodeTextSize;
217 using T::_showNodePsText;
218 using T::_nodePsTexts;
219 using T::_nodePsTextsPreamble;
221 using T::_undirected;
223 using T::_pleaseRemoveOsStream;
230 using T::NodeTextColorType;
234 using T::_nodeTextColorType;
235 using T::_nodeTextColors;
237 using T::_autoNodeScale;
238 using T::_autoEdgeWidthScale;
240 using T::_absoluteNodeSizes;
241 using T::_absoluteEdgeWidths;
247 // dradnats ++C eht yb deriuqer si ti eveileb t'naC
249 typedef typename T::Graph Graph;
250 typedef typename Graph::Node Node;
251 typedef typename Graph::NodeIt NodeIt;
252 typedef typename Graph::Edge Edge;
253 typedef typename Graph::EdgeIt EdgeIt;
254 typedef typename Graph::InEdgeIt InEdgeIt;
255 typedef typename Graph::OutEdgeIt OutEdgeIt;
257 static const int INTERPOL_PREC;
258 static const double A4HEIGHT;
259 static const double A4WIDTH;
260 static const double A4BORDER;
271 ///\image html nodeshape_0.png
272 ///\image latex nodeshape_0.eps "CIRCLE shape (0)" width=2cm
275 ///\image html nodeshape_1.png
276 ///\image latex nodeshape_1.eps "SQUARE shape (1)" width=2cm
280 ///\image html nodeshape_2.png
281 ///\image latex nodeshape_2.eps "DIAMOND shape (2)" width=2cm
285 ///\image html nodeshape_3.png
286 ///\image latex nodeshape_2.eps "MALE shape (4)" width=2cm
290 ///\image html nodeshape_4.png
291 ///\image latex nodeshape_2.eps "FEMALE shape (4)" width=2cm
300 edgeLess(const Graph &_g) : g(_g) {}
301 bool operator()(Edge a,Edge b) const
303 Node ai=std::min(g.source(a),g.target(a));
304 Node aa=std::max(g.source(a),g.target(a));
305 Node bi=std::min(g.source(b),g.target(b));
306 Node ba=std::max(g.source(b),g.target(b));
308 (ai==bi && (aa < ba ||
309 (aa==ba && ai==g.source(a) && bi==g.target(b))));
312 bool isParallel(Edge e,Edge f) const
314 return (g.source(e)==g.source(f)&&
315 g.target(e)==g.target(f)) ||
316 (g.source(e)==g.target(f)&&
317 g.target(e)==g.source(f));
320 static std::string psOut(const dim2::Point<TT> &p)
322 std::ostringstream os;
323 os << p.x << ' ' << p.y;
326 static std::string psOut(const Color &c)
328 std::ostringstream os;
329 os << c.red() << ' ' << c.green() << ' ' << c.blue();
334 GraphToEps(const T &t) : T(t), dontPrint(false) {};
336 template<class X> struct CoordsTraits : public T {
337 typedef X CoordsMapType;
339 CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
341 ///Sets the map of the node coordinates
343 ///Sets the map of the node coordinates.
344 ///\param x must be a node map with dim2::Point<double> or
345 ///\ref dim2::Point "dim2::Point<int>" values.
346 template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
348 return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
350 template<class X> struct NodeSizesTraits : public T {
352 NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
354 ///Sets the map of the node sizes
356 ///Sets the map of the node sizes
357 ///\param x must be a node map with \c double (or convertible) values.
358 template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
361 return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
363 template<class X> struct NodeShapesTraits : public T {
364 const X &_nodeShapes;
365 NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
367 ///Sets the map of the node shapes
369 ///Sets the map of the node shapes.
370 ///The availabe shape values
371 ///can be found in \ref NodeShapes "enum NodeShapes".
372 ///\param x must be a node map with \c int (or convertible) values.
374 template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x)
377 return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x));
379 template<class X> struct NodeTextsTraits : public T {
381 NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
383 ///Sets the text printed on the nodes
385 ///Sets the text printed on the nodes
386 ///\param x must be a node map with type that can be pushed to a standard
388 template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x)
392 return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x));
394 template<class X> struct NodePsTextsTraits : public T {
395 const X &_nodePsTexts;
396 NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
398 ///Inserts a PostScript block to the nodes
400 ///With this command it is possible to insert a verbatim PostScript
401 ///block to the nodes.
402 ///The PS current point will be moved to the centre of the node before
403 ///the PostScript block inserted.
405 ///Before and after the block a newline character is inserted so you
406 ///don't have to bother with the separators.
408 ///\param x must be a node map with type that can be pushed to a standard
411 ///\sa nodePsTextsPreamble()
412 ///\todo Offer the choise not to move to the centre but pass the coordinates
413 ///to the Postscript block inserted.
414 template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x)
417 _showNodePsText=true;
418 return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x));
420 template<class X> struct EdgeWidthsTraits : public T {
421 const X &_edgeWidths;
422 EdgeWidthsTraits(const T &t,const X &x) : T(t), _edgeWidths(x) {}
424 ///Sets the map of the edge widths
426 ///Sets the map of the edge widths
427 ///\param x must be a edge map with \c double (or convertible) values.
428 template<class X> GraphToEps<EdgeWidthsTraits<X> > edgeWidths(const X &x)
431 return GraphToEps<EdgeWidthsTraits<X> >(EdgeWidthsTraits<X>(*this,x));
434 template<class X> struct NodeColorsTraits : public T {
435 const X &_nodeColors;
436 NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
438 ///Sets the map of the node colors
440 ///Sets the map of the node colors
441 ///\param x must be a node map with \ref Color values.
444 template<class X> GraphToEps<NodeColorsTraits<X> >
445 nodeColors(const X &x)
448 return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
450 template<class X> struct NodeTextColorsTraits : public T {
451 const X &_nodeTextColors;
452 NodeTextColorsTraits(const T &t,const X &x) : T(t), _nodeTextColors(x) {}
454 ///Sets the map of the node text colors
456 ///Sets the map of the node text colors
457 ///\param x must be a node map with \ref Color values.
460 template<class X> GraphToEps<NodeTextColorsTraits<X> >
461 nodeTextColors(const X &x)
464 _nodeTextColorType=CUST_COL;
465 return GraphToEps<NodeTextColorsTraits<X> >
466 (NodeTextColorsTraits<X>(*this,x));
468 template<class X> struct EdgeColorsTraits : public T {
469 const X &_edgeColors;
470 EdgeColorsTraits(const T &t,const X &x) : T(t), _edgeColors(x) {}
472 ///Sets the map of the edge colors
474 ///Sets the map of the edge colors
475 ///\param x must be a edge map with \ref Color values.
478 template<class X> GraphToEps<EdgeColorsTraits<X> >
479 edgeColors(const X &x)
482 return GraphToEps<EdgeColorsTraits<X> >(EdgeColorsTraits<X>(*this,x));
484 ///Sets a global scale factor for node sizes
486 ///Sets a global scale factor for node sizes.
488 /// If nodeSizes() is not given, this function simply sets the node
489 /// sizes to \c d. If nodeSizes() is given, but
490 /// autoNodeScale() is not, then the node size given by
491 /// nodeSizes() will be multiplied by the value \c d.
492 /// If both nodeSizes() and autoNodeScale() are used, then the
493 /// node sizes will be scaled in such a way that the greatest size will be
496 /// \sa autoNodeScale()
497 GraphToEps<T> &nodeScale(double d) {_nodeScale=d;return *this;}
498 ///Turns on/off the automatic node width scaling.
500 ///Turns on/off the automatic node width scaling.
504 GraphToEps<T> &autoNodeScale(bool b=true) {
505 _autoNodeScale=b;return *this;
508 ///Turns on/off the absolutematic node width scaling.
510 ///Turns on/off the absolutematic node width scaling.
514 GraphToEps<T> &absoluteNodeSizes(bool b=true) {
515 _absoluteNodeSizes=b;return *this;
518 ///Negates the Y coordinates.
520 ///Negates the Y coordinates.
524 GraphToEps<T> &negateY(bool b=true) {
525 _negY=b;return *this;
528 ///Turn on/off prescaling
530 ///By default graphToEps() rescales the whole image in order to avoid
531 ///very big or very small bounding boxes.
533 ///This (p)rescaling can be turned off with this function.
535 GraphToEps<T> &preScale(bool b=true) {
536 _preScale=b;return *this;
539 ///Sets a global scale factor for edge widths
541 /// Sets a global scale factor for edge widths.
543 /// If edgeWidths() is not given, this function simply sets the edge
544 /// widths to \c d. If edgeWidths() is given, but
545 /// autoEdgeWidthScale() is not, then the edge withs given by
546 /// edgeWidths() will be multiplied by the value \c d.
547 /// If both edgeWidths() and autoEdgeWidthScale() are used, then the
548 /// edge withs will be scaled in such a way that the greatest width will be
550 GraphToEps<T> &edgeWidthScale(double d) {_edgeWidthScale=d;return *this;}
551 ///Turns on/off the automatic edge width scaling.
553 ///Turns on/off the automatic edge width scaling.
555 ///\sa edgeWidthScale()
557 GraphToEps<T> &autoEdgeWidthScale(bool b=true) {
558 _autoEdgeWidthScale=b;return *this;
560 ///Turns on/off the absolutematic edge width scaling.
562 ///Turns on/off the absolutematic edge width scaling.
564 ///\sa edgeWidthScale()
566 GraphToEps<T> &absoluteEdgeWidths(bool b=true) {
567 _absoluteEdgeWidths=b;return *this;
569 ///Sets a global scale factor for the whole picture
571 ///Sets a global scale factor for the whole picture
574 GraphToEps<T> &scale(double d) {_scale=d;return *this;}
575 ///Sets the width of the border around the picture
577 ///Sets the width of the border around the picture
579 GraphToEps<T> &border(double b) {_xBorder=_yBorder=b;return *this;}
580 ///Sets the width of the border around the picture
582 ///Sets the width of the border around the picture
584 GraphToEps<T> &border(double x, double y) {
585 _xBorder=x;_yBorder=y;return *this;
587 ///Sets whether to draw arrows
589 ///Sets whether to draw arrows
591 GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
592 ///Sets the length of the arrowheads
594 ///Sets the length of the arrowheads
596 GraphToEps<T> &arrowLength(double d) {_arrowLength*=d;return *this;}
597 ///Sets the width of the arrowheads
599 ///Sets the width of the arrowheads
601 GraphToEps<T> &arrowWidth(double d) {_arrowWidth*=d;return *this;}
603 ///Scales the drawing to fit to A4 page
605 ///Scales the drawing to fit to A4 page
607 GraphToEps<T> &scaleToA4() {_scaleToA4=true;return *this;}
609 ///Enables parallel edges
611 ///Enables parallel edges
612 GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
618 GraphToEps<T> &parEdgeDist(double d) {_parEdgeDist*=d;return *this;}
624 GraphToEps<T> &hideEdges(bool b=true) {_showEdges=!b;return *this;}
629 GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
631 ///Sets the size of the node texts
633 ///Sets the size of the node texts
635 GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
637 ///Sets the color of the node texts to be different from the node color
639 ///Sets the color of the node texts to be as different from the node color
642 GraphToEps<T> &distantColorNodeTexts()
643 {_nodeTextColorType=DIST_COL;return *this;}
644 ///Sets the color of the node texts to be black or white and always visible.
646 ///Sets the color of the node texts to be black or white according to
648 ///different from the node color
650 GraphToEps<T> &distantBWNodeTexts()
651 {_nodeTextColorType=DIST_BW;return *this;}
653 ///Gives a preamble block for node Postscript block.
655 ///Gives a preamble block for node Postscript block.
658 GraphToEps<T> & nodePsTextsPreamble(const char *str) {
659 _nodePsTextsPreamble=str ;return *this;
661 ///Sets whether the the graph is undirected
663 ///Sets whether the the graph is undirected
665 GraphToEps<T> &undirected(bool b=true) {_undirected=b;return *this;}
667 ///Sets whether the the graph is directed
669 ///Sets whether the the graph is directed.
670 ///Use it to show the undirected edges as a pair of directed ones.
671 GraphToEps<T> &bidir(bool b=true) {_undirected=!b;return *this;}
675 ///Sets the title of the generated image,
676 ///namely it inserts a <tt>%%Title:</tt> DSC field to the header of
678 GraphToEps<T> &title(const std::string &t) {_title=t;return *this;}
679 ///Sets the copyright statement.
681 ///Sets the copyright statement of the generated image,
682 ///namely it inserts a <tt>%%Copyright:</tt> DSC field to the header of
684 ///\todo Multiline copyright notice could be supported.
685 GraphToEps<T> ©right(const std::string &t) {_copyright=t;return *this;}
688 bool isInsideNode(dim2::Point<double> p, double r,int t)
694 return p.normSquare()<=r*r;
696 return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r;
698 return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r;
708 ///Like other functions using
709 ///\ref named-templ-func-param "named template parameters",
710 ///this function calles the algorithm itself, i.e. in this case
711 ///it draws the graph.
713 ///\todo better 'epsilon' would be nice here.
714 const double EPSILON=1e-9;
715 if(dontPrint) return;
717 _NegY<typename T::CoordsMapType> mycoords(_coords,_negY);
719 os << "%!PS-Adobe-2.0 EPSF-2.0\n";
720 if(_title.size()>0) os << "%%Title: " << _title << '\n';
721 if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n';
722 // << "%%Copyright: XXXX\n"
723 os << "%%Creator: LEMON, graphToEps()\n";
728 gettimeofday(&tv, 0);
729 ctime_r(&tv.tv_sec,cbuf);
730 os << "%%CreationDate: " << cbuf;
733 if (_autoEdgeWidthScale) {
735 for(EdgeIt e(g);e!=INVALID;++e)
736 max_w=std::max(double(_edgeWidths[e]),max_w);
737 ///\todo better 'epsilon' would be nice here.
739 _edgeWidthScale/=max_w;
743 if (_autoNodeScale) {
745 for(NodeIt n(g);n!=INVALID;++n)
746 max_s=std::max(double(_nodeSizes[n]),max_s);
747 ///\todo better 'epsilon' would be nice here.
754 if(!(_absoluteNodeSizes&&_absoluteEdgeWidths)) {
755 dim2::BoundingBox<double> bb;
756 for(NodeIt n(g);n!=INVALID;++n) bb.add(mycoords[n]);
758 bb = dim2::BoundingBox<double>(dim2::Point<double>(0,0));
760 diag_len = std::sqrt((bb.bottomLeft()-bb.topRight()).normSquare());
761 if(diag_len<EPSILON) diag_len = 1;
762 if(!_absoluteNodeSizes) _nodeScale*=diag_len;
763 if(!_absoluteEdgeWidths) _edgeWidthScale*=diag_len;
766 dim2::BoundingBox<double> bb;
767 for(NodeIt n(g);n!=INVALID;++n) {
768 double ns=_nodeSizes[n]*_nodeScale;
769 dim2::Point<double> p(ns,ns);
770 switch(_nodeShapes[n]) {
774 bb.add(p+mycoords[n]);
775 bb.add(-p+mycoords[n]);
778 bb.add(-p+mycoords[n]);
779 bb.add(dim2::Point<double>(1.5*ns,1.5*std::sqrt(3.0)*ns)+mycoords[n]);
782 bb.add(p+mycoords[n]);
783 bb.add(dim2::Point<double>(-ns,-3.01*ns)+mycoords[n]);
788 bb = dim2::BoundingBox<double>(dim2::Point<double>(0,0));
792 os <<"%%BoundingBox: 0 0 596 842\n%%DocumentPaperSizes: a4\n";
795 //Rescale so that BoundingBox won't be neither to big nor too small.
796 while(bb.height()*_scale>1000||bb.width()*_scale>1000) _scale/=10;
797 while(bb.height()*_scale<100||bb.width()*_scale<100) _scale*=10;
800 os << "%%BoundingBox: "
801 << int(floor(bb.left() * _scale - _xBorder)) << ' '
802 << int(floor(bb.bottom() * _scale - _yBorder)) << ' '
803 << int(ceil(bb.right() * _scale + _xBorder)) << ' '
804 << int(ceil(bb.top() * _scale + _yBorder)) << '\n';
807 os << "%%EndComments\n";
809 //x1 y1 x2 y2 x3 y3 cr cg cb w
810 os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
811 << " 4 2 roll 1 index 1 index curveto stroke } bind def\n";
812 os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def\n";
814 os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def\n";
816 os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
817 << " 2 index 1 index sub 2 index 2 index add lineto\n"
818 << " 2 index 1 index sub 2 index 2 index sub lineto\n"
819 << " 2 index 1 index add 2 index 2 index sub lineto\n"
820 << " closepath pop pop pop} bind def\n";
822 os << "/di { newpath 2 index 1 index add 2 index moveto\n"
823 << " 2 index 2 index 2 index add lineto\n"
824 << " 2 index 1 index sub 2 index lineto\n"
825 << " 2 index 2 index 2 index sub lineto\n"
826 << " closepath pop pop pop} bind def\n";
828 os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
829 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
831 os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
832 << " setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n"
834 os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
835 << " setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n"
837 os << "/nfemale { 0 0 0 setrgbcolor 3 index "
838 << _nodeBorderQuotient/(1+_nodeBorderQuotient)
839 << " 1.5 mul mul setlinewidth\n"
840 << " newpath 5 index 5 index moveto "
841 << "5 index 5 index 5 index 3.01 mul sub\n"
842 << " lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub moveto\n"
843 << " 5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto stroke\n"
844 << " 5 index 5 index 5 index c fill\n"
845 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
848 << " 0 0 0 setrgbcolor 3 index "
849 << _nodeBorderQuotient/(1+_nodeBorderQuotient)
850 <<" 1.5 mul mul setlinewidth\n"
851 << " newpath 5 index 5 index moveto\n"
852 << " 5 index 4 index 1 mul 1.5 mul add\n"
853 << " 5 index 5 index 3 sqrt 1.5 mul mul add\n"
854 << " 1 index 1 index lineto\n"
855 << " 1 index 1 index 7 index sub moveto\n"
856 << " 1 index 1 index lineto\n"
857 << " exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub lineto\n"
859 << " 5 index 5 index 5 index c fill\n"
860 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
864 os << "/arrl " << _arrowLength << " def\n";
865 os << "/arrw " << _arrowWidth << " def\n";
867 os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
868 //len w dx_norm dy_norm x1 y1 cr cg cb
869 os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def\n"
870 << " /w exch def /len exch def\n"
871 // << " 0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
872 << " newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
873 << " len w sub arrl sub dx dy lrl\n"
874 << " arrw dy dx neg lrl\n"
875 << " dx arrl w add mul dy w 2 div arrw add mul sub\n"
876 << " dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
877 << " dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
878 << " dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
879 << " arrw dy dx neg lrl\n"
880 << " len w sub arrl sub neg dx dy lrl\n"
881 << " closepath fill } bind def\n";
882 os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
883 << " neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n";
887 if(bb.height()>bb.width()) {
888 double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.height(),
889 (A4WIDTH-2*A4BORDER)/bb.width());
890 os << ((A4WIDTH -2*A4BORDER)-sc*bb.width())/2 + A4BORDER << ' '
891 << ((A4HEIGHT-2*A4BORDER)-sc*bb.height())/2 + A4BORDER
893 << sc << " dup scale\n"
894 << -bb.left() << ' ' << -bb.bottom() << " translate\n";
897 //\todo Verify centering
898 double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.width(),
899 (A4WIDTH-2*A4BORDER)/bb.height());
900 os << ((A4WIDTH -2*A4BORDER)-sc*bb.height())/2 + A4BORDER << ' '
901 << ((A4HEIGHT-2*A4BORDER)-sc*bb.width())/2 + A4BORDER
903 << sc << " dup scale\n90 rotate\n"
904 << -bb.left() << ' ' << -bb.top() << " translate\n";
906 else if(_scale!=1.0) os << _scale << " dup scale\n";
909 os << "%Edges:\ngsave\n";
910 if(_enableParallel) {
911 std::vector<Edge> el;
912 for(EdgeIt e(g);e!=INVALID;++e)
913 if((!_undirected||g.source(e)<g.target(e))&&_edgeWidths[e]>0
914 &&g.source(e)!=g.target(e))
916 std::sort(el.begin(),el.end(),edgeLess(g));
918 typename std::vector<Edge>::iterator j;
919 for(typename std::vector<Edge>::iterator i=el.begin();i!=el.end();i=j) {
920 for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ;
923 for(typename std::vector<Edge>::iterator e=i;e!=j;++e)
924 sw+=_edgeWidths[*e]*_edgeWidthScale+_parEdgeDist;
928 dvec(mycoords[g.target(*i)]-mycoords[g.source(*i)]);
929 double l=std::sqrt(dvec.normSquare());
930 ///\todo better 'epsilon' would be nice here.
931 dim2::Point<double> d(dvec/std::max(l,EPSILON));
932 dim2::Point<double> m;
933 // m=dim2::Point<double>(mycoords[g.target(*i)]+mycoords[g.source(*i)])/2.0;
935 // m=dim2::Point<double>(mycoords[g.source(*i)])+
936 // dvec*(double(_nodeSizes[g.source(*i)])/
937 // (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)]));
939 m=dim2::Point<double>(mycoords[g.source(*i)])+
940 d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0;
942 for(typename std::vector<Edge>::iterator e=i;e!=j;++e) {
943 sw+=_edgeWidths[*e]*_edgeWidthScale/2.0;
944 dim2::Point<double> mm=m+rot90(d)*sw/.75;
947 dim2::Point<double> s=mycoords[g.source(*e)];
948 dim2::Point<double> t=mycoords[g.target(*e)];
949 double rn=_nodeSizes[g.target(*e)]*_nodeScale;
950 node_shape=_nodeShapes[g.target(*e)];
951 dim2::Bezier3 bez(s,mm,mm,t);
953 for(int ii=0;ii<INTERPOL_PREC;++ii)
954 if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2;
956 dim2::Point<double> apoint=bez((t1+t2)/2);
957 rn = _arrowLength+_edgeWidths[*e]*_edgeWidthScale;
960 for(int ii=0;ii<INTERPOL_PREC;++ii)
961 if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2;
963 dim2::Point<double> linend=bez((t1+t2)/2);
964 bez=bez.before((t1+t2)/2);
965 // rn=_nodeSizes[g.source(*e)]*_nodeScale;
966 // node_shape=_nodeShapes[g.source(*e)];
968 // for(int i=0;i<INTERPOL_PREC;++i)
969 // if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t1=(t1+t2)/2;
970 // else t2=(t1+t2)/2;
971 // bez=bez.after((t1+t2)/2);
972 os << _edgeWidths[*e]*_edgeWidthScale << " setlinewidth "
973 << _edgeColors[*e].red() << ' '
974 << _edgeColors[*e].green() << ' '
975 << _edgeColors[*e].blue() << " setrgbcolor newpath\n"
976 << bez.p1.x << ' ' << bez.p1.y << " moveto\n"
977 << bez.p2.x << ' ' << bez.p2.y << ' '
978 << bez.p3.x << ' ' << bez.p3.y << ' '
979 << bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n";
980 dim2::Point<double> dd(rot90(linend-apoint));
981 dd*=(.5*_edgeWidths[*e]*_edgeWidthScale+_arrowWidth)/
982 std::sqrt(dd.normSquare());
983 os << "newpath " << psOut(apoint) << " moveto "
984 << psOut(linend+dd) << " lineto "
985 << psOut(linend-dd) << " lineto closepath fill\n";
988 os << mycoords[g.source(*e)].x << ' '
989 << mycoords[g.source(*e)].y << ' '
990 << mm.x << ' ' << mm.y << ' '
991 << mycoords[g.target(*e)].x << ' '
992 << mycoords[g.target(*e)].y << ' '
993 << _edgeColors[*e].red() << ' '
994 << _edgeColors[*e].green() << ' '
995 << _edgeColors[*e].blue() << ' '
996 << _edgeWidths[*e]*_edgeWidthScale << " lb\n";
998 sw+=_edgeWidths[*e]*_edgeWidthScale/2.0+_parEdgeDist;
1002 else for(EdgeIt e(g);e!=INVALID;++e)
1003 if((!_undirected||g.source(e)<g.target(e))&&_edgeWidths[e]>0
1004 &&g.source(e)!=g.target(e)) {
1006 dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]);
1007 double rn=_nodeSizes[g.target(e)]*_nodeScale;
1008 int node_shape=_nodeShapes[g.target(e)];
1010 for(int i=0;i<INTERPOL_PREC;++i)
1011 if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2;
1013 double l=std::sqrt(d.normSquare());
1016 os << l*(1-(t1+t2)/2) << ' '
1017 << _edgeWidths[e]*_edgeWidthScale << ' '
1018 << d.x << ' ' << d.y << ' '
1019 << mycoords[g.source(e)].x << ' '
1020 << mycoords[g.source(e)].y << ' '
1021 << _edgeColors[e].red() << ' '
1022 << _edgeColors[e].green() << ' '
1023 << _edgeColors[e].blue() << " arr\n";
1025 else os << mycoords[g.source(e)].x << ' '
1026 << mycoords[g.source(e)].y << ' '
1027 << mycoords[g.target(e)].x << ' '
1028 << mycoords[g.target(e)].y << ' '
1029 << _edgeColors[e].red() << ' '
1030 << _edgeColors[e].green() << ' '
1031 << _edgeColors[e].blue() << ' '
1032 << _edgeWidths[e]*_edgeWidthScale << " l\n";
1037 os << "%Nodes:\ngsave\n";
1038 for(NodeIt n(g);n!=INVALID;++n) {
1039 os << mycoords[n].x << ' ' << mycoords[n].y << ' '
1040 << _nodeSizes[n]*_nodeScale << ' '
1041 << _nodeColors[n].red() << ' '
1042 << _nodeColors[n].green() << ' '
1043 << _nodeColors[n].blue() << ' ';
1044 switch(_nodeShapes[n]) {
1054 os<< "nfemale";break;
1061 os << "%Node texts:\ngsave\n";
1062 os << "/fosi " << _nodeTextSize << " def\n";
1063 os << "(Helvetica) findfont fosi scalefont setfont\n";
1064 for(NodeIt n(g);n!=INVALID;++n) {
1065 switch(_nodeTextColorType) {
1067 os << psOut(distantColor(_nodeColors[n])) << " setrgbcolor\n";
1070 os << psOut(distantBW(_nodeColors[n])) << " setrgbcolor\n";
1073 os << psOut(distantColor(_nodeTextColors[n])) << " setrgbcolor\n";
1076 os << "0 0 0 setrgbcolor\n";
1078 os << mycoords[n].x << ' ' << mycoords[n].y
1079 << " (" << _nodeTexts[n] << ") cshow\n";
1083 if(_showNodePsText) {
1084 os << "%Node PS blocks:\ngsave\n";
1085 for(NodeIt n(g);n!=INVALID;++n)
1086 os << mycoords[n].x << ' ' << mycoords[n].y
1087 << " moveto\n" << _nodePsTexts[n] << "\n";
1091 os << "grestore\nshowpage\n";
1094 if(_pleaseRemoveOsStream) {delete &os;}
1099 const int GraphToEps<T>::INTERPOL_PREC = 20;
1101 const double GraphToEps<T>::A4HEIGHT = 841.8897637795276;
1103 const double GraphToEps<T>::A4WIDTH = 595.275590551181;
1105 const double GraphToEps<T>::A4BORDER = 15;
1108 ///Generates an EPS file from a graph
1111 ///Generates an EPS file from a graph.
1112 ///\param g is a reference to the graph to be printed
1113 ///\param os is a reference to the output stream.
1114 ///By default it is <tt>std::cout</tt>
1116 ///This function also has a lot of
1117 ///\ref named-templ-func-param "named parameters",
1118 ///they are declared as the members of class \ref GraphToEps. The following
1119 ///example shows how to use these parameters.
1121 /// graphToEps(g,os).scale(10).coords(coords)
1122 /// .nodeScale(2).nodeSizes(sizes)
1123 /// .edgeWidthScale(.4).run();
1125 ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
1126 ///to the end of the parameter list.
1128 ///\sa graphToEps(G &g, const char *file_name)
1130 GraphToEps<DefaultGraphToEpsTraits<G> >
1131 graphToEps(G &g, std::ostream& os=std::cout)
1134 GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g,os));
1137 ///Generates an EPS file from a graph
1140 ///This function does the same as
1141 ///\ref graphToEps(G &g,std::ostream& os)
1142 ///but it writes its output into the file \c file_name
1143 ///instead of a stream.
1144 ///\sa graphToEps(G &g, std::ostream& os)
1146 GraphToEps<DefaultGraphToEpsTraits<G> >
1147 graphToEps(G &g,const char *file_name)
1149 return GraphToEps<DefaultGraphToEpsTraits<G> >
1150 (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name),true));
1153 ///Generates an EPS file from a graph
1156 ///This function does the same as
1157 ///\ref graphToEps(G &g,std::ostream& os)
1158 ///but it writes its output into the file \c file_name
1159 ///instead of a stream.
1160 ///\sa graphToEps(G &g, std::ostream& os)
1162 GraphToEps<DefaultGraphToEpsTraits<G> >
1163 graphToEps(G &g,const std::string& file_name)
1165 return GraphToEps<DefaultGraphToEpsTraits<G> >
1166 (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name.c_str()),true));
1169 } //END OF NAMESPACE LEMON
1171 #endif // LEMON_GRAPH_TO_EPS_H