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
|
/*
winEPS.c:
Copyright (C) 1995 Fabio P. Bertolotti
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "csoundCore.h" /* WINEPS.C */
#include "cwindow.h"
#include <math.h>
/*-------------------------------------- winEPS.c ---------------------------
*
* Write Csound's graphics in PostScript format into a file for later viewing.
*
*
* Fabio P. Bertolotti,
* Dec 1995,
* Rosdorf, Germany.
* email: fabio@ts.go.dlr.de
*
*
*
* The PS output file is located in the same directory as the
* sound file, and has the name of the sound file with the
* extension ``.eps'' appended.
*
* On NeXT running Csnd, the sound file has the extension
* ``.snd''. In this case, the PS file has the name of the
* sound file, with the extension ``.eps'' substituting the
* ``.snd'' extension. Such extension replacement also occurs
* for output files ending in ``.aiff'', ``.au'' and ``.wav''
*
* If sound output is being piped directly to the DAC, then
* there is no PS output.
*
*
* Each new graph is plotted on a fresh PostScript page
* On each page we print the current date, the name of the
* score file, the orchestra file, the maximum and minimum values
* and the figure caption, as defined by Csound.
* Both the vertical and horizontal axes are labeled (unlike
* SGI and X11 window graphs, which have no labels).
*
*
* If you improve this subroutine or the PostScript ``look'' of the
* graphs, I would be grateful if you email me the improved version,
* at: fabio@ts.go.dlr.de Thanks.
*
*
--------------------------------------------------------------------------*/
#include <string.h>
#include <time.h>
#ifdef __MACH__
/* No idea why these are not declared */
extern struct tm * localtime(const time_t *);
extern char * asctime(const struct tm *);
#endif
/**
* Origin and size of PostScript plot
*/
#define MyPS_XORIG (FL(100.0))
#define MyPS_YORIG (FL(130.0))
#define MyPS_WIDTH (FL(450.0))
#define MyPS_HEIGHT (FL(400.0))
#define MyPS_FONT "/Times-Roman"
#define MyPS_FONTSIZE (FL(20.0))
typedef struct winEPS_globals_ {
FILE *psFile;
void *psfd; /* CSFILE* returned by FileOpen2() */
char ps_date[40]; /* Print time & date on every plot */
int currentPage; /* Current page number */
} winEPS_globals_t;
void PS_MakeGraph(CSOUND *csound, WINDAT *wdptr, const char *name)
{
winEPS_globals_t *pp;
char *filenam;
char pathnam[1024];
char *t;
time_t lt;
OPARMS oparms;
csound->GetOParms(csound, &oparms);
IGN(wdptr);
IGN(name);
if (csound->winEPS_globals != NULL)
return;
csound->winEPS_globals = csound->Calloc(csound, sizeof(winEPS_globals_t));
pp = (winEPS_globals_t *) csound->winEPS_globals;
filenam = oparms.outfilename;
if (filenam == NULL)
filenam = "test"; /* O.outfilename not set yet */
/* If sound output is being piped directly to the DAC, then */
/* there is no PS output, (psFileOK remains 0), */
/* otherwise open an encapsulated PostScript output file */
/* with a name related to the sound file's name. */
/* */
/* The PS file is located in the same directory as the */
/* sound file, and has the name of the sound file with the */
/* extension ``.eps'' appended. */
/* */
/**
* Remove extension from sound-file and add ".eps"
*/
strNcpy(pathnam, filenam, 1024); //pathnam[1023] = '\0';
t = strrchr(pathnam, '.');
if (t != NULL) *t = '\0';
strlcat(pathnam, ".eps", 1024);
pp->psfd = csound->FileOpen2(csound, &(pp->psFile), CSFILE_STD, pathnam,
"w", "SFDIR", CSFTYPE_POSTSCRIPT, 0);
if (UNLIKELY(pp->psfd == NULL)) {
csound->Message(csound, Str("** Warning ** PostScript file %s "
"cannot be opened\n"), pathnam);
csound->winEPS_globals = NULL;
csound->Free(csound, (void *)pp);
return;
}
csound->Message(csound, Str("\n PostScript graphs written to file %s\n\n"),
pathnam);
/**
* Get the current time and date
*/
lt = time(NULL);
#ifndef LINUX
{
struct tm *date_ptr;
char *date;
date_ptr = localtime(<);
date = asctime(date_ptr);
t = pp->ps_date;
while (*date != '\n')
*t++ = *date++;
*t = '\0';
}
#else
/* avoid use of non-reentrant functions */
{
struct tm tmp1;
memset(&tmp1, 0, sizeof(struct tm));
localtime_r(<, &tmp1);
asctime_r(&tmp1, &(pp->ps_date[0]));
}
#endif
/**
* Print PostScript file Header
* Place every plot on a new page.
*/
fprintf(pp->psFile, "%s \n", "%!PS-Adobe-2.0");
fprintf(pp->psFile, "%s \n", "%%Creator: Csound");
fprintf(pp->psFile, "%s %s \n", "%%CreationDate:", pp->ps_date);
fprintf(pp->psFile, "%s \n", "%%Pages: (atend)");
fprintf(pp->psFile, "%s \n", "%%PageOrder: Ascend");
fprintf(pp->psFile, "%s \n", "%%BoundingBox: 010 010 540 700");
fprintf(pp->psFile, "%s \n", "%%Orientation: Portrait");
fprintf(pp->psFile, "%s \n", "%%EndComments");
fprintf(pp->psFile, "%s \n", " ");
}
static void setAxisNumbers(MYFLT *min, MYFLT *max, char *cmin, char *cmax)
{
double bmin, bmax, big;
int i;
/**
* Get most significant digit
*/
bmin = 0.0000001;
if (fabs(*min) > bmin) {
while ((int)(fabs(*min) / bmin))
bmin = bmin * 10.0;
}
bmax = 0.0000001;
if (fabs((double)*max) > bmax) {
while ((i = (int)(FABS(*max) / bmax)))
bmax = bmax * 10.0;
}
if (fabs(bmin) > fabs(bmax))
big = fabs(bmin);
else
big = fabs(bmax);
/**
* Set max and minimm to nearest 2nd sig digit
*/
if (*max == FL(0.0))
i = 0;
else
i = (int)((*max / big) * 100.0) + 1;
*max = (MYFLT) (i * big * 0.01);
if (*min == FL(0.0))
i = 0;
else
i = (int)((*min / big) * 100.0) - 1;
*min = (MYFLT) (i * big * 0.01);
if (fabs(*max - *min) < 0.0000001)
*max = *min + FL(1.0); /* No zero divide */
/**
* Write characters
*/
CS_SPRINTF(cmin, "%g", *min);
CS_SPRINTF(cmax, "%g", *max);
}
static void PS_drawAxes(winEPS_globals_t *pp,
char *cxmin, char *cxmax, char *cymin, char *cymax)
{
MYFLT xx, yy, dx, dy;
MYFLT fnts, swide;
int i;
/**
* Make axes - box
*/
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%% Axes \n");
fprintf(pp->psFile, "1 setlinewidth \n");
fprintf(pp->psFile, "newpath \n");
xx = MyPS_XORIG;
yy = MyPS_YORIG;
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
xx = MyPS_XORIG + MyPS_WIDTH;
fprintf(pp->psFile, "%f %f lineto \n", xx, yy);
yy = MyPS_YORIG + MyPS_HEIGHT;
fprintf(pp->psFile, "%f %f lineto \n", xx, yy);
xx = MyPS_XORIG;
fprintf(pp->psFile, "%f %f lineto \n", xx, yy);
fprintf(pp->psFile, "closepath stroke \n");
/**
* Make tick marks: x-axis
*/
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%% x-tickmarks \n");
fprintf(pp->psFile, "1 setlinewidth \n");
xx = MyPS_XORIG;
dx = MyPS_WIDTH / FL(10.0);
dy = MyPS_HEIGHT/ FL(10.0);
for (i = 0; i <= 10; i++) {
yy = MyPS_YORIG;
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
yy = MyPS_YORIG + dy/FL(6.0);
fprintf(pp->psFile, "%f %f lineto stroke \n", xx, yy);
yy = MyPS_YORIG + MyPS_HEIGHT - dy/FL(6.0);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
yy = MyPS_YORIG + MyPS_HEIGHT;
fprintf(pp->psFile, "%f %f lineto stroke \n", xx, yy);
xx += dx;
}
/**
* Make tick marks: y-axis
*/
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%% y-tickmarks \n");
fprintf(pp->psFile, "1 setlinewidth \n");
yy = MyPS_YORIG;
for (i = 0; i <= 10; i++) {
xx = MyPS_XORIG;
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
xx = MyPS_XORIG + dx/FL(6.0);
fprintf(pp->psFile, "%f %f lineto stroke \n", xx, yy);
xx = MyPS_XORIG + MyPS_WIDTH - dx / FL(6.0);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
xx = MyPS_XORIG + MyPS_WIDTH;
fprintf(pp->psFile, "%f %f lineto stroke \n", xx, yy);
yy += dy;
}
/**
* Label the axes's max and min
*/
fnts = MyPS_FONTSIZE;
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%s findfont %f scalefont setfont \n", MyPS_FONT, fnts);
swide = FL(0.5) * fnts * (MYFLT) strlen(cxmin);
xx = MyPS_XORIG - swide * FL(0.5);
yy = MyPS_YORIG - fnts * FL(1.8);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(%s) show \n", cxmin);
swide = FL(0.5) * fnts * (MYFLT) strlen(cxmax);
xx = MyPS_XORIG + MyPS_WIDTH - swide * FL(0.2);
yy = MyPS_YORIG - fnts * FL(1.8);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(%s) show \n", cxmax);
swide = FL(0.5) * fnts * strlen(cymin);
xx = MyPS_XORIG - fnts * FL(0.5) - swide;
yy = MyPS_YORIG - fnts * FL(0.4);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(%s) show \n", cymin);
swide = FL(0.5) * fnts * (MYFLT) strlen(cymax);
xx = MyPS_XORIG - fnts * FL(0.5) - swide;
yy = MyPS_YORIG + MyPS_HEIGHT - fnts * FL(0.4);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(%s) show \n", cymax);
}
void PS_DrawGraph(CSOUND *csound, WINDAT *wdptr)
{
winEPS_globals_t *pp;
int iskip = (wdptr->npts < MyPS_WIDTH ?
1 : (int)(wdptr->npts / MyPS_WIDTH));
MYFLT ymin, ymax, xx, yy, dx, dy, fnts;
char cxmin[20], cxmax[20], cymin[20], cymax[20];
int i;
/**
* No action when the output file is not opened
*/
pp = (winEPS_globals_t *)csound->winEPS_globals;
if (pp == NULL)
return;
/**
* draw current page and start a newpage.
*/
pp->currentPage++;
if (pp->currentPage > 1)
fprintf(pp->psFile, "showpage \n");
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%%%%Page: %d %d \n", pp->currentPage, pp->currentPage);
fprintf(pp->psFile, " \n");
/**
* Get labels for axis limits, then draw the axis
*/
//xmin = FL(0.0);
/* xmax = FL(1.0) * wdptr->npts; */
snprintf(cxmin, 20, "%d", 0);
snprintf(cxmax, 20, "%ld", (long)wdptr->npts);
ymin = wdptr->min;
ymax = wdptr->max;
setAxisNumbers(&ymin, &ymax, cymin, cymax);
PS_drawAxes(pp, cxmin, cxmax, cymin, cymax);
/**
* write the plot caption
*/
fnts = MyPS_FONTSIZE;
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%s findfont %f scalefont setfont \n",
MyPS_FONT, fnts);
xx = MyPS_XORIG;
yy = MyPS_YORIG + MyPS_HEIGHT + FL(7.0) * fnts * FL(1.5);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(date: %s ) show \n", pp->ps_date);
yy = MyPS_YORIG + MyPS_HEIGHT + FL(6.0) * fnts * FL(1.5);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(scorefile: %s) show \n", csound->scorename);
yy = MyPS_YORIG + MyPS_HEIGHT + FL(5.0) * fnts * FL(1.5);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(orch_file: %s) show \n", csound->orchname);
yy = MyPS_YORIG + MyPS_HEIGHT + FL(4.0) * fnts * FL(1.5);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(maximum : %f) show \n", wdptr->max);
yy = MyPS_YORIG + MyPS_HEIGHT + FL(3.0) * fnts * FL(1.5);
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
fprintf(pp->psFile, "(minimum : %f) show \n", wdptr->min);
if (wdptr->caption[0]) {
xx = MyPS_XORIG + MyPS_WIDTH / FL(3.0);
yy = MyPS_YORIG + MyPS_HEIGHT + fnts;
fprintf(pp->psFile, "%f %f moveto \n0", xx, yy);
fprintf(pp->psFile, "(%s) show \n", wdptr->caption);
}
/**
* Draw 0 line if inside box
*/
dy = MyPS_HEIGHT / (ymax - ymin);
if (ymin < 0 && ymax > 0) {
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%% 0-line \n");
yy = MyPS_YORIG + (0 - ymin) * dy;
dx = (FL(1.0) * MyPS_WIDTH) / FL(100.0);
for (i = 0; i < 100; i += 3) {
xx = MyPS_XORIG + i * dx;
fprintf(pp->psFile, "%f %f moveto \n", xx, yy);
xx = MyPS_XORIG + (i + 1) * dx;
fprintf(pp->psFile, "%f %f lineto stroke \n", xx, yy);
}
}
/**
* write the plot data
*/
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%% Plot data \n");
fprintf(pp->psFile, "1 setlinewidth \n");
dx = iskip * MyPS_WIDTH / ((MYFLT) wdptr->npts);
xx = MyPS_XORIG;
yy = MyPS_YORIG + (wdptr->fdata[0] - ymin) * dy;
fprintf(pp->psFile, "newpath %f %f moveto \n", xx, yy);
for (i = 1; i < wdptr->npts; i += iskip) {
xx += dx;
yy = MyPS_YORIG + (wdptr->fdata[i] - ymin) * dy;
fprintf(pp->psFile, "%f %f lineto \n", xx, yy);
}
fprintf(pp->psFile, "stroke \n");
}
int PS_ExitGraph(CSOUND *csound)
{
winEPS_globals_t *pp;
/**
* No action when the output file is not opened
*/
pp = (winEPS_globals_t *) csound->winEPS_globals;
if (pp != NULL) {
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "showpage \n");
fprintf(pp->psFile, " \n");
fprintf(pp->psFile, "%%%%Trailer \n");
fprintf(pp->psFile, "%%%%Pages: %d \n", pp->currentPage);
fprintf(pp->psFile, "%%%%EOF\n");
csound->FileClose(csound, pp->psfd);
csound->winEPS_globals = NULL;
csound->Free(csound, (void *) pp);
}
return 0;
}
|