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
|
/*
* TransFig: Facility for Translating Fig code
* Copyright (c) 1985 Supoj Sutantavibul
* Copyright (c) 1991 Micah Beck
*
* THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*
* The X Consortium, and any party obtaining a copy of these files from
* the X Consortium, directly or indirectly, is granted, free of charge, a
* full and unrestricted irrevocable, world-wide, paid up, royalty-free,
* nonexclusive right and license to deal in this software and
* documentation files (the "Software"), including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons who receive
* copies from any such party to do so, with the only requirement being
* that this copyright notice remain intact. This license includes without
* limitation a license to do the foregoing actions under any patents of
* the party supplying this software to the X Consortium.
*/
/*
* Fig2dev : General Fig code translation program
*
*/
#if defined(hpux) || defined(SYSV) || defined(SVR4)
#include <sys/types.h>
#endif
#include <sys/file.h>
#include <stdio.h>
#include "patchlevel.h"
#include "fig2dev.h"
#include "object.h"
#include "drivers.h"
extern int fig_getopt();
extern char *optarg;
extern int optind;
char lang[40];
struct driver *dev = NULL;
#ifdef I18N
char Usage[] = "Usage: %s [-L language] [-f font] [-s size] [-m scale] [-j] [input [output]]\n";
Boolean support_i18n = FALSE;
#else
char Usage[] = "Usage: %s [-L language] [-f font] [-s size] [-m scale] [input [output]]\n";
#endif /* I18N */
char Err_badarg[] = "Argument -%c unknown to %s driver.";
char Err_incomp[] = "Incomplete %s object at line %d.";
char Err_mem[] = "Running out of memory.";
char *prog;
char *from = NULL, *to = NULL;
char *name = NULL;
int font_size = 0;
double mag = 1.0;
FILE *tfp = NULL;
int llx = 0, lly = 0, urx = 0, ury = 0;
Boolean landscape;
Boolean center;
Boolean orientspec=FALSE; /* set if the user specifies the orientation */
Boolean centerspec=FALSE; /* set if the user specifies the justification */
Boolean magspec=FALSE; /* set if the user specifies the magnification */
Boolean multispec=FALSE; /* set if the user specifies multiple pages */
Boolean paperspec=FALSE; /* set if the user specifies the paper size */
Boolean pats_used, pattern_used[NUMPATTERNS];
Boolean multi_page = FALSE; /* multiple page option for PostScript */
Boolean metric; /* true if file specifies Metric */
char papersize[20]; /* paper size */
float THICK_SCALE; /* convert line thickness from screen res. */
/* calculated in read_objects() */
char lang[40]; /* selected output language */
struct obj_rec {
void (*gendev)();
char *obj;
int depth;
};
/* be sure to update NUMPAPERSIZES in fig2dev.h if this table changes */
struct paperdef paperdef[] =
{
{"Letter", 612, 792}, /* 8.5" x 11" */
{"Legal", 612, 1008}, /* 8.5" x 14" */
{"Ledger", 1224, 792}, /* 17" x 11" */
{"Tabloid", 792, 1224}, /* 11" x 17" */
{"A", 612, 792}, /* 8.5" x 11" (letter) */
{"B", 792, 1224}, /* 11" x 17" (tabloid) */
{"C", 1224, 1584}, /* 17" x 22" */
{"D", 1584, 2448}, /* 22" x 34" */
{"E", 2448, 3168}, /* 34" x 44" */
{"B5", 516, 729}, /* 18.2cm x 25.7cm */
{"A4", 595, 842}, /* 21 cm x 29.7cm */
{"A3", 842, 1190}, /* 29.7cm x 42 cm */
{"A2", 1190, 1684}, /* 42 cm x 59.4cm */
{"A1", 1684, 2383}, /* 59.4cm x 84.1cm */
{"A0", 2383, 3370}, /* 84.1cm x 118.9cm */
{NULL, 0, 0}
};
put_msg(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
char *format, *arg1, *arg2, *arg3, *arg4, *arg5, *arg6, *arg7, *arg8;
{
fprintf(stderr, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
fprintf(stderr, "\n");
}
get_args(argc, argv)
int argc;
char *argv[];
{
int c, i;
double atof();
prog = *argv;
/* add :? */
/* sum of all arguments */
#ifdef I18N
while ((c = fig_getopt(argc, argv, "aAcC:d:ef:l:L:Mm:n:q:Pp:s:S:t:vVx:X:y:Y:wWz:j?")) != EOF) {
#else
while ((c = fig_getopt(argc, argv, "aAcC:d:ef:l:L:Mm:n:q:Pp:s:S:t:vVx:X:y:Y:wWz:?")) != EOF) {
#endif
/* generic option handling */
switch (c) {
case 'V':
fprintf(stderr, "fig2dev Version %s Patchlevel %s\n",
VERSION, PATCHLEVEL);
exit(0);
break;
case 'L': /* set output language */
/* save language for gen{gif,jpg,pcx,xbm,xpm,ppm,tif} */
strncpy(lang,optarg,sizeof(lang)-1);
for (i=0; *drivers[i].name; i++)
if (!strcmp(lang, drivers[i].name))
dev = drivers[i].dev;
if (!dev) {
fprintf(stderr,
"Unknown graphics language %s\n", lang);
fprintf(stderr,"Known languages are:\n");
/* display available languages - 23/01/90 */
for (i=0; *drivers[i].name; i++)
fprintf(stderr,"%s ",drivers[i].name);
fprintf(stderr,"\n");
exit(1);
}
break;
case 's': /* set default font size */
font_size = atoi(optarg);
/* max size is checked in respective drivers */
if (font_size <= 0)
font_size = DEFAULT_FONT_SIZE;
font_size = round(font_size * mag);
break;
case 'm': /* set magnification */
mag = atof(optarg);
magspec = TRUE; /* user-specified */
break;
#ifdef I18N
case 'j': /* set magnification */
support_i18n = TRUE;
continue; /* don't pass this option to driver */
#endif /* I18N */
case '?': /* usage */
fprintf(stderr,Usage,prog);
exit(1);
}
/* pass options through to driver */
if (!dev) {
fprintf(stderr, "No graphics language specified.\n");
exit(1);
}
dev->option(c, optarg);
}
if (!dev) {
fprintf(stderr, "No graphics language specified.\n");
exit(1);
}
if (optind < argc)
from = argv[optind++]; /* from file */
if (optind < argc)
to = argv[optind]; /* to file */
}
main(argc, argv)
int argc;
char *argv[];
{
F_compound objects;
int status;
get_args(argc, argv);
if (from)
status = read_fig(from, &objects);
else /* read from stdin */
status = readfp_fig(stdin, &objects);
if (status != 0) {
if (from) read_fail_message(from, status);
exit(1);
}
if (to == NULL)
tfp = stdout;
else if ((tfp = fopen(to, "w")) == NULL) {
fprintf(stderr, "Couldn't open %s", to);
fprintf(stderr, Usage, prog);
exit(1);
}
gendev_objects(&objects, dev);
if ((tfp != stdout) && (tfp != 0))
(void)fclose(tfp);
exit(0);
}
/* count primitive objects & create pointer array */
static int compound_dump(com, array, count, dev)
F_compound *com;
struct obj_rec *array;
int count;
struct driver *dev;
{
F_arc *a;
F_compound *c;
F_ellipse *e;
F_line *l;
F_spline *s;
F_text *t;
for (c = com->compounds; c != NULL; c = c->next)
count = compound_dump(c, array, count, dev);
for (a = com->arcs; a != NULL; a = a->next) {
if (array) {
array[count].gendev = dev->arc;
array[count].obj = (char *)a;
array[count].depth = a->depth;
}
count += 1;
}
for (e = com->ellipses; e != NULL; e = e->next) {
if (array) {
array[count].gendev = dev->ellipse;
array[count].obj = (char *)e;
array[count].depth = e->depth;
}
count += 1;
}
for (l = com->lines; l != NULL; l = l->next) {
if (array) {
array[count].gendev = dev->line;
array[count].obj = (char *)l;
array[count].depth = l->depth;
}
count += 1;
}
for (s = com->splines; s != NULL; s = s->next) {
if (array) {
array[count].gendev = dev->spline;
array[count].obj = (char *)s;
array[count].depth = s->depth;
}
count += 1;
}
for (t = com->texts; t != NULL; t = t->next) {
if (array) {
array[count].gendev = dev->text;
array[count].obj = (char *)t;
array[count].depth = t->depth;
}
count += 1;
}
return count;
}
gendev_objects(objects, dev)
F_compound *objects;
struct driver *dev;
{
int obj_count, rec_comp();
struct obj_rec *rec_array, *r;
if (0 == (double)objects->nwcorner.x) {
fprintf(stderr, "Resolution is zero!! default to 80 ppi\n");
objects->nwcorner.x = 80;
}
if (objects->nwcorner.y != 1 && objects->nwcorner.y != 2) {
fprintf(stderr, "Wrong coordinate system; cannot continue\n");
return;
}
/* Compute bounding box of objects, supressing texts if indicated */
compound_bound(objects, &llx, &lly, &urx, &ury, dev->text_include);
/* dump object pointers to an array */
obj_count = compound_dump(objects, 0, 0, dev);
if (!obj_count) {
fprintf(stderr, "No object\n");
return;
}
rec_array = (struct obj_rec *)malloc(obj_count*sizeof(struct obj_rec));
(void)compound_dump(objects, rec_array, 0, dev);
/* sort object array by depth */
qsort(rec_array, obj_count, sizeof(struct obj_rec), rec_comp);
/* generate header */
(*dev->start)(objects);
/* generate objects in sorted order */
for (r = rec_array; r<rec_array+obj_count; r++)
(*(r->gendev))(r->obj);
/* generate trailer */
(*dev->end)();
free(rec_array);
}
int rec_comp(r1, r2)
struct obj_rec *r1, *r2;
{
return (r2->depth - r1->depth);
}
/* null operation */
void gendev_null() {;}
|