| 
alpar@209
 | 
     1  | 
/* -*- mode: C++; indent-tabs-mode: nil; -*-
  | 
| 
alpar@128
 | 
     2  | 
 *
  | 
| 
alpar@209
 | 
     3  | 
 * This file is a part of LEMON, a generic C++ optimization library.
  | 
| 
alpar@128
 | 
     4  | 
 *
  | 
| 
alpar@128
 | 
     5  | 
 * Copyright (C) 2003-2008
  | 
| 
alpar@128
 | 
     6  | 
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
  | 
| 
alpar@128
 | 
     7  | 
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
  | 
| 
alpar@128
 | 
     8  | 
 *
  | 
| 
alpar@128
 | 
     9  | 
 * Permission to use, modify and distribute this software is granted
  | 
| 
alpar@128
 | 
    10  | 
 * provided that this copyright notice appears in all copies. For
  | 
| 
alpar@128
 | 
    11  | 
 * precise terms see the accompanying LICENSE file.
  | 
| 
alpar@128
 | 
    12  | 
 *
  | 
| 
alpar@128
 | 
    13  | 
 * This software is provided "AS IS" with no warranty of any kind,
  | 
| 
alpar@128
 | 
    14  | 
 * express or implied, and with no claim as to its suitability for any
  | 
| 
alpar@128
 | 
    15  | 
 * purpose.
  | 
| 
alpar@128
 | 
    16  | 
 *
  | 
| 
alpar@128
 | 
    17  | 
 */
  | 
| 
alpar@128
 | 
    18  | 
  | 
| 
alpar@128
 | 
    19  | 
#ifndef LEMON_GRAPH_TO_EPS_H
  | 
| 
alpar@128
 | 
    20  | 
#define LEMON_GRAPH_TO_EPS_H
  | 
| 
alpar@128
 | 
    21  | 
  | 
| 
alpar@128
 | 
    22  | 
#include<iostream>
  | 
| 
alpar@128
 | 
    23  | 
#include<fstream>
  | 
| 
alpar@128
 | 
    24  | 
#include<sstream>
  | 
| 
alpar@128
 | 
    25  | 
#include<algorithm>
  | 
| 
alpar@128
 | 
    26  | 
#include<vector>
  | 
| 
alpar@128
 | 
    27  | 
  | 
| 
deba@134
 | 
    28  | 
#ifndef WIN32
  | 
| 
deba@134
 | 
    29  | 
#include<sys/time.h>
  | 
| 
alpar@128
 | 
    30  | 
#include<ctime>
  | 
| 
deba@134
 | 
    31  | 
#else
  | 
| 
alpar@143
 | 
    32  | 
#define WIN32_LEAN_AND_MEAN
  | 
| 
alpar@143
 | 
    33  | 
#define NOMINMAX
  | 
| 
deba@134
 | 
    34  | 
#include<windows.h>
  | 
| 
deba@134
 | 
    35  | 
#endif
  | 
| 
alpar@128
 | 
    36  | 
  | 
| 
alpar@128
 | 
    37  | 
#include<lemon/math.h>
  | 
| 
deba@220
 | 
    38  | 
#include<lemon/core.h>
  | 
| 
alpar@128
 | 
    39  | 
#include<lemon/dim2.h>
  | 
| 
alpar@128
 | 
    40  | 
#include<lemon/maps.h>
  | 
| 
alpar@128
 | 
    41  | 
#include<lemon/color.h>
  | 
| 
alpar@128
 | 
    42  | 
#include<lemon/bits/bezier.h>
  | 
| 
deba@290
 | 
    43  | 
#include<lemon/error.h>
  | 
| 
alpar@128
 | 
    44  | 
  | 
| 
alpar@128
 | 
    45  | 
  | 
| 
alpar@128
 | 
    46  | 
///\ingroup eps_io
  | 
| 
alpar@128
 | 
    47  | 
///\file
  | 
| 
alpar@133
 | 
    48  | 
///\brief A well configurable tool for visualizing graphs
  | 
| 
alpar@128
 | 
    49  | 
  | 
| 
alpar@128
 | 
    50  | 
namespace lemon {
 | 
| 
alpar@128
 | 
    51  | 
  | 
| 
alpar@131
 | 
    52  | 
  namespace _graph_to_eps_bits {
 | 
| 
alpar@131
 | 
    53  | 
    template<class MT>
  | 
| 
alpar@131
 | 
    54  | 
    class _NegY {
 | 
| 
alpar@131
 | 
    55  | 
    public:
  | 
| 
alpar@131
 | 
    56  | 
      typedef typename MT::Key Key;
  | 
| 
alpar@131
 | 
    57  | 
      typedef typename MT::Value Value;
  | 
| 
alpar@131
 | 
    58  | 
      const MT ↦
  | 
| 
alpar@131
 | 
    59  | 
      int yscale;
  | 
| 
alpar@131
 | 
    60  | 
      _NegY(const MT &m,bool b) : map(m), yscale(1-b*2) {}
 | 
| 
alpar@131
 | 
    61  | 
      Value operator[](Key n) { return Value(map[n].x,map[n].y*yscale);}
 | 
| 
alpar@131
 | 
    62  | 
    };
  | 
| 
alpar@131
 | 
    63  | 
  }
  | 
| 
alpar@209
 | 
    64  | 
  | 
| 
alpar@128
 | 
    65  | 
///Default traits class of \ref GraphToEps
  | 
| 
alpar@128
 | 
    66  | 
  | 
| 
kpeter@206
 | 
    67  | 
///Default traits class of \ref GraphToEps.
  | 
| 
alpar@128
 | 
    68  | 
///
  | 
| 
alpar@128
 | 
    69  | 
///\c G is the type of the underlying graph.
  | 
| 
alpar@128
 | 
    70  | 
template<class G>
  | 
| 
alpar@128
 | 
    71  | 
struct DefaultGraphToEpsTraits
  | 
| 
alpar@128
 | 
    72  | 
{
 | 
| 
alpar@128
 | 
    73  | 
  typedef G Graph;
  | 
| 
alpar@128
 | 
    74  | 
  typedef typename Graph::Node Node;
  | 
| 
alpar@128
 | 
    75  | 
  typedef typename Graph::NodeIt NodeIt;
  | 
| 
alpar@128
 | 
    76  | 
  typedef typename Graph::Arc Arc;
  | 
| 
alpar@128
 | 
    77  | 
  typedef typename Graph::ArcIt ArcIt;
  | 
| 
alpar@128
 | 
    78  | 
  typedef typename Graph::InArcIt InArcIt;
  | 
| 
alpar@128
 | 
    79  | 
  typedef typename Graph::OutArcIt OutArcIt;
  | 
| 
alpar@209
 | 
    80  | 
  | 
| 
alpar@128
 | 
    81  | 
  | 
| 
alpar@128
 | 
    82  | 
  const Graph &g;
  | 
| 
alpar@128
 | 
    83  | 
  | 
| 
alpar@128
 | 
    84  | 
  std::ostream& os;
  | 
| 
alpar@209
 | 
    85  | 
  | 
| 
alpar@128
 | 
    86  | 
  typedef ConstMap<typename Graph::Node,dim2::Point<double> > CoordsMapType;
  | 
| 
alpar@128
 | 
    87  | 
  CoordsMapType _coords;
  | 
| 
alpar@128
 | 
    88  | 
  ConstMap<typename Graph::Node,double > _nodeSizes;
  | 
| 
alpar@128
 | 
    89  | 
  ConstMap<typename Graph::Node,int > _nodeShapes;
  | 
| 
alpar@128
 | 
    90  | 
  | 
| 
alpar@128
 | 
    91  | 
  ConstMap<typename Graph::Node,Color > _nodeColors;
  | 
| 
alpar@128
 | 
    92  | 
  ConstMap<typename Graph::Arc,Color > _arcColors;
  | 
| 
alpar@128
 | 
    93  | 
  | 
| 
alpar@128
 | 
    94  | 
  ConstMap<typename Graph::Arc,double > _arcWidths;
  | 
| 
alpar@128
 | 
    95  | 
  | 
| 
alpar@128
 | 
    96  | 
  double _arcWidthScale;
  | 
| 
alpar@209
 | 
    97  | 
  | 
| 
alpar@128
 | 
    98  | 
  double _nodeScale;
  | 
| 
alpar@128
 | 
    99  | 
  double _xBorder, _yBorder;
  | 
| 
alpar@128
 | 
   100  | 
  double _scale;
  | 
| 
alpar@128
 | 
   101  | 
  double _nodeBorderQuotient;
  | 
| 
alpar@209
 | 
   102  | 
  | 
| 
alpar@128
 | 
   103  | 
  bool _drawArrows;
  | 
| 
alpar@128
 | 
   104  | 
  double _arrowLength, _arrowWidth;
  | 
| 
alpar@209
 | 
   105  | 
  | 
| 
alpar@128
 | 
   106  | 
  bool _showNodes, _showArcs;
  | 
| 
alpar@128
 | 
   107  | 
  | 
| 
alpar@128
 | 
   108  | 
  bool _enableParallel;
  | 
| 
alpar@128
 | 
   109  | 
  double _parArcDist;
  | 
| 
alpar@128
 | 
   110  | 
  | 
| 
alpar@128
 | 
   111  | 
  bool _showNodeText;
  | 
| 
alpar@209
 | 
   112  | 
  ConstMap<typename Graph::Node,bool > _nodeTexts;
  | 
| 
alpar@128
 | 
   113  | 
  double _nodeTextSize;
  | 
| 
alpar@128
 | 
   114  | 
  | 
| 
alpar@128
 | 
   115  | 
  bool _showNodePsText;
  | 
| 
alpar@209
 | 
   116  | 
  ConstMap<typename Graph::Node,bool > _nodePsTexts;
  | 
| 
alpar@128
 | 
   117  | 
  char *_nodePsTextsPreamble;
  | 
| 
alpar@209
 | 
   118  | 
  | 
| 
alpar@128
 | 
   119  | 
  bool _undirected;
  | 
| 
alpar@128
 | 
   120  | 
  | 
| 
alpar@128
 | 
   121  | 
  bool _pleaseRemoveOsStream;
  | 
| 
alpar@128
 | 
   122  | 
  | 
| 
alpar@128
 | 
   123  | 
  bool _scaleToA4;
  | 
| 
alpar@128
 | 
   124  | 
  | 
| 
alpar@128
 | 
   125  | 
  std::string _title;
  | 
| 
alpar@128
 | 
   126  | 
  std::string _copyright;
  | 
| 
alpar@128
 | 
   127  | 
  | 
| 
alpar@209
 | 
   128  | 
  enum NodeTextColorType
  | 
| 
alpar@128
 | 
   129  | 
    { DIST_COL=0, DIST_BW=1, CUST_COL=2, SAME_COL=3 } _nodeTextColorType;
 | 
| 
alpar@128
 | 
   130  | 
  ConstMap<typename Graph::Node,Color > _nodeTextColors;
  | 
| 
alpar@128
 | 
   131  | 
  | 
| 
alpar@128
 | 
   132  | 
  bool _autoNodeScale;
  | 
| 
alpar@128
 | 
   133  | 
  bool _autoArcWidthScale;
  | 
| 
alpar@128
 | 
   134  | 
  | 
| 
alpar@128
 | 
   135  | 
  bool _absoluteNodeSizes;
  | 
| 
alpar@128
 | 
   136  | 
  bool _absoluteArcWidths;
  | 
| 
alpar@128
 | 
   137  | 
  | 
| 
alpar@128
 | 
   138  | 
  bool _negY;
  | 
| 
alpar@128
 | 
   139  | 
  | 
| 
alpar@128
 | 
   140  | 
  bool _preScale;
  | 
| 
alpar@128
 | 
   141  | 
  ///Constructor
  | 
| 
alpar@128
 | 
   142  | 
  | 
| 
alpar@128
 | 
   143  | 
  ///Constructor
  | 
| 
kpeter@206
 | 
   144  | 
  ///\param _g  Reference to the graph to be printed.
  | 
| 
kpeter@206
 | 
   145  | 
  ///\param _os Reference to the output stream.
  | 
| 
alpar@210
 | 
   146  | 
  ///\param _os Reference to the output stream.
  | 
| 
alpar@210
 | 
   147  | 
  ///By default it is <tt>std::cout</tt>.
  | 
| 
alpar@128
 | 
   148  | 
  ///\param _pros If it is \c true, then the \c ostream referenced by \c _os
  | 
| 
alpar@128
 | 
   149  | 
  ///will be explicitly deallocated by the destructor.
  | 
| 
alpar@128
 | 
   150  | 
  DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout,
  | 
| 
alpar@209
 | 
   151  | 
                          bool _pros=false) :
  | 
| 
alpar@128
 | 
   152  | 
    g(_g), os(_os),
  | 
| 
alpar@132
 | 
   153  | 
    _coords(dim2::Point<double>(1,1)), _nodeSizes(1), _nodeShapes(0),
  | 
| 
alpar@128
 | 
   154  | 
    _nodeColors(WHITE), _arcColors(BLACK),
  | 
| 
alpar@128
 | 
   155  | 
    _arcWidths(1.0), _arcWidthScale(0.003),
  | 
| 
alpar@132
 | 
   156  | 
    _nodeScale(.01), _xBorder(10), _yBorder(10), _scale(1.0),
  | 
| 
alpar@128
 | 
   157  | 
    _nodeBorderQuotient(.1),
  | 
| 
alpar@128
 | 
   158  | 
    _drawArrows(false), _arrowLength(1), _arrowWidth(0.3),
  | 
| 
alpar@128
 | 
   159  | 
    _showNodes(true), _showArcs(true),
  | 
| 
alpar@128
 | 
   160  | 
    _enableParallel(false), _parArcDist(1),
  | 
| 
alpar@128
 | 
   161  | 
    _showNodeText(false), _nodeTexts(false), _nodeTextSize(1),
  | 
| 
alpar@128
 | 
   162  | 
    _showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0),
  | 
| 
alpar@131
 | 
   163  | 
    _undirected(lemon::UndirectedTagIndicator<G>::value),
  | 
| 
alpar@128
 | 
   164  | 
    _pleaseRemoveOsStream(_pros), _scaleToA4(false),
  | 
| 
alpar@128
 | 
   165  | 
    _nodeTextColorType(SAME_COL), _nodeTextColors(BLACK),
  | 
| 
alpar@128
 | 
   166  | 
    _autoNodeScale(false),
  | 
| 
alpar@128
 | 
   167  | 
    _autoArcWidthScale(false),
  | 
| 
alpar@128
 | 
   168  | 
    _absoluteNodeSizes(false),
  | 
| 
alpar@128
 | 
   169  | 
    _absoluteArcWidths(false),
  | 
| 
alpar@128
 | 
   170  | 
    _negY(false),
  | 
| 
alpar@128
 | 
   171  | 
    _preScale(true)
  | 
| 
alpar@128
 | 
   172  | 
  {}
 | 
| 
alpar@128
 | 
   173  | 
};
  | 
| 
alpar@128
 | 
   174  | 
  | 
| 
alpar@133
 | 
   175  | 
///Auxiliary class to implement the named parameters of \ref graphToEps()
  | 
| 
alpar@128
 | 
   176  | 
  | 
| 
kpeter@206
 | 
   177  | 
///Auxiliary class to implement the named parameters of \ref graphToEps().
  | 
| 
kpeter@206
 | 
   178  | 
///
  | 
| 
kpeter@206
 | 
   179  | 
///For detailed examples see the \ref graph_to_eps_demo.cc demo file.
  | 
| 
alpar@209
 | 
   180  | 
template<class T> class GraphToEps : public T
  | 
| 
alpar@128
 | 
   181  | 
{
 | 
| 
alpar@128
 | 
   182  | 
  // Can't believe it is required by the C++ standard
  | 
| 
alpar@128
 | 
   183  | 
  using T::g;
  | 
| 
alpar@128
 | 
   184  | 
  using T::os;
  | 
| 
alpar@128
 | 
   185  | 
  | 
| 
alpar@128
 | 
   186  | 
  using T::_coords;
  | 
| 
alpar@128
 | 
   187  | 
  using T::_nodeSizes;
  | 
| 
alpar@128
 | 
   188  | 
  using T::_nodeShapes;
  | 
| 
alpar@128
 | 
   189  | 
  using T::_nodeColors;
  | 
| 
alpar@128
 | 
   190  | 
  using T::_arcColors;
  | 
| 
alpar@128
 | 
   191  | 
  using T::_arcWidths;
  | 
| 
alpar@128
 | 
   192  | 
  | 
| 
alpar@128
 | 
   193  | 
  using T::_arcWidthScale;
  | 
| 
alpar@128
 | 
   194  | 
  using T::_nodeScale;
  | 
| 
alpar@128
 | 
   195  | 
  using T::_xBorder;
  | 
| 
alpar@128
 | 
   196  | 
  using T::_yBorder;
  | 
| 
alpar@128
 | 
   197  | 
  using T::_scale;
  | 
| 
alpar@128
 | 
   198  | 
  using T::_nodeBorderQuotient;
  | 
| 
alpar@209
 | 
   199  | 
  | 
| 
alpar@128
 | 
   200  | 
  using T::_drawArrows;
  | 
| 
alpar@128
 | 
   201  | 
  using T::_arrowLength;
  | 
| 
alpar@128
 | 
   202  | 
  using T::_arrowWidth;
  | 
| 
alpar@209
 | 
   203  | 
  | 
| 
alpar@128
 | 
   204  | 
  using T::_showNodes;
  | 
| 
alpar@128
 | 
   205  | 
  using T::_showArcs;
  | 
| 
alpar@128
 | 
   206  | 
  | 
| 
alpar@128
 | 
   207  | 
  using T::_enableParallel;
  | 
| 
alpar@128
 | 
   208  | 
  using T::_parArcDist;
  | 
| 
alpar@128
 | 
   209  | 
  | 
| 
alpar@128
 | 
   210  | 
  using T::_showNodeText;
  | 
| 
alpar@209
 | 
   211  | 
  using T::_nodeTexts;
  | 
| 
alpar@128
 | 
   212  | 
  using T::_nodeTextSize;
  | 
| 
alpar@128
 | 
   213  | 
  | 
| 
alpar@128
 | 
   214  | 
  using T::_showNodePsText;
  | 
| 
alpar@209
 | 
   215  | 
  using T::_nodePsTexts;
  | 
| 
alpar@128
 | 
   216  | 
  using T::_nodePsTextsPreamble;
  | 
| 
alpar@209
 | 
   217  | 
  | 
| 
alpar@128
 | 
   218  | 
  using T::_undirected;
  | 
| 
alpar@128
 | 
   219  | 
  | 
| 
alpar@128
 | 
   220  | 
  using T::_pleaseRemoveOsStream;
  | 
| 
alpar@128
 | 
   221  | 
  | 
| 
alpar@128
 | 
   222  | 
  using T::_scaleToA4;
  | 
| 
alpar@128
 | 
   223  | 
  | 
| 
alpar@128
 | 
   224  | 
  using T::_title;
  | 
| 
alpar@128
 | 
   225  | 
  using T::_copyright;
  | 
| 
alpar@128
 | 
   226  | 
  | 
| 
alpar@128
 | 
   227  | 
  using T::NodeTextColorType;
  | 
| 
alpar@128
 | 
   228  | 
  using T::CUST_COL;
  | 
| 
alpar@128
 | 
   229  | 
  using T::DIST_COL;
  | 
| 
alpar@128
 | 
   230  | 
  using T::DIST_BW;
  | 
| 
alpar@128
 | 
   231  | 
  using T::_nodeTextColorType;
  | 
| 
alpar@128
 | 
   232  | 
  using T::_nodeTextColors;
  | 
| 
alpar@128
 | 
   233  | 
  | 
| 
alpar@128
 | 
   234  | 
  using T::_autoNodeScale;
  | 
| 
alpar@128
 | 
   235  | 
  using T::_autoArcWidthScale;
  | 
| 
alpar@128
 | 
   236  | 
  | 
| 
alpar@128
 | 
   237  | 
  using T::_absoluteNodeSizes;
  | 
| 
alpar@128
 | 
   238  | 
  using T::_absoluteArcWidths;
  | 
| 
alpar@128
 | 
   239  | 
  | 
| 
alpar@128
 | 
   240  | 
  | 
| 
alpar@128
 | 
   241  | 
  using T::_negY;
  | 
| 
alpar@128
 | 
   242  | 
  using T::_preScale;
  | 
| 
alpar@128
 | 
   243  | 
  | 
| 
alpar@128
 | 
   244  | 
  // dradnats ++C eht yb deriuqer si ti eveileb t'naC
  | 
| 
alpar@128
 | 
   245  | 
  | 
| 
alpar@128
 | 
   246  | 
  typedef typename T::Graph Graph;
  | 
| 
alpar@128
 | 
   247  | 
  typedef typename Graph::Node Node;
  | 
| 
alpar@128
 | 
   248  | 
  typedef typename Graph::NodeIt NodeIt;
  | 
| 
alpar@128
 | 
   249  | 
  typedef typename Graph::Arc Arc;
  | 
| 
alpar@128
 | 
   250  | 
  typedef typename Graph::ArcIt ArcIt;
  | 
| 
alpar@128
 | 
   251  | 
  typedef typename Graph::InArcIt InArcIt;
  | 
| 
alpar@128
 | 
   252  | 
  typedef typename Graph::OutArcIt OutArcIt;
  | 
| 
alpar@128
 | 
   253  | 
  | 
| 
alpar@128
 | 
   254  | 
  static const int INTERPOL_PREC;
  | 
| 
alpar@128
 | 
   255  | 
  static const double A4HEIGHT;
  | 
| 
alpar@128
 | 
   256  | 
  static const double A4WIDTH;
  | 
| 
alpar@128
 | 
   257  | 
  static const double A4BORDER;
  | 
| 
alpar@128
 | 
   258  | 
  | 
| 
alpar@128
 | 
   259  | 
  bool dontPrint;
  | 
| 
alpar@128
 | 
   260  | 
  | 
| 
alpar@128
 | 
   261  | 
public:
  | 
| 
alpar@128
 | 
   262  | 
  ///Node shapes
  | 
| 
alpar@128
 | 
   263  | 
  | 
| 
kpeter@206
 | 
   264  | 
  ///Node shapes.
  | 
| 
alpar@128
 | 
   265  | 
  ///
  | 
| 
alpar@209
 | 
   266  | 
  enum NodeShapes {
 | 
| 
alpar@128
 | 
   267  | 
    /// = 0
  | 
| 
alpar@128
 | 
   268  | 
    ///\image html nodeshape_0.png
  | 
| 
alpar@128
 | 
   269  | 
    ///\image latex nodeshape_0.eps "CIRCLE shape (0)" width=2cm
  | 
| 
alpar@209
 | 
   270  | 
    CIRCLE=0,
  | 
| 
alpar@128
 | 
   271  | 
    /// = 1
  | 
| 
alpar@128
 | 
   272  | 
    ///\image html nodeshape_1.png
  | 
| 
alpar@128
 | 
   273  | 
    ///\image latex nodeshape_1.eps "SQUARE shape (1)" width=2cm
  | 
| 
alpar@128
 | 
   274  | 
    ///
  | 
| 
alpar@209
 | 
   275  | 
    SQUARE=1,
  | 
| 
alpar@128
 | 
   276  | 
    /// = 2
  | 
| 
alpar@128
 | 
   277  | 
    ///\image html nodeshape_2.png
  | 
| 
alpar@128
 | 
   278  | 
    ///\image latex nodeshape_2.eps "DIAMOND shape (2)" width=2cm
  | 
| 
alpar@128
 | 
   279  | 
    ///
  | 
| 
alpar@128
 | 
   280  | 
    DIAMOND=2,
  | 
| 
alpar@128
 | 
   281  | 
    /// = 3
  | 
| 
alpar@128
 | 
   282  | 
    ///\image html nodeshape_3.png
  | 
| 
alpar@128
 | 
   283  | 
    ///\image latex nodeshape_2.eps "MALE shape (4)" width=2cm
  | 
| 
alpar@128
 | 
   284  | 
    ///
  | 
| 
alpar@128
 | 
   285  | 
    MALE=3,
  | 
| 
alpar@128
 | 
   286  | 
    /// = 4
  | 
| 
alpar@128
 | 
   287  | 
    ///\image html nodeshape_4.png
  | 
| 
alpar@128
 | 
   288  | 
    ///\image latex nodeshape_2.eps "FEMALE shape (4)" width=2cm
  | 
| 
alpar@128
 | 
   289  | 
    ///
  | 
| 
alpar@128
 | 
   290  | 
    FEMALE=4
  | 
| 
alpar@128
 | 
   291  | 
  };
  | 
| 
alpar@128
 | 
   292  | 
  | 
| 
alpar@128
 | 
   293  | 
private:
  | 
| 
alpar@128
 | 
   294  | 
  class arcLess {
 | 
| 
alpar@128
 | 
   295  | 
    const Graph &g;
  | 
| 
alpar@128
 | 
   296  | 
  public:
  | 
| 
alpar@128
 | 
   297  | 
    arcLess(const Graph &_g) : g(_g) {}
 | 
| 
alpar@209
 | 
   298  | 
    bool operator()(Arc a,Arc b) const
  | 
| 
alpar@128
 | 
   299  | 
    {
 | 
| 
alpar@128
 | 
   300  | 
      Node ai=std::min(g.source(a),g.target(a));
  | 
| 
alpar@128
 | 
   301  | 
      Node aa=std::max(g.source(a),g.target(a));
  | 
| 
alpar@128
 | 
   302  | 
      Node bi=std::min(g.source(b),g.target(b));
  | 
| 
alpar@128
 | 
   303  | 
      Node ba=std::max(g.source(b),g.target(b));
  | 
| 
alpar@128
 | 
   304  | 
      return ai<bi ||
  | 
| 
alpar@209
 | 
   305  | 
        (ai==bi && (aa < ba ||
  | 
| 
alpar@209
 | 
   306  | 
                    (aa==ba && ai==g.source(a) && bi==g.target(b))));
  | 
| 
alpar@128
 | 
   307  | 
    }
  | 
| 
alpar@128
 | 
   308  | 
  };
  | 
| 
alpar@128
 | 
   309  | 
  bool isParallel(Arc e,Arc f) const
  | 
| 
alpar@128
 | 
   310  | 
  {
 | 
| 
alpar@128
 | 
   311  | 
    return (g.source(e)==g.source(f)&&
  | 
| 
alpar@209
 | 
   312  | 
            g.target(e)==g.target(f)) ||
  | 
| 
alpar@128
 | 
   313  | 
      (g.source(e)==g.target(f)&&
  | 
| 
alpar@128
 | 
   314  | 
       g.target(e)==g.source(f));
  | 
| 
alpar@128
 | 
   315  | 
  }
  | 
| 
alpar@128
 | 
   316  | 
  template<class TT>
  | 
| 
alpar@209
 | 
   317  | 
  static std::string psOut(const dim2::Point<TT> &p)
  | 
| 
alpar@128
 | 
   318  | 
    {
 | 
| 
alpar@209
 | 
   319  | 
      std::ostringstream os;
  | 
| 
alpar@128
 | 
   320  | 
      os << p.x << ' ' << p.y;
  | 
| 
alpar@128
 | 
   321  | 
      return os.str();
  | 
| 
alpar@128
 | 
   322  | 
    }
  | 
| 
alpar@209
 | 
   323  | 
  static std::string psOut(const Color &c)
  | 
| 
alpar@128
 | 
   324  | 
    {
 | 
| 
alpar@209
 | 
   325  | 
      std::ostringstream os;
  | 
| 
alpar@128
 | 
   326  | 
      os << c.red() << ' ' << c.green() << ' ' << c.blue();
  | 
| 
alpar@128
 | 
   327  | 
      return os.str();
  | 
| 
alpar@128
 | 
   328  | 
    }
  | 
| 
alpar@209
 | 
   329  | 
  | 
| 
alpar@128
 | 
   330  | 
public:
  | 
| 
alpar@128
 | 
   331  | 
  GraphToEps(const T &t) : T(t), dontPrint(false) {};
 | 
| 
alpar@209
 | 
   332  | 
  | 
| 
alpar@128
 | 
   333  | 
  template<class X> struct CoordsTraits : public T {
 | 
| 
alpar@128
 | 
   334  | 
  typedef X CoordsMapType;
  | 
| 
alpar@128
 | 
   335  | 
    const X &_coords;
  | 
| 
alpar@128
 | 
   336  | 
    CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
 | 
| 
alpar@128
 | 
   337  | 
  };
  | 
| 
alpar@128
 | 
   338  | 
  ///Sets the map of the node coordinates
  | 
| 
alpar@128
 | 
   339  | 
  | 
| 
alpar@128
 | 
   340  | 
  ///Sets the map of the node coordinates.
  | 
| 
kpeter@206
 | 
   341  | 
  ///\param x must be a node map with \ref dim2::Point "dim2::Point<double>" or
  | 
| 
alpar@209
 | 
   342  | 
  ///\ref dim2::Point "dim2::Point<int>" values.
  | 
| 
alpar@128
 | 
   343  | 
  template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
 | 
| 
alpar@128
 | 
   344  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   345  | 
    return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   346  | 
  }
  | 
| 
alpar@128
 | 
   347  | 
  template<class X> struct NodeSizesTraits : public T {
 | 
| 
alpar@128
 | 
   348  | 
    const X &_nodeSizes;
  | 
| 
alpar@128
 | 
   349  | 
    NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
 | 
| 
alpar@128
 | 
   350  | 
  };
  | 
| 
alpar@128
 | 
   351  | 
  ///Sets the map of the node sizes
  | 
| 
alpar@128
 | 
   352  | 
  | 
| 
kpeter@206
 | 
   353  | 
  ///Sets the map of the node sizes.
  | 
| 
alpar@209
 | 
   354  | 
  ///\param x must be a node map with \c double (or convertible) values.
  | 
| 
alpar@128
 | 
   355  | 
  template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
  | 
| 
alpar@128
 | 
   356  | 
  {
 | 
| 
alpar@128
 | 
   357  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   358  | 
    return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   359  | 
  }
  | 
| 
alpar@128
 | 
   360  | 
  template<class X> struct NodeShapesTraits : public T {
 | 
| 
alpar@128
 | 
   361  | 
    const X &_nodeShapes;
  | 
| 
alpar@128
 | 
   362  | 
    NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
 | 
| 
alpar@128
 | 
   363  | 
  };
  | 
| 
alpar@128
 | 
   364  | 
  ///Sets the map of the node shapes
  | 
| 
alpar@128
 | 
   365  | 
  | 
| 
alpar@128
 | 
   366  | 
  ///Sets the map of the node shapes.
  | 
| 
alpar@133
 | 
   367  | 
  ///The available shape values
  | 
| 
alpar@128
 | 
   368  | 
  ///can be found in \ref NodeShapes "enum NodeShapes".
  | 
| 
alpar@209
 | 
   369  | 
  ///\param x must be a node map with \c int (or convertible) values.
  | 
| 
alpar@128
 | 
   370  | 
  ///\sa NodeShapes
  | 
| 
alpar@128
 | 
   371  | 
  template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x)
  | 
| 
alpar@128
 | 
   372  | 
  {
 | 
| 
alpar@128
 | 
   373  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   374  | 
    return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   375  | 
  }
  | 
| 
alpar@128
 | 
   376  | 
  template<class X> struct NodeTextsTraits : public T {
 | 
| 
alpar@128
 | 
   377  | 
    const X &_nodeTexts;
  | 
| 
alpar@128
 | 
   378  | 
    NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
 | 
| 
alpar@128
 | 
   379  | 
  };
  | 
| 
alpar@128
 | 
   380  | 
  ///Sets the text printed on the nodes
  | 
| 
alpar@128
 | 
   381  | 
  | 
| 
kpeter@206
 | 
   382  | 
  ///Sets the text printed on the nodes.
  | 
| 
alpar@128
 | 
   383  | 
  ///\param x must be a node map with type that can be pushed to a standard
  | 
| 
alpar@209
 | 
   384  | 
  ///\c ostream.
  | 
| 
alpar@128
 | 
   385  | 
  template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x)
  | 
| 
alpar@128
 | 
   386  | 
  {
 | 
| 
alpar@128
 | 
   387  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   388  | 
    _showNodeText=true;
  | 
| 
alpar@128
 | 
   389  | 
    return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   390  | 
  }
  | 
| 
alpar@128
 | 
   391  | 
  template<class X> struct NodePsTextsTraits : public T {
 | 
| 
alpar@128
 | 
   392  | 
    const X &_nodePsTexts;
  | 
| 
alpar@128
 | 
   393  | 
    NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
 | 
| 
alpar@128
 | 
   394  | 
  };
  | 
| 
alpar@128
 | 
   395  | 
  ///Inserts a PostScript block to the nodes
  | 
| 
alpar@128
 | 
   396  | 
  | 
| 
alpar@128
 | 
   397  | 
  ///With this command it is possible to insert a verbatim PostScript
  | 
| 
alpar@128
 | 
   398  | 
  ///block to the nodes.
  | 
| 
kpeter@206
 | 
   399  | 
  ///The PS current point will be moved to the center of the node before
  | 
| 
alpar@128
 | 
   400  | 
  ///the PostScript block inserted.
  | 
| 
alpar@128
 | 
   401  | 
  ///
  | 
| 
alpar@128
 | 
   402  | 
  ///Before and after the block a newline character is inserted so you
  | 
| 
alpar@128
 | 
   403  | 
  ///don't have to bother with the separators.
  | 
| 
alpar@128
 | 
   404  | 
  ///
  | 
| 
alpar@128
 | 
   405  | 
  ///\param x must be a node map with type that can be pushed to a standard
  | 
| 
kpeter@206
 | 
   406  | 
  ///\c ostream.
  | 
| 
alpar@128
 | 
   407  | 
  ///
  | 
| 
alpar@128
 | 
   408  | 
  ///\sa nodePsTextsPreamble()
  | 
| 
alpar@128
 | 
   409  | 
  template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x)
  | 
| 
alpar@128
 | 
   410  | 
  {
 | 
| 
alpar@128
 | 
   411  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   412  | 
    _showNodePsText=true;
  | 
| 
alpar@128
 | 
   413  | 
    return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   414  | 
  }
  | 
| 
alpar@128
 | 
   415  | 
  template<class X> struct ArcWidthsTraits : public T {
 | 
| 
alpar@128
 | 
   416  | 
    const X &_arcWidths;
  | 
| 
alpar@128
 | 
   417  | 
    ArcWidthsTraits(const T &t,const X &x) : T(t), _arcWidths(x) {}
 | 
| 
alpar@128
 | 
   418  | 
  };
  | 
| 
alpar@128
 | 
   419  | 
  ///Sets the map of the arc widths
  | 
| 
alpar@128
 | 
   420  | 
  | 
| 
kpeter@206
 | 
   421  | 
  ///Sets the map of the arc widths.
  | 
| 
alpar@209
 | 
   422  | 
  ///\param x must be an arc map with \c double (or convertible) values.
  | 
| 
alpar@128
 | 
   423  | 
  template<class X> GraphToEps<ArcWidthsTraits<X> > arcWidths(const X &x)
  | 
| 
alpar@128
 | 
   424  | 
  {
 | 
| 
alpar@128
 | 
   425  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   426  | 
    return GraphToEps<ArcWidthsTraits<X> >(ArcWidthsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   427  | 
  }
  | 
| 
alpar@128
 | 
   428  | 
  | 
| 
alpar@128
 | 
   429  | 
  template<class X> struct NodeColorsTraits : public T {
 | 
| 
alpar@128
 | 
   430  | 
    const X &_nodeColors;
  | 
| 
alpar@128
 | 
   431  | 
    NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
 | 
| 
alpar@128
 | 
   432  | 
  };
  | 
| 
alpar@128
 | 
   433  | 
  ///Sets the map of the node colors
  | 
| 
alpar@128
 | 
   434  | 
  | 
| 
kpeter@206
 | 
   435  | 
  ///Sets the map of the node colors.
  | 
| 
alpar@128
 | 
   436  | 
  ///\param x must be a node map with \ref Color values.
  | 
| 
alpar@128
 | 
   437  | 
  ///
  | 
| 
alpar@128
 | 
   438  | 
  ///\sa Palette
  | 
| 
alpar@128
 | 
   439  | 
  template<class X> GraphToEps<NodeColorsTraits<X> >
  | 
| 
alpar@128
 | 
   440  | 
  nodeColors(const X &x)
  | 
| 
alpar@128
 | 
   441  | 
  {
 | 
| 
alpar@128
 | 
   442  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   443  | 
    return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   444  | 
  }
  | 
| 
alpar@128
 | 
   445  | 
  template<class X> struct NodeTextColorsTraits : public T {
 | 
| 
alpar@128
 | 
   446  | 
    const X &_nodeTextColors;
  | 
| 
alpar@128
 | 
   447  | 
    NodeTextColorsTraits(const T &t,const X &x) : T(t), _nodeTextColors(x) {}
 | 
| 
alpar@128
 | 
   448  | 
  };
  | 
| 
alpar@128
 | 
   449  | 
  ///Sets the map of the node text colors
  | 
| 
alpar@128
 | 
   450  | 
  | 
| 
kpeter@206
 | 
   451  | 
  ///Sets the map of the node text colors.
  | 
| 
alpar@209
 | 
   452  | 
  ///\param x must be a node map with \ref Color values.
  | 
| 
alpar@128
 | 
   453  | 
  ///
  | 
| 
alpar@128
 | 
   454  | 
  ///\sa Palette
  | 
| 
alpar@128
 | 
   455  | 
  template<class X> GraphToEps<NodeTextColorsTraits<X> >
  | 
| 
alpar@128
 | 
   456  | 
  nodeTextColors(const X &x)
  | 
| 
alpar@128
 | 
   457  | 
  {
 | 
| 
alpar@128
 | 
   458  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   459  | 
    _nodeTextColorType=CUST_COL;
  | 
| 
alpar@128
 | 
   460  | 
    return GraphToEps<NodeTextColorsTraits<X> >
  | 
| 
alpar@128
 | 
   461  | 
      (NodeTextColorsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   462  | 
  }
  | 
| 
alpar@128
 | 
   463  | 
  template<class X> struct ArcColorsTraits : public T {
 | 
| 
alpar@128
 | 
   464  | 
    const X &_arcColors;
  | 
| 
alpar@128
 | 
   465  | 
    ArcColorsTraits(const T &t,const X &x) : T(t), _arcColors(x) {}
 | 
| 
alpar@128
 | 
   466  | 
  };
  | 
| 
alpar@128
 | 
   467  | 
  ///Sets the map of the arc colors
  | 
| 
alpar@128
 | 
   468  | 
  | 
| 
kpeter@206
 | 
   469  | 
  ///Sets the map of the arc colors.
  | 
| 
alpar@209
 | 
   470  | 
  ///\param x must be an arc map with \ref Color values.
  | 
| 
alpar@128
 | 
   471  | 
  ///
  | 
| 
alpar@128
 | 
   472  | 
  ///\sa Palette
  | 
| 
alpar@128
 | 
   473  | 
  template<class X> GraphToEps<ArcColorsTraits<X> >
  | 
| 
alpar@128
 | 
   474  | 
  arcColors(const X &x)
  | 
| 
alpar@128
 | 
   475  | 
  {
 | 
| 
alpar@128
 | 
   476  | 
    dontPrint=true;
  | 
| 
alpar@128
 | 
   477  | 
    return GraphToEps<ArcColorsTraits<X> >(ArcColorsTraits<X>(*this,x));
  | 
| 
alpar@128
 | 
   478  | 
  }
  | 
| 
alpar@128
 | 
   479  | 
  ///Sets a global scale factor for node sizes
  | 
| 
alpar@128
 | 
   480  | 
  | 
| 
alpar@128
 | 
   481  | 
  ///Sets a global scale factor for node sizes.
  | 
| 
alpar@209
 | 
   482  | 
  ///
  | 
| 
alpar@128
 | 
   483  | 
  /// If nodeSizes() is not given, this function simply sets the node
  | 
| 
alpar@128
 | 
   484  | 
  /// sizes to \c d.  If nodeSizes() is given, but
  | 
| 
alpar@128
 | 
   485  | 
  /// autoNodeScale() is not, then the node size given by
  | 
| 
alpar@128
 | 
   486  | 
  /// nodeSizes() will be multiplied by the value \c d.
  | 
| 
alpar@128
 | 
   487  | 
  /// If both nodeSizes() and autoNodeScale() are used, then the
  | 
| 
alpar@128
 | 
   488  | 
  /// node sizes will be scaled in such a way that the greatest size will be
  | 
| 
alpar@128
 | 
   489  | 
  /// equal to \c d.
  | 
| 
alpar@128
 | 
   490  | 
  /// \sa nodeSizes()
  | 
| 
alpar@128
 | 
   491  | 
  /// \sa autoNodeScale()
  | 
| 
alpar@132
 | 
   492  | 
  GraphToEps<T> &nodeScale(double d=.01) {_nodeScale=d;return *this;}
 | 
| 
kpeter@206
 | 
   493  | 
  ///Turns on/off the automatic node size scaling.
  | 
| 
alpar@128
 | 
   494  | 
  | 
| 
kpeter@206
 | 
   495  | 
  ///Turns on/off the automatic node size scaling.
  | 
| 
alpar@128
 | 
   496  | 
  ///
  | 
| 
alpar@128
 | 
   497  | 
  ///\sa nodeScale()
  | 
| 
alpar@128
 | 
   498  | 
  ///
  | 
| 
alpar@128
 | 
   499  | 
  GraphToEps<T> &autoNodeScale(bool b=true) {
 | 
| 
alpar@128
 | 
   500  | 
    _autoNodeScale=b;return *this;
  | 
| 
alpar@128
 | 
   501  | 
  }
  | 
| 
alpar@128
 | 
   502  | 
  | 
| 
kpeter@206
 | 
   503  | 
  ///Turns on/off the absolutematic node size scaling.
  | 
| 
alpar@128
 | 
   504  | 
  | 
| 
kpeter@206
 | 
   505  | 
  ///Turns on/off the absolutematic node size scaling.
  | 
| 
alpar@128
 | 
   506  | 
  ///
  | 
| 
alpar@128
 | 
   507  | 
  ///\sa nodeScale()
  | 
| 
alpar@128
 | 
   508  | 
  ///
  | 
| 
alpar@128
 | 
   509  | 
  GraphToEps<T> &absoluteNodeSizes(bool b=true) {
 | 
| 
alpar@128
 | 
   510  | 
    _absoluteNodeSizes=b;return *this;
  | 
| 
alpar@128
 | 
   511  | 
  }
  | 
| 
alpar@128
 | 
   512  | 
  | 
| 
alpar@128
 | 
   513  | 
  ///Negates the Y coordinates.
  | 
| 
alpar@128
 | 
   514  | 
  GraphToEps<T> &negateY(bool b=true) {
 | 
| 
alpar@128
 | 
   515  | 
    _negY=b;return *this;
  | 
| 
alpar@128
 | 
   516  | 
  }
  | 
| 
alpar@128
 | 
   517  | 
  | 
| 
alpar@133
 | 
   518  | 
  ///Turn on/off pre-scaling
  | 
| 
alpar@128
 | 
   519  | 
  | 
| 
alpar@128
 | 
   520  | 
  ///By default graphToEps() rescales the whole image in order to avoid
  | 
| 
alpar@128
 | 
   521  | 
  ///very big or very small bounding boxes.
  | 
| 
alpar@128
 | 
   522  | 
  ///
  | 
| 
alpar@128
 | 
   523  | 
  ///This (p)rescaling can be turned off with this function.
  | 
| 
alpar@128
 | 
   524  | 
  ///
  | 
| 
alpar@128
 | 
   525  | 
  GraphToEps<T> &preScale(bool b=true) {
 | 
| 
alpar@128
 | 
   526  | 
    _preScale=b;return *this;
  | 
| 
alpar@128
 | 
   527  | 
  }
  | 
| 
alpar@128
 | 
   528  | 
  | 
| 
alpar@128
 | 
   529  | 
  ///Sets a global scale factor for arc widths
  | 
| 
alpar@128
 | 
   530  | 
  | 
| 
alpar@128
 | 
   531  | 
  /// Sets a global scale factor for arc widths.
  | 
| 
alpar@128
 | 
   532  | 
  ///
  | 
| 
alpar@128
 | 
   533  | 
  /// If arcWidths() is not given, this function simply sets the arc
  | 
| 
alpar@128
 | 
   534  | 
  /// widths to \c d.  If arcWidths() is given, but
  | 
| 
alpar@128
 | 
   535  | 
  /// autoArcWidthScale() is not, then the arc withs given by
  | 
| 
alpar@128
 | 
   536  | 
  /// arcWidths() will be multiplied by the value \c d.
  | 
| 
alpar@128
 | 
   537  | 
  /// If both arcWidths() and autoArcWidthScale() are used, then the
  | 
| 
alpar@128
 | 
   538  | 
  /// arc withs will be scaled in such a way that the greatest width will be
  | 
| 
alpar@128
 | 
   539  | 
  /// equal to \c d.
  | 
| 
alpar@132
 | 
   540  | 
  GraphToEps<T> &arcWidthScale(double d=.003) {_arcWidthScale=d;return *this;}
 | 
| 
alpar@128
 | 
   541  | 
  ///Turns on/off the automatic arc width scaling.
  | 
| 
alpar@128
 | 
   542  | 
  | 
| 
alpar@128
 | 
   543  | 
  ///Turns on/off the automatic arc width scaling.
  | 
| 
alpar@128
 | 
   544  | 
  ///
  | 
| 
alpar@128
 | 
   545  | 
  ///\sa arcWidthScale()
  | 
| 
alpar@128
 | 
   546  | 
  ///
  | 
| 
alpar@128
 | 
   547  | 
  GraphToEps<T> &autoArcWidthScale(bool b=true) {
 | 
| 
alpar@128
 | 
   548  | 
    _autoArcWidthScale=b;return *this;
  | 
| 
alpar@128
 | 
   549  | 
  }
  | 
| 
alpar@128
 | 
   550  | 
  ///Turns on/off the absolutematic arc width scaling.
  | 
| 
alpar@128
 | 
   551  | 
  | 
| 
alpar@128
 | 
   552  | 
  ///Turns on/off the absolutematic arc width scaling.
  | 
| 
alpar@128
 | 
   553  | 
  ///
  | 
| 
alpar@128
 | 
   554  | 
  ///\sa arcWidthScale()
  | 
| 
alpar@128
 | 
   555  | 
  ///
  | 
| 
alpar@128
 | 
   556  | 
  GraphToEps<T> &absoluteArcWidths(bool b=true) {
 | 
| 
alpar@128
 | 
   557  | 
    _absoluteArcWidths=b;return *this;
  | 
| 
alpar@128
 | 
   558  | 
  }
  | 
| 
alpar@128
 | 
   559  | 
  ///Sets a global scale factor for the whole picture
  | 
| 
alpar@128
 | 
   560  | 
  GraphToEps<T> &scale(double d) {_scale=d;return *this;}
 | 
| 
alpar@128
 | 
   561  | 
  ///Sets the width of the border around the picture
  | 
| 
alpar@133
 | 
   562  | 
  GraphToEps<T> &border(double b=10) {_xBorder=_yBorder=b;return *this;}
 | 
| 
alpar@128
 | 
   563  | 
  ///Sets the width of the border around the picture
  | 
| 
alpar@128
 | 
   564  | 
  GraphToEps<T> &border(double x, double y) {
 | 
| 
alpar@128
 | 
   565  | 
    _xBorder=x;_yBorder=y;return *this;
  | 
| 
alpar@128
 | 
   566  | 
  }
  | 
| 
alpar@128
 | 
   567  | 
  ///Sets whether to draw arrows
  | 
| 
alpar@128
 | 
   568  | 
  GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
 | 
| 
alpar@128
 | 
   569  | 
  ///Sets the length of the arrowheads
  | 
| 
alpar@133
 | 
   570  | 
  GraphToEps<T> &arrowLength(double d=1.0) {_arrowLength*=d;return *this;}
 | 
| 
alpar@128
 | 
   571  | 
  ///Sets the width of the arrowheads
  | 
| 
alpar@133
 | 
   572  | 
  GraphToEps<T> &arrowWidth(double d=.3) {_arrowWidth*=d;return *this;}
 | 
| 
alpar@209
 | 
   573  | 
  | 
| 
alpar@128
 | 
   574  | 
  ///Scales the drawing to fit to A4 page
  | 
| 
alpar@128
 | 
   575  | 
  GraphToEps<T> &scaleToA4() {_scaleToA4=true;return *this;}
 | 
| 
alpar@209
 | 
   576  | 
  | 
| 
alpar@128
 | 
   577  | 
  ///Enables parallel arcs
  | 
| 
alpar@128
 | 
   578  | 
  GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
 | 
| 
alpar@209
 | 
   579  | 
  | 
| 
kpeter@206
 | 
   580  | 
  ///Sets the distance between parallel arcs
  | 
| 
alpar@128
 | 
   581  | 
  GraphToEps<T> &parArcDist(double d) {_parArcDist*=d;return *this;}
 | 
| 
alpar@209
 | 
   582  | 
  | 
| 
alpar@128
 | 
   583  | 
  ///Hides the arcs
  | 
| 
alpar@128
 | 
   584  | 
  GraphToEps<T> &hideArcs(bool b=true) {_showArcs=!b;return *this;}
 | 
| 
alpar@128
 | 
   585  | 
  ///Hides the nodes
  | 
| 
alpar@128
 | 
   586  | 
  GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
 | 
| 
alpar@209
 | 
   587  | 
  | 
| 
alpar@128
 | 
   588  | 
  ///Sets the size of the node texts
  | 
| 
alpar@128
 | 
   589  | 
  GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
 | 
| 
alpar@128
 | 
   590  | 
  | 
| 
alpar@128
 | 
   591  | 
  ///Sets the color of the node texts to be different from the node color
  | 
| 
alpar@128
 | 
   592  | 
  | 
| 
alpar@128
 | 
   593  | 
  ///Sets the color of the node texts to be as different from the node color
  | 
| 
kpeter@206
 | 
   594  | 
  ///as it is possible.
  | 
| 
alpar@128
 | 
   595  | 
  GraphToEps<T> &distantColorNodeTexts()
  | 
| 
alpar@128
 | 
   596  | 
  {_nodeTextColorType=DIST_COL;return *this;}
 | 
| 
alpar@128
 | 
   597  | 
  ///Sets the color of the node texts to be black or white and always visible.
  | 
| 
alpar@128
 | 
   598  | 
  | 
| 
alpar@128
 | 
   599  | 
  ///Sets the color of the node texts to be black or white according to
  | 
| 
kpeter@206
 | 
   600  | 
  ///which is more different from the node color.
  | 
| 
alpar@128
 | 
   601  | 
  GraphToEps<T> &distantBWNodeTexts()
  | 
| 
alpar@128
 | 
   602  | 
  {_nodeTextColorType=DIST_BW;return *this;}
 | 
| 
alpar@128
 | 
   603  | 
  | 
| 
alpar@128
 | 
   604  | 
  ///Gives a preamble block for node Postscript block.
  | 
| 
alpar@209
 | 
   605  | 
  | 
| 
alpar@128
 | 
   606  | 
  ///Gives a preamble block for node Postscript block.
  | 
| 
alpar@128
 | 
   607  | 
  ///
  | 
| 
alpar@128
 | 
   608  | 
  ///\sa nodePsTexts()
  | 
| 
alpar@128
 | 
   609  | 
  GraphToEps<T> & nodePsTextsPreamble(const char *str) {
 | 
| 
alpar@128
 | 
   610  | 
    _nodePsTextsPreamble=str ;return *this;
  | 
| 
alpar@128
 | 
   611  | 
  }
  | 
| 
kpeter@206
 | 
   612  | 
  ///Sets whether the graph is undirected
  | 
| 
alpar@128
 | 
   613  | 
  | 
| 
kpeter@206
 | 
   614  | 
  ///Sets whether the graph is undirected.
  | 
| 
alpar@128
 | 
   615  | 
  ///
  | 
| 
alpar@133
 | 
   616  | 
  ///This setting is the default for undirected graphs.
  | 
| 
alpar@133
 | 
   617  | 
  ///
  | 
| 
alpar@133
 | 
   618  | 
  ///\sa directed()
  | 
| 
alpar@133
 | 
   619  | 
   GraphToEps<T> &undirected(bool b=true) {_undirected=b;return *this;}
 | 
| 
alpar@128
 | 
   620  | 
  | 
| 
kpeter@206
 | 
   621  | 
  ///Sets whether the graph is directed
  | 
| 
alpar@128
 | 
   622  | 
  | 
| 
kpeter@206
 | 
   623  | 
  ///Sets whether the graph is directed.
  | 
| 
alpar@128
 | 
   624  | 
  ///Use it to show the edges as a pair of directed ones.
  | 
| 
alpar@133
 | 
   625  | 
  ///
  | 
| 
alpar@133
 | 
   626  | 
  ///This setting is the default for digraphs.
  | 
| 
alpar@133
 | 
   627  | 
  ///
  | 
| 
alpar@133
 | 
   628  | 
  ///\sa undirected()
  | 
| 
alpar@131
 | 
   629  | 
  GraphToEps<T> &directed(bool b=true) {_undirected=!b;return *this;}
 | 
| 
alpar@209
 | 
   630  | 
  | 
| 
alpar@128
 | 
   631  | 
  ///Sets the title.
  | 
| 
alpar@128
 | 
   632  | 
  | 
| 
alpar@128
 | 
   633  | 
  ///Sets the title of the generated image,
  | 
| 
alpar@128
 | 
   634  | 
  ///namely it inserts a <tt>%%Title:</tt> DSC field to the header of
  | 
| 
alpar@128
 | 
   635  | 
  ///the EPS file.
  | 
| 
alpar@128
 | 
   636  | 
  GraphToEps<T> &title(const std::string &t) {_title=t;return *this;}
 | 
| 
alpar@128
 | 
   637  | 
  ///Sets the copyright statement.
  | 
| 
alpar@128
 | 
   638  | 
  | 
| 
alpar@128
 | 
   639  | 
  ///Sets the copyright statement of the generated image,
  | 
| 
alpar@128
 | 
   640  | 
  ///namely it inserts a <tt>%%Copyright:</tt> DSC field to the header of
  | 
| 
alpar@128
 | 
   641  | 
  ///the EPS file.
  | 
| 
alpar@128
 | 
   642  | 
  GraphToEps<T> ©right(const std::string &t) {_copyright=t;return *this;}
 | 
| 
alpar@128
 | 
   643  | 
  | 
| 
alpar@128
 | 
   644  | 
protected:
  | 
| 
alpar@209
 | 
   645  | 
  bool isInsideNode(dim2::Point<double> p, double r,int t)
  | 
| 
alpar@128
 | 
   646  | 
  {
 | 
| 
alpar@128
 | 
   647  | 
    switch(t) {
 | 
| 
alpar@128
 | 
   648  | 
    case CIRCLE:
  | 
| 
alpar@128
 | 
   649  | 
    case MALE:
  | 
| 
alpar@128
 | 
   650  | 
    case FEMALE:
  | 
| 
alpar@128
 | 
   651  | 
      return p.normSquare()<=r*r;
  | 
| 
alpar@128
 | 
   652  | 
    case SQUARE:
  | 
| 
alpar@128
 | 
   653  | 
      return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r;
  | 
| 
alpar@128
 | 
   654  | 
    case DIAMOND:
  | 
| 
alpar@128
 | 
   655  | 
      return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r;
  | 
| 
alpar@128
 | 
   656  | 
    }
  | 
| 
alpar@128
 | 
   657  | 
    return false;
  | 
| 
alpar@128
 | 
   658  | 
  }
  | 
| 
alpar@128
 | 
   659  | 
  | 
| 
alpar@128
 | 
   660  | 
public:
  | 
| 
alpar@128
 | 
   661  | 
  ~GraphToEps() { }
 | 
| 
alpar@209
 | 
   662  | 
  | 
| 
alpar@128
 | 
   663  | 
  ///Draws the graph.
  | 
| 
alpar@128
 | 
   664  | 
  | 
| 
alpar@128
 | 
   665  | 
  ///Like other functions using
  | 
| 
alpar@128
 | 
   666  | 
  ///\ref named-templ-func-param "named template parameters",
  | 
| 
alpar@133
 | 
   667  | 
  ///this function calls the algorithm itself, i.e. in this case
  | 
| 
alpar@128
 | 
   668  | 
  ///it draws the graph.
  | 
| 
alpar@128
 | 
   669  | 
  void run() {
 | 
| 
alpar@128
 | 
   670  | 
    const double EPSILON=1e-9;
  | 
| 
alpar@128
 | 
   671  | 
    if(dontPrint) return;
  | 
| 
alpar@209
 | 
   672  | 
  | 
| 
alpar@131
 | 
   673  | 
    _graph_to_eps_bits::_NegY<typename T::CoordsMapType>
  | 
| 
alpar@131
 | 
   674  | 
      mycoords(_coords,_negY);
  | 
| 
alpar@128
 | 
   675  | 
  | 
| 
alpar@128
 | 
   676  | 
    os << "%!PS-Adobe-2.0 EPSF-2.0\n";
  | 
| 
alpar@128
 | 
   677  | 
    if(_title.size()>0) os << "%%Title: " << _title << '\n';
  | 
| 
alpar@128
 | 
   678  | 
     if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n';
  | 
| 
alpar@128
 | 
   679  | 
    os << "%%Creator: LEMON, graphToEps()\n";
  | 
| 
deba@134
 | 
   680  | 
  | 
| 
alpar@209
 | 
   681  | 
    {
 | 
| 
alpar@209
 | 
   682  | 
#ifndef WIN32
  | 
| 
alpar@128
 | 
   683  | 
      timeval tv;
  | 
| 
alpar@128
 | 
   684  | 
      gettimeofday(&tv, 0);
  | 
| 
deba@134
 | 
   685  | 
  | 
| 
deba@134
 | 
   686  | 
      char cbuf[26];
  | 
| 
alpar@128
 | 
   687  | 
      ctime_r(&tv.tv_sec,cbuf);
  | 
| 
alpar@128
 | 
   688  | 
      os << "%%CreationDate: " << cbuf;
  | 
| 
deba@134
 | 
   689  | 
#else
  | 
| 
deba@134
 | 
   690  | 
      SYSTEMTIME time;
  | 
| 
deba@134
 | 
   691  | 
      char buf1[11], buf2[9], buf3[5];
  | 
| 
alpar@209
 | 
   692  | 
  | 
| 
deba@134
 | 
   693  | 
      GetSystemTime(&time);
  | 
| 
alpar@209
 | 
   694  | 
      if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
  | 
| 
alpar@209
 | 
   695  | 
                        "ddd MMM dd", buf1, 11) &&
  | 
| 
alpar@209
 | 
   696  | 
          GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time,
  | 
| 
alpar@209
 | 
   697  | 
                        "HH':'mm':'ss", buf2, 9) &&
  | 
| 
alpar@209
 | 
   698  | 
          GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
  | 
| 
alpar@209
 | 
   699  | 
                                "yyyy", buf3, 5)) {
 | 
| 
alpar@209
 | 
   700  | 
        os << "%%CreationDate: " << buf1 << ' '
  | 
| 
alpar@209
 | 
   701  | 
           << buf2 << ' ' << buf3 << std::endl;
  | 
| 
alpar@209
 | 
   702  | 
      }
  | 
| 
deba@134
 | 
   703  | 
#endif
  | 
| 
alpar@128
 | 
   704  | 
    }
  | 
| 
alpar@128
 | 
   705  | 
  | 
| 
alpar@128
 | 
   706  | 
    if (_autoArcWidthScale) {
 | 
| 
alpar@128
 | 
   707  | 
      double max_w=0;
  | 
| 
alpar@128
 | 
   708  | 
      for(ArcIt e(g);e!=INVALID;++e)
  | 
| 
alpar@209
 | 
   709  | 
        max_w=std::max(double(_arcWidths[e]),max_w);
  | 
| 
alpar@128
 | 
   710  | 
      if(max_w>EPSILON) {
 | 
| 
alpar@209
 | 
   711  | 
        _arcWidthScale/=max_w;
  | 
| 
alpar@128
 | 
   712  | 
      }
  | 
| 
alpar@128
 | 
   713  | 
    }
  | 
| 
alpar@128
 | 
   714  | 
  | 
| 
alpar@128
 | 
   715  | 
    if (_autoNodeScale) {
 | 
| 
alpar@128
 | 
   716  | 
      double max_s=0;
  | 
| 
alpar@128
 | 
   717  | 
      for(NodeIt n(g);n!=INVALID;++n)
  | 
| 
alpar@209
 | 
   718  | 
        max_s=std::max(double(_nodeSizes[n]),max_s);
  | 
| 
alpar@128
 | 
   719  | 
      if(max_s>EPSILON) {
 | 
| 
alpar@209
 | 
   720  | 
        _nodeScale/=max_s;
  | 
| 
alpar@128
 | 
   721  | 
      }
  | 
| 
alpar@128
 | 
   722  | 
    }
  | 
| 
alpar@128
 | 
   723  | 
  | 
| 
alpar@128
 | 
   724  | 
    double diag_len = 1;
  | 
| 
alpar@128
 | 
   725  | 
    if(!(_absoluteNodeSizes&&_absoluteArcWidths)) {
 | 
| 
kpeter@253
 | 
   726  | 
      dim2::Box<double> bb;
  | 
| 
alpar@128
 | 
   727  | 
      for(NodeIt n(g);n!=INVALID;++n) bb.add(mycoords[n]);
  | 
| 
alpar@128
 | 
   728  | 
      if (bb.empty()) {
 | 
| 
kpeter@253
 | 
   729  | 
        bb = dim2::Box<double>(dim2::Point<double>(0,0));
  | 
| 
alpar@128
 | 
   730  | 
      }
  | 
| 
alpar@128
 | 
   731  | 
      diag_len = std::sqrt((bb.bottomLeft()-bb.topRight()).normSquare());
  | 
| 
alpar@128
 | 
   732  | 
      if(diag_len<EPSILON) diag_len = 1;
  | 
| 
alpar@128
 | 
   733  | 
      if(!_absoluteNodeSizes) _nodeScale*=diag_len;
  | 
| 
alpar@128
 | 
   734  | 
      if(!_absoluteArcWidths) _arcWidthScale*=diag_len;
  | 
| 
alpar@128
 | 
   735  | 
    }
  | 
| 
alpar@209
 | 
   736  | 
  | 
| 
kpeter@253
 | 
   737  | 
    dim2::Box<double> bb;
  | 
| 
alpar@128
 | 
   738  | 
    for(NodeIt n(g);n!=INVALID;++n) {
 | 
| 
alpar@128
 | 
   739  | 
      double ns=_nodeSizes[n]*_nodeScale;
  | 
| 
alpar@128
 | 
   740  | 
      dim2::Point<double> p(ns,ns);
  | 
| 
alpar@128
 | 
   741  | 
      switch(_nodeShapes[n]) {
 | 
| 
alpar@128
 | 
   742  | 
      case CIRCLE:
  | 
| 
alpar@128
 | 
   743  | 
      case SQUARE:
  | 
| 
alpar@128
 | 
   744  | 
      case DIAMOND:
  | 
| 
alpar@209
 | 
   745  | 
        bb.add(p+mycoords[n]);
  | 
| 
alpar@209
 | 
   746  | 
        bb.add(-p+mycoords[n]);
  | 
| 
alpar@209
 | 
   747  | 
        break;
  | 
| 
alpar@128
 | 
   748  | 
      case MALE:
  | 
| 
alpar@209
 | 
   749  | 
        bb.add(-p+mycoords[n]);
  | 
| 
alpar@209
 | 
   750  | 
        bb.add(dim2::Point<double>(1.5*ns,1.5*std::sqrt(3.0)*ns)+mycoords[n]);
  | 
| 
alpar@209
 | 
   751  | 
        break;
  | 
| 
alpar@128
 | 
   752  | 
      case FEMALE:
  | 
| 
alpar@209
 | 
   753  | 
        bb.add(p+mycoords[n]);
  | 
| 
alpar@209
 | 
   754  | 
        bb.add(dim2::Point<double>(-ns,-3.01*ns)+mycoords[n]);
  | 
| 
alpar@209
 | 
   755  | 
        break;
  | 
| 
alpar@128
 | 
   756  | 
      }
  | 
| 
alpar@128
 | 
   757  | 
    }
  | 
| 
alpar@128
 | 
   758  | 
    if (bb.empty()) {
 | 
| 
kpeter@253
 | 
   759  | 
      bb = dim2::Box<double>(dim2::Point<double>(0,0));
  | 
| 
alpar@128
 | 
   760  | 
    }
  | 
| 
alpar@209
 | 
   761  | 
  | 
| 
alpar@128
 | 
   762  | 
    if(_scaleToA4)
  | 
| 
alpar@128
 | 
   763  | 
      os <<"%%BoundingBox: 0 0 596 842\n%%DocumentPaperSizes: a4\n";
  | 
| 
alpar@128
 | 
   764  | 
    else {
 | 
| 
alpar@128
 | 
   765  | 
      if(_preScale) {
 | 
| 
alpar@209
 | 
   766  | 
        //Rescale so that BoundingBox won't be neither to big nor too small.
  | 
| 
alpar@209
 | 
   767  | 
        while(bb.height()*_scale>1000||bb.width()*_scale>1000) _scale/=10;
  | 
| 
alpar@209
 | 
   768  | 
        while(bb.height()*_scale<100||bb.width()*_scale<100) _scale*=10;
  | 
| 
alpar@128
 | 
   769  | 
      }
  | 
| 
alpar@209
 | 
   770  | 
  | 
| 
alpar@128
 | 
   771  | 
      os << "%%BoundingBox: "
  | 
| 
alpar@209
 | 
   772  | 
         << int(floor(bb.left()   * _scale - _xBorder)) << ' '
  | 
| 
alpar@209
 | 
   773  | 
         << int(floor(bb.bottom() * _scale - _yBorder)) << ' '
  | 
| 
alpar@209
 | 
   774  | 
         << int(ceil(bb.right()  * _scale + _xBorder)) << ' '
  | 
| 
alpar@209
 | 
   775  | 
         << int(ceil(bb.top()    * _scale + _yBorder)) << '\n';
  | 
| 
alpar@128
 | 
   776  | 
    }
  | 
| 
alpar@209
 | 
   777  | 
  | 
| 
alpar@128
 | 
   778  | 
    os << "%%EndComments\n";
  | 
| 
alpar@209
 | 
   779  | 
  | 
| 
alpar@128
 | 
   780  | 
    //x1 y1 x2 y2 x3 y3 cr cg cb w
  | 
| 
alpar@128
 | 
   781  | 
    os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
 | 
| 
alpar@128
 | 
   782  | 
       << "      4 2 roll 1 index 1 index curveto stroke } bind def\n";
  | 
| 
alpar@210
 | 
   783  | 
    os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke }"
 | 
| 
alpar@210
 | 
   784  | 
       << " bind def\n";
  | 
| 
alpar@128
 | 
   785  | 
    //x y r
  | 
| 
alpar@210
 | 
   786  | 
    os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath }"
 | 
| 
alpar@210
 | 
   787  | 
       << " bind def\n";
  | 
| 
alpar@128
 | 
   788  | 
    //x y r
  | 
| 
alpar@128
 | 
   789  | 
    os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
 | 
| 
alpar@128
 | 
   790  | 
       << "      2 index 1 index sub 2 index 2 index add lineto\n"
  | 
| 
alpar@128
 | 
   791  | 
       << "      2 index 1 index sub 2 index 2 index sub lineto\n"
  | 
| 
alpar@128
 | 
   792  | 
       << "      2 index 1 index add 2 index 2 index sub lineto\n"
  | 
| 
alpar@128
 | 
   793  | 
       << "      closepath pop pop pop} bind def\n";
  | 
| 
alpar@128
 | 
   794  | 
    //x y r
  | 
| 
alpar@128
 | 
   795  | 
    os << "/di { newpath 2 index 1 index add 2 index moveto\n"
 | 
| 
alpar@128
 | 
   796  | 
       << "      2 index             2 index 2 index add lineto\n"
  | 
| 
alpar@128
 | 
   797  | 
       << "      2 index 1 index sub 2 index             lineto\n"
  | 
| 
alpar@128
 | 
   798  | 
       << "      2 index             2 index 2 index sub lineto\n"
  | 
| 
alpar@128
 | 
   799  | 
       << "      closepath pop pop pop} bind def\n";
  | 
| 
alpar@128
 | 
   800  | 
    // x y r cr cg cb
  | 
| 
alpar@128
 | 
   801  | 
    os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
 | 
| 
alpar@128
 | 
   802  | 
       << "     setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
  | 
| 
alpar@128
 | 
   803  | 
       << "   } bind def\n";
  | 
| 
alpar@128
 | 
   804  | 
    os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
 | 
| 
alpar@128
 | 
   805  | 
       << "     setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n"
  | 
| 
alpar@128
 | 
   806  | 
       << "   } bind def\n";
  | 
| 
alpar@128
 | 
   807  | 
    os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
 | 
| 
alpar@128
 | 
   808  | 
       << "     setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n"
  | 
| 
alpar@128
 | 
   809  | 
       << "   } bind def\n";
  | 
| 
alpar@128
 | 
   810  | 
    os << "/nfemale { 0 0 0 setrgbcolor 3 index "
 | 
| 
alpar@128
 | 
   811  | 
       << _nodeBorderQuotient/(1+_nodeBorderQuotient)
  | 
| 
alpar@128
 | 
   812  | 
       << " 1.5 mul mul setlinewidth\n"
  | 
| 
alpar@128
 | 
   813  | 
       << "  newpath 5 index 5 index moveto "
  | 
| 
alpar@128
 | 
   814  | 
       << "5 index 5 index 5 index 3.01 mul sub\n"
  | 
| 
alpar@210
 | 
   815  | 
       << "  lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub"
  | 
| 
alpar@210
 | 
   816  | 
       << " moveto\n"
  | 
| 
alpar@210
 | 
   817  | 
       << "  5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto "
  | 
| 
alpar@210
 | 
   818  | 
       << "stroke\n"
  | 
| 
alpar@128
 | 
   819  | 
       << "  5 index 5 index 5 index c fill\n"
  | 
| 
alpar@128
 | 
   820  | 
       << "  setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
  | 
| 
alpar@128
 | 
   821  | 
       << "  } bind def\n";
  | 
| 
alpar@128
 | 
   822  | 
    os << "/nmale {\n"
 | 
| 
alpar@128
 | 
   823  | 
       << "  0 0 0 setrgbcolor 3 index "
  | 
| 
alpar@128
 | 
   824  | 
       << _nodeBorderQuotient/(1+_nodeBorderQuotient)
  | 
| 
alpar@128
 | 
   825  | 
       <<" 1.5 mul mul setlinewidth\n"
  | 
| 
alpar@128
 | 
   826  | 
       << "  newpath 5 index 5 index moveto\n"
  | 
| 
alpar@128
 | 
   827  | 
       << "  5 index 4 index 1 mul 1.5 mul add\n"
  | 
| 
alpar@128
 | 
   828  | 
       << "  5 index 5 index 3 sqrt 1.5 mul mul add\n"
  | 
| 
alpar@128
 | 
   829  | 
       << "  1 index 1 index lineto\n"
  | 
| 
alpar@128
 | 
   830  | 
       << "  1 index 1 index 7 index sub moveto\n"
  | 
| 
alpar@128
 | 
   831  | 
       << "  1 index 1 index lineto\n"
  | 
| 
alpar@210
 | 
   832  | 
       << "  exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub"
  | 
| 
alpar@210
 | 
   833  | 
       << " lineto\n"
  | 
| 
alpar@128
 | 
   834  | 
       << "  stroke\n"
  | 
| 
alpar@128
 | 
   835  | 
       << "  5 index 5 index 5 index c fill\n"
  | 
| 
alpar@128
 | 
   836  | 
       << "  setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
  | 
| 
alpar@128
 | 
   837  | 
       << "  } bind def\n";
  | 
| 
alpar@209
 | 
   838  | 
  | 
| 
alpar@128
 | 
   839  | 
  | 
| 
alpar@128
 | 
   840  | 
    os << "/arrl " << _arrowLength << " def\n";
  | 
| 
alpar@128
 | 
   841  | 
    os << "/arrw " << _arrowWidth << " def\n";
  | 
| 
alpar@128
 | 
   842  | 
    // l dx_norm dy_norm
  | 
| 
alpar@128
 | 
   843  | 
    os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
 | 
| 
alpar@128
 | 
   844  | 
    //len w dx_norm dy_norm x1 y1 cr cg cb
  | 
| 
alpar@210
 | 
   845  | 
    os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx "
 | 
| 
alpar@210
 | 
   846  | 
       << "exch def\n"
  | 
| 
alpar@128
 | 
   847  | 
       << "       /w exch def /len exch def\n"
  | 
| 
alpar@210
 | 
   848  | 
      //<< "0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
  | 
| 
alpar@128
 | 
   849  | 
       << "       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
  | 
| 
alpar@128
 | 
   850  | 
       << "       len w sub arrl sub dx dy lrl\n"
  | 
| 
alpar@128
 | 
   851  | 
       << "       arrw dy dx neg lrl\n"
  | 
| 
alpar@128
 | 
   852  | 
       << "       dx arrl w add mul dy w 2 div arrw add mul sub\n"
  | 
| 
alpar@128
 | 
   853  | 
       << "       dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
  | 
| 
alpar@128
 | 
   854  | 
       << "       dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
  | 
| 
alpar@128
 | 
   855  | 
       << "       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
  | 
| 
alpar@128
 | 
   856  | 
       << "       arrw dy dx neg lrl\n"
  | 
| 
alpar@128
 | 
   857  | 
       << "       len w sub arrl sub neg dx dy lrl\n"
  | 
| 
alpar@128
 | 
   858  | 
       << "       closepath fill } bind def\n";
  | 
| 
alpar@128
 | 
   859  | 
    os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
 | 
| 
alpar@128
 | 
   860  | 
       << "         neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n";
  | 
| 
alpar@128
 | 
   861  | 
  | 
| 
alpar@128
 | 
   862  | 
    os << "\ngsave\n";
  | 
| 
alpar@128
 | 
   863  | 
    if(_scaleToA4)
  | 
| 
alpar@128
 | 
   864  | 
      if(bb.height()>bb.width()) {
 | 
| 
alpar@209
 | 
   865  | 
        double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.height(),
  | 
| 
alpar@209
 | 
   866  | 
                  (A4WIDTH-2*A4BORDER)/bb.width());
  | 
| 
alpar@209
 | 
   867  | 
        os << ((A4WIDTH -2*A4BORDER)-sc*bb.width())/2 + A4BORDER << ' '
  | 
| 
alpar@209
 | 
   868  | 
           << ((A4HEIGHT-2*A4BORDER)-sc*bb.height())/2 + A4BORDER
  | 
| 
alpar@209
 | 
   869  | 
           << " translate\n"
  | 
| 
alpar@209
 | 
   870  | 
           << sc << " dup scale\n"
  | 
| 
alpar@209
 | 
   871  | 
           << -bb.left() << ' ' << -bb.bottom() << " translate\n";
  | 
| 
alpar@128
 | 
   872  | 
      }
  | 
| 
alpar@128
 | 
   873  | 
      else {
 | 
| 
alpar@209
 | 
   874  | 
        double sc= std::min((A4HEIGHT-2*A4BORDER)/bb.width(),
  | 
| 
alpar@209
 | 
   875  | 
                  (A4WIDTH-2*A4BORDER)/bb.height());
  | 
| 
alpar@209
 | 
   876  | 
        os << ((A4WIDTH -2*A4BORDER)-sc*bb.height())/2 + A4BORDER << ' '
  | 
| 
alpar@209
 | 
   877  | 
           << ((A4HEIGHT-2*A4BORDER)-sc*bb.width())/2 + A4BORDER
  | 
| 
alpar@209
 | 
   878  | 
           << " translate\n"
  | 
| 
alpar@209
 | 
   879  | 
           << sc << " dup scale\n90 rotate\n"
  | 
| 
alpar@209
 | 
   880  | 
           << -bb.left() << ' ' << -bb.top() << " translate\n";
  | 
| 
alpar@209
 | 
   881  | 
        }
  | 
| 
alpar@128
 | 
   882  | 
    else if(_scale!=1.0) os << _scale << " dup scale\n";
  | 
| 
alpar@209
 | 
   883  | 
  | 
| 
alpar@128
 | 
   884  | 
    if(_showArcs) {
 | 
| 
alpar@209
 | 
   885  | 
      os << "%Arcs:\ngsave\n";
  | 
| 
alpar@128
 | 
   886  | 
      if(_enableParallel) {
 | 
| 
alpar@209
 | 
   887  | 
        std::vector<Arc> el;
  | 
| 
alpar@209
 | 
   888  | 
        for(ArcIt e(g);e!=INVALID;++e)
  | 
| 
alpar@209
 | 
   889  | 
          if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
  | 
| 
alpar@209
 | 
   890  | 
             &&g.source(e)!=g.target(e))
  | 
| 
alpar@209
 | 
   891  | 
            el.push_back(e);
  | 
| 
alpar@209
 | 
   892  | 
        std::sort(el.begin(),el.end(),arcLess(g));
  | 
| 
alpar@128
 | 
   893  | 
  | 
| 
alpar@209
 | 
   894  | 
        typename std::vector<Arc>::iterator j;
  | 
| 
alpar@209
 | 
   895  | 
        for(typename std::vector<Arc>::iterator i=el.begin();i!=el.end();i=j) {
 | 
| 
alpar@209
 | 
   896  | 
          for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ;
  | 
| 
alpar@128
 | 
   897  | 
  | 
| 
alpar@209
 | 
   898  | 
          double sw=0;
  | 
| 
alpar@209
 | 
   899  | 
          for(typename std::vector<Arc>::iterator e=i;e!=j;++e)
  | 
| 
alpar@209
 | 
   900  | 
            sw+=_arcWidths[*e]*_arcWidthScale+_parArcDist;
  | 
| 
alpar@209
 | 
   901  | 
          sw-=_parArcDist;
  | 
| 
alpar@209
 | 
   902  | 
          sw/=-2.0;
  | 
| 
alpar@209
 | 
   903  | 
          dim2::Point<double>
  | 
| 
alpar@209
 | 
   904  | 
            dvec(mycoords[g.target(*i)]-mycoords[g.source(*i)]);
  | 
| 
alpar@209
 | 
   905  | 
          double l=std::sqrt(dvec.normSquare());
  | 
| 
alpar@209
 | 
   906  | 
          dim2::Point<double> d(dvec/std::max(l,EPSILON));
  | 
| 
kpeter@212
 | 
   907  | 
          dim2::Point<double> m;
  | 
| 
alpar@210
 | 
   908  | 
//           m=dim2::Point<double>(mycoords[g.target(*i)]+
  | 
| 
alpar@210
 | 
   909  | 
//                                 mycoords[g.source(*i)])/2.0;
  | 
| 
alpar@128
 | 
   910  | 
  | 
| 
alpar@209
 | 
   911  | 
//            m=dim2::Point<double>(mycoords[g.source(*i)])+
  | 
| 
alpar@209
 | 
   912  | 
//             dvec*(double(_nodeSizes[g.source(*i)])/
  | 
| 
alpar@209
 | 
   913  | 
//                (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)]));
  | 
| 
alpar@128
 | 
   914  | 
  | 
| 
kpeter@212
 | 
   915  | 
          m=dim2::Point<double>(mycoords[g.source(*i)])+
  | 
| 
alpar@209
 | 
   916  | 
            d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0;
  | 
| 
alpar@209
 | 
   917  | 
  | 
| 
alpar@209
 | 
   918  | 
          for(typename std::vector<Arc>::iterator e=i;e!=j;++e) {
 | 
| 
alpar@209
 | 
   919  | 
            sw+=_arcWidths[*e]*_arcWidthScale/2.0;
  | 
| 
alpar@209
 | 
   920  | 
            dim2::Point<double> mm=m+rot90(d)*sw/.75;
  | 
| 
alpar@209
 | 
   921  | 
            if(_drawArrows) {
 | 
| 
alpar@209
 | 
   922  | 
              int node_shape;
  | 
| 
alpar@209
 | 
   923  | 
              dim2::Point<double> s=mycoords[g.source(*e)];
  | 
| 
alpar@209
 | 
   924  | 
              dim2::Point<double> t=mycoords[g.target(*e)];
  | 
| 
alpar@209
 | 
   925  | 
              double rn=_nodeSizes[g.target(*e)]*_nodeScale;
  | 
| 
alpar@209
 | 
   926  | 
              node_shape=_nodeShapes[g.target(*e)];
  | 
| 
alpar@209
 | 
   927  | 
              dim2::Bezier3 bez(s,mm,mm,t);
  | 
| 
alpar@209
 | 
   928  | 
              double t1=0,t2=1;
  | 
| 
alpar@209
 | 
   929  | 
              for(int ii=0;ii<INTERPOL_PREC;++ii)
  | 
| 
alpar@209
 | 
   930  | 
                if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   931  | 
                else t1=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   932  | 
              dim2::Point<double> apoint=bez((t1+t2)/2);
  | 
| 
alpar@209
 | 
   933  | 
              rn = _arrowLength+_arcWidths[*e]*_arcWidthScale;
  | 
| 
alpar@209
 | 
   934  | 
              rn*=rn;
  | 
| 
alpar@209
 | 
   935  | 
              t2=(t1+t2)/2;t1=0;
  | 
| 
alpar@209
 | 
   936  | 
              for(int ii=0;ii<INTERPOL_PREC;++ii)
  | 
| 
alpar@209
 | 
   937  | 
                if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   938  | 
                else t2=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   939  | 
              dim2::Point<double> linend=bez((t1+t2)/2);
  | 
| 
alpar@209
 | 
   940  | 
              bez=bez.before((t1+t2)/2);
  | 
| 
alpar@209
 | 
   941  | 
//               rn=_nodeSizes[g.source(*e)]*_nodeScale;
  | 
| 
alpar@209
 | 
   942  | 
//               node_shape=_nodeShapes[g.source(*e)];
  | 
| 
alpar@209
 | 
   943  | 
//               t1=0;t2=1;
  | 
| 
alpar@209
 | 
   944  | 
//               for(int i=0;i<INTERPOL_PREC;++i)
  | 
| 
alpar@210
 | 
   945  | 
//                 if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape))
  | 
| 
alpar@210
 | 
   946  | 
//                   t1=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   947  | 
//                 else t2=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   948  | 
//               bez=bez.after((t1+t2)/2);
  | 
| 
alpar@209
 | 
   949  | 
              os << _arcWidths[*e]*_arcWidthScale << " setlinewidth "
  | 
| 
alpar@209
 | 
   950  | 
                 << _arcColors[*e].red() << ' '
  | 
| 
alpar@209
 | 
   951  | 
                 << _arcColors[*e].green() << ' '
  | 
| 
alpar@209
 | 
   952  | 
                 << _arcColors[*e].blue() << " setrgbcolor newpath\n"
  | 
| 
alpar@209
 | 
   953  | 
                 << bez.p1.x << ' ' <<  bez.p1.y << " moveto\n"
  | 
| 
alpar@209
 | 
   954  | 
                 << bez.p2.x << ' ' << bez.p2.y << ' '
  | 
| 
alpar@209
 | 
   955  | 
                 << bez.p3.x << ' ' << bez.p3.y << ' '
  | 
| 
alpar@209
 | 
   956  | 
                 << bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n";
  | 
| 
alpar@209
 | 
   957  | 
              dim2::Point<double> dd(rot90(linend-apoint));
  | 
| 
alpar@209
 | 
   958  | 
              dd*=(.5*_arcWidths[*e]*_arcWidthScale+_arrowWidth)/
  | 
| 
alpar@209
 | 
   959  | 
                std::sqrt(dd.normSquare());
  | 
| 
alpar@209
 | 
   960  | 
              os << "newpath " << psOut(apoint) << " moveto "
  | 
| 
alpar@209
 | 
   961  | 
                 << psOut(linend+dd) << " lineto "
  | 
| 
alpar@209
 | 
   962  | 
                 << psOut(linend-dd) << " lineto closepath fill\n";
  | 
| 
alpar@209
 | 
   963  | 
            }
  | 
| 
alpar@209
 | 
   964  | 
            else {
 | 
| 
alpar@209
 | 
   965  | 
              os << mycoords[g.source(*e)].x << ' '
  | 
| 
alpar@209
 | 
   966  | 
                 << mycoords[g.source(*e)].y << ' '
  | 
| 
alpar@209
 | 
   967  | 
                 << mm.x << ' ' << mm.y << ' '
  | 
| 
alpar@209
 | 
   968  | 
                 << mycoords[g.target(*e)].x << ' '
  | 
| 
alpar@209
 | 
   969  | 
                 << mycoords[g.target(*e)].y << ' '
  | 
| 
alpar@209
 | 
   970  | 
                 << _arcColors[*e].red() << ' '
  | 
| 
alpar@209
 | 
   971  | 
                 << _arcColors[*e].green() << ' '
  | 
| 
alpar@209
 | 
   972  | 
                 << _arcColors[*e].blue() << ' '
  | 
| 
alpar@209
 | 
   973  | 
                 << _arcWidths[*e]*_arcWidthScale << " lb\n";
  | 
| 
alpar@209
 | 
   974  | 
            }
  | 
| 
alpar@209
 | 
   975  | 
            sw+=_arcWidths[*e]*_arcWidthScale/2.0+_parArcDist;
  | 
| 
alpar@209
 | 
   976  | 
          }
  | 
| 
alpar@209
 | 
   977  | 
        }
  | 
| 
alpar@128
 | 
   978  | 
      }
  | 
| 
alpar@128
 | 
   979  | 
      else for(ArcIt e(g);e!=INVALID;++e)
  | 
| 
alpar@209
 | 
   980  | 
        if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
  | 
| 
alpar@209
 | 
   981  | 
           &&g.source(e)!=g.target(e)) {
 | 
| 
alpar@209
 | 
   982  | 
          if(_drawArrows) {
 | 
| 
alpar@209
 | 
   983  | 
            dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]);
  | 
| 
alpar@209
 | 
   984  | 
            double rn=_nodeSizes[g.target(e)]*_nodeScale;
  | 
| 
alpar@209
 | 
   985  | 
            int node_shape=_nodeShapes[g.target(e)];
  | 
| 
alpar@209
 | 
   986  | 
            double t1=0,t2=1;
  | 
| 
alpar@209
 | 
   987  | 
            for(int i=0;i<INTERPOL_PREC;++i)
  | 
| 
alpar@209
 | 
   988  | 
              if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   989  | 
              else t2=(t1+t2)/2;
  | 
| 
alpar@209
 | 
   990  | 
            double l=std::sqrt(d.normSquare());
  | 
| 
alpar@209
 | 
   991  | 
            d/=l;
  | 
| 
alpar@209
 | 
   992  | 
  | 
| 
alpar@209
 | 
   993  | 
            os << l*(1-(t1+t2)/2) << ' '
  | 
| 
alpar@209
 | 
   994  | 
               << _arcWidths[e]*_arcWidthScale << ' '
  | 
| 
alpar@209
 | 
   995  | 
               << d.x << ' ' << d.y << ' '
  | 
| 
alpar@209
 | 
   996  | 
               << mycoords[g.source(e)].x << ' '
  | 
| 
alpar@209
 | 
   997  | 
               << mycoords[g.source(e)].y << ' '
  | 
| 
alpar@209
 | 
   998  | 
               << _arcColors[e].red() << ' '
  | 
| 
alpar@209
 | 
   999  | 
               << _arcColors[e].green() << ' '
  | 
| 
alpar@209
 | 
  1000  | 
               << _arcColors[e].blue() << " arr\n";
  | 
| 
alpar@209
 | 
  1001  | 
          }
  | 
| 
alpar@209
 | 
  1002  | 
          else os << mycoords[g.source(e)].x << ' '
  | 
| 
alpar@209
 | 
  1003  | 
                  << mycoords[g.source(e)].y << ' '
  | 
| 
alpar@209
 | 
  1004  | 
                  << mycoords[g.target(e)].x << ' '
  | 
| 
alpar@209
 | 
  1005  | 
                  << mycoords[g.target(e)].y << ' '
  | 
| 
alpar@209
 | 
  1006  | 
                  << _arcColors[e].red() << ' '
  | 
| 
alpar@209
 | 
  1007  | 
                  << _arcColors[e].green() << ' '
  | 
| 
alpar@209
 | 
  1008  | 
                  << _arcColors[e].blue() << ' '
  | 
| 
alpar@209
 | 
  1009  | 
                  << _arcWidths[e]*_arcWidthScale << " l\n";
  | 
| 
alpar@209
 | 
  1010  | 
        }
  | 
| 
alpar@128
 | 
  1011  | 
      os << "grestore\n";
  | 
| 
alpar@128
 | 
  1012  | 
    }
  | 
| 
alpar@128
 | 
  1013  | 
    if(_showNodes) {
 | 
| 
alpar@128
 | 
  1014  | 
      os << "%Nodes:\ngsave\n";
  | 
| 
alpar@128
 | 
  1015  | 
      for(NodeIt n(g);n!=INVALID;++n) {
 | 
| 
alpar@209
 | 
  1016  | 
        os << mycoords[n].x << ' ' << mycoords[n].y << ' '
  | 
| 
alpar@209
 | 
  1017  | 
           << _nodeSizes[n]*_nodeScale << ' '
  | 
| 
alpar@209
 | 
  1018  | 
           << _nodeColors[n].red() << ' '
  | 
| 
alpar@209
 | 
  1019  | 
           << _nodeColors[n].green() << ' '
  | 
| 
alpar@209
 | 
  1020  | 
           << _nodeColors[n].blue() << ' ';
  | 
| 
alpar@209
 | 
  1021  | 
        switch(_nodeShapes[n]) {
 | 
| 
alpar@209
 | 
  1022  | 
        case CIRCLE:
  | 
| 
alpar@209
 | 
  1023  | 
          os<< "nc";break;
  | 
| 
alpar@209
 | 
  1024  | 
        case SQUARE:
  | 
| 
alpar@209
 | 
  1025  | 
          os<< "nsq";break;
  | 
| 
alpar@209
 | 
  1026  | 
        case DIAMOND:
  | 
| 
alpar@209
 | 
  1027  | 
          os<< "ndi";break;
  | 
| 
alpar@209
 | 
  1028  | 
        case MALE:
  | 
| 
alpar@209
 | 
  1029  | 
          os<< "nmale";break;
  | 
| 
alpar@209
 | 
  1030  | 
        case FEMALE:
  | 
| 
alpar@209
 | 
  1031  | 
          os<< "nfemale";break;
  | 
| 
alpar@209
 | 
  1032  | 
        }
  | 
| 
alpar@209
 | 
  1033  | 
        os<<'\n';
  | 
| 
alpar@128
 | 
  1034  | 
      }
  | 
| 
alpar@128
 | 
  1035  | 
      os << "grestore\n";
  | 
| 
alpar@128
 | 
  1036  | 
    }
  | 
| 
alpar@128
 | 
  1037  | 
    if(_showNodeText) {
 | 
| 
alpar@128
 | 
  1038  | 
      os << "%Node texts:\ngsave\n";
  | 
| 
alpar@128
 | 
  1039  | 
      os << "/fosi " << _nodeTextSize << " def\n";
  | 
| 
alpar@128
 | 
  1040  | 
      os << "(Helvetica) findfont fosi scalefont setfont\n";
  | 
| 
alpar@128
 | 
  1041  | 
      for(NodeIt n(g);n!=INVALID;++n) {
 | 
| 
alpar@209
 | 
  1042  | 
        switch(_nodeTextColorType) {
 | 
| 
alpar@209
 | 
  1043  | 
        case DIST_COL:
  | 
| 
alpar@209
 | 
  1044  | 
          os << psOut(distantColor(_nodeColors[n])) << " setrgbcolor\n";
  | 
| 
alpar@209
 | 
  1045  | 
          break;
  | 
| 
alpar@209
 | 
  1046  | 
        case DIST_BW:
  | 
| 
alpar@209
 | 
  1047  | 
          os << psOut(distantBW(_nodeColors[n])) << " setrgbcolor\n";
  | 
| 
alpar@209
 | 
  1048  | 
          break;
  | 
| 
alpar@209
 | 
  1049  | 
        case CUST_COL:
  | 
| 
alpar@209
 | 
  1050  | 
          os << psOut(distantColor(_nodeTextColors[n])) << " setrgbcolor\n";
  | 
| 
alpar@209
 | 
  1051  | 
          break;
  | 
| 
alpar@209
 | 
  1052  | 
        default:
  | 
| 
alpar@209
 | 
  1053  | 
          os << "0 0 0 setrgbcolor\n";
  | 
| 
alpar@209
 | 
  1054  | 
        }
  | 
| 
alpar@209
 | 
  1055  | 
        os << mycoords[n].x << ' ' << mycoords[n].y
  | 
| 
alpar@209
 | 
  1056  | 
           << " (" << _nodeTexts[n] << ") cshow\n";
 | 
| 
alpar@128
 | 
  1057  | 
      }
  | 
| 
alpar@128
 | 
  1058  | 
      os << "grestore\n";
  | 
| 
alpar@128
 | 
  1059  | 
    }
  | 
| 
alpar@128
 | 
  1060  | 
    if(_showNodePsText) {
 | 
| 
alpar@128
 | 
  1061  | 
      os << "%Node PS blocks:\ngsave\n";
  | 
| 
alpar@128
 | 
  1062  | 
      for(NodeIt n(g);n!=INVALID;++n)
  | 
| 
alpar@209
 | 
  1063  | 
        os << mycoords[n].x << ' ' << mycoords[n].y
  | 
| 
alpar@209
 | 
  1064  | 
           << " moveto\n" << _nodePsTexts[n] << "\n";
  | 
| 
alpar@128
 | 
  1065  | 
      os << "grestore\n";
  | 
| 
alpar@128
 | 
  1066  | 
    }
  | 
| 
alpar@209
 | 
  1067  | 
  | 
| 
alpar@128
 | 
  1068  | 
    os << "grestore\nshowpage\n";
  | 
| 
alpar@128
 | 
  1069  | 
  | 
| 
alpar@128
 | 
  1070  | 
    //CleanUp:
  | 
| 
alpar@128
 | 
  1071  | 
    if(_pleaseRemoveOsStream) {delete &os;}
 | 
| 
alpar@130
 | 
  1072  | 
  }
  | 
| 
alpar@130
 | 
  1073  | 
  | 
| 
alpar@130
 | 
  1074  | 
  ///\name Aliases
  | 
| 
alpar@130
 | 
  1075  | 
  ///These are just some aliases to other parameter setting functions.
  | 
| 
alpar@130
 | 
  1076  | 
  | 
| 
alpar@130
 | 
  1077  | 
  ///@{
 | 
| 
alpar@130
 | 
  1078  | 
  | 
| 
alpar@130
 | 
  1079  | 
  ///An alias for arcWidths()
  | 
| 
alpar@130
 | 
  1080  | 
  template<class X> GraphToEps<ArcWidthsTraits<X> > edgeWidths(const X &x)
  | 
| 
alpar@130
 | 
  1081  | 
  {
 | 
| 
alpar@130
 | 
  1082  | 
    return arcWidths(x);
  | 
| 
alpar@130
 | 
  1083  | 
  }
  | 
| 
alpar@130
 | 
  1084  | 
  | 
| 
alpar@130
 | 
  1085  | 
  ///An alias for arcColors()
  | 
| 
alpar@130
 | 
  1086  | 
  template<class X> GraphToEps<ArcColorsTraits<X> >
  | 
| 
alpar@130
 | 
  1087  | 
  edgeColors(const X &x)
  | 
| 
alpar@130
 | 
  1088  | 
  {
 | 
| 
alpar@130
 | 
  1089  | 
    return arcColors(x);
  | 
| 
alpar@130
 | 
  1090  | 
  }
  | 
| 
alpar@130
 | 
  1091  | 
  | 
| 
alpar@130
 | 
  1092  | 
  ///An alias for arcWidthScale()
  | 
| 
alpar@130
 | 
  1093  | 
  GraphToEps<T> &edgeWidthScale(double d) {return arcWidthScale(d);}
 | 
| 
alpar@130
 | 
  1094  | 
  | 
| 
alpar@130
 | 
  1095  | 
  ///An alias for autoArcWidthScale()
  | 
| 
alpar@130
 | 
  1096  | 
  GraphToEps<T> &autoEdgeWidthScale(bool b=true)
  | 
| 
alpar@130
 | 
  1097  | 
  {
 | 
| 
alpar@130
 | 
  1098  | 
    return autoArcWidthScale(b);
  | 
| 
alpar@130
 | 
  1099  | 
  }
  | 
| 
alpar@209
 | 
  1100  | 
  | 
| 
alpar@130
 | 
  1101  | 
  ///An alias for absoluteArcWidths()
  | 
| 
alpar@130
 | 
  1102  | 
  GraphToEps<T> &absoluteEdgeWidths(bool b=true)
  | 
| 
alpar@130
 | 
  1103  | 
  {
 | 
| 
alpar@130
 | 
  1104  | 
    return absoluteArcWidths(b);
  | 
| 
alpar@130
 | 
  1105  | 
  }
  | 
| 
alpar@209
 | 
  1106  | 
  | 
| 
alpar@130
 | 
  1107  | 
  ///An alias for parArcDist()
  | 
| 
alpar@130
 | 
  1108  | 
  GraphToEps<T> &parEdgeDist(double d) {return parArcDist(d);}
 | 
| 
alpar@209
 | 
  1109  | 
  | 
| 
alpar@130
 | 
  1110  | 
  ///An alias for hideArcs()
  | 
| 
alpar@130
 | 
  1111  | 
  GraphToEps<T> &hideEdges(bool b=true) {return hideArcs(b);}
 | 
| 
alpar@130
 | 
  1112  | 
  | 
| 
alpar@130
 | 
  1113  | 
  ///@}
  | 
| 
alpar@128
 | 
  1114  | 
};
  | 
| 
alpar@128
 | 
  1115  | 
  | 
| 
alpar@128
 | 
  1116  | 
template<class T>
  | 
| 
alpar@128
 | 
  1117  | 
const int GraphToEps<T>::INTERPOL_PREC = 20;
  | 
| 
alpar@128
 | 
  1118  | 
template<class T>
  | 
| 
alpar@128
 | 
  1119  | 
const double GraphToEps<T>::A4HEIGHT = 841.8897637795276;
  | 
| 
alpar@128
 | 
  1120  | 
template<class T>
  | 
| 
alpar@128
 | 
  1121  | 
const double GraphToEps<T>::A4WIDTH  = 595.275590551181;
  | 
| 
alpar@128
 | 
  1122  | 
template<class T>
  | 
| 
alpar@128
 | 
  1123  | 
const double GraphToEps<T>::A4BORDER = 15;
  | 
| 
alpar@128
 | 
  1124  | 
  | 
| 
alpar@128
 | 
  1125  | 
  | 
| 
alpar@128
 | 
  1126  | 
///Generates an EPS file from a graph
  | 
| 
alpar@128
 | 
  1127  | 
  | 
| 
alpar@128
 | 
  1128  | 
///\ingroup eps_io
  | 
| 
alpar@128
 | 
  1129  | 
///Generates an EPS file from a graph.
  | 
| 
kpeter@206
 | 
  1130  | 
///\param g Reference to the graph to be printed.
  | 
| 
kpeter@206
 | 
  1131  | 
///\param os Reference to the output stream.
  | 
| 
kpeter@206
 | 
  1132  | 
///By default it is <tt>std::cout</tt>.
  | 
| 
alpar@128
 | 
  1133  | 
///
  | 
| 
alpar@128
 | 
  1134  | 
///This function also has a lot of
  | 
| 
alpar@128
 | 
  1135  | 
///\ref named-templ-func-param "named parameters",
  | 
| 
alpar@128
 | 
  1136  | 
///they are declared as the members of class \ref GraphToEps. The following
  | 
| 
alpar@128
 | 
  1137  | 
///example shows how to use these parameters.
  | 
| 
alpar@128
 | 
  1138  | 
///\code
  | 
| 
alpar@128
 | 
  1139  | 
/// graphToEps(g,os).scale(10).coords(coords)
  | 
| 
alpar@128
 | 
  1140  | 
///              .nodeScale(2).nodeSizes(sizes)
  | 
| 
alpar@128
 | 
  1141  | 
///              .arcWidthScale(.4).run();
  | 
| 
alpar@128
 | 
  1142  | 
///\endcode
  | 
| 
kpeter@206
 | 
  1143  | 
///
  | 
| 
kpeter@206
 | 
  1144  | 
///For more detailed examples see the \ref graph_to_eps_demo.cc demo file.
  | 
| 
kpeter@206
 | 
  1145  | 
///
  | 
| 
alpar@128
 | 
  1146  | 
///\warning Don't forget to put the \ref GraphToEps::run() "run()"
  | 
| 
alpar@128
 | 
  1147  | 
///to the end of the parameter list.
  | 
| 
alpar@128
 | 
  1148  | 
///\sa GraphToEps
  | 
| 
alpar@128
 | 
  1149  | 
///\sa graphToEps(G &g, const char *file_name)
  | 
| 
alpar@128
 | 
  1150  | 
template<class G>
  | 
| 
alpar@209
 | 
  1151  | 
GraphToEps<DefaultGraphToEpsTraits<G> >
  | 
| 
alpar@128
 | 
  1152  | 
graphToEps(G &g, std::ostream& os=std::cout)
  | 
| 
alpar@128
 | 
  1153  | 
{
 | 
| 
alpar@209
 | 
  1154  | 
  return
  | 
| 
alpar@128
 | 
  1155  | 
    GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g,os));
  | 
| 
alpar@128
 | 
  1156  | 
}
  | 
| 
alpar@209
 | 
  1157  | 
  | 
| 
alpar@128
 | 
  1158  | 
///Generates an EPS file from a graph
  | 
| 
alpar@128
 | 
  1159  | 
  | 
| 
alpar@128
 | 
  1160  | 
///\ingroup eps_io
  | 
| 
alpar@128
 | 
  1161  | 
///This function does the same as
  | 
| 
alpar@128
 | 
  1162  | 
///\ref graphToEps(G &g,std::ostream& os)
  | 
| 
alpar@128
 | 
  1163  | 
///but it writes its output into the file \c file_name
  | 
| 
alpar@128
 | 
  1164  | 
///instead of a stream.
  | 
| 
alpar@128
 | 
  1165  | 
///\sa graphToEps(G &g, std::ostream& os)
  | 
| 
alpar@128
 | 
  1166  | 
template<class G>
  | 
| 
alpar@209
 | 
  1167  | 
GraphToEps<DefaultGraphToEpsTraits<G> >
  | 
| 
alpar@128
 | 
  1168  | 
graphToEps(G &g,const char *file_name)
  | 
| 
alpar@128
 | 
  1169  | 
{
 | 
| 
deba@290
 | 
  1170  | 
  std::ostream* os = new std::ofstream(file_name);
  | 
| 
deba@290
 | 
  1171  | 
  if (!(*os)) {
 | 
| 
deba@290
 | 
  1172  | 
    delete os;
  | 
| 
kpeter@291
 | 
  1173  | 
    throw IoError("Cannot write file", file_name);
 | 
| 
deba@290
 | 
  1174  | 
  }
  | 
| 
alpar@128
 | 
  1175  | 
  return GraphToEps<DefaultGraphToEpsTraits<G> >
  | 
| 
deba@290
 | 
  1176  | 
    (DefaultGraphToEpsTraits<G>(g,*os,true));
  | 
| 
alpar@128
 | 
  1177  | 
}
  | 
| 
alpar@128
 | 
  1178  | 
  | 
| 
alpar@128
 | 
  1179  | 
///Generates an EPS file from a graph
  | 
| 
alpar@128
 | 
  1180  | 
  | 
| 
alpar@128
 | 
  1181  | 
///\ingroup eps_io
  | 
| 
alpar@128
 | 
  1182  | 
///This function does the same as
  | 
| 
alpar@128
 | 
  1183  | 
///\ref graphToEps(G &g,std::ostream& os)
  | 
| 
alpar@128
 | 
  1184  | 
///but it writes its output into the file \c file_name
  | 
| 
alpar@128
 | 
  1185  | 
///instead of a stream.
  | 
| 
alpar@128
 | 
  1186  | 
///\sa graphToEps(G &g, std::ostream& os)
  | 
| 
alpar@128
 | 
  1187  | 
template<class G>
  | 
| 
alpar@209
 | 
  1188  | 
GraphToEps<DefaultGraphToEpsTraits<G> >
  | 
| 
alpar@128
 | 
  1189  | 
graphToEps(G &g,const std::string& file_name)
  | 
| 
alpar@128
 | 
  1190  | 
{
 | 
| 
deba@290
 | 
  1191  | 
  std::ostream* os = new std::ofstream(file_name.c_str());
  | 
| 
deba@290
 | 
  1192  | 
  if (!(*os)) {
 | 
| 
deba@290
 | 
  1193  | 
    delete os;
  | 
| 
kpeter@291
 | 
  1194  | 
    throw IoError("Cannot write file", file_name);
 | 
| 
deba@290
 | 
  1195  | 
  }
  | 
| 
alpar@128
 | 
  1196  | 
  return GraphToEps<DefaultGraphToEpsTraits<G> >
  | 
| 
deba@290
 | 
  1197  | 
    (DefaultGraphToEpsTraits<G>(g,*os,true));
  | 
| 
alpar@128
 | 
  1198  | 
}
  | 
| 
alpar@128
 | 
  1199  | 
  | 
| 
alpar@128
 | 
  1200  | 
} //END OF NAMESPACE LEMON
  | 
| 
alpar@128
 | 
  1201  | 
  | 
| 
alpar@128
 | 
  1202  | 
#endif // LEMON_GRAPH_TO_EPS_H
  |