1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
|
// $Id: ps.c 12874 2013-12-17 05:32:16Z airwin $
//
// PLplot PostScript device driver.
//
// Copyright (C) 1992, 2001 Geoffrey Furnish
// Copyright (C) 1992, 1993, 1994, 1995, 2001 Maurice LeBrun
// Copyright (C) 2000-2010 Alan W. Irwin
// Copyright (C) 2001, 2002 Joao Cardoso
// Copyright (C) 2001, 2003, 2004 Rafael Laboissiere
// Copyright (C) 2004, 2005 Thomas J. Duck
// Copyright (C) 2005 Andrew Ross
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
//
#include "plDevs.h"
#define DEBUG
#ifdef PLD_ps
#define NEED_PLDEBUG
#include "plplotP.h"
#include "drivers.h"
#include "ps.h"
#include <string.h>
#include <time.h>
#include "plunicode-type1.h"
#include "plfci-type1.h"
// Define macro to truncate small values to zero - prevents
// printf printing -0.000
#define TRMFLT( a ) ( ( fabs( a ) < 5.0e-4 ) ? 0.0 : ( a ) )
// Device info
PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_ps =
"ps:PostScript File (monochrome):0:ps:29:psm\n"
"psc:PostScript File (color):0:ps:30:psc\n";
// Prototypes for functions in this file.
void plD_dispatch_init_psm( PLDispatchTable *pdt );
void plD_dispatch_init_psc( PLDispatchTable *pdt );
static char *ps_getdate( void );
static void ps_init( PLStream * );
static void fill_polygon( PLStream *pls );
static void proc_str( PLStream *, EscText * );
static void esc_purge( unsigned char *, unsigned char * );
#define OUTBUF_LEN 128
static char outbuf[OUTBUF_LEN];
static int text = 1;
static int color;
static int hrshsym = 1;
static DrvOpt ps_options[] = { { "text", DRV_INT, &text, "Use Postscript text (text=0|1)" },
{ "color", DRV_INT, &color, "Use color (color=0|1)" },
{ "hrshsym", DRV_INT, &hrshsym, "Use Hershey symbol set (hrshsym=0|1)" },
{ NULL, DRV_INT, NULL, NULL } };
static unsigned char
plunicode2type1( const PLUNICODE index,
const Unicode_to_Type1_table lookup[],
const int number_of_entries );
static const char *
get_font( PSDev* dev, PLUNICODE fci );
// text > 0 uses some postscript tricks, namely a transformation matrix
// that scales, rotates (with slanting) and offsets text strings.
// It has yet some bugs for 3d plots.
static void ps_dispatch_init_helper( PLDispatchTable *pdt,
const char *menustr, const char *devnam,
int type, int seq, plD_init_fp init )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = (char *) menustr;
pdt->pl_DevName = (char *) devnam;
#else
(void) menustr; // Cast to void to silence compiler warnings about unused parameters
(void) devnam;
#endif
pdt->pl_type = type;
pdt->pl_seq = seq;
pdt->pl_init = init;
pdt->pl_line = (plD_line_fp) plD_line_ps;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_ps;
pdt->pl_eop = (plD_eop_fp) plD_eop_ps;
pdt->pl_bop = (plD_bop_fp) plD_bop_ps;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_ps;
pdt->pl_state = (plD_state_fp) plD_state_ps;
pdt->pl_esc = (plD_esc_fp) plD_esc_ps;
}
void plD_dispatch_init_psm( PLDispatchTable *pdt )
{
ps_dispatch_init_helper( pdt,
"PostScript File (monochrome)", "ps",
plDevType_FileOriented, 29,
(plD_init_fp) plD_init_psm );
}
void plD_dispatch_init_psc( PLDispatchTable *pdt )
{
ps_dispatch_init_helper( pdt,
"PostScript File (color)", "psc",
plDevType_FileOriented, 30,
(plD_init_fp) plD_init_psc );
}
//--------------------------------------------------------------------------
// plD_init_ps()
//
// Initialize device.
//--------------------------------------------------------------------------
void
plD_init_psm( PLStream *pls )
{
color = 0;
pls->color = 0; // Not a color device
plParseDrvOpts( ps_options );
if ( color )
pls->color = 1; // But user wants color
ps_init( pls );
}
void
plD_init_psc( PLStream *pls )
{
color = 1;
pls->color = 1; // Is a color device
plParseDrvOpts( ps_options );
if ( !color )
pls->color = 0; // But user does not want color
ps_init( pls );
}
static void
ps_init( PLStream *pls )
{
PSDev *dev;
PLFLT pxlx, pxly;
// Set default values - 7.5 x 10 [inches] (72 points = 1 inch)
if ( pls->xlength <= 0 || pls->ylength <= 0 )
{
pls->xlength = 540;
pls->ylength = 720;
pls->xoffset = 32;
pls->yoffset = 32;
}
if ( pls->xdpi <= 0 )
pls->xdpi = 72.;
if ( pls->ydpi <= 0 )
pls->ydpi = 72.;
pxlx = YPSSIZE / LPAGE_X;
pxly = XPSSIZE / LPAGE_Y;
if ( text )
{
pls->dev_text = 1; // want to draw text
pls->dev_unicode = 1; // want unicode
if ( hrshsym )
pls->dev_hrshsym = 1; // want Hershey symbols
}
pls->dev_fill0 = 1; // Can do solid fills
// Initialize family file info
plFamInit( pls );
// Prompt for a file name if not already set
plOpenFile( pls );
// Allocate and initialize device-specific data
if ( pls->dev != NULL )
free( (void *) pls->dev );
pls->dev = calloc( 1, (size_t) sizeof ( PSDev ) );
if ( pls->dev == NULL )
plexit( "ps_init: Out of memory." );
dev = (PSDev *) pls->dev;
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
plP_setpxl( pxlx, pxly );
dev->llx = XPSSIZE;
dev->lly = YPSSIZE;
dev->urx = 0;
dev->ury = 0;
dev->ptcnt = 0;
// Rotate by 90 degrees since portrait mode addressing is used
dev->xmin = 0;
dev->ymin = 0;
dev->xmax = PSY;
dev->ymax = PSX;
dev->xlen = dev->xmax - dev->xmin;
dev->ylen = dev->ymax - dev->ymin;
plP_setphy( dev->xmin, dev->xmax, dev->ymin, dev->ymax );
// If portrait mode is specified, then set up an additional rotation
// transformation with aspect ratio allowed to adjust via freeaspect.
// Default orientation is landscape (ORIENTATION == 3 or 90 deg rotation
// counter-clockwise from portrait). (Legacy PLplot used seascape
// which was equivalent to ORIENTATION == 1 or 90 deg clockwise rotation
// from portrait.)
if ( pls->portrait )
{
plsdiori( (PLFLT) ( 4 - ORIENTATION ) );
pls->freeaspect = 1;
}
// Header comments into PostScript file
fprintf( OF, "%%!PS-Adobe-2.0 EPSF-2.0\n" );
fprintf( OF, "%%%%BoundingBox: \n" );
fprintf( OF, "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n" );
fprintf( OF, "%%%%Title: PLplot Graph\n" );
fprintf( OF, "%%%%Creator: PLplot Version %s\n", PLPLOT_VERSION );
fprintf( OF, "%%%%CreationDate: %s\n", ps_getdate() );
fprintf( OF, "%%%%Pages: (atend)\n" );
fprintf( OF, "%%%%EndComments\n\n" );
// Definitions
// Save VM state
fprintf( OF, "/PSSave save def\n" );
// Define a dictionary and start using it
fprintf( OF, "/PSDict 200 dict def\n" );
fprintf( OF, "PSDict begin\n" );
fprintf( OF, "/@restore /restore load def\n" );
fprintf( OF, "/restore\n" );
fprintf( OF, " {vmstatus pop\n" );
fprintf( OF, " dup @VMused lt {pop @VMused} if\n" );
fprintf( OF, " exch pop exch @restore /@VMused exch def\n" );
fprintf( OF, " } def\n" );
fprintf( OF, "/@pri\n" );
fprintf( OF, " {\n" );
fprintf( OF, " ( ) print\n" );
fprintf( OF, " ( ) cvs print\n" );
fprintf( OF, " } def\n" );
// n @copies -
fprintf( OF, "/@copies\n" );
fprintf( OF, " {\n" );
fprintf( OF, " /#copies exch def\n" );
fprintf( OF, " } def\n" );
// - @start - -- start everything
fprintf( OF, "/@start\n" );
fprintf( OF, " {\n" );
fprintf( OF, " vmstatus pop /@VMused exch def pop\n" );
fprintf( OF, " } def\n" );
// - @end - -- finished
fprintf( OF, "/@end\n" );
fprintf( OF, " {flush\n" );
fprintf( OF, " end\n" );
fprintf( OF, " PSSave restore\n" );
fprintf( OF, " } def\n" );
// bop - -- begin a new page
// Only fill background if we are using color and if the bg isn't white
fprintf( OF, "/bop\n" );
fprintf( OF, " {\n" );
fprintf( OF, " /SaveImage save def\n" );
fprintf( OF, " } def\n" );
// - eop - -- end a page
fprintf( OF, "/eop\n" );
fprintf( OF, " {\n" );
fprintf( OF, " showpage\n" );
fprintf( OF, " SaveImage restore\n" );
fprintf( OF, " } def\n" );
// Set line parameters
fprintf( OF, "/@line\n" );
fprintf( OF, " {0 setlinecap\n" );
fprintf( OF, " 0 setlinejoin\n" );
fprintf( OF, " 1 setmiterlimit\n" );
fprintf( OF, " } def\n" );
// d @hsize - horizontal clipping dimension
fprintf( OF, "/@hsize {/hs exch def} def\n" );
fprintf( OF, "/@vsize {/vs exch def} def\n" );
// d @hoffset - shift for the plots
fprintf( OF, "/@hoffset {/ho exch def} def\n" );
fprintf( OF, "/@voffset {/vo exch def} def\n" );
// Set line width
fprintf( OF, "/lw %d def\n", (int) (
( pls->width < MIN_WIDTH ) ? DEF_WIDTH :
( pls->width > MAX_WIDTH ) ? MAX_WIDTH : pls->width ) );
// Setup user specified offsets, scales, sizes for clipping
fprintf( OF, "/@SetPlot\n" );
fprintf( OF, " {\n" );
fprintf( OF, " ho vo translate\n" );
fprintf( OF, " XScale YScale scale\n" );
fprintf( OF, " lw setlinewidth\n" );
fprintf( OF, " } def\n" );
// Setup x & y scales
fprintf( OF, "/XScale\n" );
fprintf( OF, " {hs %d div} def\n", YPSSIZE );
fprintf( OF, "/YScale\n" );
fprintf( OF, " {vs %d div} def\n", XPSSIZE );
// Macro definitions of common instructions, to keep output small
fprintf( OF, "/M {moveto} def\n" );
fprintf( OF, "/D {lineto} def\n" );
fprintf( OF, "/A {0.5 0 360 arc} def\n" );
fprintf( OF, "/S {stroke} def\n" );
fprintf( OF, "/Z {stroke newpath} def\n" );
// Modify to use fill and stroke for better output with
// anti-aliasing
//fprintf(OF, "/F {fill} def\n");
if ( pls->dev_eofill )
fprintf( OF, "/F {closepath gsave eofill grestore stroke} def " );
else
fprintf( OF, "/F {closepath gsave fill grestore stroke} def " );
fprintf( OF, "/N {newpath} def" );
fprintf( OF, "/C {setrgbcolor} def\n" );
fprintf( OF, "/G {setgray} def\n" );
fprintf( OF, "/W {setlinewidth} def\n" );
fprintf( OF, "/SF {selectfont} def\n" );
fprintf( OF, "/R {rotate} def\n" );
fprintf( OF, "/SW {stringwidth 2 index mul exch 2 index mul exch rmoveto pop} bind def\n" );
fprintf( OF, "/B {Z %d %d M %d %d D %d %d D %d %d D %d %d closepath} def\n",
XMIN, YMIN, XMIN, YMAX, XMAX, YMAX, XMAX, YMIN, XMIN, YMIN );
fprintf( OF, "/CL {newpath M D D D closepath clip} def\n" );
// End of dictionary definition
fprintf( OF, "end\n\n" );
// Set up the plots
fprintf( OF, "PSDict begin\n" );
fprintf( OF, "@start\n" );
fprintf( OF, "%d @copies\n", COPIES );
fprintf( OF, "@line\n" );
fprintf( OF, "%d @hsize\n", YSIZE );
fprintf( OF, "%d @vsize\n", XSIZE );
fprintf( OF, "%d @hoffset\n", YOFFSET );
fprintf( OF, "%d @voffset\n", XOFFSET );
fprintf( OF, "@SetPlot\n\n" );
}
//--------------------------------------------------------------------------
// plD_line_ps()
//
// Draw a line in the current color from (x1,y1) to (x2,y2).
//--------------------------------------------------------------------------
void
plD_line_ps( PLStream *pls, short x1a, short y1a, short x2a, short y2a )
{
PSDev *dev = (PSDev *) pls->dev;
PLINT x1 = x1a, y1 = y1a, x2 = x2a, y2 = y2a;
// Rotate by 90 degrees
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax, &x1, &y1 );
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax, &x2, &y2 );
if ( x1 == dev->xold && y1 == dev->yold && dev->ptcnt < 40 )
{
if ( pls->linepos + 12 > LINELENGTH )
{
putc( '\n', OF );
pls->linepos = 0;
}
else
putc( ' ', OF );
snprintf( outbuf, OUTBUF_LEN, "%d %d D", x2, y2 );
dev->ptcnt++;
pls->linepos += 12;
}
else
{
fprintf( OF, " Z\n" );
pls->linepos = 0;
if ( x1 == x2 && y1 == y2 ) // must be a single dot, draw a circle
snprintf( outbuf, OUTBUF_LEN, "%d %d A", x1, y1 );
else
snprintf( outbuf, OUTBUF_LEN, "%d %d M %d %d D", x1, y1, x2, y2 );
dev->llx = MIN( dev->llx, x1 );
dev->lly = MIN( dev->lly, y1 );
dev->urx = MAX( dev->urx, x1 );
dev->ury = MAX( dev->ury, y1 );
dev->ptcnt = 1;
pls->linepos += 24;
}
dev->llx = MIN( dev->llx, x2 );
dev->lly = MIN( dev->lly, y2 );
dev->urx = MAX( dev->urx, x2 );
dev->ury = MAX( dev->ury, y2 );
fprintf( OF, "%s", outbuf );
pls->bytecnt += 1 + (PLINT) strlen( outbuf );
dev->xold = x2;
dev->yold = y2;
}
//--------------------------------------------------------------------------
// plD_polyline_ps()
//
// Draw a polyline in the current color.
//--------------------------------------------------------------------------
void
plD_polyline_ps( PLStream *pls, short *xa, short *ya, PLINT npts )
{
PLINT i;
for ( i = 0; i < npts - 1; i++ )
plD_line_ps( pls, xa[i], ya[i], xa[i + 1], ya[i + 1] );
}
//--------------------------------------------------------------------------
// plD_eop_ps()
//
// End of page.
//--------------------------------------------------------------------------
void
plD_eop_ps( PLStream *pls )
{
fprintf( OF, " S\neop\n" );
}
//--------------------------------------------------------------------------
// plD_bop_ps()
//
// Set up for the next page.
// Advance to next family file if necessary (file output).
//--------------------------------------------------------------------------
void
plD_bop_ps( PLStream *pls )
{
PSDev *dev = (PSDev *) pls->dev;
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
if ( !pls->termin )
plGetFam( pls );
pls->page++;
if ( pls->family )
fprintf( OF, "%%%%Page: %d %d\n", (int) pls->page, 1 );
else
fprintf( OF, "%%%%Page: %d %d\n", (int) pls->page, (int) pls->page );
fprintf( OF, "bop\n" );
if ( pls->color )
{
PLFLT r, g, b;
if ( pls->cmap0[0].r != 0xFF ||
pls->cmap0[0].g != 0xFF ||
pls->cmap0[0].b != 0xFF )
{
r = ( (PLFLT) pls->cmap0[0].r ) / 255.;
g = ( (PLFLT) pls->cmap0[0].g ) / 255.;
b = ( (PLFLT) pls->cmap0[0].b ) / 255.;
fprintf( OF, "B %.4f %.4f %.4f C F\n", r, g, b );
}
}
pls->linepos = 0;
// This ensures the color and line width are set correctly at the beginning of
// each page
plD_state_ps( pls, PLSTATE_COLOR0 );
plD_state_ps( pls, PLSTATE_WIDTH );
}
//--------------------------------------------------------------------------
// plD_tidy_ps()
//
// Close graphics file or otherwise clean up.
//--------------------------------------------------------------------------
void
plD_tidy_ps( PLStream *pls )
{
PSDev *dev = (PSDev *) pls->dev;
fprintf( OF, "\n%%%%Trailer\n" );
dev->llx /= ENLARGE;
dev->lly /= ENLARGE;
dev->urx /= ENLARGE;
dev->ury /= ENLARGE;
dev->llx += XOFFSET;
dev->lly += YOFFSET;
dev->urx += XOFFSET;
dev->ury += YOFFSET;
// changed for correct Bounding boundaries Jan Thorbecke okt 1993
// occurs from the integer truncation -- postscript uses fp arithmetic
dev->urx += 1;
dev->ury += 1;
if ( pls->family )
fprintf( OF, "%%%%Pages: %d\n", (int) 1 );
else
fprintf( OF, "%%%%Pages: %d\n", (int) pls->page );
fprintf( OF, "@end\n" );
fprintf( OF, "%%%%EOF\n" );
// Backtrack to write the BoundingBox at the beginning
// Some applications don't like it atend
rewind( OF );
fprintf( OF, "%%!PS-Adobe-2.0 EPSF-2.0\n" );
fprintf( OF, "%%%%BoundingBox: %d %d %d %d\n",
dev->llx, dev->lly, dev->urx, dev->ury );
plCloseFile( pls );
}
//--------------------------------------------------------------------------
// plD_state_ps()
//
// Handle change in PLStream state (color, pen width, fill attribute, etc).
//--------------------------------------------------------------------------
void
plD_state_ps( PLStream *pls, PLINT op )
{
PSDev *dev = (PSDev *) pls->dev;
switch ( op )
{
case PLSTATE_WIDTH: {
int width = (int) (
( pls->width < MIN_WIDTH ) ? DEF_WIDTH :
( pls->width > MAX_WIDTH ) ? MAX_WIDTH : pls->width );
fprintf( OF, " S\n%d W", width );
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
break;
}
case PLSTATE_COLOR0:
if ( !pls->color )
{
fprintf( OF, " S\n%.4f G", ( pls->icol0 ? 0.0 : 1.0 ) );
break;
}
// else fallthrough
case PLSTATE_COLOR1:
if ( pls->color )
{
PLFLT r = ( (PLFLT) pls->curcolor.r ) / 255.0;
PLFLT g = ( (PLFLT) pls->curcolor.g ) / 255.0;
PLFLT b = ( (PLFLT) pls->curcolor.b ) / 255.0;
fprintf( OF, " S\n%.4f %.4f %.4f C", r, g, b );
}
else
{
PLFLT r = ( (PLFLT) pls->curcolor.r ) / 255.0;
fprintf( OF, " S\n%.4f G", 1.0 - r );
}
break;
}
// Reinitialize current point location.
if ( dev->xold != PL_UNDEFINED && dev->yold != PL_UNDEFINED )
{
fprintf( OF, " %d %d M \n", (int) dev->xold, (int) dev->yold );
}
}
//--------------------------------------------------------------------------
// plD_esc_ps()
//
// Escape function.
//--------------------------------------------------------------------------
void
plD_esc_ps( PLStream *pls, PLINT op, void *ptr )
{
switch ( op )
{
case PLESC_FILL:
fill_polygon( pls );
break;
case PLESC_HAS_TEXT:
proc_str( pls, (EscText *) ptr );
break;
}
}
//--------------------------------------------------------------------------
// fill_polygon()
//
// Fill polygon described in points pls->dev_x[] and pls->dev_y[].
// Only solid color fill supported.
//--------------------------------------------------------------------------
static void
fill_polygon( PLStream *pls )
{
PSDev *dev = (PSDev *) pls->dev;
PLINT n, ix = 0, iy = 0;
PLINT x, y;
fprintf( OF, " Z\n" );
for ( n = 0; n < pls->dev_npts; n++ )
{
x = pls->dev_x[ix++];
y = pls->dev_y[iy++];
// Rotate by 90 degrees
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax, &x, &y );
// First time through start with a x y moveto
if ( n == 0 )
{
snprintf( outbuf, OUTBUF_LEN, "N %d %d M", x, y );
dev->llx = MIN( dev->llx, x );
dev->lly = MIN( dev->lly, y );
dev->urx = MAX( dev->urx, x );
dev->ury = MAX( dev->ury, y );
fprintf( OF, "%s", outbuf );
pls->bytecnt += (PLINT) strlen( outbuf );
continue;
}
if ( pls->linepos + 21 > LINELENGTH )
{
putc( '\n', OF );
pls->linepos = 0;
}
else
putc( ' ', OF );
pls->bytecnt++;
snprintf( outbuf, OUTBUF_LEN, "%d %d D", x, y );
dev->llx = MIN( dev->llx, x );
dev->lly = MIN( dev->lly, y );
dev->urx = MAX( dev->urx, x );
dev->ury = MAX( dev->ury, y );
fprintf( OF, "%s", outbuf );
pls->bytecnt += (PLINT) strlen( outbuf );
pls->linepos += 21;
}
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
fprintf( OF, " F " );
}
//--------------------------------------------------------------------------
// ps_getdate()
//
// Get the date and time
//--------------------------------------------------------------------------
static char *
ps_getdate( void )
{
int len;
time_t t;
char *p;
t = time( (time_t *) 0 );
p = ctime( &t );
len = (int) strlen( p );
*( p + len - 1 ) = '\0'; // zap the newline character
return p;
}
// 0.8 should mimic the offset of first superscript/subscript level
// implemented in plstr (plsym.c) for Hershey fonts. However, when
// comparing with -dev xwin and -dev xcairo results changing this
// factor to 0.6 appears to offset the centers of the letters
// appropriately while 0.8 gives much poorer agreement with the
// other devices.
# define RISE_FACTOR 0.6
//--------------------------------------------------------------------------
// proc_str()
//
// Prints postscript strings.
// N.B. Now unicode only, no string access!
//
//--------------------------------------------------------------------------
void
proc_str( PLStream *pls, EscText *args )
{
PLFLT *t = args->xform, tt[4]; // Transform matrices
PLFLT theta, shear, stride; // Rotation angle and shear from the matrix
PLFLT ft_ht, offset; // Font height and offset
PLFLT cs, sn, l1, l2;
PSDev *dev = (PSDev *) pls->dev;
const char *font;
char esc;
// Be generous. Used to store lots of font changes which take
// 3 characters per change.
#define PROC_STR_STRING_LENGTH 1000
unsigned char *strp, str[PROC_STR_STRING_LENGTH], *cur_strp,
cur_str[PROC_STR_STRING_LENGTH];
float font_factor = 1.4f;
PLINT clxmin, clxmax, clymin, clymax; // Clip limits
PLINT clipx[4], clipy[4]; // Current clip limits
PLFLT scale = 1., up = 0.; // Font scaling and shifting parameters
int i = 0; // String index
// unicode only! so test for it.
if ( args->unicode_array_len > 0 )
{
int j, s, f;
const char *fonts[PROC_STR_STRING_LENGTH];
const PLUNICODE *cur_text;
PLUNICODE fci, fci_save;
PLFLT old_sscale, sscale, old_soffset, soffset, ddup;
PLINT level = 0;
// translate from unicode into type 1 font index.
//
// Choose the font family, style, variant, and weight using
// the FCI (font characterization integer).
//
plgesc( &esc );
plgfci( &fci );
fci_save = fci;
font = get_font( dev, fci );
cur_text = args->unicode_array;
for ( f = s = j = 0; j < args->unicode_array_len; j++ )
{
if ( cur_text[j] & PL_FCI_MARK )
{
// process an FCI by saving it and escaping cur_str
// with an escff to make it a 2-character escape
// that is not used in legacy Hershey code
//
if ( ( f < PROC_STR_STRING_LENGTH ) && ( s + 3 < PROC_STR_STRING_LENGTH ) )
{
fci_save = cur_text[j];
fonts[f++] = get_font( dev, fci_save );
cur_str[s++] = (unsigned char) esc;
cur_str[s++] = 'f';
cur_str[s++] = 'f';
}
}
else if ( s + 4 < PROC_STR_STRING_LENGTH )
{
#undef PL_TEST_TYPE1
#ifdef PL_TEST_TYPE1
// Use this test case only to conveniently view Type1 font
// possibilities (as in test_type1.py example).
// This functionality is useless other than for this test case.
PLINT ifamily, istyle, iweight;
plgfont( &ifamily, &istyle, &iweight );
if ( 0 <= cur_text[j] && cur_text[j] < 256 )
cur_str[s++] = cur_text[j];
else
cur_str[s++] = 32;
// Overwrite font just for this special case.
if ( ifamily == PL_FCI_SYMBOL )
font = get_font( dev, 0 );
else
font = get_font( dev, fci );
#else
cur_str[s] = plunicode2type1( cur_text[j], dev->lookup, dev->nlookup );
if ( cur_text[j] != ' ' && cur_str[s] == ' ' )
{
// failed lookup.
if ( !dev->if_symbol_font )
{
// failed standard font lookup. Use symbol
// font instead which will return a blank if
// that fails as well.
fonts[f++] = get_font( dev, 0 );
cur_str[s++] = (unsigned char) esc;
cur_str[s++] = 'f';
cur_str[s++] = 'f';
cur_str[s++] = plunicode2type1( cur_text[j], dev->lookup, dev->nlookup );
}
else
{
// failed symbol font lookup. Use last standard
// font instead which will return a blank if
// that fails as well.
fonts[f++] = get_font( dev, fci_save );
cur_str[s++] = (unsigned char) esc;
cur_str[s++] = 'f';
cur_str[s++] = 'f';
cur_str[s++] = plunicode2type1( cur_text[j], dev->lookup, dev->nlookup );
}
}
else
{
// lookup succeeded.
s++;
}
#endif
pldebug( "proc_str", "unicode = 0x%x, type 1 code = %d\n",
cur_text[j], cur_str[s - 1] );
}
}
cur_str[s] = '\0';
// finish previous polyline
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
// Determine the font height
ft_ht = pls->chrht * 72.0 / 25.4; // ft_ht in points, ht is in mm
// The transform matrix has only rotations and shears; extract them
plRotationShear( t, &theta, &shear, &stride );
cs = cos( theta );
sn = sin( theta );
tt[0] = t[0] * cs + t[2] * sn;
tt[1] = t[1] * cs + t[3] * sn;
tt[2] = -t[0] * sn + t[2] * cs;
tt[3] = -t[1] * sn + t[3] * cs;
//
// Reference point conventions:
// If base = 0, it is aligned with the center of the text box
// If base = 1, it is aligned with the baseline of the text box
// If base = 2, it is aligned with the top of the text box
//
// Currently plplot only uses base=0
// Postscript uses base=1
//
// We must calculate the difference between the two and apply the offset.
//
if ( args->base == 2 ) // not supported by plplot
offset = ENLARGE * ft_ht / 2.; // half font height
else if ( args->base == 1 )
offset = 0.;
else
offset = -ENLARGE * ft_ht / 2.;
// Determine the adjustment for page orientation
theta -= PI / 2. * pls->diorot;
args->y += (PLINT) ( offset * cos( theta ) );
args->x -= (PLINT) ( offset * sin( theta ) );
// ps driver is rotated by default
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&( args->x ), &( args->y ) );
// Correct for the fact ps driver uses landscape by default
theta += PI / 2.;
// Output
// Set clipping
clipx[0] = pls->clpxmi;
clipx[2] = pls->clpxma;
clipy[0] = pls->clpymi;
clipy[2] = pls->clpyma;
clipx[1] = clipx[2];
clipy[1] = clipy[0];
clipx[3] = clipx[0];
clipy[3] = clipy[2];
difilt( clipx, clipy, 4, &clxmin, &clxmax, &clymin, &clymax );
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&clipx[0], &clipy[0] );
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&clipx[1], &clipy[1] );
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&clipx[2], &clipy[2] );
plRotPhy( ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&clipx[3], &clipy[3] );
fprintf( OF, " gsave %d %d %d %d %d %d %d %d CL\n", clipx[0], clipy[0], clipx[1], clipy[1], clipx[2], clipy[2], clipx[3], clipy[3] );
// move to string reference point
fprintf( OF, " %d %d M\n", args->x, args->y );
// Save the current position and set the string rotation
fprintf( OF, "gsave %.3f R\n", TRMFLT( theta * 180. / PI ) );
// Purge escape sequences from string, so that postscript can find it's
// length. The string length is computed with the current font, and can
// thus be wrong if there are font change escape sequences in the string
//
esc_purge( str, cur_str );
fprintf( OF, "/%s %.3f SF\n", font, TRMFLT( font_factor * ENLARGE * ft_ht ) );
// Output string, while escaping the '(', ')' and '\' characters.
// this string is output for measurement purposes only.
//
fprintf( OF, "%.3f (", TRMFLT( -args->just ) );
while ( str[i] != '\0' )
{
if ( str[i] == '(' || str[i] == ')' || str[i] == '\\' )
fprintf( OF, "\\%c", str[i] );
else
fprintf( OF, "%c", str[i] );
i++;
}
fprintf( OF, ") SW\n" );
// Parse string for PLplot escape sequences and print everything out
cur_strp = cur_str;
f = 0;
do
{
strp = str;
if ( *cur_strp == esc )
{
cur_strp++;
if ( *cur_strp == esc ) // <esc><esc>
{
*strp++ = *cur_strp++;
}
else if ( *cur_strp == 'f' )
{
cur_strp++;
if ( *cur_strp++ != 'f' )
{
// escff occurs because of logic above. But any suffix
// other than "f" should never happen.
plabort( "proc_str, internal PLplot logic error;"
"wrong escf escape sequence" );
return;
}
font = fonts[f++];
pldebug( "proc_str", "string-specified fci = 0x%x, font name = %s\n", fci, font );
continue;
}
else
switch ( *cur_strp++ )
{
case 'd': //subscript
case 'D':
plP_script_scale( FALSE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
scale = sscale;
// The correction for the difference in magnitude
// between the baseline and middle coordinate systems
// for subscripts should be
// -0.5*(base font size - superscript/subscript font size).
ddup = -0.5 * ( 1.0 - sscale );
up = -font_factor * ENLARGE * ft_ht * ( RISE_FACTOR * soffset + ddup );
break;
case 'u': //superscript
case 'U':
plP_script_scale( TRUE, &level,
&old_sscale, &sscale, &old_soffset, &soffset );
scale = sscale;
// The correction for the difference in magnitude
// between the baseline and middle coordinate systems
// for superscripts should be
// 0.5*(base font size - superscript/subscript font size).
ddup = 0.5 * ( 1.0 - sscale );
up = font_factor * ENLARGE * ft_ht * ( RISE_FACTOR * soffset + ddup );
break;
// ignore the next sequences
case '+':
case '-':
case 'b':
case 'B':
plwarn( "'+', '-', and 'b/B' text escape sequences not processed." );
break;
}
}
// copy from current to next token, adding a postscript escape
// char '\' if necessary
//
while ( *cur_strp && *cur_strp != esc )
{
if ( *cur_strp == '(' || *cur_strp == ')' || *cur_strp == '\\' )
*strp++ = '\\';
*strp++ = *cur_strp++;
}
*strp = '\0';
if ( fabs( up ) < 0.001 )
up = 0.; // Watch out for small differences
// Apply the scaling and the shear
fprintf( OF, "/%s [%.3f %.3f %.3f %.3f 0 0] SF\n",
font,
TRMFLT( tt[0] * font_factor * ENLARGE * ft_ht * scale ),
TRMFLT( tt[2] * font_factor * ENLARGE * ft_ht * scale ),
TRMFLT( tt[1] * font_factor * ENLARGE * ft_ht * scale ),
TRMFLT( tt[3] * font_factor * ENLARGE * ft_ht * scale ) );
// if up/down escape sequences, save current point and adjust baseline;
// take the shear into account
if ( up != 0. )
fprintf( OF, "gsave %.3f %.3f rmoveto\n", TRMFLT( up * tt[1] ), TRMFLT( up * tt[3] ) );
// print the string
fprintf( OF, "(%s) show\n", str );
// back to baseline
if ( up != 0. )
fprintf( OF, "grestore (%s) stringwidth rmoveto\n", str );
} while ( *cur_strp );
fprintf( OF, "grestore\n" );
fprintf( OF, "grestore\n" );
//
// keep driver happy -- needed for background and orientation.
// arghhh! can't calculate it, as I only have the string reference
// point, not its extent!
// Still a hack - but at least it takes into account the string
// length and justification. Character width is assumed to be
// 0.6 * character height. Add on an extra 1.5 * character height
// for safety.
//
cs = cos( theta );
sn = sin( theta );
l1 = -i * args->just;
l2 = i * ( 1. - args->just );
// Factor of 0.6 is an empirical fudge to convert character
// height to average character width
l1 *= 0.6;
l2 *= 0.6;
dev->llx = (int) ( MIN( dev->llx, args->x + ( MIN( l1 * cs, l2 * cs ) - 1.5 ) * font_factor * ft_ht * ENLARGE ) );
dev->lly = (int) ( MIN( dev->lly, args->y + ( MIN( l1 * sn, l2 * sn ) - 1.5 ) * font_factor * ft_ht * ENLARGE ) );
dev->urx = (int) ( MAX( dev->urx, args->x + ( MAX( l1 * cs, l2 * cs ) + 1.5 ) * font_factor * ft_ht * ENLARGE ) );
dev->ury = (int) ( MAX( dev->ury, args->y + ( MAX( l1 * sn, l2 * sn ) + 1.5 ) * font_factor * ft_ht * ENLARGE ) );
}
}
static void
esc_purge( unsigned char *dstr, unsigned char *sstr )
{
char esc;
plgesc( &esc );
while ( *sstr )
{
if ( *sstr != esc )
{
*dstr++ = *sstr++;
continue;
}
sstr++;
if ( *sstr == esc )
{
*dstr++ = *sstr++;
continue;
}
else
{
switch ( *sstr++ )
{
case 'f':
sstr++;
break; // two chars sequence
default:
break; // single char escape
}
}
}
*dstr = '\0';
}
//--------------------------------------------------------------------------
// unsigned char plunicode2type1 (const PLUNICODE index,
// const Unicode_to_Type1_table lookup[], const int number_of_entries)
//
// Function takes an input unicode index, looks through the lookup
// table (which must be sorted by PLUNICODE Unicode), then returns the
// corresponding Type1 code in the lookup table. If the Unicode index is
// not present the returned value is 32 (which is normally a blank
// for Type 1 fonts).
//--------------------------------------------------------------------------
static unsigned char
plunicode2type1( const PLUNICODE index,
const Unicode_to_Type1_table lookup[],
const int nlookup )
{
int jlo = -1, jmid, jhi = nlookup;
while ( jhi - jlo > 1 )
{
// Note that although jlo or jhi can be just outside valid
// range (see initialization above) because of while condition
// jlo < jmid < jhi and jmid must be in valid range.
//
jmid = ( jlo + jhi ) / 2;
if ( index > lookup[jmid].Unicode )
jlo = jmid;
else if ( index < lookup[jmid].Unicode )
jhi = jmid;
else
// We have found it!
// index == lookup[jmid].Unicode
//
return ( lookup[jmid].Type1 );
}
// jlo is invalid or it is valid and index > lookup[jlo].Unicode.
// jhi is invalid or it is valid and index < lookup[jhi].Unicode.
// All these conditions together imply index cannot be found in lookup.
// Mark with ' ' (which is normally the index for blank in type 1 fonts).
//
return ( ' ' );
}
//--------------------------------------------------------------------------
// get_font( PSDev* dev, PLUNICODE fci )
//
// Sets the Type1 font.
//--------------------------------------------------------------------------
static const char *
get_font( PSDev* dev, PLUNICODE fci )
{
const char *font;
// fci = 0 is a special value indicating the Type 1 Symbol font
// is desired. This value cannot be confused with a normal FCI value
// because it doesn't have the PL_FCI_MARK.
if ( fci == 0 )
{
font = "Symbol";
dev->nlookup = number_of_entries_in_unicode_to_symbol_table;
dev->lookup = unicode_to_symbol_lookup_table;
dev->if_symbol_font = 1;
}
else
{
// convert the fci to Base14/Type1 font information
font = plP_FCI2FontName( fci, Type1Lookup, N_Type1Lookup );
dev->nlookup = number_of_entries_in_unicode_to_standard_table;
dev->lookup = unicode_to_standard_lookup_table;
dev->if_symbol_font = 0;
}
pldebug( "set_font", "fci = 0x%x, font name = %s\n", fci, font );
return ( font );
}
#else
int
pldummy_ps()
{
return 0;
}
#endif // PLD_ps
|