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
|
/* This file defines the initialization for any PSPlotter object, including
both private data and public methods. There is a one-to-one
correspondence between public methods and user-callable functions in the
C API. */
#include "sys-defines.h"
#include "extern.h"
/* ctime_r() is currently not used, because there is apparently _no_
universal way of ensuring that it is declared. On some systems
(e.g. Red Hat Linux), `#define _POSIX_SOURCE' will do it. But on other
systems, doing `#define _POSIX_SOURCE' **removes** the declaration! */
#ifdef HAVE_CTIME_R
#undef HAVE_CTIME_R
#endif
#ifdef MSDOS
#include <unistd.h> /* for fsync() */
#endif
/* song and dance to define time_t, and declare both time() and ctime() */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> /* for time_t on some pre-ANSI Unix systems */
#endif
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h> /* for time() on some pre-ANSI Unix systems */
#include <time.h> /* for ctime() */
#else /* not TIME_WITH_SYS_TIME, include only one (prefer <sys/time.h>) */
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else /* not HAVE_SYS_TIME_H */
#include <time.h>
#endif /* not HAVE_SYS_TIME_H */
#endif /* not TIME_WITH_SYS_TIME */
#include "p_header.h" /* idraw Postscript header (from InterViews) */
#ifndef LIBPLOTTER
/* In libplot, this is the initialization for the function-pointer part of
a PSPlotter struct. */
const Plotter _p_default_plotter =
{
/* initialization (after creation) and termination (before deletion) */
_p_initialize, _p_terminate,
/* page manipulation */
_p_begin_page, _p_erase_page, _p_end_page,
/* drawing state manipulation */
_g_push_state, _g_pop_state,
/* internal path-painting methods (endpath() is a wrapper for the first) */
_p_paint_path, _p_paint_paths, _g_path_is_flushable, _g_maybe_prepaint_segments,
/* internal methods for drawing of markers and points */
_g_paint_marker, _p_paint_point,
/* internal methods that plot strings in Hershey, non-Hershey fonts */
_g_paint_text_string_with_escapes, _p_paint_text_string,
_g_get_text_width,
/* private low-level `retrieve font' method */
_g_retrieve_font,
/* `flush output' method, called only if Plotter handles its own output */
_g_flush_output,
/* error handlers */
_g_warning,
_g_error,
};
#endif /* not LIBPLOTTER */
/* The private `initialize' method, which is invoked when a Plotter is
created. It is used for such things as initializing capability flags
from the values of class variables, allocating storage, etc. When this
is invoked, _plotter points to the Plotter that has just been
created. */
/* For PS Plotter objects, we initialize the used-font array(s). We also
determine the page size and the location on the page of the graphics
display, so that we'll be able to work out the map from user coordinates
to device coordinates in space.c. */
void
#ifdef _HAVE_PROTOS
_p_initialize (S___(Plotter *_plotter))
#else
_p_initialize (S___(_plotter))
S___(Plotter *_plotter;)
#endif
{
#ifndef LIBPLOTTER
/* in libplot, manually invoke superclass initialization method */
_g_initialize (S___(_plotter));
#endif
/* override generic initializations (which are appropriate to the base
Plotter class), as necessary */
#ifndef LIBPLOTTER
/* tag field, differs in derived classes */
_plotter->data->type = PL_PS;
#endif
/* output model */
_plotter->data->output_model = PL_OUTPUT_PAGES_ALL_AT_ONCE;
/* user-queryable capabilities: 0/1/2 = no/yes/maybe */
_plotter->data->have_wide_lines = 1;
_plotter->data->have_dash_array = 1;
_plotter->data->have_solid_fill = 1;
_plotter->data->have_odd_winding_fill = 1;
_plotter->data->have_nonzero_winding_fill = 1;
_plotter->data->have_settable_bg = 0;
_plotter->data->have_escaped_string_support = 0;
_plotter->data->have_ps_fonts = 1;
#ifdef USE_LJ_FONTS_IN_PS
_plotter->data->have_pcl_fonts = 1;
#else
_plotter->data->have_pcl_fonts = 0;
#endif
_plotter->data->have_stick_fonts = 0;
_plotter->data->have_extra_stick_fonts = 0;
_plotter->data->have_other_fonts = 0;
/* text and font-related parameters (internal, not queryable by user);
note that we don't set kern_stick_fonts, because it was set by the
superclass initialization (and it's irrelevant for this Plotter type,
anyway) */
_plotter->data->default_font_type = F_POSTSCRIPT;
_plotter->data->pcl_before_ps = false;
_plotter->data->have_horizontal_justification = false;
_plotter->data->have_vertical_justification = false;
_plotter->data->issue_font_warning = true;
/* path-related parameters (also internal); note that we
don't set max_unfilled_path_length, because it was set by the
superclass initialization */
_plotter->data->have_mixed_paths = false;
_plotter->data->allowed_arc_scaling = AS_NONE;
_plotter->data->allowed_ellarc_scaling = AS_NONE;
_plotter->data->allowed_quad_scaling = AS_NONE;
_plotter->data->allowed_cubic_scaling = AS_NONE;
_plotter->data->allowed_box_scaling = AS_ANY;
_plotter->data->allowed_circle_scaling = AS_ANY;
_plotter->data->allowed_ellipse_scaling = AS_ANY;
/* color-related parameters (also internal) */
_plotter->data->emulate_color = false;
/* dimensions */
_plotter->data->display_model_type = (int)DISP_MODEL_PHYSICAL;
_plotter->data->display_coors_type = (int)DISP_DEVICE_COORS_REAL;
_plotter->data->flipped_y = false;
_plotter->data->imin = 0;
_plotter->data->imax = 0;
_plotter->data->jmin = 0;
_plotter->data->jmax = 0;
_plotter->data->xmin = 0.0;
_plotter->data->xmax = 0.0;
_plotter->data->ymin = 0.0;
_plotter->data->ymax = 0.0;
_plotter->data->page_data = (plPageData *)NULL;
/* initialize certain data members from device driver parameters */
/* Determine range of device coordinates over which the viewport will
extend (and hence the transformation from user to device coordinates;
see g_space.c). */
{
/* determine page type, viewport size and location */
_set_page_type (_plotter->data);
/* convert viewport size-and-location data (in terms of inches) to
device coordinates (i.e. points) */
_plotter->data->xmin = 72 * (_plotter->data->viewport_xorigin
+ _plotter->data->viewport_xoffset);
_plotter->data->xmax = 72 * (_plotter->data->viewport_xorigin
+ _plotter->data->viewport_xoffset
+ _plotter->data->viewport_xsize);
_plotter->data->ymin = 72 * (_plotter->data->viewport_yorigin
+ _plotter->data->viewport_yoffset);
_plotter->data->ymax = 72 * (_plotter->data->viewport_yorigin
+ _plotter->data->viewport_yoffset
+ _plotter->data->viewport_ysize);
}
/* compute the NDC to device-frame affine map, set it in Plotter */
_compute_ndc_to_device_map (_plotter->data);
}
/* The private `terminate' method, which is invoked when a Plotter is
deleted. It may do such things as write to an output stream from
internal storage, deallocate storage, etc. When this is invoked,
_plotter points to the Plotter that is about to be deleted. */
/* This version is for Postscript Plotters. It writes out the
idraw-derived PS prologue to the output stream, and copies each stored
page of graphics to it too, making sure to include the proper DSC
[Document Structuring Convention] comment lines at the beginning and the
end of the document, and at the beginning and end of each page.
(PS Plotters differ from most other plotters that do not plot in real
time in that they emit output only after all pages have pages have been
drawn, rather than at the end of each page. This is necessary for DSC
compliance.)
When this is called, the PS code for the body of each page is stored in
a plOutbuf, and the page plOutbufs form a linked list. In this function
we write the document header, the document trailer, and the
header/trailer for each page, all to separate plOutbufs. We then copy
the plOutbufs, one after another, to the output stream. */
void
#ifdef _HAVE_PROTOS
_p_terminate (S___(Plotter *_plotter))
#else
_p_terminate (S___(_plotter))
S___(Plotter *_plotter;)
#endif
{
double x_min, x_max, y_min, y_max;
int i, n;
time_t clock;
plOutbuf *doc_header, *doc_trailer, *current_page;
bool ps_font_used_in_doc[NUM_PS_FONTS];
#ifdef USE_LJ_FONTS_IN_PS
bool pcl_font_used_in_doc[NUM_PCL_FONTS];
#endif
char *time_string, time_string_buffer[32];
#ifdef LIBPLOTTER
if (_plotter->data->outfp || _plotter->data->outstream)
#else
if (_plotter->data->outfp)
#endif
/* have an output stream */
{
int num_pages = _plotter->data->page_number;
/* First, prepare the document header (DSC lines, etc.), and write it
to a plOutbuf. The header is very long: most of it is simply the
idraw header (see p_header.h). */
doc_header = _new_outbuf ();
if (num_pages == 1)
/* will plot an EPS file, not just a PS file */
sprintf (doc_header->point, "\
%%!PS-Adobe-3.0 EPSF-3.0\n");
else
sprintf (doc_header->point, "\
%%!PS-Adobe-3.0\n");
_update_buffer (doc_header);
/* Compute an ASCII representation of the current time, in a
reentrant way if we're supporting pthreads (i.e. by using ctime_r
if it's available). */
time (&clock);
#ifdef PTHREAD_SUPPORT
#ifdef HAVE_PTHREAD_H
#ifdef HAVE_CTIME_R
ctime_r (&clock, time_string_buffer);
time_string = time_string_buffer;
#else
time_string = ctime (&clock);
#endif
#else
time_string = ctime (&clock);
#endif
#else
time_string = ctime (&clock);
#endif
sprintf (doc_header->point, "\
%%%%Creator: GNU libplot drawing library %s\n\
%%%%Title: PostScript plot\n\
%%%%CreationDate: %s\
%%%%DocumentData: Clean7Bit\n\
%%%%LanguageLevel: 1\n\
%%%%Pages: %d\n\
%%%%PageOrder: Ascend\n\
%%%%Orientation: Portrait\n",
PL_LIBPLOT_VER_STRING, time_string, num_pages);
_update_buffer (doc_header);
/* emit the bounding box for the document */
_bbox_of_outbufs (_plotter->data->first_page, &x_min, &x_max, &y_min, &y_max);
if (x_min > x_max || y_min > y_max)
/* all pages empty */
sprintf (doc_header->point, "\
%%%%BoundingBox: 0 0 0 0\n");
else
sprintf (doc_header->point, "\
%%%%BoundingBox: %d %d %d %d\n",
IROUND(x_min - 0.5), IROUND(y_min - 0.5),
IROUND(x_max + 0.5), IROUND(y_max + 0.5));
_update_buffer (doc_header);
/* determine fonts needed by document, by examining all pages */
{
current_page = _plotter->data->first_page;
for (i = 0; i < NUM_PS_FONTS; i++)
ps_font_used_in_doc[i] = false;
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
pcl_font_used_in_doc[i] = false;
#endif
while (current_page)
{
for (i = 0; i < NUM_PS_FONTS; i++)
if (current_page->ps_font_used[i])
ps_font_used_in_doc[i] = true;
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
if (current_page->pcl_font_used[i])
pcl_font_used_in_doc[i] = true;
#endif
current_page = current_page->next;
}
}
/* write out list of fonts needed by the document */
{
bool first_font = true;
strcpy (doc_header->point, "\
%%DocumentNeededResources: ");
_update_buffer (doc_header);
for (i = 0; i < NUM_PS_FONTS; i++)
{
if (ps_font_used_in_doc[i])
{
if (first_font == false)
{
strcpy (doc_header->point, "%%+ ");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "font ");
_update_buffer (doc_header);
strcpy (doc_header->point, _ps_font_info[i].ps_name);
_update_buffer (doc_header);
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
first_font = false;
}
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
{
if (pcl_font_used_in_doc[i])
{
if (first_font == false)
{
strcpy (doc_header->point, "%%+ ");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "font ");
_update_buffer (doc_header);
/* use replacement font name if any (this is only to
support the Tidbits-is-Wingdings botch) */
if (_pcl_font_info[i].substitute_ps_name)
strcpy (doc_header->point, _pcl_font_info[i].substitute_ps_name);
else
strcpy (doc_header->point, _pcl_font_info[i].ps_name);
_update_buffer (doc_header);
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
first_font = false;
}
}
#endif
if (first_font) /* no fonts needed in document */
{
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
}
}
/* emit final DSC lines in header */
if (num_pages > 0)
{
sprintf (doc_header->point, "\
%%%%DocumentSuppliedResources: procset %s %s 0\n",
PS_PROCSET_NAME, PS_PROCSET_VERSION);
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndComments\n\n");
_update_buffer (doc_header);
/* write out list of fonts needed by the document, all over again;
this time it's interpreted as the default font list for each page */
{
bool first_font = true;
strcpy (doc_header->point, "\
%%BeginDefaults\n");
_update_buffer (doc_header);
strcpy (doc_header->point, "\
%%PageResources: ");
_update_buffer (doc_header);
for (i = 0; i < NUM_PS_FONTS; i++)
{
if (ps_font_used_in_doc[i])
{
if (first_font == false)
{
strcpy (doc_header->point, "%%+ ");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "font ");
_update_buffer (doc_header);
strcpy (doc_header->point, _ps_font_info[i].ps_name);
_update_buffer (doc_header);
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
first_font = false;
}
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
{
if (pcl_font_used_in_doc[i])
{
if (first_font == false)
{
strcpy (doc_header->point, "%%+ ");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "font ");
_update_buffer (doc_header);
if (_pcl_font_info[i].substitute_ps_name)
/* this is to support the Tidbits-is-Wingdings botch */
strcpy (doc_header->point, _pcl_font_info[i].substitute_ps_name);
else
strcpy (doc_header->point, _pcl_font_info[i].ps_name);
_update_buffer (doc_header);
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
first_font = false;
}
}
#endif
if (first_font) /* no fonts needed in document */
{
strcpy (doc_header->point, "\n");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndDefaults\n\n");
_update_buffer (doc_header);
}
/* Document Prolog */
strcpy (doc_header->point, "\
%%BeginProlog\n");
_update_buffer (doc_header);
if (num_pages > 1)
/* PS [not EPS] file, include procset in document prolog */
{
sprintf (doc_header->point, "\
%%%%BeginResource procset %s %s 0\n",
PS_PROCSET_NAME, PS_PROCSET_VERSION);
_update_buffer (doc_header);
/* write out idraw-derived PS prologue (makes many definitions) */
for (i=0; *_ps_procset[i]; i++)
{
strcpy (doc_header->point, _ps_procset[i]);
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndResource\n");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndProlog\n\n");
_update_buffer (doc_header);
/* Document Setup */
strcpy (doc_header->point, "\
%%BeginSetup\n");
_update_buffer (doc_header);
/* tell driver to include any PS [or PCL] fonts that are needed */
for (i = 0; i < NUM_PS_FONTS; i++)
if (ps_font_used_in_doc[i])
{
sprintf (doc_header->point, "\
%%%%IncludeResource: font %s\n", _ps_font_info[i].ps_name);
_update_buffer (doc_header);
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
if (pcl_font_used_in_doc[i])
{
/* this is to support the Tidbits-is-Wingdings botch */
if (_pcl_font_info[i].substitute_ps_name)
sprintf (doc_header->point, "\
%%%%IncludeResource: font %s\n", _pcl_font_info[i].substitute_ps_name);
else
sprintf (doc_header->point, "\
%%%%IncludeResource: font %s\n", _pcl_font_info[i].ps_name);
_update_buffer (doc_header);
}
#endif
/* push private dictionary on stack */
strcpy (doc_header->point, "\
/DrawDict 50 dict def\n\
DrawDict begin\n");
_update_buffer (doc_header);
/* do ISO-Latin-1 reencoding for any fonts that need it */
{
bool need_to_reencode = false;
for (i = 0; i < NUM_PS_FONTS; i++)
if (ps_font_used_in_doc[i] && _ps_font_info[i].iso8859_1)
{
need_to_reencode = true;
break;
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
if (pcl_font_used_in_doc[i] && _pcl_font_info[i].iso8859_1)
{
need_to_reencode = true;
break;
}
#endif
if (need_to_reencode)
{
strcpy (doc_header->point, _ps_fontproc);
_update_buffer (doc_header);
for (i = 0; i < NUM_PS_FONTS; i++)
{
if (ps_font_used_in_doc[i] && _ps_font_info[i].iso8859_1)
{
sprintf (doc_header->point, "\
/%s reencodeISO def\n",
_ps_font_info[i].ps_name);
_update_buffer (doc_header);
}
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
{
if (pcl_font_used_in_doc[i] && _pcl_font_info[i].iso8859_1)
{
sprintf (doc_header->point, "\
/%s reencodeISO def\n",
_pcl_font_info[i].ps_name);
_update_buffer (doc_header);
}
}
#endif
}
}
if (num_pages == 1)
/* EPS [not just PS] file, include procset in setup section,
so that it will modify only the private dictionary */
{
sprintf (doc_header->point, "\
%%%%BeginResource procset %s %s 0\n",
PS_PROCSET_NAME, PS_PROCSET_VERSION);
_update_buffer (doc_header);
/* write out idraw-derived PS prologue in p_header.h (makes many
definitions) */
for (i=0; *_ps_procset[i]; i++)
{
strcpy (doc_header->point, _ps_procset[i]);
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndResource\n");
_update_buffer (doc_header);
}
strcpy (doc_header->point, "\
%%EndSetup\n\n");
_update_buffer (doc_header);
/* Document header is now prepared, and stored in a plOutbuf.
Now do the same for the doc trailer (much shorter). */
/* Document Trailer: just pop private dictionary off stack */
doc_trailer = _new_outbuf ();
strcpy (doc_trailer->point, "\
%%Trailer\n\
end\n\
%%EOF\n");
_update_buffer (doc_trailer);
/* WRITE DOCUMENT HEADER (and free its plOutbuf) */
_write_string (_plotter->data, doc_header->base);
_delete_outbuf (doc_header);
/* now loop through pages, emitting each in turn */
if (num_pages > 0)
{
for (current_page = _plotter->data->first_page, n=1;
current_page;
current_page = current_page->next, n++)
{
plOutbuf *page_header, *page_trailer;
/* prepare page header, and store it in a plOutbuf */
page_header = _new_outbuf ();
sprintf (page_header->point, "\
%%%%Page: %d %d\n", n, n);
_update_buffer (page_header);
/* write out list of fonts needed by the page */
{
bool first_font = true;
strcpy (page_header->point, "\
%%PageResources: ");
_update_buffer (page_header);
for (i = 0; i < NUM_PS_FONTS; i++)
{
if (current_page->ps_font_used[i])
{
if (first_font == false)
{
strcpy (page_header->point, "%%+ ");
_update_buffer (page_header);
}
strcpy (page_header->point, "font ");
_update_buffer (page_header);
strcpy (page_header->point, _ps_font_info[i].ps_name);
_update_buffer (page_header);
strcpy (page_header->point, "\n");
_update_buffer (page_header);
first_font = false;
}
}
#ifdef USE_LJ_FONTS_IN_PS
for (i = 0; i < NUM_PCL_FONTS; i++)
{
if (current_page->pcl_font_used[i])
{
if (first_font == false)
{
strcpy (page_header->point, "%%+ ");
_update_buffer (page_header);
}
strcpy (page_header->point, "font ");
_update_buffer (page_header);
if (_pcl_font_info[i].substitute_ps_name)
/* this is to support the Tidbits-is-Wingdings botch */
strcpy (page_header->point, _pcl_font_info[i].substitute_ps_name);
else
strcpy (page_header->point, _pcl_font_info[i].ps_name);
_update_buffer (page_header);
strcpy (page_header->point, "\n");
_update_buffer (page_header);
first_font = false;
}
}
#endif
if (first_font) /* no fonts needed on page */
{
strcpy (page_header->point, "\n");
_update_buffer (page_header);
}
}
/* emit the bounding box for the page */
_bbox_of_outbuf (current_page, &x_min, &x_max, &y_min, &y_max);
if (x_min > x_max || y_min > y_max)
/* empty page */
sprintf (page_header->point, "\
%%%%PageBoundingBox: 0 0 0 0\n");
else
sprintf (page_header->point, "\
%%%%PageBoundingBox: %d %d %d %d\n",
IROUND(x_min - 0.5), IROUND(y_min - 0.5),
IROUND(x_max + 0.5), IROUND(y_max + 0.5));
_update_buffer (page_header);
/* Page Setup */
strcpy (page_header->point, "\
%%BeginPageSetup\n");
_update_buffer (page_header);
/* emit initialization code (including idraw, PS directives) */
/* N.B. `8' below is the version number of the idraw PS format
we're producing; see <Unidraw/Components/psformat.h> */
strcpy (page_header->point, "\
%I Idraw 8\n\n\
Begin\n\
%I b u\n\
%I cfg u\n\
%I cbg u\n\
%I f u\n\
%I p u\n\
%I t\n\
[ 1 0 0 1 0 0 ] concat\n\
/originalCTM matrix currentmatrix def\n\
/trueoriginalCTM matrix currentmatrix def\n");
_update_buffer (page_header);
strcpy (page_header->point, "\
%%EndPageSetup\n\n");
_update_buffer (page_header);
/* Page header is now prepared, and stored in a plOutbuf.
Do the same for the page trailer (much shorter). */
page_trailer = _new_outbuf ();
/* Page Trailer: includes `showpage' */
strcpy (page_trailer->point, "\
%%PageTrailer\n\
End %I eop\n\
showpage\n\n");
_update_buffer (page_trailer);
/* Page trailer is now ready */
/* WRITE PS CODE FOR THIS PAGE, including header, trailer */
_write_string (_plotter->data, page_header->base);
if (current_page->len > 0)
_write_string (_plotter->data, current_page->base);
_write_string (_plotter->data, page_trailer->base);
/* free header, trailer plOutbufs */
_delete_outbuf (page_trailer);
_delete_outbuf (page_header);
}
}
/* WRITE DOCUMENT TRAILER (and free its plOutbuf) */
_write_string (_plotter->data, doc_trailer->base);
_delete_outbuf (doc_trailer);
}
/* delete all plOutbufs in which document pages are stored */
current_page = _plotter->data->first_page;
while (current_page)
{
plOutbuf *next_page;
next_page = current_page->next;
_delete_outbuf (current_page);
current_page = next_page;
}
/* flush output stream if any */
if (_plotter->data->outfp)
{
if (fflush(_plotter->data->outfp) < 0
#ifdef MSDOS
/* data can be caught in DOS buffers, so do an fsync() too */
|| fsync (_plotter->data->outfp) < 0
#endif
)
_plotter->error (R___(_plotter) "output stream jammed");
}
#ifdef LIBPLOTTER
else if (_plotter->data->outstream)
{
_plotter->data->outstream->flush ();
if (!(*(_plotter->data->outstream)))
_plotter->error (R___(_plotter) "output stream jammed");
}
#endif
#ifndef LIBPLOTTER
/* in libplot, manually invoke superclass termination method */
_g_terminate (S___(_plotter));
#endif
}
#ifdef LIBPLOTTER
PSPlotter::PSPlotter (FILE *infile, FILE *outfile, FILE *errfile)
:Plotter (infile, outfile, errfile)
{
_p_initialize ();
}
PSPlotter::PSPlotter (FILE *outfile)
:Plotter (outfile)
{
_p_initialize ();
}
PSPlotter::PSPlotter (istream& in, ostream& out, ostream& err)
: Plotter (in, out, err)
{
_p_initialize ();
}
PSPlotter::PSPlotter (ostream& out)
: Plotter (out)
{
_p_initialize ();
}
PSPlotter::PSPlotter ()
{
_p_initialize ();
}
PSPlotter::PSPlotter (FILE *infile, FILE *outfile, FILE *errfile, PlotterParams ¶meters)
:Plotter (infile, outfile, errfile, parameters)
{
_p_initialize ();
}
PSPlotter::PSPlotter (FILE *outfile, PlotterParams ¶meters)
:Plotter (outfile, parameters)
{
_p_initialize ();
}
PSPlotter::PSPlotter (istream& in, ostream& out, ostream& err, PlotterParams ¶meters)
: Plotter (in, out, err, parameters)
{
_p_initialize ();
}
PSPlotter::PSPlotter (ostream& out, PlotterParams ¶meters)
: Plotter (out, parameters)
{
_p_initialize ();
}
PSPlotter::PSPlotter (PlotterParams ¶meters)
: Plotter (parameters)
{
_p_initialize ();
}
PSPlotter::~PSPlotter ()
{
/* if luser left the Plotter open, close it */
if (_plotter->data->open)
_API_closepl ();
_p_terminate ();
}
#endif
|