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
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define import_spp
#define import_error
#include <iraf.h>
#include "sgiUtil.h"
/*
* SGI2UQMS.C -- Read IRAF SGI metacode from standard input, translate into
* the QMS Vector Graphics Mode (Talaris Lasergrafix, QUIC Command Mode) and
* write to standard output.
*
* Usage
* sgi2uqms.e [-params] [sgi_metacode] [| lpr -Pqms]
*
* -l N left edge; x plot origin in device pixels def DEF_LEFT
* -b N bottom edge; y plot origin in device pixels def DEF_BOTTOM
* -w N width of plot, device pixels starting from l def DEF_WIDTH
* -h N height of plot, device pixels starting from b def DEF_HEIGHT
* -p O.S pen width `origin' and `slope' def DEF_PENBASE
* .DEF_PENSLOPE
*
* Numeric values may be appended directly to their flags or separated by a
* space; the input file name and the switches may occur in any order.
*/
#define OSOK 0 /* normal successful completion */
#define LEN_MCBUF 1024 /* number of SGK instrs in buffer */
#define SGK_FRAME 1 /* new frame instruction */
#define SGK_MOVE 2 /* move pen */
#define SGK_DRAW 3 /* draw pen */
#define SGK_SETLW 4 /* set line width */
#define GKI_MAXNDC 32767 /* SGK units */
/* Device opcodes and parameters. The default edge and width parameters (DEF_)
* are given in QMS pixels, at 300 dots/inch. The QMS y-origin is at the
* top of the page, so in GRAPHCAP, YF must be set, and Landscape Orientation
* used in the QMS. Thus the maximum page `width' is 11*300 pixels, `height'
* is 8.5*300 pixels.
*/
#define DEV_INIT "\012^PY^-\012^ISYNTAX00010^IOL^F^IGV" /* Enter graph.*/
#define DEV_END "^IGE^ISYNTAX00000^IOP^O\012^PN^-\012" /* Exit graph. */
#define DEV_FRAME "^," /* QMS Vector Graphics Mode form feed instr */
#define DEV_MOVE "^U" /* QMS (VGM) pen-up instruction */
#define DEV_DRAW "^D" /* QMS (VGM) pen-down instruction */
#define DEV_SETLW "^PW" /* QMS (VGM) Set Line Width (follow w/ nn) */
#define DEF_LEFT 30 /* origin in device pixels in x */
#define DEF_WIDTH 3180 /* width in x (300d/i, 11" paper) */
#define DEF_BOTTOM 60 /* origin in device pixels in y */
#define DEF_HEIGHT 2415 /* height in y (300d/i, 8.5" paper) */
#define DEF_PENBASE 3 /* base pen width (LW 1->2) */
#define DEF_PENSLOPE 4 /* pen width slope (LW 2->4, 3->6 etc.) */
#define SZ_PENCMD 5 /* total no. of chars in penwidth instruction */
#define SZ_PENVAL 2 /* no. of chars in penwidth value */
#define SZ_VECT 11 /* total no. chars in a MOVE or DRAW inst. */
#define SZ_COORD 4 /* no. of chars in device coordinate */
struct sgi_inst {
short opcode;
short x;
short y;
};
int dev_left;
int dev_bottom;
int dev_width;
int dev_height;
int dev_penbase = DEF_PENBASE;
int dev_penslope = DEF_PENSLOPE;
static void translate (FILE *in, FILE *out);
static char *xyencode (int opcode, int x, int y);
static char *penencode (char *opcode, int val);
/* MAIN -- Main entry point for SGI2UQMS. Optional arguments are device
* window parameters and name of input file.
*/
int
main (int argc, char *argv[])
{
FILE *in;
char *infile;
char *argp;
int argno;
int np;
char penparam[SZ_PENCMD];
infile = "stdin";
/* Process the command line.
*/
for (argno=1; (argp = argv[argno]) != NULL; argno++) {
if (argp[0] == '-') {
/* A window-control or pen width switch.
*/
switch (argp[1]) {
case 'l':
dev_left = get_iarg (argp[2], argv, argno, DEF_LEFT);
break;
case 'b':
dev_bottom = get_iarg (argp[2], argv, argno, DEF_BOTTOM);
break;
case 'w':
dev_width = get_iarg (argp[2], argv, argno, DEF_WIDTH);
break;
case 'h':
dev_height = get_iarg (argp[2], argv, argno, DEF_HEIGHT);
break;
case 'p':
if (argp[2] == (char) 0)
if (argv[argno+1] == NULL) {
fprintf (stderr, "missing arg to switch `%s';",
argp);
fprintf (stderr, " reset to %d.%d\n", dev_penbase,
dev_penslope);
} else
strcpy (penparam, argv[++argno]);
else
strcpy (penparam, argv[argno]+2);
np = sscanf (penparam, "%d . %d", &dev_penbase,
&dev_penslope);
if (np == 1) {
dev_penslope = dev_penbase;
} else if (np < 1) {
dev_penbase = DEF_PENBASE;
dev_penslope = DEF_PENSLOPE;
}
break;
default:
break;
}
} else {
/* Input sgi-metacode file specification.
*/
infile = argp;
}
}
if (strcmp (infile, "stdin") == 0)
in = stdin;
else
in = fopen (infile, "r");
if (in == NULL) {
fprintf (stderr, "Fatal error (sgi2uqms): Cannot open `%s'\n",
infile);
fflush (stderr);
exit (OSOK+1);
}
/* Process the metacode.
*/
translate (in, stdout);
if (in != stdin)
fclose (in);
return (0);
}
/* TRANSLATE -- Interpret input SGI metacode instructions into device
* instructions and write to stdout.
*/
static void
translate (FILE *in, FILE *out)
{
int n, x, y, swap_bytes;
float xscale, yscale;
register struct sgi_inst *sgip;
struct sgi_inst inbuf[LEN_MCBUF], *buftop;
swap_bytes = isSwapped();
xscale = (float) dev_width / (float) GKI_MAXNDC;
yscale = (float) dev_height / (float) GKI_MAXNDC;
/* Output device initialization.
*/
fwrite (DEV_INIT, strlen(DEV_INIT), 1, out);
/* Initialize pen width.
*/
fwrite (penencode (DEV_SETLW, dev_penbase), SZ_PENCMD, 1, out);
/* Process the metacode:
*/
while ((n = fread ((char *)inbuf, sizeof(*sgip), LEN_MCBUF, in)) > 0) {
if (swap_bytes)
bswap2 ((unsigned char *)inbuf, (unsigned char *)inbuf,
sizeof(*sgip) * n);
buftop = inbuf + n;
for (sgip = inbuf; sgip < buftop; sgip++) {
switch (sgip->opcode) {
case SGK_FRAME:
fwrite (DEV_FRAME, strlen(DEV_FRAME), 1, out);
break;
case SGK_MOVE:
x = dev_left + sgip->x * xscale;
y = dev_bottom + sgip->y * yscale;
fwrite (xyencode ('U', x, y), SZ_VECT, 1, out);
break;
case SGK_DRAW:
x = dev_left + sgip->x * xscale;
y = dev_bottom + sgip->y * yscale;
fwrite (xyencode ('D', x, y), SZ_VECT, 1, out);
break;
case SGK_SETLW:
/* Set pen width.
*/
fwrite (penencode (DEV_SETLW, dev_penbase +
((sgip->x) - 1) * dev_penslope), SZ_PENCMD, 1, out);
break;
default:
fprintf (stderr, "sgi2uqms: unrecognized sgi opcode %d\n",
sgip->opcode);
break;
}
}
}
/* Terminate plotting and exit.
*/
fwrite (DEV_END, strlen(DEV_END), 1, out);
}
/* XYENCODE -- Encode x, y into a character string formatted for the device.
*/
static char *
xyencode (
int opcode, /* draw or move */
int x, /* must be positive */
int y /* must be positive */
)
{
static char obuf[] = "^X0000:0000";
register int digit, n;
register char *op;
int i;
obuf[1] = opcode;
i = SZ_VECT - 1 - SZ_COORD - 1;
for (op = &obuf[i], digit = SZ_COORD, n=x; --digit >= 0; n = n / 10)
*op-- = n % 10 + '0';
i = SZ_VECT - 1;
for (op = &obuf[i], digit = SZ_COORD, n=y; --digit >= 0; n = n / 10)
*op-- = n % 10 + '0';
return (obuf);
}
/* PENENCODE -- Encode base, slope into a character string formatted for the
* device set-pen command.
*/
static char *
penencode (
char *opcode, /* device set-linewidth command */
int val /* device line width */
)
{
static char obuf[SZ_PENCMD+1];
register int digit, n;
register char *op;
strcpy (obuf, opcode);
for (op = &obuf[SZ_PENCMD-1], digit = SZ_PENVAL, n=val; --digit >= 0;
n = n / 10)
*op-- = n % 10 + '0';
return (obuf);
}
|