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
|
#include "Main.h"
#include <stdio.h>
#include <string.h>
#include "Defines.h"
#include "Dimensions.h"
#include "Curves.h"
#include "HpFile.h"
#include "Axes.h"
#include "Key.h"
#include "Marks.h"
#include "Utilities.h"
/* own stuff */
#include "PsFile.h"
static void Prologue PROTO((void)); /* forward */
static void Variables PROTO((void)); /* forward */
static void BorderOutlineBox PROTO((void)); /* forward */
static void BigTitleOutlineBox PROTO((void)); /* forward */
static void TitleOutlineBox PROTO((void)); /* forward */
static void BigTitleText PROTO((void)); /* forward */
static void TitleText PROTO((void)); /* forward */
static void DoTitleAndBox(void)
{
BorderOutlineBox();
if (bflag) {
BigTitleOutlineBox();
BigTitleText();
} else {
TitleOutlineBox();
TitleText();
}
}
static void Landscape PROTO((void)); /* forward */
static void Portrait PROTO((void)); /* forward */
void NextPage(void) {
fprintf(psfp, "showpage\n");
if (gflag) Portrait(); else Landscape();
DoTitleAndBox();
}
void
PutPsFile(void)
{
Prologue();
Variables();
CurvesInit();
DoTitleAndBox();
if (multipageflag) {
Key(); // print multi-page key even if there are more than 20 bands
NextPage();
}
Axes();
if (!multipageflag && (TWENTY != 0)) Key();
Curves();
if (!yflag) Marks();
fprintf(psfp, "showpage\n");
}
static void StandardSpecialComments PROTO((void)); /* forward */
static void EPSFSpecialComments PROTO((floatish)); /* forward */
static void Scaling PROTO((floatish)); /* forward */
static void
Prologue(void)
{
if (eflag) {
floatish epsfscale = epsfwidth / (floatish) borderwidth;
EPSFSpecialComments(epsfscale);
Scaling(epsfscale);
} else {
StandardSpecialComments();
if (gflag) Portrait(); else Landscape();
}
}
extern char *jobstring;
extern char *datestring;
static void
StandardSpecialComments(void)
{
fprintf(psfp, "%%!PS-Adobe-2.0\n");
fprintf(psfp, "%%%%Title: %s\n", jobstring);
fprintf(psfp, "%%%%Creator: %s (version %s)\n", programname, VERSION);
fprintf(psfp, "%%%%CreationDate: %s\n", datestring);
fprintf(psfp, "%%%%EndComments\n");
}
static void
EPSFSpecialComments(floatish epsfscale)
{
fprintf(psfp, "%%!PS-Adobe-2.0\n");
fprintf(psfp, "%%%%Title: %s\n", jobstring);
fprintf(psfp, "%%%%Creator: %s (version %s)\n", programname, VERSION);
fprintf(psfp, "%%%%CreationDate: %s\n", datestring);
fprintf(psfp, "%%%%BoundingBox: 0 0 %d %d\n",
(int) (borderwidth * epsfscale + 0.5),
(int) (borderheight * epsfscale + 0.5) );
fprintf(psfp, "%%%%EndComments\n");
}
static void
Landscape(void)
{
fprintf(psfp, "-90 rotate\n");
fprintf(psfp, "%f %f translate\n", -(borderwidth + (floatish) START_Y),
(floatish) START_X);
}
static void
Portrait(void)
{
fprintf(psfp, "%f %f translate\n", (floatish) START_X, (floatish) START_Y);
}
static void
Scaling(floatish epsfscale)
{
fprintf(psfp, "%f %f scale\n", epsfscale, epsfscale);
}
static void
Variables(void)
{
fprintf(psfp, "/HE%d /Helvetica findfont %d scalefont def\n",
NORMAL_FONT, NORMAL_FONT);
fprintf(psfp, "/HE%d /Helvetica findfont %d scalefont def\n",
LARGE_FONT, LARGE_FONT);
}
static void
BorderOutlineBox(void)
{
fprintf(psfp, "newpath\n");
fprintf(psfp, "0 0 moveto\n");
fprintf(psfp, "0 %f rlineto\n", borderheight);
fprintf(psfp, "%f 0 rlineto\n", borderwidth);
fprintf(psfp, "0 %f rlineto\n", -borderheight);
fprintf(psfp, "closepath\n");
fprintf(psfp, "%f setlinewidth\n", borderthick);
fprintf(psfp, "stroke\n");
}
static void
BigTitleOutlineBox(void)
{
fprintf(psfp, "newpath\n");
fprintf(psfp, "%f %f moveto\n", borderspace,
borderheight - titleheight - borderspace);
fprintf(psfp, "0 %f rlineto\n", titleheight);
fprintf(psfp, "%f 0 rlineto\n", titlewidth);
fprintf(psfp, "0 %f rlineto\n", -titleheight);
fprintf(psfp, "closepath\n");
fprintf(psfp, "%f setlinewidth\n", borderthick);
fprintf(psfp, "stroke\n");
fprintf(psfp, "%f %f moveto\n", borderspace,
borderheight - titleheight / 2 - borderspace);
fprintf(psfp, "%f 0 rlineto\n", titlewidth);
fprintf(psfp, "stroke\n");
}
static void
TitleOutlineBox(void)
{
fprintf(psfp, "newpath\n");
fprintf(psfp, "%f %f moveto\n", borderspace,
borderheight - titleheight - borderspace);
fprintf(psfp, "0 %f rlineto\n", titleheight);
fprintf(psfp, "%f 0 rlineto\n", titlewidth);
fprintf(psfp, "0 %f rlineto\n", -titleheight);
fprintf(psfp, "closepath\n");
fprintf(psfp, "%f setlinewidth\n", borderthick);
fprintf(psfp, "stroke\n");
}
static void EscapePrint PROTO((char *, int)); /* forward */
static void
BigTitleText(void)
{
floatish x, y;
x = borderspace + titletextspace;
y = borderheight - titleheight / 2 - borderspace + titletextspace;
/* job identifier goes on top at the far left */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fprintf(psfp, "%f %f moveto\n", x, y);
fputc('(', psfp);
EscapePrint(jobstring, BIG_JOB_STRING_WIDTH);
fprintf(psfp, ") show\n");
y = borderheight - titleheight - borderspace + titletextspace;
/* area below curve gows at the botton, far left */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fprintf(psfp, "%f %f moveto\n", x, y);
fputc('(', psfp);
CommaPrint(psfp, (intish)areabelow);
fprintf(psfp, " %s x %s)\n", valueunitstring, sampleunitstring);
fprintf(psfp, "show\n");
/* date goes at far right */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fprintf(psfp, "(%s)\n", datestring);
fprintf(psfp, "dup stringwidth pop\n");
fprintf(psfp, "%f\n", (titlewidth + borderspace) - titletextspace);
fprintf(psfp, "exch sub\n");
fprintf(psfp, "%f moveto\n", y);
fprintf(psfp, "show\n");
}
static void
TitleText(void)
{
floatish x, y;
x = borderspace + titletextspace;
y = borderheight - titleheight - borderspace + titletextspace;
/* job identifier goes at far left */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fprintf(psfp, "%f %f moveto\n", x, y);
fputc('(', psfp);
EscapePrint(jobstring, SMALL_JOB_STRING_WIDTH);
fprintf(psfp, ") show\n");
/* area below curve is centered */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fputc('(', psfp);
CommaPrint(psfp, (intish) areabelow);
fprintf(psfp, " %s x %s)\n", valueunitstring, sampleunitstring);
fprintf(psfp, "dup stringwidth pop\n");
fprintf(psfp, "2 div\n");
fprintf(psfp, "%f\n", titlewidth / 2);
fprintf(psfp, "exch sub\n");
fprintf(psfp, "%f moveto\n", y);
fprintf(psfp, "show\n");
/* date goes at far right */
fprintf(psfp, "HE%d setfont\n", TITLE_TEXT_FONT);
fprintf(psfp, "(%s)\n", datestring);
fprintf(psfp, "dup stringwidth pop\n");
fprintf(psfp, "%f\n", (titlewidth + borderspace) - titletextspace);
fprintf(psfp, "exch sub\n");
fprintf(psfp, "%f moveto\n", y);
fprintf(psfp, "show\n");
}
/*
* Print a string s in width w, escaping characters where necessary.
*/
static void
EscapePrint(char *s, int w)
{
for ( ; *s && w > 0; s++, w--) {
if (*s == '(') { /* escape required */
fputc('\\', psfp);
} else if (*s == ')') {
fputc('\\', psfp);
}
fputc(*s, psfp);
}
}
|