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
|
/*
* $Id: gread.c,v 1.2 2009-10-19 04:37:51 dhmunro Exp $
* Define Drauing gread read routine for GIST
*/
/* Copyright (c) 2005, The Regents of the University of California.
* All rights reserved.
* This file is part of yorick (http://yorick.sourceforge.net).
* Read the accompanying LICENSE file for details.
*/
#include "gist.h"
#include "pstdio.h"
#include "pstdlib.h"
#include "play.h"
#include <errno.h>
extern void GdKillSystems(void); /* defined in draw.c */
#ifndef GISTPATH
#define GISTPATH "~/gist:~/Gist:/usr/local/lib/gist"
#endif
char *gistPathDefault= GISTPATH;
/* ------------------------------------------------------------------------ */
#include <string.h>
struct GsysRead {
char *legend;
GpBox viewport;
GaTickStyle ticks;
} modelSystem, tempSystem;
struct GlegRead {
GpReal x, y, dx, dy;
GpTextAttribs textStyle;
int nchars, nlines, nwrap;
} modelLegends;
static char *FormGistPath(void);
static char *FormFullName(char *gistPath, const char *name);
static void FormatError(p_file *fp, const char *name, const char *id);
static int SnarfColor(char *token);
static int SnarfRGB(char *token, GpColorCell *cell);
static int SnarfGray(GpColorCell *cell, int lookingFor4);
static char *WhiteSkip(char *input);
static char *DelimitRead(char *input, int *closed, int nlOK);
static char *ColRead(char *input, GpColorCell *dest);
static char *IntRead(char *input, int *dest);
static char *RealRead(char *input, GpReal *dest);
static char *StringRead(char *input, char **dest);
static char *MemberRead(char *input, char **member);
static char *ArrayRead(char *input, GpReal *dest, int narray);
static char *LineRead(char *input, GpLineAttribs *dest);
static char *TextRead(char *input, GpTextAttribs *dest);
static char *AxisRead(char *input, GaAxisStyle *dest);
static char *TickRead(char *input, GaTickStyle *dest);
static char *SystemRead(char *input, struct GsysRead *dest);
static char *LegendsRead(char *input, struct GlegRead *dest);
/* ------------------------------------------------------------------------ */
/* A palette file (.gp) or style file (.gs) will be found if it:
1. Is in the current working directory.
2. Is the first file of its name encountered in any of the directories
named in the GISTPATH environment variable.
3. Ditto for the GISTPATH default string built in at compile time.
Note that the environment variable is in addition to the compile
time variable, not in place of it.
The path name list should consist of directory names (with or without
trailing '/'), separated by ':' with no intervening whitespace. The
symbol '~', if it is the first symbol of a directory name, will be
expanded to the value of the HOME environment variable, but other
environment variable expansions are not recognized.
If the given filename begins with '/' the path search is
not done. '~' is NOT recognized in the given filename.
*/
extern char *g_argv0;
char *g_argv0 = 0;
static char *scratch = 0;
static char *gist_path = 0;
char *
g_set_path(char *gpath)
{
if (gpath) {
char *p = gist_path;
gist_path = p_strcpy(gpath);
if (p) p_free(p);
} else {
FormGistPath();
}
return gist_path;
}
static char *FormGistPath(void)
{
if (!gist_path) {
char *gistPath = getenv("GISTPATH");
int len = gistPath? strlen(gistPath) : 0;
int len0 = g_argv0? strlen(g_argv0) : 0;
int lend = gistPathDefault? strlen(gistPathDefault) : 0;
char *place;
/* Get enough scratch space to hold
the concatenation of the GISTPATH environment variable and the
GISTPATH compile-time option, and a fallback computed from argv[0] */
gist_path = p_malloc(len+len0+lend+4);
if (!gist_path) return 0;
place = gist_path;
if (gistPath) {
strcpy(place, gistPath);
place += len;
*(place++) = ':';
}
strcpy(place, gistPathDefault);
place += lend;
/* back up to sibling of directory containing executable */
for (len=len0-1 ; len>0 ; len--) if (g_argv0[len]=='/') break;
for (len-- ; len>0 ; len--) if (g_argv0[len]=='/') break;
if (len > 0) {
/* tack /g/ sibling of executable directory onto path */
*(place++) = ':';
strncpy(place, g_argv0, ++len);
place += len;
strcpy(place, "g");
}
}
scratch = p_malloc(1028);
if (!scratch) return 0;
return gist_path;
}
static char *FormFullName(char *gistPath, const char *name)
{
int nlen= strlen(name);
int len, elen;
char *now= scratch;
for (;;) {
/* Skip past any components of the GISTPATH which result in impossibly
long path names */
do len= strcspn(gistPath, ":"); while (!len);
/* handle MS Windows drive letters */
if (len==1 && gistPath[1]==':' &&
((gistPath[0]>='A' && gistPath[0]<='Z') ||
(gistPath[0]>='a' && gistPath[0]<='z')))
len = 2+strcspn(gistPath+2, ":");
if (!len) break;
elen= len;
now= scratch;
if (gistPath[0]=='~') {
/* Get name of home directory from HOME environment variable */
char *home= getenv("HOME");
int hlen;
if (home && (hlen= strlen(home))<1024) {
strcpy(now, home);
now+= hlen;
gistPath++;
len--;
elen+= hlen-1;
}
}
if (elen+nlen<1023) break;
gistPath+= len+1;
}
if (len) {
strncpy(now, gistPath, len);
now+= len;
if (now[-1]!='/') *now++= '/';
strcpy(now, name);
} else {
scratch[0]= '\0';
}
return gistPath+len + strspn(gistPath+len, ":");
}
extern p_file *GistOpen(const char *name);
p_file *GistOpen(const char *name)
{
p_file *f;
if (!name) return 0;
f= p_fopen(name, "r");
if (!f && name[0]!='/') {
/* Try to find relative file names somewhere on GISTPATH or, failing
that, in the default directory specified at compile time. */
char *gistPath= FormGistPath();
if (gistPath) {
do {
gistPath= FormFullName(gistPath, name);
f= p_fopen(scratch, "r");
} while (!f && gistPath[0]);
p_free(scratch);
}
}
if (!f) {
strcpy(gistError, "unable to open file ");
strncat(gistError, name, 100);
}
return f;
}
static void FormatError(p_file *fp, const char *name, const char *id)
{
p_fclose(fp);
strcpy(gistError, id);
strcat(gistError, " file format error in ");
strncat(gistError, name, 127-strlen(gistError));
}
static char line[137]; /* longest allowed line is 136 characters */
/* ------------------------------------------------------------------------ */
static int SnarfColor(char *token)
/* returns -1 if not unsigned char, -2 if missing */
{
int color;
char *suffix;
if (!token) token= strtok(0, " \t\n");
if (token) color= (int)strtol(token, &suffix, 0);
else return -2;
if (suffix==token || color<0 || color>255) return -1;
else return color;
}
static int SnarfRGB(char *token, GpColorCell *cell)
{
int red, blue, green;
red= SnarfColor(token);
if (red<0) return 1;
green= SnarfColor(0);
if (green<0) return 1;
blue= SnarfColor(0);
if (blue<0) return 1;
cell[0] = P_RGB(red, green, blue);
return 0;
}
/* ARGSUSED */
static int SnarfGray(GpColorCell *cell, int lookingFor4)
{
int gray= SnarfColor(0);
if (gray==-2) return lookingFor4;
else if (gray<0 || !lookingFor4) return 1;
/* cell->gray= gray; */
return 0;
}
int GpReadPalette(Engine *engine, const char *gpFile,
GpColorCell **palette, int maxColors)
{
char *token, *suffix;
GpColorCell *pal= 0;
int iColor= -1, nColors= 0, ntsc= 0, lookingFor4= 0;
p_file *gp= GistOpen(gpFile);
*palette= 0;
if (!gp) return 0;
for (;;) { /* loop on lines in file */
token= p_fgets(gp, line, 137);
if (!token) break; /* eof (or error) */
token= strtok(token, " =\t\n");
if (!token || token[0]=='#') continue; /* blank or comment line */
if (iColor<=0) {
int *dest= 0;
if (strcmp(token, "ncolors")==0) dest= &nColors;
else if (strcmp(token, "ntsc")==0) dest= &ntsc;
if (dest) {
/* this is ncolors=... or ntsc=... line */
token= strtok(0, " =\t\n");
if (token) *dest= (int)strtol(token, &suffix, 0);
else goto err;
if (suffix==token || strtok(0, " \t\n")) goto err;
} else {
/* this must be the first rgb line */
int gray;
/* previous ncolors= is mandatory so palette can be allocated */
if (nColors<=0) goto err;
pal= p_malloc(sizeof(GpColorCell)*nColors);
if (!pal) goto merr;
/* if first rgb line has 4 numbers, all must have 4, else 3 */
if (SnarfRGB(token, pal)) goto err;
gray= SnarfColor(0);
if (gray==-1) goto err;
if (gray>=0) {
lookingFor4= 1;
/* pal->gray= gray; */
if (SnarfGray(pal, 0)) goto err; /* just check for eol */
} else {
lookingFor4= 0;
/* already got eol */
}
iColor= 1;
}
} else if (iColor<nColors) {
/* read next rgb line */
if (SnarfRGB(token, pal+iColor)) goto err;
if (SnarfGray(pal+iColor, lookingFor4)) goto err;
iColor++;
} else {
goto err; /* too many rgb for specified ncolors */
}
}
if (iColor<nColors) goto err; /* too few rgb for specified ncolors */
p_fclose(gp);
if (nColors>maxColors && maxColors>1) {
/* attempt to rescale the palette to maxColors */
int oldCell, newCell, nextCell, r, g, b;
double ratio= ((double)(nColors-1))/((double)(maxColors-1));
double frac, frac1, old= 0.0;
for (newCell=0 ; newCell<maxColors ; newCell++) {
oldCell= (int)old;
nextCell= oldCell+1;
if (nextCell>=nColors) nextCell= oldCell;
frac= old-(double)oldCell;
frac1= 1.0-frac;
r = (int)(frac1*P_R(pal[oldCell]) + frac*P_R(pal[nextCell]));
g = (int)(frac1*P_G(pal[oldCell]) + frac*P_G(pal[nextCell]));
b = (int)(frac1*P_B(pal[oldCell]) + frac*P_B(pal[nextCell]));
pal[newCell] = P_RGB(r, g, b);
/*if (!lookingFor4)
pal[newCell].gray= frac1*pal[oldCell].gray+frac*pal[nextCell].gray;*/
old+= ratio;
}
nColors= maxColors;
}
if (!lookingFor4) {
/* gray values were not explicitly specified */
if (ntsc) GpPutNTSC(nColors, pal);
else GpPutGray(nColors, pal);
}
*palette= pal;
iColor= GpSetPalette(engine, pal, nColors);
return iColor>nColors? nColors : iColor;
err:
FormatError(gp, gpFile, "palette");
if (pal) p_free(pal);
return 0;
merr:
strcpy(gistError, "memory manager failed to get space for palette");
p_fclose(gp);
return 0;
}
/* ------------------------------------------------------------------------ */
#define OPEN_BRACE '{'
#define CLOSE_BRACE '}'
static p_file *gs= 0;
static char *WhiteSkip(char *input)
{
input+= strspn(input, " \t\n");
while (!input[0] || input[0]=='#') { /* rest of line missing or comment */
input= p_fgets(gs, line, 137);
if (input) input= line + strspn(line, " \t\n");
else break;
}
return input;
}
static char *DelimitRead(char *input, int *closed, int nlOK)
{
int nlFound= 0;
if (nlOK) {
input+= strspn(input, " \t");
if (*input=='\n' || *input=='\0') nlFound= 1;
}
input= WhiteSkip(input);
if (input) {
if (*input == CLOSE_BRACE) {
*closed= 1;
input++;
} else {
*closed= 0;
if (*input == ',') {
input++;
} else {
if (!nlOK || !nlFound) input= 0;
}
}
} else {
/* distinguish end-of-file from comma not found */
*closed= 1;
}
return input;
}
static char *
ColRead(char *input, GpColorCell *dest)
{
long value;
char *suffix;
input = WhiteSkip(input); /* may be on a new line */
value = strtol(input, &suffix, 0);
if (suffix==input) return 0;
if (value<0) value += 256;
*dest = value;
return suffix;
}
static char *IntRead(char *input, int *dest)
{
int value;
char *suffix;
input= WhiteSkip(input); /* may be on a new line */
value= (int)strtol(input, &suffix, 0);
if (suffix==input) return 0;
*dest= value;
return suffix;
}
static char *RealRead(char *input, GpReal *dest)
{
GpReal value;
char *suffix;
input= WhiteSkip(input); /* may be on a new line */
errno = 0;
value= (GpReal)strtod(input, &suffix);
if (errno || suffix==input)
return 0;
*dest= value;
return suffix;
}
char legendString[41];
static char *StringRead(char *input, char **dest)
{
input= WhiteSkip(input);
if (input) {
if (*input=='0') {
*dest= 0;
input++;
} else if (*input=='\"') {
long len= strcspn(++input, "\"");
int nc= len>40? 40 : len;
strncpy(legendString, input, nc);
input+= len;
if (*input=='\"') { *dest= legendString; input++; }
else input= 0;
} else {
input= 0;
}
}
return input;
}
static char *MemberRead(char *input, char **member)
{
input= WhiteSkip(input);
*member= input;
if (input) {
int gotEqual= 0;
input+= strcspn(input, "= \t\n");
if (*input == '=') gotEqual= 1;
if (*input) *input++= '\0';
if (!gotEqual) {
input= WhiteSkip(input);
if (input && *input++!='=') input= 0;
}
}
return input;
}
static char *ArrayRead(char *input, GpReal *dest, int narray)
{
int foundClose;
input= WhiteSkip(input);
if (!input) return 0;
if (*input++ != OPEN_BRACE) return 0; /* no open brace */
input= WhiteSkip(input);
if (!input) return 0; /* eof after open brace */
for (narray-- ; ; narray--) {
if (narray<0) return 0; /* too many numbers in aggregate */
input= RealRead(input, dest++);
if (!input) return 0; /* token was not a number */
input= DelimitRead(input, &foundClose, 0);
if (!input) return 0; /* neither comma nor close brace */
if (foundClose) break;
}
return input;
}
static char *LineRead(char *input, GpLineAttribs *dest)
{
int foundClose;
char *member;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "color")==0) {
input= ColRead(input, &dest->color);
} else if (strcmp(member, "type")==0) {
input= IntRead(input, &dest->type);
} else if (strcmp(member, "width")==0) {
input= RealRead(input, &dest->width);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
static char *TextRead(char *input, GpTextAttribs *dest)
{
int foundClose;
char *member;
int ijunk;
GpReal rjunk;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "color")==0) {
input= ColRead(input, &dest->color);
} else if (strcmp(member, "font")==0) {
input= IntRead(input, &dest->font);
} else if (strcmp(member, "prec")==0) {
input= IntRead(input, &ijunk);
} else if (strcmp(member, "height")==0) {
input= RealRead(input, &dest->height);
} else if (strcmp(member, "expand")==0) {
input= RealRead(input, &rjunk);
} else if (strcmp(member, "spacing")==0) {
input= RealRead(input, &rjunk);
} else if (strcmp(member, "upX")==0) {
input= RealRead(input, &rjunk);
} else if (strcmp(member, "upY")==0) {
input= RealRead(input, &rjunk);
} else if (strcmp(member, "path")==0 || strcmp(member, "orient")==0) {
input= IntRead(input, &dest->orient);
} else if (strcmp(member, "alignH")==0) {
input= IntRead(input, &dest->alignH);
} else if (strcmp(member, "alignV")==0) {
input= IntRead(input, &dest->alignV);
} else if (strcmp(member, "opaque")==0) {
input= IntRead(input, &dest->opaque);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
static char *AxisRead(char *input, GaAxisStyle *dest)
{
int foundClose;
char *member;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "nMajor")==0) {
input= RealRead(input, &dest->nMajor);
} else if (strcmp(member, "nMinor")==0) {
input= RealRead(input, &dest->nMinor);
} else if (strcmp(member, "logAdjMajor")==0) {
input= RealRead(input, &dest->logAdjMajor);
} else if (strcmp(member, "logAdjMinor")==0) {
input= RealRead(input, &dest->logAdjMinor);
} else if (strcmp(member, "nDigits")==0) {
input= IntRead(input, &dest->nDigits);
} else if (strcmp(member, "gridLevel")==0) {
input= IntRead(input, &dest->gridLevel);
} else if (strcmp(member, "flags")==0) {
input= IntRead(input, &dest->flags);
} else if (strcmp(member, "tickOff")==0) {
input= RealRead(input, &dest->tickOff);
} else if (strcmp(member, "labelOff")==0) {
input= RealRead(input, &dest->labelOff);
} else if (strcmp(member, "tickLen")==0) {
input= ArrayRead(input, dest->tickLen, 5);
} else if (strcmp(member, "tickStyle")==0) {
input= LineRead(input, &dest->tickStyle);
} else if (strcmp(member, "gridStyle")==0) {
input= LineRead(input, &dest->gridStyle);
} else if (strcmp(member, "textStyle")==0) {
input= TextRead(input, &dest->textStyle);
} else if (strcmp(member, "xOver")==0) {
input= RealRead(input, &dest->xOver);
} else if (strcmp(member, "yOver")==0) {
input= RealRead(input, &dest->yOver);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
static char *TickRead(char *input, GaTickStyle *dest)
{
int foundClose;
char *member;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "horiz")==0) {
input= AxisRead(input, &dest->horiz);
} else if (strcmp(member, "vert")==0) {
input= AxisRead(input, &dest->vert);
} else if (strcmp(member, "frame")==0) {
input= IntRead(input, &dest->frame);
} else if (strcmp(member, "frameStyle")==0) {
input= LineRead(input, &dest->frameStyle);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
/* defaultSystem is initialized to reasonable value for portrait mode */
#define DEF_XMIN 0.25
#define DEF_XMAX 0.60
#define DEF_YMIN 0.50
#define DEF_YMAX 0.85
struct GsysRead defaultSystem= {
0, { DEF_XMIN, DEF_XMAX, DEF_YMIN, DEF_YMAX },
{
{7.5, 50., 1.2, 1.2, 3, 1, TICK_L|TICK_U|TICK_OUT|LABEL_L,
0.0, 14.0*ONE_POINT,
{12.*ONE_POINT, 8.*ONE_POINT, 5.*ONE_POINT, 3.*ONE_POINT, 2.*ONE_POINT},
{FG_COLOR, L_SOLID, DEFAULT_LINE_WIDTH},
{FG_COLOR, L_DOT, DEFAULT_LINE_WIDTH},
{FG_COLOR, T_HELVETICA, 14.*ONE_POINT, TX_RIGHT, TH_NORMAL, TV_NORMAL, 1},
0.5*(DEF_XMIN+DEF_XMAX), DEF_YMIN-52.*ONE_POINT},
{7.5, 50., 1.2, 1.2, 4, 1, TICK_L|TICK_U|TICK_OUT|LABEL_L,
0.0, 14.0*ONE_POINT,
{12.*ONE_POINT, 8.*ONE_POINT, 5.*ONE_POINT, 3.*ONE_POINT, 2.*ONE_POINT},
{FG_COLOR, L_SOLID, DEFAULT_LINE_WIDTH},
{FG_COLOR, L_DOT, DEFAULT_LINE_WIDTH},
{FG_COLOR, T_HELVETICA, 14.*ONE_POINT, TX_RIGHT, TH_NORMAL, TV_NORMAL, 1},
DEF_XMIN, DEF_YMIN-52.*ONE_POINT},
0, {FG_COLOR, L_SOLID, DEFAULT_LINE_WIDTH}
}
};
struct GlegRead defaultLegends[2]= {
/* Ordinary legends form two 36x22 character columns below viewport */
{ 0.5*ONE_INCH, DEF_YMIN-64.*ONE_POINT, 3.875*ONE_INCH, 0.0,
{FG_COLOR, T_COURIER, 12.*ONE_POINT, TX_RIGHT, TH_LEFT, TV_TOP, 1},
36, 22, 2 },
/* Contour legends get a single 14x28 column to left of viewport */
{ DEF_XMAX+14.*ONE_POINT, DEF_YMAX+12.*ONE_POINT, 0.0, 0.0,
{FG_COLOR, T_COURIER, 12.*ONE_POINT, TX_RIGHT, TH_LEFT, TV_TOP, 1},
14, 28, 1 },
};
static char *SystemRead(char *input, struct GsysRead *dest)
{
int foundClose;
char *member;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "viewport")==0) {
GpReal box[4];
box[0]= box[1]= box[2]= box[3]= -1.0;
input= ArrayRead(input, box, 4);
if (box[3]<0.0) input= 0; /* all four required */
else {
dest->viewport.xmin= box[0];
dest->viewport.xmax= box[1];
dest->viewport.ymin= box[2];
dest->viewport.ymax= box[3];
}
} else if (strcmp(member, "ticks")==0) {
input= TickRead(input, &dest->ticks);
} else if (strcmp(member, "legend")==0) {
input= StringRead(input, &dest->legend);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
static char *LegendsRead(char *input, struct GlegRead *dest)
{
int foundClose;
char *member;
input= WhiteSkip(input);
if (!input || *input++!=OPEN_BRACE) return 0;
for (;;) {
input= MemberRead(input, &member);
if (!input) return 0; /* couldn't find member = */
if (strcmp(member, "x")==0) {
input= RealRead(input, &dest->x);
} else if (strcmp(member, "y")==0) {
input= RealRead(input, &dest->y);
} else if (strcmp(member, "dx")==0) {
input= RealRead(input, &dest->dx);
} else if (strcmp(member, "dy")==0) {
input= RealRead(input, &dest->dy);
} else if (strcmp(member, "textStyle")==0) {
input= TextRead(input, &dest->textStyle);
} else if (strcmp(member, "nchars")==0) {
input= IntRead(input, &dest->nchars);
} else if (strcmp(member, "nlines")==0) {
input= IntRead(input, &dest->nlines);
} else if (strcmp(member, "nwrap")==0) {
input= IntRead(input, &dest->nwrap);
} else {
return 0; /* unknown member */
}
if (!input) return 0; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) return 0; /* not comma, nl, or close brace */
if (foundClose) break;
}
return input;
}
int GdReadStyle(Drauing *drawing, const char *gsFile)
{
int foundClose, sysIndex, landscape;
char *input, *keyword;
if (!gsFile) return 0;
gs= GistOpen(gsFile);
if (!gs) return 1;
tempSystem= defaultSystem;
landscape= 0;
input= p_fgets(gs, line, 137);
if (!input) goto err; /* eof (or error) */
GdKillSystems();
for (;;) {
input= WhiteSkip(input);
if (!input) break;
input= MemberRead(input, &keyword);
if (!input) goto err; /* couldn't find keyword = */
if (strcmp(keyword, "default")==0) {
input= SystemRead(input, &tempSystem);
} else if (strcmp(keyword, "system")==0) {
modelSystem= tempSystem;
input= SystemRead(input, &modelSystem);
gistD.hidden= 0;
gistD.legend= modelSystem.legend;
sysIndex= GdNewSystem(&modelSystem.viewport, &modelSystem.ticks);
if (sysIndex<0) return 1;
} else if (strcmp(keyword, "landscape")==0) {
input= IntRead(input, &landscape);
} else if (strcmp(keyword, "legends")==0) {
modelLegends= defaultLegends[0];
input= LegendsRead(input, &modelLegends);
if (input) GdLegendBox(0, modelLegends.x, modelLegends.y,
modelLegends.dx, modelLegends.dy,
&modelLegends.textStyle, modelLegends.nchars,
modelLegends.nlines, modelLegends.nwrap);
} else if (strcmp(keyword, "clegends")==0) {
modelLegends= defaultLegends[1];
input= LegendsRead(input, &modelLegends);
if (input) GdLegendBox(1, modelLegends.x, modelLegends.y,
modelLegends.dx, modelLegends.dy,
&modelLegends.textStyle, modelLegends.nchars,
modelLegends.nlines, modelLegends.nwrap);
} else {
goto err; /* unknown keyword */
}
if (!input) goto err; /* illegal format */
input= DelimitRead(input, &foundClose, 1);
if (!input) {
if (foundClose) break;
goto err; /* not comma, nl, or eof */
}
if (foundClose) goto err; /* close brace not legal here */
}
if (landscape) GdLandscape(1);
p_fclose(gs);
return 0;
err:
FormatError(gs, gsFile, "drawing style");
return 1;
}
/* ------------------------------------------------------------------------ */
|