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
|
/* $Id: ps.c,v 1.5 2007/05/17 10:37:26 ajb Exp $
PLplot PostScript device driver.
Copyright (C) 1992, 2001 Geoffrey Furnish
Copyright (C) 1992, 1993, 1994, 1995, 2001 Maurice LeBrun
Copyright (C) 2000, 2001, 2002, 2004, 2005 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 General Library 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 */
const char* plD_DEVICE_INFO_ps =
"ps:PostScript File (monochrome):0:ps:29:psm\n"
"psc:PostScript File (color):0:ps:30:psc";
/* Prototypes for functions in this file. */
/* pmr: in drivers.h */
/* 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 *);
static char outbuf[128];
static int text = 1;
static int color;
static int hrshsym = 1;
static DrvOpt ps_options[] = {{"text", DRV_INT, 0, &text, "Use Postscript text (text=0|1)"},
{"color", DRV_INT, 0, &color, "Use color (color=0|1)"},
{"hrshsym", DRV_INT, 0, &hrshsym, "Use Hershey symbol set (hrshsym=0|1)"},
{NULL, DRV_INT, 0, NULL, NULL}};
static unsigned char
plunicode2type1 (const PLUNICODE index,
const Unicode_to_Type1_table lookup[],
const int number_of_entries);
/* 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 = menustr;
pdt->pl_DevName = 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 = YPSSIZE/LPAGE_X;
PLFLT 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", PLPLT_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");
fprintf(OF, "/F {fill} def\n");
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 xx1 = x1a, yy1 = y1a, xx2 = x2a, yy2 = y2a;
/* Rotate by 90 degrees */
plRotPhy(ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&xx1, &yy1);
plRotPhy(ORIENTATION, dev->xmin, dev->ymin, dev->xmax, dev->ymax,
&xx2, &yy2);
if (xx1 == dev->xold && yy1 == dev->yold && dev->ptcnt < 40) {
if (pls->linepos + 12 > LINELENGTH) {
putc('\n', OF);
pls->linepos = 0;
}
else
putc(' ', OF);
sprintf(outbuf, "%d %d D", xx2, yy2);
dev->ptcnt++;
pls->linepos += 12;
}
else {
fprintf(OF, " Z\n");
pls->linepos = 0;
if (xx1 == xx2 && yy1 == yy2) /* must be a single dot, draw a circle */
sprintf(outbuf, "%d %d A", xx1, yy1);
else
sprintf(outbuf, "%d %d M %d %d D", xx1, yy1, xx2, yy2);
dev->llx = MIN(dev->llx, xx1);
dev->lly = MIN(dev->lly, yy1);
dev->urx = MAX(dev->urx, xx1);
dev->ury = MAX(dev->ury, yy1);
dev->ptcnt = 1;
pls->linepos += 24;
}
dev->llx = MIN(dev->llx, xx2);
dev->lly = MIN(dev->lly, yy2);
dev->urx = MAX(dev->urx, xx2);
dev->ury = MAX(dev->ury, yy2);
fprintf(OF, "%s", outbuf);
pls->bytecnt += 1 + strlen(outbuf);
dev->xold = xx2;
dev->yold = yy2;
}
/*--------------------------------------------------------------------------*\
* 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");
/* 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);
fclose(OF);
}
/*--------------------------------------------------------------------------*\
* 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 =
(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) {
sprintf(outbuf, "%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 += strlen(outbuf);
continue;
}
if (pls->linepos + 21 > LINELENGTH) {
putc('\n', OF);
pls->linepos = 0;
}
else
putc(' ', OF);
pls->bytecnt++;
sprintf(outbuf, "%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 += 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 = strlen(p);
*(p + len - 1) = '\0'; /* zap the newline character */
return p;
}
/*--------------------------------------------------------------------------*\
* 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; /* 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;
unsigned 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.4;
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];
int nlookup;
const Unicode_to_Type1_table *lookup;
const PLUNICODE *cur_text;
PLUNICODE fci;
/* 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);
font = (const char*) plP_FCI2FontName(fci, Type1Lookup, N_Type1Lookup);
if (font == NULL) {
fprintf(stderr, "fci = 0x%x, font name pointer = NULL \n", fci);
plabort("proc_str: FCI inconsistent with Type1Lookup; "
"internal PLplot error");
return;
}
/*pldebug("proc_str", "fci = 0x%x, font name = %s\n", fci, font);*/
if (!strcmp(font, "Symbol")) {
nlookup = number_of_entries_in_unicode_to_symbol_table;
lookup = unicode_to_symbol_lookup_table;
}
else {
nlookup = number_of_entries_in_unicode_to_standard_table;
lookup = unicode_to_standard_lookup_table;
}
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)) {
fonts[f] = (const char*) plP_FCI2FontName(cur_text[j],
Type1Lookup,
N_Type1Lookup);
if (fonts[f] == NULL) {
fprintf(stderr, "string-supplied FCI = 0x%x, font name pointer = NULL \n", cur_text[j]);
plabort("proc_str: string-supplied FCI inconsistent with Type1Lookup;");
return;
}
/*pldebug("proc_str", "string-supplied FCI = 0x%x, font name = %s\n", cur_text[j], fonts[f]);*/
if (!strcmp(fonts[f++], "Symbol")) {
lookup = unicode_to_symbol_lookup_table;
nlookup = number_of_entries_in_unicode_to_symbol_table;
}
else {
lookup = unicode_to_standard_lookup_table;
nlookup = number_of_entries_in_unicode_to_standard_table;
}
cur_str[s++] = esc;
cur_str[s++] = 'f';
cur_str[s++] = 'f';
}
}
else if (s+1 < PROC_STR_STRING_LENGTH) {
cur_str[s++] = plunicode2type1(cur_text[j], lookup, nlookup);
/*pldebug("proc_str", "unicode = 0x%x, type 1 code = %d\n",
cur_text[j], cur_str[j]);*/
}
}
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 */
theta = acos(t[0]) * 180. / PI; /* Determine the rotation (in degrees)... */
if (t[2] < 0.) theta *= -1.; /* ... and sign ... */
cs = cos(theta*PI/180.);
sn = sin(theta*PI/180.);
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 -= 90.*pls->diorot;
args->y += offset*cos(theta*PI/180.);
args->x -= offset*sin(theta*PI/180.);
/* 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 += 90.;
/* 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));
/* 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':
case 'D':
if(up>0.) scale *= 1.25; /* Subscript scaling parameter */
else scale *= 0.8; /* Subscript scaling parameter */
up -= font_factor * ENLARGE * ft_ht / 2.;
break;
case 'u':
case 'U':
if(up<0.) scale *= 1.25; /* Subscript scaling parameter */
else scale *= 0.8; /* Subscript scaling parameter */
up += font_factor * ENLARGE * ft_ht / 2.;
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/180.*PI);
sn = sin(theta/180.*PI);
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 = MIN(dev->llx, args->x + (MIN(l1*cs,l2*cs)-1.5) * font_factor * ft_ht * ENLARGE );
dev->lly = MIN(dev->lly, args->y + (MIN(l1*sn,l2*sn)-1.5) * font_factor * ft_ht * ENLARGE );
dev->urx = MAX(dev->urx, args->x + (MAX(l1*cs,l2*cs)+1.5) * font_factor * ft_ht * ENLARGE );
dev->ury = 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) {
unsigned 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 myindex,
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 (myindex > lookup[jmid].Unicode)
jlo = jmid;
else if (myindex < 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 32 (which is normally a blank in type 1 fonts).
*/
return(32);
}
#else
int
pldummy_ps(void)
{
return 0;
}
#endif /* PLD_ps */
|