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
|
#ifndef lint
static char SccsId[] = "%W% %G%";
#endif
/* Module: cmddisp.c (Command Display)
* Purpose: Set options from command line pertaining to display
* Subroutine: parse_rotate() returns: int
* Subroutine: parse_scale() returns: int
* Subroutine: parse_color() returns: int
* Subroutine: parse_display() returns: int
* Subroutine: parse_cursor() returns: int
* Xlib calls: none
* Copyright: 1994,1996,2000 Smithsonian Astrophysical Observatory
* You may do anything you like with this file except remove
* this copyright. The Smithsonian Astrophysical Observatory
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
* Modified: {0} Michael VanHilst initial version 20 September 1988
* {1} MVH modified and renamed parse_display 18 May 1989
* {2} MVH BSDonly strings.h compatability 19 Feb 1990
* {3} Doug Mink add -lfrac fraction 13 May 1994
* {4} Doug Mink add -hi option 13 May 1994
* {5} Doug Mink add cursor options 25 Oct 1996
* {6} Doug Mink add -mincolors option 28 Jul 2000
* {n} <who> -- <does what> -- <when>
*/
#include <stdio.h> /* stderr, NULL, etc. */
#include <ctype.h>
#ifndef VMS
#ifdef SAO_SYSV
#include <string.h>
#else
#include <strings.h> /* strlen, etc. for unenlightened BSD's */
#endif
#else
#include <string.h>
#endif
#include <X11/Xlib.h> /* X window stuff */
#include <X11/Xutil.h> /* X window manager stuff */
#include <stdlib.h>
#include "hfiles/constant.h" /* define codes */
#include "hfiles/struct.h" /* declare structure types */
#include "hfiles/extern.h" /* extern main ximage parameter structures */
#include "hfiles/cmdparse.h" /* define parse status bits */
#include "hfiles/magnify.h" /* magnifier quick access structure */
extern struct magRec magset;
extern char *border_color_name;
/* Flag in GrphCInit.c to set color graph background black, else white */
extern int black_graph_background;
extern int init_done;
/* strings to set cursor colors to standard colors */
static char *RedString = "red";
static char *GreenString = "green";
static char *BlueString = "blue";
/*
* Subroutine: parse_rotate
* Purpose: Parse command line for coordinate adjustment or rotation
* parameters
* Returns: 1 if one of its parameters was found, else 0
*/
int parse_rotate ( argc, argv, argi, new_rotate )
int argc; /* total number of arg tokens */
char *argv[]; /* array of arg tokens */
int *argi; /* first arg to check, (returned as last arg used) */
int *new_rotate; /* status word knows coordinate parameter was found */
{
int i;
int usage();
i = *argi;
if( (strcmp(argv[i], "-rot") == 0) ||
(strcmp(argv[i], "-rotate") == 0) ) {
if( (++i >= argc) ||
((img.rotate_code = (3 & atoi(argv[i]))) < 0) ||
(img.rotate_code > 3) )
return( usage("rotate code", argc, argv, i-1, i) );
*argi = i;
} else if( (strcmp(argv[i], "-ul") == 0) ||
(strcmp(argv[i], "-upperleft") == 0) ) {
/* --- image orientation (first row at top) --- */
img.row_order = 0;
} else if( (strcmp(argv[i], "-ll") == 0) ||
(strcmp(argv[i], "-lowerleft") == 0) ) {
/* --- image orientation (first row at bottom) --- */
img.row_order = 1;
} else if( strcmp(argv[i], "-zero") == 0 ) {
/* --- start file indexing with 0 --- */
img.index_base = 0;
} else if( strcmp(argv[i], "-one") == 0 ) {
/* --- start file indexing with 1 --- */
img.index_base = 1;
} else {
return( 0 );
}
*argi = i;
*new_rotate |= CMD_ROTATE;
return( 1 );
}
/*
* Subroutine: parse_color
* Purpose: Parse command line for display color parameters
* Returns: 1 if one of its parameters was found, else 0
*/
int parse_color ( argc, argv, argi, got_color )
int argc; /* total number of arg tokens */
char *argv[]; /* array of arg tokens */
int *argi; /* first arg to check, (returned as last arg used) */
int *got_color; /* status word knows coloring parameter was found */
{
int i;
int usage();
void set_submenu_toggle();
i = *argi;
/* number of planes */
if( (strcmp(argv[i], "-p") == 0) ||
(strcmp(argv[i], "-palette") == 0) ) {
if (++i >= argc)
return( usage("planes", argc, argv, i-1, i) );
color.cells.wanted = atoi(argv[i]);
/* if planes request is negative, overlay for cursor */
if( color.cells.wanted < 0 ) {
color.cells.wanted = -color.cells.wanted;
color.cells.overlay = 1;
} else
color.cells.overlay = 0;
if( color.cells.wanted <= 1 ) {
color.cells.wanted = 1;
color.cells.overlay = 0;
color.colormap_mode = VOP_Halftone;
}
*got_color |= CMD_COLOR;
} else if( strcmp(argv[i], "-mincolors") == 0 ) {
if (++i >= argc)
return( usage("mincolors", argc, argv, i-1, i) );
color.cells.min = atoi(argv[i]);
*got_color |= CMD_COLOR;
} else if( (strcmp(argv[i], "-n") == 0) ||
(strcmp(argv[i], "-neg") == 0) ) {
/* negative map */
color.inverse = 1;
*got_color |= CMD_COLOR;
/* on machines with only one functional color, use that color */
} else if( strcmp(argv[i], "-red") == 0 ) {
color.cur.desired_cur = RedString;
color.cur.desired_one = RedString;
color.cur.desired_two = RedString;
black_graph_background = 1;
} else if( strcmp(argv[i], "-green") == 0 ) {
color.cur.desired_cur = GreenString;
color.cur.desired_one = GreenString;
color.cur.desired_two = GreenString;
black_graph_background = 1;
} else if( strcmp(argv[i], "-blue") == 0 ) {
color.cur.desired_cur = BlueString;
color.cur.desired_one = BlueString;
color.cur.desired_two = BlueString;
black_graph_background = 1;
} else if( (strcmp(argv[i], "-vg") == 0) ||
(strcmp(argv[i], "-vertgragh") == 0) ) {
graphbox.hints.width = 143;
graphbox.hints.height = 550;
graphbox.hints.min_width = 123;
graphbox.hints.min_height = 300;
} else if( (strcmp(argv[i], "-hg") == 0) ||
(strcmp(argv[i], "-horizgragh") == 0) ) {
graphbox.hints.width = 516;
graphbox.hints.height = 84;
graphbox.hints.min_width = 404;
graphbox.hints.min_height = 69;
} else {
return( 0 );
}
*argi = i;
return( 1 );
}
/*
* Subroutine: parse_scale
* Purpose: Parse command line for image scaling parameters
* Returns: 1 if one of its parameters was found, else 0
*/
int parse_scale ( argc, argv, argi, got_scale )
int argc; /* total number of arg tokens */
char *argv[]; /* array of arg tokens */
int *argi; /* first arg to check, (returned as last arg used) */
int *got_scale; /* flag that scaling parameter was found */
{
float val;
int i;
int usage();
i = *argi;
if( strcmp(argv[i], "-wrap") == 0 ) {
/* image to display rescaling types */
color.scale.mode = SOP_Wrap;
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) )
color.scale.wrap_cnt = val;
else
--i;
} else if( strcmp(argv[i], "-linear") == 0 ) {
color.scale.mode = SOP_Linear;
} else if( strcmp(argv[i], "-sqrt") == 0 ) {
color.scale.mode = SOP_Sqrt;
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) )
color.scale.root_power = val;
else
--i;
} else if( strcmp(argv[i], "-log") == 0 ) {
color.scale.mode = SOP_Log;
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) )
color.scale.log_expo = val;
else
--i;
} else if( strcmp(argv[i], "-hi") == 0 ||
strcmp(argv[i], "-histeq") == 0 ) {
color.scale.mode = SOP_HistEq;
} else if( strcmp(argv[i], "-min") == 0 ) {
/* scaling threshold level */
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) ) {
buffer.cmdMin = val;
buffer.min_given = 1;
} else {
--i;
buffer.min_given = 0;
}
} else if( strcmp(argv[i], "-max") == 0 ) {
/* scaling saturation level */
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) ) {
buffer.cmdMax = val;
buffer.max_given = 1;
} else {
--i;
buffer.max_given = 0;
}
} else if( strcmp(argv[i], "-rmax") == 0 ) {
/* file reading saturation level */
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) ) {
img.fimax = val;
img.fsmax = 1;
*got_scale |= CMD_FREAD;
} else
return( usage("saturate", argc, argv, i-1, i) );
} else if( strcmp(argv[i], "-rmin") == 0 ) {
/* file reading threshold level */
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) ) {
img.fimin = val;
img.fsmin = 1;
*got_scale |= CMD_FREAD;
} else
return( usage("threshold", argc, argv, i-1, i) );
} else if( strcmp(argv[i], "-lfrac") == 0 ) {
/* linear scaling limits as fraction of histogram peak */
if( ((++i) < argc) && (sscanf(argv[i], "%f", &val) == 1) ) {
buffer.lfrac = val;
} else
return( usage("linfrac", argc, argv, i-1, i) );
} else {
return( 0 );
}
*argi = i;
*got_scale |= CMD_SCALE;
return( 1 );
}
/*
* Subroutine: parse_display
* Purpose: Parse the command line for window and server parameters
*/
int parse_display ( argc, argv, argi, got_geo, displayname )
int argc; /* i: total number of arg tokens */
char *argv[]; /* i: array of arg tokens */
int *argi; /* i/o: current arg in list */
int *got_geo; /* o: got server or window parameters */
char **displayname; /* o: name of display server */
{
int i, temp;
int usage(), parse_geometry();
void set_magnifier(), redraw_magnifier(), SetTAEButtonLook();
i = *argi;
if( (strcmp(argv[i], "-d") == 0) || (strcmp(argv[i], "-display") == 0) ) {
/* X window server socket name (overrides DISPLAY env variable) */
*displayname = argv[++i];
} else if( (strcmp(argv[i], "-g") == 0) ||
(strcmp(argv[i], "-geometry") == 0) ) {
/* initial program desktop size and/or position */
/* X window geometry (size and position) -g <width>x<height>+<x>+<y> */
if( parse_geometry(argv[++i], 0) == 0 ) {
(void)fprintf(stderr, "Error: Cannot parse geometry: %s\n", argv[i]);
return( 0 );
}
} else if( strcmp(argv[i], "-gd") == 0 ) {
/* initial display window size and/or desktop position */
/* X window geometry (size and position) -gd <width>x<height>+<x>+<y> */
if( parse_geometry(argv[++i], 1) == 0 ) {
(void)fprintf(stderr, "Error: Cannot parse geometry: %s\n", argv[i]);
return( 0 );
}
} else if( (strcmp(argv[i], "-bc") == 0) ||
(strcmp(argv[i], "-bordercolor") == 0) ) {
/* border color */
if( ++i >= argc )
return( usage("border color", argc, argv, i-1, i) );
border_color_name = argv[i];
} else if( strcmp(argv[i], "-mtf") == 0) {
/* make buttons less of a sore thumb when surrounded by motif */
SetTAEButtonLook(2);
} else if( strcmp(argv[i], "-mtfa") == 0) {
/* as above but with even less highlighting */
SetTAEButtonLook(1);
} else if( strcmp(argv[i], "-mag") == 0 ) {
/* magnifier magnification */
if( ((++i) < argc) && ((temp = atoi(argv[i])) > 0) ) {
magset.magnify = temp;
/* if init has already been run, then set must be run to update */
if( init_done && (magset.image == &magnibox.image) ) {
set_magnifier();
redraw_magnifier();
}
} else
return( usage("magnifier", argc, argv, i-1, i) );
} else if( strcmp(argv[i], "-panboxav") == 0 ) {
img.panbox_zoomtype = SOP_ZoomAv;
} else if( strcmp(argv[i], "-panboxsamp") == 0 ) {
img.panbox_zoomtype = SOP_ZoomSamp;
} else if( strcmp(argv[i], "-panboxsum") == 0 ) {
img.panbox_zoomtype = SOP_ZoomSum;
} else if( strcmp(argv[i], "-panboxmax") == 0 ) {
img.panbox_zoomtype = SOP_ZoomMax;
} else if( strcmp(argv[i], "-lprbuttons") == 0 ) {
control.print_buttons = 1;
} else {
return( 0 );
}
*argi = i;
*got_geo |= CMD_GEOMETRY;
return( 1 );
}
/*
* Subroutine: parse_cursor
* Purpose: Parse command line for cursor mode, type, size, position setting
* Returns: 1 if one of its parameters was found, else 0
*/
int parse_cursor ( argc, argv, argi )
int argc; /* total number of arg tokens */
char *argv[]; /* array of arg tokens */
int *argi; /* first arg to check, (returned as last arg used) */
{
int i;
int usage();
char *temp, ctemp;
float ftemp;
i = *argi;
if( strcmp(argv[i], "-cmode") == 0) {
control.mode = COP;
}
else if( strcmp(argv[i], "-pmode") == 0) {
control.mode = ZOP;
}
else if( strcmp(argv[i], "-cpie") == 0) {
control.mode = COP;
cursor.type = COP_PieSlice;
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayX = -ftemp;
cursor.win.rayY = -ftemp;
cursor.file.Xdim = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
}
else if( strcmp(argv[i], "-ccir") == 0) {
control.mode = COP;
cursor.type = COP_Circle;
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayX = -ftemp;
cursor.win.rayY = -ftemp;
cursor.file.Xdim = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
}
else if( strcmp(argv[i], "-cbox") == 0) {
control.mode = COP;
cursor.type = COP_Box;
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayX = -ftemp;
cursor.win.rayY = -ftemp;
cursor.file.Xdim = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayY = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
}
else if( strcmp(argv[i], "-cell") == 0) {
control.mode = COP;
cursor.type = COP_Ellipse;
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayX = -ftemp;
cursor.win.rayY = -ftemp;
cursor.file.Xdim = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.win.rayY = -ftemp;
cursor.file.Ydim = -ftemp;
i++;
}
if ( ((i+1) < argc) && ((ftemp = atof(argv[i+1])) > 0) ) {
cursor.rot.angle = degrad(ftemp);
i++;
}
}
else if( strcmp(argv[i], "-ctype") == 0) {
control.mode = COP;
if ( (++i) < argc ) {
temp = argv[i];
ctemp = temp[0];
if (ctemp == 'a')
cursor.type = COP_Arrow;
else if (ctemp == 'b')
cursor.type = COP_Box;
else if (ctemp == 'c')
cursor.type = COP_Circle;
else if (ctemp == 'e')
cursor.type = COP_Ellipse;
else if (ctemp == 'p')
cursor.type = COP_Point;
else if (ctemp == 's')
cursor.type = COP_PieSlice;
else
return (0);
}
else
return (0);
}
else if( strcmp(argv[i], "-mode") == 0) {
if ( (++i) < argc ) {
temp = argv[i];
ctemp = temp[0];
if (ctemp == 'c')
control.mode = COP; /* cursors */
else if (ctemp == 'e')
control.mode = EOP; /* environment controls */
else if (ctemp == 'm')
control.mode = MOP; /* color maps */
else if (ctemp == 'r')
control.mode = ROP; /* region controls */
else if (ctemp == 's')
control.mode = SOP; /* image reading and scaling */
else if (ctemp == 'p')
control.mode = ZOP; /* pan and zoom */
else if (ctemp == 'v')
control.mode = VOP; /* color manipulation */
else if (ctemp == 'z')
control.mode = ZOP; /* pan and zoom */
else
return (0);
}
else
return (0);
}
else {
return( 0 );
}
*argi = i;
return( 1 );
}
|