| ... | ... |
@@ -643,108 +643,120 @@ |
| 643 | 643 |
|
| 644 | 644 |
protected: |
| 645 | 645 |
bool isInsideNode(dim2::Point<double> p, double r,int t) |
| 646 | 646 |
{
|
| 647 | 647 |
switch(t) {
|
| 648 | 648 |
case CIRCLE: |
| 649 | 649 |
case MALE: |
| 650 | 650 |
case FEMALE: |
| 651 | 651 |
return p.normSquare()<=r*r; |
| 652 | 652 |
case SQUARE: |
| 653 | 653 |
return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r; |
| 654 | 654 |
case DIAMOND: |
| 655 | 655 |
return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r; |
| 656 | 656 |
} |
| 657 | 657 |
return false; |
| 658 | 658 |
} |
| 659 | 659 |
|
| 660 | 660 |
public: |
| 661 | 661 |
~GraphToEps() { }
|
| 662 | 662 |
|
| 663 | 663 |
///Draws the graph. |
| 664 | 664 |
|
| 665 | 665 |
///Like other functions using |
| 666 | 666 |
///\ref named-templ-func-param "named template parameters", |
| 667 | 667 |
///this function calls the algorithm itself, i.e. in this case |
| 668 | 668 |
///it draws the graph. |
| 669 | 669 |
void run() {
|
| 670 | 670 |
const double EPSILON=1e-9; |
| 671 | 671 |
if(dontPrint) return; |
| 672 | 672 |
|
| 673 | 673 |
_graph_to_eps_bits::_NegY<typename T::CoordsMapType> |
| 674 | 674 |
mycoords(_coords,_negY); |
| 675 | 675 |
|
| 676 | 676 |
os << "%!PS-Adobe-2.0 EPSF-2.0\n"; |
| 677 | 677 |
if(_title.size()>0) os << "%%Title: " << _title << '\n'; |
| 678 | 678 |
if(_copyright.size()>0) os << "%%Copyright: " << _copyright << '\n'; |
| 679 | 679 |
os << "%%Creator: LEMON, graphToEps()\n"; |
| 680 | 680 |
|
| 681 | 681 |
{
|
| 682 | 682 |
#ifndef WIN32 |
| 683 | 683 |
timeval tv; |
| 684 | 684 |
gettimeofday(&tv, 0); |
| 685 | 685 |
|
| 686 | 686 |
char cbuf[26]; |
| 687 | 687 |
ctime_r(&tv.tv_sec,cbuf); |
| 688 | 688 |
os << "%%CreationDate: " << cbuf; |
| 689 | 689 |
#else |
| 690 | 690 |
SYSTEMTIME time; |
| 691 |
char buf1[11], buf2[9], buf3[5]; |
|
| 692 |
|
|
| 693 | 691 |
GetSystemTime(&time); |
| 692 |
#if defined(_MSC_VER) && (_MSC_VER < 1500) |
|
| 693 |
LPWSTR buf1, buf2, buf3; |
|
| 694 | 694 |
if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 695 |
"ddd MMM dd", buf1, 11) && |
|
| 695 |
L"ddd MMM dd", buf1, 11) && |
|
| 696 | 696 |
GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 697 |
"HH':'mm':'ss", buf2, 9) && |
|
| 697 |
L"HH':'mm':'ss", buf2, 9) && |
|
| 698 | 698 |
GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
| 699 |
|
|
| 699 |
L"yyyy", buf3, 5)) {
|
|
| 700 | 700 |
os << "%%CreationDate: " << buf1 << ' ' |
| 701 | 701 |
<< buf2 << ' ' << buf3 << std::endl; |
| 702 | 702 |
} |
| 703 |
#else |
|
| 704 |
char buf1[11], buf2[9], buf3[5]; |
|
| 705 |
if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 706 |
"ddd MMM dd", buf1, 11) && |
|
| 707 |
GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 708 |
"HH':'mm':'ss", buf2, 9) && |
|
| 709 |
GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, |
|
| 710 |
"yyyy", buf3, 5)) {
|
|
| 711 |
os << "%%CreationDate: " << buf1 << ' ' |
|
| 712 |
<< buf2 << ' ' << buf3 << std::endl; |
|
| 713 |
} |
|
| 714 |
#endif |
|
| 703 | 715 |
#endif |
| 704 | 716 |
} |
| 705 | 717 |
|
| 706 | 718 |
if (_autoArcWidthScale) {
|
| 707 | 719 |
double max_w=0; |
| 708 | 720 |
for(ArcIt e(g);e!=INVALID;++e) |
| 709 | 721 |
max_w=std::max(double(_arcWidths[e]),max_w); |
| 710 | 722 |
if(max_w>EPSILON) {
|
| 711 | 723 |
_arcWidthScale/=max_w; |
| 712 | 724 |
} |
| 713 | 725 |
} |
| 714 | 726 |
|
| 715 | 727 |
if (_autoNodeScale) {
|
| 716 | 728 |
double max_s=0; |
| 717 | 729 |
for(NodeIt n(g);n!=INVALID;++n) |
| 718 | 730 |
max_s=std::max(double(_nodeSizes[n]),max_s); |
| 719 | 731 |
if(max_s>EPSILON) {
|
| 720 | 732 |
_nodeScale/=max_s; |
| 721 | 733 |
} |
| 722 | 734 |
} |
| 723 | 735 |
|
| 724 | 736 |
double diag_len = 1; |
| 725 | 737 |
if(!(_absoluteNodeSizes&&_absoluteArcWidths)) {
|
| 726 | 738 |
dim2::Box<double> bb; |
| 727 | 739 |
for(NodeIt n(g);n!=INVALID;++n) bb.add(mycoords[n]); |
| 728 | 740 |
if (bb.empty()) {
|
| 729 | 741 |
bb = dim2::Box<double>(dim2::Point<double>(0,0)); |
| 730 | 742 |
} |
| 731 | 743 |
diag_len = std::sqrt((bb.bottomLeft()-bb.topRight()).normSquare()); |
| 732 | 744 |
if(diag_len<EPSILON) diag_len = 1; |
| 733 | 745 |
if(!_absoluteNodeSizes) _nodeScale*=diag_len; |
| 734 | 746 |
if(!_absoluteArcWidths) _arcWidthScale*=diag_len; |
| 735 | 747 |
} |
| 736 | 748 |
|
| 737 | 749 |
dim2::Box<double> bb; |
| 738 | 750 |
for(NodeIt n(g);n!=INVALID;++n) {
|
| 739 | 751 |
double ns=_nodeSizes[n]*_nodeScale; |
| 740 | 752 |
dim2::Point<double> p(ns,ns); |
| 741 | 753 |
switch(_nodeShapes[n]) {
|
| 742 | 754 |
case CIRCLE: |
| 743 | 755 |
case SQUARE: |
| 744 | 756 |
case DIAMOND: |
| 745 | 757 |
bb.add(p+mycoords[n]); |
| 746 | 758 |
bb.add(-p+mycoords[n]); |
| 747 | 759 |
break; |
| 748 | 760 |
case MALE: |
| 749 | 761 |
bb.add(-p+mycoords[n]); |
| 750 | 762 |
bb.add(dim2::Point<double>(1.5*ns,1.5*std::sqrt(3.0)*ns)+mycoords[n]); |
0 comments (0 inline)