Rename StoreBoolMap to LoggerBoolMap (ticket #34).
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
32 #define WIN32_LEAN_AND_MEAN
37 #include<lemon/math.h>
38 #include<lemon/bits/invalid.h>
39 #include<lemon/dim2.h>
40 #include<lemon/maps.h>
41 #include<lemon/color.h>
42 #include<lemon/bits/bezier.h>
47 ///\brief A well configurable tool for visualizing graphs
51 namespace _graph_to_eps_bits {
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);}
64 ///Default traits class of \ref GraphToEps
66 ///Default traits class of \ref GraphToEps
68 ///\c G is the type of the underlying graph.
70 struct DefaultGraphToEpsTraits
73 typedef typename Graph::Node Node;
74 typedef typename Graph::NodeIt NodeIt;
75 typedef typename Graph::Arc Arc;
76 typedef typename Graph::ArcIt ArcIt;
77 typedef typename Graph::InArcIt InArcIt;
78 typedef typename Graph::OutArcIt OutArcIt;
85 typedef ConstMap<typename Graph::Node,dim2::Point<double> > CoordsMapType;
86 CoordsMapType _coords;
87 ConstMap<typename Graph::Node,double > _nodeSizes;
88 ConstMap<typename Graph::Node,int > _nodeShapes;
90 ConstMap<typename Graph::Node,Color > _nodeColors;
91 ConstMap<typename Graph::Arc,Color > _arcColors;
93 ConstMap<typename Graph::Arc,double > _arcWidths;
95 double _arcWidthScale;
98 double _xBorder, _yBorder;
100 double _nodeBorderQuotient;
103 double _arrowLength, _arrowWidth;
105 bool _showNodes, _showArcs;
107 bool _enableParallel;
111 ConstMap<typename Graph::Node,bool > _nodeTexts;
112 double _nodeTextSize;
114 bool _showNodePsText;
115 ConstMap<typename Graph::Node,bool > _nodePsTexts;
116 char *_nodePsTextsPreamble;
120 bool _pleaseRemoveOsStream;
125 std::string _copyright;
127 enum NodeTextColorType
128 { DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
129 ConstMap<typename Graph::Node,Color > _nodeTextColors;
132 bool _autoArcWidthScale;
134 bool _absoluteNodeSizes;
135 bool _absoluteArcWidths;
143 ///\param _g is a reference to the graph to be printed
144 ///\param _os is a reference to the output stream.
145 ///\param _os is a reference to the output stream.
146 ///\param _pros If it is \c true, then the \c ostream referenced by \c _os
147 ///will be explicitly deallocated by the destructor.
148 ///By default it is <tt>std::cout</tt>
149 DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout,
152 _coords(dim2::Point<double>(1,1)), _nodeSizes(1), _nodeShapes(0),
153 _nodeColors(WHITE), _arcColors(BLACK),
154 _arcWidths(1.0), _arcWidthScale(0.003),
155 _nodeScale(.01), _xBorder(10), _yBorder(10), _scale(1.0),
156 _nodeBorderQuotient(.1),
157 _drawArrows(false), _arrowLength(1), _arrowWidth(0.3),
158 _showNodes(true), _showArcs(true),
159 _enableParallel(false), _parArcDist(1),
160 _showNodeText(false), _nodeTexts(false), _nodeTextSize(1),
161 _showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0),
162 _undirected(lemon::UndirectedTagIndicator<G>::value),
163 _pleaseRemoveOsStream(_pros), _scaleToA4(false),
164 _nodeTextColorType(SAME_COL), _nodeTextColors(BLACK),
165 _autoNodeScale(false),
166 _autoArcWidthScale(false),
167 _absoluteNodeSizes(false),
168 _absoluteArcWidths(false),
174 ///Auxiliary class to implement the named parameters of \ref graphToEps()
176 ///Auxiliary class to implement the named parameters of \ref graphToEps()
177 template<class T> class GraphToEps : public T
179 // Can't believe it is required by the C++ standard
185 using T::_nodeShapes;
186 using T::_nodeColors;
190 using T::_arcWidthScale;
195 using T::_nodeBorderQuotient;
197 using T::_drawArrows;
198 using T::_arrowLength;
199 using T::_arrowWidth;
204 using T::_enableParallel;
205 using T::_parArcDist;
207 using T::_showNodeText;
209 using T::_nodeTextSize;
211 using T::_showNodePsText;
212 using T::_nodePsTexts;
213 using T::_nodePsTextsPreamble;
215 using T::_undirected;
217 using T::_pleaseRemoveOsStream;
224 using T::NodeTextColorType;
228 using T::_nodeTextColorType;
229 using T::_nodeTextColors;
231 using T::_autoNodeScale;
232 using T::_autoArcWidthScale;
234 using T::_absoluteNodeSizes;
235 using T::_absoluteArcWidths;
241 // dradnats ++C eht yb deriuqer si ti eveileb t'naC
243 typedef typename T::Graph Graph;
244 typedef typename Graph::Node Node;
245 typedef typename Graph::NodeIt NodeIt;
246 typedef typename Graph::Arc Arc;
247 typedef typename Graph::ArcIt ArcIt;
248 typedef typename Graph::InArcIt InArcIt;
249 typedef typename Graph::OutArcIt OutArcIt;
251 static const int INTERPOL_PREC;
252 static const double A4HEIGHT;
253 static const double A4WIDTH;
254 static const double A4BORDER;
265 ///\image html nodeshape_0.png
266 ///\image latex nodeshape_0.eps "CIRCLE shape (0)" width=2cm
269 ///\image html nodeshape_1.png
270 ///\image latex nodeshape_1.eps "SQUARE shape (1)" width=2cm
274 ///\image html nodeshape_2.png
275 ///\image latex nodeshape_2.eps "DIAMOND shape (2)" width=2cm
279 ///\image html nodeshape_3.png
280 ///\image latex nodeshape_2.eps "MALE shape (4)" width=2cm
284 ///\image html nodeshape_4.png
285 ///\image latex nodeshape_2.eps "FEMALE shape (4)" width=2cm
294 arcLess(const Graph &_g) : g(_g) {}
295 bool operator()(Arc a,Arc b) const
297 Node ai=std::min(g.source(a),g.target(a));
298 Node aa=std::max(g.source(a),g.target(a));
299 Node bi=std::min(g.source(b),g.target(b));
300 Node ba=std::max(g.source(b),g.target(b));
302 (ai==bi && (aa < ba ||
303 (aa==ba && ai==g.source(a) && bi==g.target(b))));
306 bool isParallel(Arc e,Arc f) const
308 return (g.source(e)==g.source(f)&&
309 g.target(e)==g.target(f)) ||
310 (g.source(e)==g.target(f)&&
311 g.target(e)==g.source(f));
314 static std::string psOut(const dim2::Point<TT> &p)
316 std::ostringstream os;
317 os << p.x << ' ' << p.y;
320 static std::string psOut(const Color &c)
322 std::ostringstream os;
323 os << c.red() << ' ' << c.green() << ' ' << c.blue();
328 GraphToEps(const T &t) : T(t), dontPrint(false) {};
330 template<class X> struct CoordsTraits : public T {
331 typedef X CoordsMapType;
333 CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
335 ///Sets the map of the node coordinates
337 ///Sets the map of the node coordinates.
338 ///\param x must be a node map with dim2::Point<double> or
339 ///\ref dim2::Point "dim2::Point<int>" values.
340 template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
342 return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
344 template<class X> struct NodeSizesTraits : public T {
346 NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
348 ///Sets the map of the node sizes
350 ///Sets the map of the node sizes
351 ///\param x must be a node map with \c double (or convertible) values.
352 template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
355 return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
357 template<class X> struct NodeShapesTraits : public T {
358 const X &_nodeShapes;
359 NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
361 ///Sets the map of the node shapes
363 ///Sets the map of the node shapes.
364 ///The available shape values
365 ///can be found in \ref NodeShapes "enum NodeShapes".
366 ///\param x must be a node map with \c int (or convertible) values.
368 template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x)
371 return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x));
373 template<class X> struct NodeTextsTraits : public T {
375 NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
377 ///Sets the text printed on the nodes
379 ///Sets the text printed on the nodes
380 ///\param x must be a node map with type that can be pushed to a standard
382 template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x)
386 return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x));
388 template<class X> struct NodePsTextsTraits : public T {
389 const X &_nodePsTexts;
390 NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
392 ///Inserts a PostScript block to the nodes
394 ///With this command it is possible to insert a verbatim PostScript
395 ///block to the nodes.
396 ///The PS current point will be moved to the centre of the node before
397 ///the PostScript block inserted.
399 ///Before and after the block a newline character is inserted so you
400 ///don't have to bother with the separators.
402 ///\param x must be a node map with type that can be pushed to a standard
405 ///\sa nodePsTextsPreamble()
406 template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x)
409 _showNodePsText=true;
410 return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x));
412 template<class X> struct ArcWidthsTraits : public T {
414 ArcWidthsTraits(const T &t,const X &x) : T(t), _arcWidths(x) {}
416 ///Sets the map of the arc widths
418 ///Sets the map of the arc widths
419 ///\param x must be an arc map with \c double (or convertible) values.
420 template<class X> GraphToEps<ArcWidthsTraits<X> > arcWidths(const X &x)
423 return GraphToEps<ArcWidthsTraits<X> >(ArcWidthsTraits<X>(*this,x));
426 template<class X> struct NodeColorsTraits : public T {
427 const X &_nodeColors;
428 NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
430 ///Sets the map of the node colors
432 ///Sets the map of the node colors
433 ///\param x must be a node map with \ref Color values.
436 template<class X> GraphToEps<NodeColorsTraits<X> >
437 nodeColors(const X &x)
440 return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
442 template<class X> struct NodeTextColorsTraits : public T {
443 const X &_nodeTextColors;
444 NodeTextColorsTraits(const T &t,const X &x) : T(t), _nodeTextColors(x) {}
446 ///Sets the map of the node text colors
448 ///Sets the map of the node text colors
449 ///\param x must be a node map with \ref Color values.
452 template<class X> GraphToEps<NodeTextColorsTraits<X> >
453 nodeTextColors(const X &x)
456 _nodeTextColorType=CUST_COL;
457 return GraphToEps<NodeTextColorsTraits<X> >
458 (NodeTextColorsTraits<X>(*this,x));
460 template<class X> struct ArcColorsTraits : public T {
462 ArcColorsTraits(const T &t,const X &x) : T(t), _arcColors(x) {}
464 ///Sets the map of the arc colors
466 ///Sets the map of the arc colors
467 ///\param x must be an arc map with \ref Color values.
470 template<class X> GraphToEps<ArcColorsTraits<X> >
471 arcColors(const X &x)
474 return GraphToEps<ArcColorsTraits<X> >(ArcColorsTraits<X>(*this,x));
476 ///Sets a global scale factor for node sizes
478 ///Sets a global scale factor for node sizes.
480 /// If nodeSizes() is not given, this function simply sets the node
481 /// sizes to \c d. If nodeSizes() is given, but
482 /// autoNodeScale() is not, then the node size given by
483 /// nodeSizes() will be multiplied by the value \c d.
484 /// If both nodeSizes() and autoNodeScale() are used, then the
485 /// node sizes will be scaled in such a way that the greatest size will be
488 /// \sa autoNodeScale()
489 GraphToEps<T> &nodeScale(double d=.01) {_nodeScale=d;return *this;}
490 ///Turns on/off the automatic node width scaling.
492 ///Turns on/off the automatic node width scaling.
496 GraphToEps<T> &autoNodeScale(bool b=true) {
497 _autoNodeScale=b;return *this;
500 ///Turns on/off the absolutematic node width scaling.
502 ///Turns on/off the absolutematic node width scaling.
506 GraphToEps<T> &absoluteNodeSizes(bool b=true) {
507 _absoluteNodeSizes=b;return *this;
510 ///Negates the Y coordinates.
512 ///Negates the Y coordinates.
514 GraphToEps<T> &negateY(bool b=true) {
515 _negY=b;return *this;
518 ///Turn on/off pre-scaling
520 ///By default graphToEps() rescales the whole image in order to avoid
521 ///very big or very small bounding boxes.
523 ///This (p)rescaling can be turned off with this function.
525 GraphToEps<T> &preScale(bool b=true) {
526 _preScale=b;return *this;
529 ///Sets a global scale factor for arc widths
531 /// Sets a global scale factor for arc widths.
533 /// If arcWidths() is not given, this function simply sets the arc
534 /// widths to \c d. If arcWidths() is given, but
535 /// autoArcWidthScale() is not, then the arc withs given by
536 /// arcWidths() will be multiplied by the value \c d.
537 /// If both arcWidths() and autoArcWidthScale() are used, then the
538 /// arc withs will be scaled in such a way that the greatest width will be
540 GraphToEps<T> &arcWidthScale(double d=.003) {_arcWidthScale=d;return *this;}
541 ///Turns on/off the automatic arc width scaling.
543 ///Turns on/off the automatic arc width scaling.
545 ///\sa arcWidthScale()
547 GraphToEps<T> &autoArcWidthScale(bool b=true) {
548 _autoArcWidthScale=b;return *this;
550 ///Turns on/off the absolutematic arc width scaling.
552 ///Turns on/off the absolutematic arc width scaling.
554 ///\sa arcWidthScale()
556 GraphToEps<T> &absoluteArcWidths(bool b=true) {
557 _absoluteArcWidths=b;return *this;
559 ///Sets a global scale factor for the whole picture
561 ///Sets a global scale factor for the whole picture
564 GraphToEps<T> &scale(double d) {_scale=d;return *this;}
565 ///Sets the width of the border around the picture
567 ///Sets the width of the border around the picture
569 GraphToEps<T> &border(double b=10) {_xBorder=_yBorder=b;return *this;}
570 ///Sets the width of the border around the picture
572 ///Sets the width of the border around the picture
574 GraphToEps<T> &border(double x, double y) {
575 _xBorder=x;_yBorder=y;return *this;
577 ///Sets whether to draw arrows
579 ///Sets whether to draw arrows
581 GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
582 ///Sets the length of the arrowheads
584 ///Sets the length of the arrowheads
586 GraphToEps<T> &arrowLength(double d=1.0) {_arrowLength*=d;return *this;}
587 ///Sets the width of the arrowheads
589 ///Sets the width of the arrowheads
591 GraphToEps<T> &arrowWidth(double d=.3) {_arrowWidth*=d;return *this;}
593 ///Scales the drawing to fit to A4 page
595 ///Scales the drawing to fit to A4 page
597 GraphToEps<T> &scaleToA4() {_scaleToA4=true;return *this;}
599 ///Enables parallel arcs
601 ///Enables parallel arcs
602 GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
608 GraphToEps<T> &parArcDist(double d) {_parArcDist*=d;return *this;}
614 GraphToEps<T> &hideArcs(bool b=true) {_showArcs=!b;return *this;}
619 GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
621 ///Sets the size of the node texts
623 ///Sets the size of the node texts
625 GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
627 ///Sets the color of the node texts to be different from the node color
629 ///Sets the color of the node texts to be as different from the node color
632 GraphToEps<T> &distantColorNodeTexts()
633 {_nodeTextColorType=DIST_COL;return *this;}
634 ///Sets the color of the node texts to be black or white and always visible.
636 ///Sets the color of the node texts to be black or white according to
638 ///different from the node color
640 GraphToEps<T> &distantBWNodeTexts()
641 {_nodeTextColorType=DIST_BW;return *this;}
643 ///Gives a preamble block for node Postscript block.
645 ///Gives a preamble block for node Postscript block.
648 GraphToEps<T> & nodePsTextsPreamble(const char *str) {
649 _nodePsTextsPreamble=str ;return *this;
651 ///Sets whether the the graph is undirected
653 ///Sets whether the the graph is undirected.
655 ///This setting is the default for undirected graphs.
658 GraphToEps<T> &undirected(bool b=true) {_undirected=b;return *this;}
660 ///Sets whether the the graph is directed
662 ///Sets whether the the graph is directed.
663 ///Use it to show the edges as a pair of directed ones.
665 ///This setting is the default for digraphs.
668 GraphToEps<T> &directed(bool b=true) {_undirected=!b;return *this;}
672 ///Sets the title of the generated image,
673 ///namely it inserts a <tt>%%Title:</tt> DSC field to the header of
675 GraphToEps<T> &title(const std::string &t) {_title=t;return *this;}
676 ///Sets the copyright statement.
678 ///Sets the copyright statement of the generated image,
679 ///namely it inserts a <tt>%%Copyright:</tt> DSC field to the header of
681 GraphToEps<T> ©right(const std::string &t) {_copyright=t;return *this;}
684 bool isInsideNode(dim2::Point<double> p, double r,int t)
690 return p.normSquare()<=r*r;
692 return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r;
694 return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r;
704 ///Like other functions using
705 ///\ref named-templ-func-param "named template parameters",
706 ///this function calls the algorithm itself, i.e. in this case
707 ///it draws the graph.
709 //\todo better 'epsilon' would be nice here.
710 const double EPSILON=1e-9;
711 if(dontPrint) return;
713 _graph_to_eps_bits::_NegY<typename T::CoordsMapType>
714 mycoords(_coords,_negY);
716 os << "%!PS-Adobe-2.0 EPSF-2.0\n";
717 if(_title.size()>0) os << "%%Title: " << _title << '\n';
718 if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n';
719 // << "%%Copyright: XXXX\n"
720 os << "%%Creator: LEMON, graphToEps()\n";
725 gettimeofday(&tv, 0);
728 ctime_r(&tv.tv_sec,cbuf);
729 os << "%%CreationDate: " << cbuf;
732 char buf1[11], buf2[9], buf3[5];
734 GetSystemTime(&time);
735 if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
736 "ddd MMM dd", buf1, 11) &&
737 GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time,
738 "HH':'mm':'ss", buf2, 9) &&
739 GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
741 os << "%%CreationDate: " << buf1 << ' '
742 << buf2 << ' ' << buf3 << std::endl;
747 if (_autoArcWidthScale) {
749 for(ArcIt e(g);e!=INVALID;++e)
750 max_w=std::max(double(_arcWidths[e]),max_w);
751 ///\todo better 'epsilon' would be nice here.
753 _arcWidthScale/=max_w;
757 if (_autoNodeScale) {
759 for(NodeIt n(g);n!=INVALID;++n)
760 max_s=std::max(double(_nodeSizes[n]),max_s);
761 ///\todo better 'epsilon' would be nice here.
768 if(!(_absoluteNodeSizes&&_absoluteArcWidths)) {
769 dim2::BoundingBox<double> bb;
770 for(NodeIt n(g);n!=INVALID;++n) bb.add(mycoords[n]);
772 bb = dim2::BoundingBox<double>(dim2::Point<double>(0,0));
774 diag_len = std::sqrt((bb.bottomLeft()-bb.topRight()).normSquare());
775 if(diag_len<EPSILON) diag_len = 1;
776 if(!_absoluteNodeSizes) _nodeScale*=diag_len;
777 if(!_absoluteArcWidths) _arcWidthScale*=diag_len;
780 dim2::BoundingBox<double> bb;
781 for(NodeIt n(g);n!=INVALID;++n) {
782 double ns=_nodeSizes[n]*_nodeScale;
783 dim2::Point<double> p(ns,ns);
784 switch(_nodeShapes[n]) {
788 bb.add(p+mycoords[n]);
789 bb.add(-p+mycoords[n]);
792 bb.add(-p+mycoords[n]);
793 bb.add(dim2::Point<double>(1.5*ns,1.5*std::sqrt(3.0)*ns)+mycoords[n]);
796 bb.add(p+mycoords[n]);
797 bb.add(dim2::Point<double>(-ns,-3.01*ns)+mycoords[n]);
802 bb = dim2::BoundingBox<double>(dim2::Point<double>(0,0));
806 os <<"%%BoundingBox: 0 0 596 842\n%%DocumentPaperSizes: a4\n";
809 //Rescale so that BoundingBox won't be neither to big nor too small.
810 while(bb.height()*_scale>1000||bb.width()*_scale>1000) _scale/=10;
811 while(bb.height()*_scale<100||bb.width()*_scale<100) _scale*=10;
814 os << "%%BoundingBox: "
815 << int(floor(bb.left() * _scale - _xBorder)) << ' '
816 << int(floor(bb.bottom() * _scale - _yBorder)) << ' '
817 << int(ceil(bb.right() * _scale + _xBorder)) << ' '
818 << int(ceil(bb.top() * _scale + _yBorder)) << '\n';
821 os << "%%EndComments\n";
823 //x1 y1 x2 y2 x3 y3 cr cg cb w
824 os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
825 << " 4 2 roll 1 index 1 index curveto stroke } bind def\n";
826 os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def\n";
828 os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def\n";
830 os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
831 << " 2 index 1 index sub 2 index 2 index add lineto\n"
832 << " 2 index 1 index sub 2 index 2 index sub lineto\n"
833 << " 2 index 1 index add 2 index 2 index sub lineto\n"
834 << " closepath pop pop pop} bind def\n";
836 os << "/di { newpath 2 index 1 index add 2 index moveto\n"
837 << " 2 index 2 index 2 index add lineto\n"
838 << " 2 index 1 index sub 2 index lineto\n"
839 << " 2 index 2 index 2 index sub lineto\n"
840 << " closepath pop pop pop} bind def\n";
842 os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
843 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
845 os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
846 << " setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n"
848 os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
849 << " setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n"
851 os << "/nfemale { 0 0 0 setrgbcolor 3 index "
852 << _nodeBorderQuotient/(1+_nodeBorderQuotient)
853 << " 1.5 mul mul setlinewidth\n"
854 << " newpath 5 index 5 index moveto "
855 << "5 index 5 index 5 index 3.01 mul sub\n"
856 << " lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub moveto\n"
857 << " 5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto stroke\n"
858 << " 5 index 5 index 5 index c fill\n"
859 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
862 << " 0 0 0 setrgbcolor 3 index "
863 << _nodeBorderQuotient/(1+_nodeBorderQuotient)
864 <<" 1.5 mul mul setlinewidth\n"
865 << " newpath 5 index 5 index moveto\n"
866 << " 5 index 4 index 1 mul 1.5 mul add\n"
867 << " 5 index 5 index 3 sqrt 1.5 mul mul add\n"
868 << " 1 index 1 index lineto\n"
869 << " 1 index 1 index 7 index sub moveto\n"
870 << " 1 index 1 index lineto\n"
871 << " exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub lineto\n"
873 << " 5 index 5 index 5 index c fill\n"
874 << " setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
878 os << "/arrl " << _arrowLength << " def\n";
879 os << "/arrw " << _arrowWidth << " def\n";
881 os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
882 //len w dx_norm dy_norm x1 y1 cr cg cb
883 os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def\n"
884 << " /w exch def /len exch def\n"
885 // << " 0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
886 << " newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
887 << " len w sub arrl sub dx dy lrl\n"
888 << " arrw dy dx neg lrl\n"
889 << " dx arrl w add mul dy w 2 div arrw add mul sub\n"
890 << " dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
891 << " dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
892 << " dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
893 << " arrw dy dx neg lrl\n"
894 << " len w sub arrl sub neg dx dy lrl\n"
895 << " closepath fill } bind def\n";
896 os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
897 << " neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n";
901 if(bb.height()>bb.width()) {
902 double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.height(),
903 (A4WIDTH-2*A4BORDER)/bb.width());
904 os << ((A4WIDTH -2*A4BORDER)-sc*bb.width())/2 + A4BORDER << ' '
905 << ((A4HEIGHT-2*A4BORDER)-sc*bb.height())/2 + A4BORDER
907 << sc << " dup scale\n"
908 << -bb.left() << ' ' << -bb.bottom() << " translate\n";
911 //\todo Verify centering
912 double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.width(),
913 (A4WIDTH-2*A4BORDER)/bb.height());
914 os << ((A4WIDTH -2*A4BORDER)-sc*bb.height())/2 + A4BORDER << ' '
915 << ((A4HEIGHT-2*A4BORDER)-sc*bb.width())/2 + A4BORDER
917 << sc << " dup scale\n90 rotate\n"
918 << -bb.left() << ' ' << -bb.top() << " translate\n";
920 else if(_scale!=1.0) os << _scale << " dup scale\n";
923 os << "%Arcs:\ngsave\n";
924 if(_enableParallel) {
926 for(ArcIt e(g);e!=INVALID;++e)
927 if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
928 &&g.source(e)!=g.target(e))
930 std::sort(el.begin(),el.end(),arcLess(g));
932 typename std::vector<Arc>::iterator j;
933 for(typename std::vector<Arc>::iterator i=el.begin();i!=el.end();i=j) {
934 for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ;
937 for(typename std::vector<Arc>::iterator e=i;e!=j;++e)
938 sw+=_arcWidths[*e]*_arcWidthScale+_parArcDist;
942 dvec(mycoords[g.target(*i)]-mycoords[g.source(*i)]);
943 double l=std::sqrt(dvec.normSquare());
944 //\todo better 'epsilon' would be nice here.
945 dim2::Point<double> d(dvec/std::max(l,EPSILON));
946 dim2::Point<double> m;
947 // m=dim2::Point<double>(mycoords[g.target(*i)]+mycoords[g.source(*i)])/2.0;
949 // m=dim2::Point<double>(mycoords[g.source(*i)])+
950 // dvec*(double(_nodeSizes[g.source(*i)])/
951 // (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)]));
953 m=dim2::Point<double>(mycoords[g.source(*i)])+
954 d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0;
956 for(typename std::vector<Arc>::iterator e=i;e!=j;++e) {
957 sw+=_arcWidths[*e]*_arcWidthScale/2.0;
958 dim2::Point<double> mm=m+rot90(d)*sw/.75;
961 dim2::Point<double> s=mycoords[g.source(*e)];
962 dim2::Point<double> t=mycoords[g.target(*e)];
963 double rn=_nodeSizes[g.target(*e)]*_nodeScale;
964 node_shape=_nodeShapes[g.target(*e)];
965 dim2::Bezier3 bez(s,mm,mm,t);
967 for(int ii=0;ii<INTERPOL_PREC;++ii)
968 if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2;
970 dim2::Point<double> apoint=bez((t1+t2)/2);
971 rn = _arrowLength+_arcWidths[*e]*_arcWidthScale;
974 for(int ii=0;ii<INTERPOL_PREC;++ii)
975 if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2;
977 dim2::Point<double> linend=bez((t1+t2)/2);
978 bez=bez.before((t1+t2)/2);
979 // rn=_nodeSizes[g.source(*e)]*_nodeScale;
980 // node_shape=_nodeShapes[g.source(*e)];
982 // for(int i=0;i<INTERPOL_PREC;++i)
983 // if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t1=(t1+t2)/2;
984 // else t2=(t1+t2)/2;
985 // bez=bez.after((t1+t2)/2);
986 os << _arcWidths[*e]*_arcWidthScale << " setlinewidth "
987 << _arcColors[*e].red() << ' '
988 << _arcColors[*e].green() << ' '
989 << _arcColors[*e].blue() << " setrgbcolor newpath\n"
990 << bez.p1.x << ' ' << bez.p1.y << " moveto\n"
991 << bez.p2.x << ' ' << bez.p2.y << ' '
992 << bez.p3.x << ' ' << bez.p3.y << ' '
993 << bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n";
994 dim2::Point<double> dd(rot90(linend-apoint));
995 dd*=(.5*_arcWidths[*e]*_arcWidthScale+_arrowWidth)/
996 std::sqrt(dd.normSquare());
997 os << "newpath " << psOut(apoint) << " moveto "
998 << psOut(linend+dd) << " lineto "
999 << psOut(linend-dd) << " lineto closepath fill\n";
1002 os << mycoords[g.source(*e)].x << ' '
1003 << mycoords[g.source(*e)].y << ' '
1004 << mm.x << ' ' << mm.y << ' '
1005 << mycoords[g.target(*e)].x << ' '
1006 << mycoords[g.target(*e)].y << ' '
1007 << _arcColors[*e].red() << ' '
1008 << _arcColors[*e].green() << ' '
1009 << _arcColors[*e].blue() << ' '
1010 << _arcWidths[*e]*_arcWidthScale << " lb\n";
1012 sw+=_arcWidths[*e]*_arcWidthScale/2.0+_parArcDist;
1016 else for(ArcIt e(g);e!=INVALID;++e)
1017 if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
1018 &&g.source(e)!=g.target(e))
1020 dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]);
1021 double rn=_nodeSizes[g.target(e)]*_nodeScale;
1022 int node_shape=_nodeShapes[g.target(e)];
1024 for(int i=0;i<INTERPOL_PREC;++i)
1025 if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2;
1027 double l=std::sqrt(d.normSquare());
1030 os << l*(1-(t1+t2)/2) << ' '
1031 << _arcWidths[e]*_arcWidthScale << ' '
1032 << d.x << ' ' << d.y << ' '
1033 << mycoords[g.source(e)].x << ' '
1034 << mycoords[g.source(e)].y << ' '
1035 << _arcColors[e].red() << ' '
1036 << _arcColors[e].green() << ' '
1037 << _arcColors[e].blue() << " arr\n";
1039 else os << mycoords[g.source(e)].x << ' '
1040 << mycoords[g.source(e)].y << ' '
1041 << mycoords[g.target(e)].x << ' '
1042 << mycoords[g.target(e)].y << ' '
1043 << _arcColors[e].red() << ' '
1044 << _arcColors[e].green() << ' '
1045 << _arcColors[e].blue() << ' '
1046 << _arcWidths[e]*_arcWidthScale << " l\n";
1050 os << "%Nodes:\ngsave\n";
1051 for(NodeIt n(g);n!=INVALID;++n) {
1052 os << mycoords[n].x << ' ' << mycoords[n].y << ' '
1053 << _nodeSizes[n]*_nodeScale << ' '
1054 << _nodeColors[n].red() << ' '
1055 << _nodeColors[n].green() << ' '
1056 << _nodeColors[n].blue() << ' ';
1057 switch(_nodeShapes[n]) {
1067 os<< "nfemale";break;
1074 os << "%Node texts:\ngsave\n";
1075 os << "/fosi " << _nodeTextSize << " def\n";
1076 os << "(Helvetica) findfont fosi scalefont setfont\n";
1077 for(NodeIt n(g);n!=INVALID;++n) {
1078 switch(_nodeTextColorType) {
1080 os << psOut(distantColor(_nodeColors[n])) << " setrgbcolor\n";
1083 os << psOut(distantBW(_nodeColors[n])) << " setrgbcolor\n";
1086 os << psOut(distantColor(_nodeTextColors[n])) << " setrgbcolor\n";
1089 os << "0 0 0 setrgbcolor\n";
1091 os << mycoords[n].x << ' ' << mycoords[n].y
1092 << " (" << _nodeTexts[n] << ") cshow\n";
1096 if(_showNodePsText) {
1097 os << "%Node PS blocks:\ngsave\n";
1098 for(NodeIt n(g);n!=INVALID;++n)
1099 os << mycoords[n].x << ' ' << mycoords[n].y
1100 << " moveto\n" << _nodePsTexts[n] << "\n";
1104 os << "grestore\nshowpage\n";
1107 if(_pleaseRemoveOsStream) {delete &os;}
1111 ///These are just some aliases to other parameter setting functions.
1115 ///An alias for arcWidths()
1117 ///An alias for arcWidths()
1119 template<class X> GraphToEps<ArcWidthsTraits<X> > edgeWidths(const X &x)
1121 return arcWidths(x);
1124 ///An alias for arcColors()
1126 ///An alias for arcColors()
1128 template<class X> GraphToEps<ArcColorsTraits<X> >
1129 edgeColors(const X &x)
1131 return arcColors(x);
1134 ///An alias for arcWidthScale()
1136 ///An alias for arcWidthScale()
1138 GraphToEps<T> &edgeWidthScale(double d) {return arcWidthScale(d);}
1140 ///An alias for autoArcWidthScale()
1142 ///An alias for autoArcWidthScale()
1144 GraphToEps<T> &autoEdgeWidthScale(bool b=true)
1146 return autoArcWidthScale(b);
1149 ///An alias for absoluteArcWidths()
1151 ///An alias for absoluteArcWidths()
1153 GraphToEps<T> &absoluteEdgeWidths(bool b=true)
1155 return absoluteArcWidths(b);
1158 ///An alias for parArcDist()
1160 ///An alias for parArcDist()
1162 GraphToEps<T> &parEdgeDist(double d) {return parArcDist(d);}
1164 ///An alias for hideArcs()
1166 ///An alias for hideArcs()
1168 GraphToEps<T> &hideEdges(bool b=true) {return hideArcs(b);}
1174 const int GraphToEps<T>::INTERPOL_PREC = 20;
1176 const double GraphToEps<T>::A4HEIGHT = 841.8897637795276;
1178 const double GraphToEps<T>::A4WIDTH = 595.275590551181;
1180 const double GraphToEps<T>::A4BORDER = 15;
1183 ///Generates an EPS file from a graph
1186 ///Generates an EPS file from a graph.
1187 ///\param g is a reference to the graph to be printed
1188 ///\param os is a reference to the output stream.
1189 ///By default it is <tt>std::cout</tt>
1191 ///This function also has a lot of
1192 ///\ref named-templ-func-param "named parameters",
1193 ///they are declared as the members of class \ref GraphToEps. The following
1194 ///example shows how to use these parameters.
1196 /// graphToEps(g,os).scale(10).coords(coords)
1197 /// .nodeScale(2).nodeSizes(sizes)
1198 /// .arcWidthScale(.4).run();
1200 ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
1201 ///to the end of the parameter list.
1203 ///\sa graphToEps(G &g, const char *file_name)
1205 GraphToEps<DefaultGraphToEpsTraits<G> >
1206 graphToEps(G &g, std::ostream& os=std::cout)
1209 GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g,os));
1212 ///Generates an EPS file from a graph
1215 ///This function does the same as
1216 ///\ref graphToEps(G &g,std::ostream& os)
1217 ///but it writes its output into the file \c file_name
1218 ///instead of a stream.
1219 ///\sa graphToEps(G &g, std::ostream& os)
1221 GraphToEps<DefaultGraphToEpsTraits<G> >
1222 graphToEps(G &g,const char *file_name)
1224 return GraphToEps<DefaultGraphToEpsTraits<G> >
1225 (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name),true));
1228 ///Generates an EPS file from a graph
1231 ///This function does the same as
1232 ///\ref graphToEps(G &g,std::ostream& os)
1233 ///but it writes its output into the file \c file_name
1234 ///instead of a stream.
1235 ///\sa graphToEps(G &g, std::ostream& os)
1237 GraphToEps<DefaultGraphToEpsTraits<G> >
1238 graphToEps(G &g,const std::string& file_name)
1240 return GraphToEps<DefaultGraphToEpsTraits<G> >
1241 (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name.c_str()),true));
1244 } //END OF NAMESPACE LEMON
1246 #endif // LEMON_GRAPH_TO_EPS_H