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 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
|
/*===========================================================================
Copyright (C) 1993-2009 European Southern Observatory (ESO)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public
License along with this program; if not, write to the Free
Software Foundation, Inc., 675 Massachusetts Ave, Cambridge,
MA 02139, USA.
Correspondence concerning ESO-MIDAS should be addressed as follows:
Internet e-mail: midas@eso.org
Postal address: European Southern Observatory
Data Management Division
Karl-Schwarzschild-Strasse 2
D 85748 Garching bei Muenchen
GERMANY
===========================================================================*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifer PCO
.PURPOSE Takes care of opening and closing graphics devices
.AUTHOR R.M. van Hees IPG-ESO Garching
.KEYWORDS High level plot interface
.LANGUAGE C
.COMMENTS holds PCOPEN and PCCLOS
.ENVIRONment MIDAS and AGL
#include <agl.h> Prototypes for AGL application programs
#include <osparms.h> Symbols used by the OS interfaces
#include <plot_def.h> Symbols used by the PLT interfaces
#include <midas_def.h> Prototypes for MIDAS interfaces
.VERSION 1.0 23-Sep-1993 FORTRAN --> C RvH
090630 last modif
------------------------------------------------------------*/
/*
* Define _POSIX_SOURCE to indicate
* that this is a POSIX program
*/
#define _POSIX_SOURCE 1
/*
* definition of the used functions in this module
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <idinumd.h>
#include <midas_def.h>
/*
* define some macros and constants
*/
#include <osparms.h>
#include <plot_def.h>
#undef FATAL
#define FATAL 1 /* error status FATAL */
#define MAXDEV 10 /* maximum number of different devices */
#define MAXLEN 80 /* maximum length of device name */
/* The routine PCOPEN makes use of several static functions.
* They are used according to the following scheme:
*
* graphic display PCOPEN image display
* |
* PCDEV
* |
* <-------- ---------->
* GRPCLP DISCLP
* |
* WC2PIX
* |
* | GETFRAME
* PCSET
* |
* PCTSET
* |
* PCWND
*/
/*
* definition of struct dev, containing device name and AGL ID-number
*/
struct dev
{
char name[21];
int id;
};
/*
*/
/*++++++++++++++++++++++++++++
.IDENTifer PCDEV
.PURPOSE get logical device name for current graphics window
on both workstations and terminals
input: char *kname: type of device
output: char *lname: logical name of device
.RETURNS
.COMMENTS The length of the file AGL3CONFIG:agldevs.dat, also
defines the number of supported graphics devices.
This number should consist with the number of devices
declared in the file PLTDEV.INC
static function also defined in low level routine GETDEV
------------------------------*/
#ifdef __STDC__
static int PCDEV( char *kname, char *lname )
#else
static int PCDEV( kname, lname )
char *kname, *lname;
#endif
{
int fid, found;
char devnam[84], *strtest;
char *pldev = "AGL3CONFIG:agldevs.dat",
*err_opn = "*** FATAL: PCDEV, Cannot open file with device definitions";
/* get rid of trailing blanks */
(void) strtok( kname, " " );
CGN_LOWSTR( kname );
/* read from AGLDEVS.dat */
if ( (fid = CGN_OPEN( pldev, READ )) == -1 ) SCETER( 1, err_opn );
/* keyword conversion or user input conversion */
if ( strncmp( kname+1, "_", 1 ) == 0 )
strtest = kname+2; /*full device name*/
else
strtest = kname; /*normal device name*/
found = FALSE;
while ( ! found && ( osaread( fid, devnam, MAXLEN )) >= 0 )
{ if ( ! (*devnam == '#') )
{ if ( ! strncmp( devnam, "unknown", 7 ) )
{ (void) strcpy( lname, "unknown" );
found = TRUE;
}
else
{ (void) strtok( devnam, ":");
if ( strcmp( strtest, devnam ) == 0 )
{ (void) strcpy( lname, strtest );
found = TRUE;
}
}
}
}
(void) osaclose(fid);
if ( found == FALSE )
{
SCTPUT( "*** FATAL: PCDEV, Cannot find device definition" );
return FATAL;
}
else
return ERR_NORMAL;
}
/*
*/
/*+++++++++++++++++++++++++++++++
.IDENTifer GRPCLP
.PURPOSE find and write viewport CLIP values, on graphics display
input: int plmode : plot mode
char *device: name of plotting device
output: float *clpl : clip limits
.COMMENTS static function
-------------------------------*/
#ifdef __STDC__
static void GRPCLP( int plmode, char *device, float *clpl )
#else
static void GRPCLP( plmode, device, clpl )
char *device;
int plmode;
float *clpl;
#endif
{
int actvals, xy, qdszy[2], knul, unit ;
float aspect, xmxcl, maxcl[PLDIM2], devmm[PLDIM2], dval[PLDIM2],
frmwc[PLDIM2], frmcl[PLDIM2], frmmm[PLDIM2],
offset[PLDIM2], offusr[PLDIM2], scale[PLDIM3],
scusr[PLDIM2], wndl[4];
char frame[5], cmnd[21], text[81], *offcoo[2], *scacoo[2],
*errmmoff[PLDIM2], *errscoff[PLDIM2], *errnooff[PLDIM2],
*errmmsca[PLDIM2], *errscsca[PLDIM2], *errnosca[PLDIM2],
*errsiz[PLDIM2];
char *errtrm = "*** FATAL: (GRPCLP) terminal unknown to system",
*errmin = " smallest possible scale:%13.6g units/mm",
*errlarge = " largest possible size: %6.1f mm";
errmmoff[0] = "*** FATAL: maximum offset in x: %6.1f mm";
errmmoff[1] = "*** FATAL: maximum offset in y: %6.1f mm";
errscoff[0] = "*** FATAL: maximum offset in x: %6d screen pixels";
errscoff[1] = "*** FATAL: maximum offset in y: %6d screen pixels";
errnooff[0] = "*** FATAL: norm. offset in x must be between 0 and 1";
errnooff[1] = "*** FATAL: norm. offset in y must be between 0 and 1";
errmmsca[0] = "*** FATAL: maximum axis size in x: %6.1f mm";
errmmsca[1] = "*** FATAL: maximum axis size in y: %6.1f mm";
errscsca[0] = "*** FATAL: maximum axis size in x: %6d screen pixels";
errscsca[1] = "*** FATAL: maximum axis size in y: %6d screen pixels";
errnosca[0] = "*** FATAL: norm.axis size in x must be between 0 and 1";
errnosca[1] = "*** FATAL: norm.axis size in y must be between 0 and 1";
errsiz[0] = "*** FATAL: plot too large in x direction";
errsiz[1] = "*** FATAL: plot too large in y direction";
PCKRDR( "XWNDL", 4, &actvals, wndl );
frmwc[0] = (float) fabs( *(wndl+1) - *wndl );
PCKRDR( "YWNDL", 4, &actvals, wndl );
frmwc[1] = (float) fabs( *(wndl+1) - *wndl );
for ( xy = 0; xy < PLDIM2; xy++ ) offcoo[xy] = osmmget(5);
for ( xy = 0; xy < PLDIM2; xy++ ) scacoo[xy] = osmmget(5);
/*
* get terminal characteristics, if failed exit
*/
if ( ( AG_RGET( "ASPE", &aspect ) != 1 ) || ( AG_RGET( "DEVD", dval ) != 2 ) )
SCETER( 1, errtrm );
for ( xy = 0; xy < PLDIM2; xy++ ) devmm[xy] = 10 * dval[xy];
/*
* determine scaling parameters
*/
(void) SCKGETC( "MID$CMND", 1, 20, &actvals, cmnd );
if ( plmode != 2 || strncmp( QUAL, "AXES", 4 ) == 0 )
{ clpl[0] = 0.15;
clpl[1] = 0.95;
clpl[2] = 0.1;
clpl[3] = 0.95;
}
else /* plot mode equals 2 */
{ clpl[0] = 0.15;
clpl[1] = 0.8;
clpl[2] = 0.1;
clpl[3] = 0.95;
}
/*
* read the x and Y coordinate unit for x and y offset
*/
PCKRDR( "XOFF", 1, &actvals, offusr );
PCKRDR( "YOFF", 1, &actvals, offusr+1 );
PCKRDC( "CXOF", 4, &actvals, offcoo[0] );
PCKRDC( "CYOF", 4, &actvals, offcoo[1] );
PCKRDR( "OFFS", 2, &actvals, offset );
for ( xy = 0; xy < PLDIM2; xy++ )
/*
* set offset in mm
*/
if ( strncmp( offcoo[xy], "MM", 2 ) == 0 )
{ offset[xy] = MYMAX( offusr[xy], offset[xy] );
if ( offset[xy] + 999 > PLT_EPS )
{ if ( offset[xy] > devmm[xy] )
{ (void) sprintf( text, errmmoff[xy], devmm[xy] );
SCETER( 3, text);
}
else
{ if ( xy == FOR_X )
clpl[0] = offset[0] / devmm[0];
else
clpl[2] = offset[1] / devmm[1];
}
}
}
/*
* set offset in screen coordinates
*/
else if ( strncmp( offcoo[xy], "SC", 2 ) == 0 )
{ (void) SCKRDI( "IDIDEV", 32, 2, &actvals, qdszy, &unit, &knul);
if ( offset[xy] > qdszy[xy] )
{ (void) sprintf( text, errscoff[xy], qdszy[xy] );
SCETER( 3, text);
}
else
{
if ( xy == FOR_X )
clpl[0] = offset[0]/qdszy[0];
else
clpl[2] = offset[1]/qdszy[1];
}
}
/*
* set offset in normlized coordinates
*/
else if ( strncmp( offcoo[xy], "NO", 2 ) == 0 )
{ if ( offset[xy] < 0.0 || offset[xy] > 1.0 )
{ (void) strcpy(text, errnooff[xy]);
SCETER( 3, text);
}
else
{ if ( xy == FOR_X )
clpl[0] = offset[0];
else
clpl[2] = offset[1];
}
}
/*
* else we assume mm offset
*/
else
{ offset[xy] = MYMAX( offusr[xy], offset[xy] );
if ( offset[xy] + 999 > PLT_EPS )
{ if ( offset[xy] > devmm[xy] )
{ (void) sprintf( text, errmmoff[xy], devmm[xy] );
SCETER( 3, text);
}
else
{ if ( xy == FOR_X )
clpl[0] = offset[0] / devmm[0];
else
clpl[2] = offset[1] / devmm[1];
}
}
}
/*
* X and Y scaling and position:
*/
PCKRDC( "FRAME", 4, &actvals, frame );
PCKRDR( "XSCA", 1, &actvals, scusr );
PCKRDR( "YSCA", 1, &actvals, scusr+1 );
PCKRDC( "CXSC", 4, &actvals, scacoo[0] );
PCKRDC( "CYSC", 4, &actvals, scacoo[1] );
PCKRDR( "SCAL", 3, &actvals, scale );
for ( xy = 0; xy < PLDIM2; xy++ )
/*
* scale via command line or preset
*/
{if ( fabs( scale[xy] ) > PLT_EPS )
{ if ( ( strncmp( scacoo[xy], "MM", 2 ) == 0 )
|| ( scale[xy] < 0.0 ) ) /* scale in mm. or in neg. numbers*/
{ if ( fabs(scale[xy]) > devmm[xy] )
{ (void) sprintf( text, errmmsca[xy], devmm[xy] );
SCETER( 3, text);
}
else
frmmm[xy] = (float) fabs( scale[xy]); /*viewport size*/
}
else if ( strncmp( scacoo[xy], "SC", 2 ) == 0 ) /*screen. coord.*/
{ (void) SCKRDI( "IDIDEV", 32, 2, &actvals, qdszy, &unit, &knul);
if ( scale[xy] > qdszy[xy] )
{ (void) sprintf( text, errscsca[xy], qdszy[xy] );
SCETER( 3, text);
}
else
frmmm[xy] = scale[xy]/qdszy[xy]*devmm[xy]; /*viewport size*/
}
else if ( strncmp( scacoo[xy], "NO", 2 ) == 0 ) /*norm.coord*/
{ if ( scale[xy] < 0.0 || scale[xy] > 1.0 )
{ (void) strcpy(text, errnosca[xy]);
SCETER( 3, text);
}
else
frmmm[xy] = scale[xy]*devmm[xy];
}
else /*scale in wo per mm*/
frmmm[xy] = fabs( frmwc[xy]/scale[xy] );
frmcl[xy] = (float) fabs(frmmm[xy]/devmm[xy]);
}
/*
*scale via PLRGRAP
*/
else if ( fabs( scusr[xy]) > PLT_EPS )
{ if ( scusr[xy] < 0.0 ) /*scale in mm*/
frmmm[xy] = (float) fabs( scusr[xy] ); /*viewport size*/
else
frmmm[xy] = frmwc[xy] / scusr[xy]; /*scale in wo/mm*/
frmcl[xy] = (float) fabs( frmmm[xy] / devmm[xy]); /*norm.view size*/
}
else /*no scale given; use default*/
{ if ( xy == FOR_X )
{ if ( strncmp( frame, "SQ", 2 ) == 0 )
{ xmxcl = clpl[1];
clpl[1] = clpl[0] + aspect* (clpl[3] - clpl[2]);
if ( clpl[1] > xmxcl )
{ clpl[1] = xmxcl;
clpl[2] = clpl[3]-(clpl[1]-clpl[0])/aspect;
}
}
frmcl[xy] = clpl[1] - clpl[0];
frmmm[xy] = devmm[xy] * frmcl[xy];
}
else
{ frmcl[xy] = clpl[3] - clpl[2];
frmmm[xy] = devmm[xy] * frmcl[xy];
}
}
if ( xy == FOR_X )
maxcl[xy] = clpl[1] - clpl[0];
else
maxcl[xy] = clpl[3] - clpl[2];
/*
* check the size
*/
if ( frmcl[xy] > maxcl[xy]+0.01 &&
strncmp( device, "VERSATEC", 8 ) != 0 )
{ if ( scale[xy] < 0.0 )
(void) sprintf( text, errlarge, maxcl[xy] * devmm[xy] );
else
(void) sprintf( text, errmin, frmwc[xy]/( maxcl[xy] * devmm[xy]));
SCTPUT( errsiz[xy] );
SCETER( 1, text );
}
else /* size is ok */
{ if ( xy == FOR_X )
clpl[1] = clpl[0] + frmcl[xy];
else
{ if ( fabs( offset[1] + 999 ) > PLT_EPS )
clpl[3] = clpl[2] + frmcl[xy];
else
clpl[2] = clpl[3] - frmcl[xy];
}
}
}
for ( xy = 0; xy < PLDIM2; xy++ )
scale[xy] = (float) fabs( frmwc[xy]/frmmm[xy]);
PCKWRR( "SCAL", 2, scale ); /*store scale*/
PCKWRR( "CLPL", 4, clpl ); /*store clip values*/
for ( xy = 0; xy < PLDIM2; xy++ ) osmmfree(offcoo[xy]);
for ( xy = 0; xy < PLDIM2; xy++ ) osmmfree(scacoo[xy]);
return;
}
/*
*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifer GETFRAME
.PURPOSE Get name of frame displayed on current active display channel
output: char *frame
.RETURNS 0 = o.k., else nothing loaded into channel
.COMMENTS static function, also defined in PLOTAXES
------------------------------------------------------------*/
#ifdef __STDC__
static int GETFRAME( char *frame )
#else
static int GETFRAME( frame )
char *frame;
#endif
{
int iav;
/* get the name of the frame loaded in the current image display */
(void) SCKGETC("IDIMEMC",1,80,&iav,frame);
if (truelen(frame) == 0)
return 1;
else
return ERR_NORMAL;
}
/*
*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifer WC2PIX
.PURPOSE converts world coordinates to screen pixels
input: float *wcpix: pixel in world coordimates
output: float *scpix: pixel in screen coordinates
.COMMENTS static function
------------------------------------------------------------*/
#ifdef __STDC__
static void WC2PIX( float *wcpix, float *scpix )
#else
static void WC2PIX( wcpix, scpix )
float *wcpix, *scpix;
#endif
{
int iac, imf, knul, qdszy, dzmemi[13], unit;
float cx, cy, imgpix[2];
double start[2], step[2];
char frame[82];
char *err_fram = "*** FATAL: no frame loaded in the display channel";
/*
* get the name of the loaded frame and it's characteristics
*/
if ( GETFRAME( frame ) != 0 ) SCETER( 1, err_fram );
(void) SCFOPN( frame, D_R4_FORMAT, 0, F_IMA_TYPE, &imf );
(void) SCDRDD( imf, "START", 1, PLDIM2, &iac, start, &unit, &knul );
(void) SCDRDD( imf, "STEP" , 1, PLDIM2, &iac, step , &unit, &knul );
(void) SCFCLO( imf );
/*
* get display parameters
*/
(void) SCKRDI( "IDIMEMI", 1, 13, &iac, dzmemi, &unit, &knul);
(void) SCKRDI( "IDIDEV", 3, 1, &iac, &qdszy, &unit, &knul);
/*
* calculate image pixel
*/
imgpix[0] = (float) ((wcpix[0] - start[0])/step[0] + 1);
imgpix[1] = (float) ((wcpix[1] - start[1])/step[1] + 1);
/*
* take care of one real pixel + scaling
*/
if ( SCALX < 0 )
cx = - (imgpix[0] - (float) SFPX ) * (float) SCALX;
else
cx = (imgpix[0] - (float) SFPX ) / (float) SCALX;
cx += SSPX;
if ( SCALY < 0 )
cy = - (imgpix[1] - (float) SFPY ) * (float) SCALY;
else
cy = (imgpix[1] - (float) SFPY ) / (float) SCALY;
cy += SSPY;
scpix[0] = ( cx - SCROLX ) * ZOOMX;
scpix[1] = ( cy - SCROLY ) * ZOOMY + qdszy - 1;
return;
}
/*
*/
/*++++++++++++++++++++++++++++++
.IDENTifer DISCLP
.PURPOSE find and write viewport CLIP values, on image display
output: float *clpl : clip limits
.COMMENTS static function
--------------------------------*/
#ifdef __STDC__
static void DISCLP( float *clpl )
#else
static void DISCLP( clpl )
float *clpl;
#endif
{
int actvals, imf, knul, unit, xy, scale[PLDIM2], scrpx[PLDIM2];
float frmmm[PLDIM2], frmpx[PLDIM2], offmm[PLDIM2], wcpix1[PLDIM2],
wndl[8], scpix1[PLDIM2], scpix2[PLDIM2], wcpix2[PLDIM2];
double step[2];
char frame[82];
char *err_fram = "*** FATAL: no frame loaded in the display channel";
/*
* get the name of the loaded frame and it's characteristics
*/
if ( GETFRAME( frame ) != 0 ) SCETER( 1, err_fram );
(void) SCFOPN( frame, D_R4_FORMAT, 0, F_IMA_TYPE, &imf );
(void) SCDRDD( imf, "STEP" , 1, PLDIM2, &actvals, step , &unit, &knul );
(void) SCFCLO( imf );
/*
* get display parameters
*/
(void) SCKRDI( "IDIDEV", 2, 2, &actvals, scrpx, &unit, &knul);
(void) SCKRDI( "IDIMEMI", 8, 2, &actvals, scale, &unit, &knul);
/*
* do pixel convertion
*/
PCKRDR( "XWNDL", 2, &actvals, wndl );
PCKRDR( "YWNDL", 2, &actvals, wndl+2 );
/*
wcpix1[0] = (float) (wndl[0] + step[0]/2.0);
wcpix1[1] = (float) (wndl[2] + step[1]/2.0);
wcpix2[0] = (float) (wndl[1] + step[0]/2.0);
wcpix2[1] = (float) (wndl[3] + step[1]/2.0);
*/
wcpix1[0] = (float) (wndl[0]);
wcpix1[1] = (float) (wndl[2]);
wcpix2[0] = (float) (wndl[1]);
wcpix2[1] = (float) (wndl[3]);
WC2PIX( wcpix1, scpix1 );
WC2PIX( wcpix2, scpix2 );
/*
* make the box 1/2 pixel larger
*/
if (scale[0] < 0.0)
{
scpix1[0] -= 0.5 * scale[0];
scpix2[0] -= 0.5 * scale[0];
}
if (scale[1] < 0.0)
{
scpix1[1] -= 0.5 * scale[1];
scpix2[1] -= 0.5 * scale[1];
}
/*
* get terminal characteristics
*/
for ( xy = 0; xy < PLDIM2; xy++ )
{ frmpx[xy] = (float) fabs((double) scpix2[xy] - scpix1[xy] ) + 1;
frmmm[xy] = frmpx[xy] / scrpx[xy];
offmm[xy] = scpix1[xy] / scrpx[xy];
}
/*
* set the clip coordinates
*/
clpl[0] = MYMAX( offmm[0], 0.0 );
clpl[1] = MYMIN( offmm[0] + (float) fabs((double) frmmm[0] ), 1.0 );
clpl[2] = MYMAX( offmm[1], 0.0 );
clpl[3] = MYMIN( offmm[1] + (float) fabs((double) frmmm[1] ), 1.0 );
PCKWRR( "CLPL", 4, clpl ); /*store clip values*/
}
/*
*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifer PCWND
.PURPOSE Set the plot window in world coordinates
input: float *wcfram plot window limits in world coordinated
.COMMENTS static function, also defined as low level plot interface
------------------------------------------------------------*/
#ifdef __STDC__
static void PCWND( float *wcfram )
#else
static void PCWND( wcfram )
float *wcfram;
#endif
{
float wndl[4];
/*
* copy input array because we are going to change it
*/
wndl[0] = wcfram[0];
wndl[1] = wcfram[1];
wndl[2] = wcfram[4];
wndl[3] = wcfram[5];
/*
* set the window
*/
if ( wcfram[3] <= -2.0 ) /* logarithmic x-axis*/
{ wndl[0] = exp( wcfram[0] );
wndl[1] = exp( wcfram[1] );
}
else if ( wcfram[3] < 0.0 )
{ wndl[0] = pow( 10.0, wcfram[0] );
wndl[1] = pow( 10.0, wcfram[1] );
}
if ( wcfram[7] <= -2.0 ) /* logarithmic y-axis*/
{ wndl[2] = exp( wcfram[4] );
wndl[3] = exp( wcfram[5] );
}
else if ( wcfram[7] < 0.0 )
{ wndl[2] = pow( 10.0, wcfram[4] );
wndl[3] = pow( 10.0, wcfram[5] );
}
/*
*define window
*/
AG_WDEF( wndl[0], wndl[1], wndl[2], wndl[3] );
AG_SSET( "liny" );
AG_SSET( "linx" );
if ( wcfram[3] < 0 ) AG_SSET( "logx" );
if ( wcfram[7] < 0 ) AG_SSET( "logy" );
return;
}
/*
*/
/*++++++++++++++++++++++++++++++
.IDENTifer PCSET
.PURPOSE does a complete setup of the plot parameters and AGL
.COMMENTS static function
-------------------------------*/
#ifdef __STDC__
static void PCSET( void )
#else
static void PCSET()
#endif
{
int actvals, color, font, ltype, lwidth, twidth, ncol;
float wcfram[8];
char clmod[5], text[81];
/*
* set character font
*/
PCKRDI( "FONT", 1, &actvals, &font );
(void) sprintf( text, "font=%1d", font );
AG_SSET( text );
/*
* set line style
*/
PCKRDI( "LTYPE", 1, &actvals, <ype );
if ( ltype > 0 )
{ (void) sprintf( text, "lstyl=%1d", ltype - 1 );
AG_SSET( text );
}
/*
* set line width
*/
PCKRDI( "LWIDTH", 1, &actvals, &lwidth );
(void) sprintf( text, "lwidt=%1d", lwidth - 1 );
AG_SSET( text );
/*
* set line width for text
*/
PCKRDI( "TWIDTH", 1, &actvals, &twidth );
(void) sprintf( text, "twidt=%1d", twidth );
AG_SSET( text );
/*
* determine character and symbol sizes for the MIDAS layout
*/
PCTSET();
/*
* set color
*/
(void) AG_IGET( "ncol", &ncol);
PCKRDI( "COLOR", 1, &actvals, &color );
if ( ncol == 1 && color > 1 ) color = 1;
(void) sprintf( text, "color=%1d", color );
AG_SSET( text );
/*
* color mode
*/
PCKRDC( "COLMODE", 4, &actvals, clmod );
if ( strncmp( clmod, "X", 1 ) == 0 )
AG_SSET( "mode=Xor" );
else
AG_SSET( "mode=Sub" );
/*
* do a complete "manual" setting, which gives a default frame!!
*/
PCKRDR( "XWNDL", 4, &actvals, wcfram );
PCKRDR( "YWNDL", 4, &actvals, wcfram+FOR_Y );
PCWND( wcfram );
return;
}
/*
*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifier PCOPEN
.PURPOSE Sets up the graphic device according to plot mode
input: char *devnam: name of device to be activated
char *plname: name of meta file
int access : access mode: -1 = cursor,
1 = over plot,
0 = new plot.
in/output: int *plmode: plot mode: 0 = no axis & no info,
1 = draw axes & some info,
2 = draw axes & full info,
-1 take value from keyword PMODE
.COMMENTS PCOPEN activates a given device, or the current (by MIDAS)
defined device if no device name is given. A given device has
to be present in the AGLDEVS.dat file.
PCOPEN does not open or append to a meta file if PLNAME
equals "NO"ne. If no name or a file name (without ".plt"
extention) is given PCOPEN will open or append to a meta file
(see access mode). Default for the name of the meta file is
the name of the activated device extended with MIDAS session
number with extention ".plt".
PCOPEN reads the MIDAS graphics keywords, opens this device
(on graphics or image display) according to the MIDAS settings.
The coordinate box have to be defined BEFORE PCOPEN !!!
Use the MIDAS routine PCKWRR, with parameters: XWNDL and YWNDL.
------------------------------------------------------------*/
void PCOPEN( devnam, plname, access, plmode )
char *devnam, *plname;
int access, *plmode;
{
int actvals, amode, bcolor, iac, idev, meta, newdev, pmode;
float ocount, rdef, clpl[4];
char *pntr, session[3], debug[5], erase[5], action[9], cmnd[21],
device[21], dname[21], plmeta[81], text[81];
static int nrdev = 0;
static struct dev devtbl[MAXDEV];
char *errpmode = "*** FATAL: PCOPEN, unknown plot mode ...",
*errdev = "*** FATAL: PCOPEN, unknown or unavailable device",
*errhlp = " use HELP [printers]",
*errmxdev = "*** FATAL: PCOPEN, too many different devices opened (> 4)",
*errplt = "*** FATAL: PCOPEN, no graphics device ==> No CURSOR",
*errnopl = "*** FATAL: PCOPEN, no existing plot file to append",
*errnoex = "*** FATAL: PCOPEN, no existing plot for graphics cursor";
/*
* initialize device and meta-file name
*/
*device = *plmeta = '\0';
(void) strncat( device, devnam, 20 );
(void) strncat( plmeta, plname, 80 );
(void) SCKGETC( "MID$SESS", 11, 2, &iac, session );
PCKRDR( "OCOUNT", 1, &actvals, &ocount );
/*
* Check plot mode
*/
if ( *plmode == -1 ) /* plmode = -1 => use PMODE */
{ PCKRDI( "PMODE", 1, &actvals, &pmode );
*plmode = pmode;
}
/*
* and check its value
*/
if ( *plmode < 0 && *plmode > 2 ) SCETER( 2, errpmode );
/*
* debug mode
*/
PCKRDC( "DEBUG", 4, &actvals, debug );
if ( strncmp( debug, "ON", 2 ) == 0 )
AG_SSET( "msgw;debu=1;errf=aglerr.log" );
else
AG_SSET( "msgn;debu=0" );
/*
* get device name
*/
if ( truelen( device ) == 0 ) /* a device name given? */
(void) SCKGETC( "MID$PLOT", 1, 20, &iac, device );
if ( PCDEV( device, dname ) != ERR_NORMAL ||
strncmp( dname, "unknown", 7 ) == 0 )
{ SCTPUT( errdev );
SCETER( 3, errhlp );
}
newdev = TRUE;
if ( nrdev == 0 ) /* are there devices opened? */
{ nrdev = 1;
idev = 0;
(void) strcpy( devtbl[idev].name, dname );
}
else
{ for ( idev = 0; idev < nrdev; idev++ )
if ( strcmp( dname, devtbl[idev].name ) == 0 ) break;
if ( idev == nrdev ) /*new device*/
{ if ( ++nrdev > MAXDEV ) SCETER( 4, errmxdev );
(void) strcpy( devtbl[idev].name, dname );
}
else
newdev = FALSE;
}
/*
* set the access mode according to plot, overplot and cursor command
*/
(void) SCKGETC( "MID$CMND", 1, 20, &iac, cmnd );
if ( access == -1 ) /*reserved for cursor*/
{ if ( strncmp( dname,"graph",5 ) != 0 && strncmp( dname,"image",5 ) != 0 )
SCETER( 4, errplt );
amode = -1;
}
else if ( access == 1 ) /*overplot command*/
{ if ( strncmp( QUAL, "AX", 2 ) == 0 ) /*axes*/
amode = 2;
else if ( strncmp( COMM, "LAB", 3 ) == 0 ) /*label graphics*/
amode = 3;
else /*data*/
amode = 4;
}
else /*plot command*/
{ PCKRDC( "CLEAR", 4, &actvals, erase );
if ( strncmp( QUAL, "AX", 2 ) == 0 ) /*axes*/
{ if ( strncmp( erase, "ON", 2 ) == 0 || ocount < 1)
amode = 1; /*erase*/
else
amode = 2; /*no erase*/
}
else /*data plotting*/
{ if ( strncmp( erase, "ON", 2 ) == 0 || ocount < 1)
amode = 5; /*erase*/
else
amode = 6; /*no erase*/
}
}
/*
* get the plot file
*/
meta = FALSE; /* default: no meta file*/
if ( amode > 0 )
{ if ( strncmp( plmeta, "no", 2 ) != 0 )
{ meta = TRUE;
if ( amode == 1 || amode == 5 ) /*new plotfile*/
{ if ( truelen( plmeta ) == 0 ) /*called with no name*/
{ (void) strcpy( plmeta, dname );
if ( (pntr = strchr( plmeta, '.' )) == NULL )
(void) strcat( plmeta, session );
else
(void) strcpy( pntr, session );
}
if ( (pntr = strchr( plmeta, '.' )) == NULL )
(void) strcat( plmeta, ".plt" );
else
(void) strcpy( pntr, ".plt" );
PCKWRC( "PLNAM", plmeta );
ocount = 0.0;
}
else /*overplot mode*/
{ PCKRDC( "PLNAM", 80, &actvals, plmeta );
if ( ocount == 0.0 ) SCETER( 5, errnopl );
}
}
}
/*
* define default viewport setting
*/
clpl[0] = clpl[2] = 0.0;
clpl[1] = clpl[3] = 1.0;
/*
* open viewport for device
*/
switch (amode)
{ case 1: /*PLOT AXES*/
case 5: /*PLOT DATA erase*/
(void) strcat( dname, ":" );
break;
case -1: /*GET GCURSOR*/
if ( ocount == 0.0 ) SCETER( 6, errnoex ); /*none existing*/
PCKRDR( "CLPL", 4, &actvals, clpl );
case 3: /*LABEL GRAPH*/
if ( ocount == 0.0 ) break;
case 2: /*OVER AXES*/
case 4: /*OVER DATA*/
case 6: /*PLOT DATA no-erase*/
(void) strcat( dname, "/n:" );
(void) strcat( plmeta, "/a" );
break;
}
if ( newdev )
devtbl[idev].id = AG_VDEF( dname,
clpl[0], clpl[1], clpl[2], clpl[3], 0., 0. );
else
AG_VSEL( devtbl[idev].id );
if ( meta )
{ AG_MCLS(); /* close the still open meta file */
AG_MOPN( plmeta ); /* and open a new */
}
if ( amode > 0 )
{ if ( amode == 3 || amode == 4 )
PCKRDR( "CLPL", 4, &actvals, clpl );
else
{ if ( ! newdev )
{ PCKWRR( "SCALES", 0, &rdef );
PCKWRR( "OFFSET", 0, &rdef );
}
(void) SCKGETC( "ACTION", 1, 4, &iac, action );
if ( strncmp( action, "DISP", 4 ) == 0 )
DISCLP( clpl );
else
GRPCLP( *plmode, device, clpl );
}
ocount += 1;
PCKWRR( "OCOUNT", 1, &ocount );
}
else
PCKRDR( "CLPL", 4, &actvals, clpl );
AG_CDEF( clpl[0], clpl[1], clpl[2], clpl[3] );
if ( amode == 1 || amode == 5 )
{ PCKRDI( "BCOLOR", 1, &actvals, &bcolor );
(void) sprintf( text, "back=%1d", bcolor );
AG_SSET( text );
}
PCSET();
return;
}
/*
*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.IDENTifer PCCLOS
.PURPOSE Close plot file, and terminate graphic operations
------------------------------------------------------------*/
void PCCLOS()
{
/*
* terminate orderly the AGL operations
*/
AG_CLS();
return;
}
|