XEphem/GUI/xephem/satmenu.c

2517 lines
69 KiB
C

/* code to manage the stuff on the "saturn" menu.
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <string.h>
#include <X11/Xlib.h>
#include <Xm/Xm.h>
#include <Xm/Form.h>
#include <Xm/Frame.h>
#include <Xm/Label.h>
#include <Xm/PushB.h>
#include <Xm/CascadeB.h>
#include <Xm/Separator.h>
#include <Xm/Scale.h>
#include <Xm/RowColumn.h>
#include <Xm/DrawingA.h>
#include <Xm/ToggleB.h>
#include "xephem.h"
#define MINR 10 /* min distance for picking, pixels */
/* local record of what is now on screen for easy id from mouse picking.
*/
typedef struct {
Obj o; /* copy of object info.
* copy from DB or, if saturn moon, we fill in just
* o_name and s_mag/ra/dec
*/
int x, y; /* screen coord */
} ScreenObj;
/* malloced arrays for each view */
typedef enum {
SO_MAIN, SO_SHADOW, SO_TOP, SO_N
} SOIdx;
static ScreenObj *screenobj[SO_N];
static int nscreenobj[SO_N];
static void sm_create_shell_w (void);
static void sm_create_tvform_w (void);
static void sm_create_ssform_w (void);
static void sm_set_buttons (int whether);
static void sm_sstats_close_cb (Widget w, XtPointer client, XtPointer call);
static void sm_sstats_cb (Widget w, XtPointer client, XtPointer call);
static void sm_option_cb (Widget w, XtPointer client, XtPointer call);
static void sm_cpdmapping_cb (Widget w, XtPointer client, XtPointer call);
static void sm_scale_cb (Widget w, XtPointer client, XtPointer call);
static void sm_activate_cb (Widget w, XtPointer client, XtPointer call);
static int sm_ano (double *latp, double *longp, int *xp, int *yp, int w2x,
int arg);
static void sm_popdown_cb (Widget w, XtPointer client, XtPointer call);
static void st_unmap_cb (Widget w, XtPointer client, XtPointer call);
static void st_map_cb (Widget w, XtPointer client, XtPointer call);
static void st_track_size (void);
static void st_da_exp_cb (Widget w, XtPointer client, XtPointer call);
static int st_ano (double *latp, double *longp, int *xp, int *yp, int w2x,
int arg);
static void sm_close_cb (Widget w, XtPointer client, XtPointer call);
static void sm_mloop_cb (Widget w, XtPointer client, XtPointer call);
static void sm_anim_cb (Widget w, XtPointer client, XtPointer call);
static void sm_da_exp_cb (Widget w, XtPointer client, XtPointer call);
static void sm_da_input_cb (Widget w, XtPointer client, XtPointer call);
static void sm_create_popup (void);
static void sm_fill_popup (ScreenObj *sop, int justname);
static void sm_help_cb (Widget w, XtPointer client, XtPointer call);
static void sm_helpon_cb (Widget w, XtPointer client, XtPointer call);
static void sm_goto_cb (Widget w, XtPointer client, XtPointer call);
static void sm_print_cb (Widget w, XtPointer client, XtPointer call);
static void sm_print (void);
static void sm_ps_annotate (Now *np);
static void make_gcs (void);
static void sm_calibline (Display *dsp, Drawable win, GC gc, int xc, int yc,
char *tag, int tw, int th, int l);
static void sm_draw_map (Obj *sop, double etilt, double satsize,
MoonData md[S_NMOONS]);
static void add_screenobj (SOIdx, Obj *op, int x, int y);
static void reset_screenobj (SOIdx);
static ScreenObj *close_screenobj (SOIdx, int x, int y);
static void sky_background (Drawable win, unsigned w, unsigned h, int fmag,
double ra0, double dec0, double scale, double rad, int fliptb, int fliplr);
static Widget satshell_w; /* main shell */
static Widget ssform_w; /* statistics form */
static Widget smframe_w; /* main frame */
static Widget stform_w; /* top-view form */
static Widget stframe_w; /* top-view frame */
static Widget sda_w; /* main drawing area */
static Widget stda_w; /* top-view drawing area */
static Widget ringet_w, ringst_w;/* labels for displaying ring tilts */
static Widget scale_w; /* size scale */
static Widget limmag_w; /* limiting magnitude scale */
static Widget dt_w; /* main date/time stamp widget */
static Widget sdt_w; /* statistics date/time stamp widget */
static Widget skybkg_w; /* toggle for controlling sky background */
static Widget topview_w; /* toggle for controlling top view */
static Widget tel_w; /* PB to send position to telescope */
static Pixmap sm_pm; /* main pixmap */
static Pixmap st_pm; /* top-view pixmap */
static GC s_fgc, s_bgc, s_xgc; /* various colors and operators */
static XFontStruct *s_fs; /* font for labels */
static int s_cw, s_ch; /* size of label font */
static int sm_selecting; /* set while our fields are being selected */
static int brmoons; /* whether we want to brightten the moons */
static int tags; /* whether we want tags on the drawing */
static int flip_tb; /* whether we want to flip top/bottom */
static int flip_lr; /* whether we want to flip left/right */
static int skybkg; /* whether we want sky background */
static int topview; /* whether we want the top view */
static Widget smpu_w; /* main popup */
static Widget smpu_name_w; /* popup name label */
static Widget smpu_ra_w; /* popup RA label */
static Widget smpu_dec_w; /* popup Dec label */
static Widget smpu_mag_w; /* popup Mag label */
#define MAXSCALE 20.0 /* max scale mag factor */
#define NORM 27.0 /* max Callisto orbit radius */
#define MAPSCALE(r) ((r)*((int)nx)/NORM/2*scale)
#define XCORD(x) ((int)(((int)nx)/2.0 + ew*MAPSCALE(x) + 0.5))
#define YCORD(y) ((int)(((int)ny)/2.0 - ns*MAPSCALE(y) + 0.5))
#define ZCORD(z) ((int)(((int)ny)/2.0 + MAPSCALE(z) + 0.5))
#define MOVIE_STEPSZ 0.25 /* movie step size, hours */
#define PRTR 20 /* printing table row, up from bottom */
#define PRCW 7 /* printing char width */
/* field star support */
static ObjF *fstars; /* malloced list of field stars, or NULL */
static int nfstars; /* number of entries in fstars[] */
static double fsdec, fsra; /* location when field stars were loaded */
#define FSFOV degrad(1.0) /* size of FOV to fetch, rads */
#define FSMAG 20.0 /* limiting mag for fetch */
#define FSMOVE degrad(.2) /* reload when sat has moved this far, rads */
static void sm_loadfs (double ra, double dec);
enum {CEV, CSV, CPS, CTR, CX, CY, CZ, CRA, CDEC, CMAG, CNum}; /* s_w col idx */
static Widget s_w[S_NMOONS][CNum];/* the data display widgets */
static char satcategory[] = "Saturn"; /* Save category */
/* info about the gifs we use to create the image */
static int simtilts[] = {0, 4, 10, 16, 20, 24}; /* available image tilts */
static XColor smapxcols[256]; /* pixels and colors */
static unsigned char *smappix; /* malloced wxh of gif pixels */
#define SMAPW 550 /* gif width */
#define SMAPH 242 /* gif height */
static Pixel sbg_p; /* background color */
static double pole_ra, pole_dec;
/* called when the saturn menu is activated via the main menu pulldown.
* if never called before, create and manage all the widgets as a child of a
* form. otherwise, otherwise, just get out there and do it!
*/
void
sm_manage ()
{
if (!satshell_w) {
sm_create_shell_w();
sm_create_ssform_w();
sm_create_tvform_w();
make_gcs();
}
XtPopup (satshell_w, XtGrabNone);
set_something (satshell_w, XmNiconic, (XtArgVal)False);
sm_set_buttons(sm_selecting);
/* register we are now up */
setXRes (sm_viewupres(), "1");
}
/* called to recompute and fill in values for the saturn menu.
* don't bother if it doesn't exist or is unmanaged now or no one is logging.
*/
void
sm_update (np, how_much)
Now *np;
int how_much;
{
static char fmt[] = "%7.3f";
Obj *eop = db_basic (SUN);
Obj *sop = db_basic (SATURN);
MoonData md[S_NMOONS];
char *dir, buf[1024];
int wantstats;
double etilt, stilt;
double satsize;
int i;
/* see if we should bother */
if (!satshell_w)
return;
wantstats = XtIsManaged(ssform_w) || any_ison() || how_much;
if (!isUp(satshell_w) && !wantstats)
return;
watch_cursor (1);
/* compute info */
sprintf (buf, "%s/auxil", getShareDir());
dir = expand_home (buf);
saturn_data (mjd, dir, eop, sop, &satsize, &etilt, &stilt, &pole_ra,
&pole_dec, md);
if (wantstats) {
for (i = 0; i < S_NMOONS; i++) {
if (i > 0) {
f_double (s_w[i][CEV], "%1.0f", (double)md[i].evis);
f_double (s_w[i][CSV], "%1.0f", (double)md[i].svis);
f_double (s_w[i][CPS], "%1.0f", (double)md[i].pshad);
f_double (s_w[i][CTR], "%1.0f", (double)md[i].trans);
f_double (s_w[i][CX], fmt, md[i].x);
f_double (s_w[i][CY], fmt, md[i].y);
f_double (s_w[i][CZ], fmt, md[i].z);
}
f_double (s_w[i][CMAG], "%4.1f", md[i].mag);
f_ra (s_w[i][CRA], md[i].ra);
f_prdec (s_w[i][CDEC], md[i].dec);
}
f_double (ringet_w, fmt, raddeg(etilt));
f_double (ringst_w, fmt, raddeg(stilt));
timestamp (np, sdt_w);
}
if (isUp(satshell_w)) {
sm_draw_map (sop, etilt, satsize, md);
timestamp (np, dt_w);
}
watch_cursor (0);
}
/* called when basic resources change.
* rebuild and redraw.
*/
void
sm_newres()
{
if (!satshell_w)
return;
make_gcs ();
sm_update (mm_get_now(), 1);
}
/* called when the database has changed.
* if we are drawing background, we'd best redraw everything.
*/
/* ARGSUSED */
void
sm_newdb (appended)
int appended;
{
if (skybkg)
sm_update (mm_get_now(), 1);
}
int
sm_ison()
{
return (isUp(satshell_w));
}
/* called by other menus as they want to hear from our buttons or not.
* the "on"s and "off"s stack - only really redo the buttons if it's the
* first on or the last off.
*/
void
sm_selection_mode (whether)
int whether; /* whether setting up for plotting or for not plotting */
{
if (whether)
sm_selecting++;
else if (sm_selecting > 0)
--sm_selecting;
if (satshell_w)
if ((whether && sm_selecting == 1) /* first one to want on */
|| (!whether && sm_selecting == 0) /* last one to want off */)
sm_set_buttons (whether);
}
/* called to put up or remove the watch cursor. */
void
sm_cursor (c)
Cursor c;
{
Window win;
if (satshell_w && (win = XtWindow(satshell_w)) != 0) {
Display *dsp = XtDisplay(satshell_w);
if (c)
XDefineCursor (dsp, win, c);
else
XUndefineCursor (dsp, win);
}
if (ssform_w && (win = XtWindow(ssform_w)) != 0) {
Display *dsp = XtDisplay(ssform_w);
if (c)
XDefineCursor (dsp, win, c);
else
XUndefineCursor (dsp, win);
}
if (stform_w && (win = XtWindow(stform_w)) != 0) {
Display *dsp = XtDisplay(stform_w);
if (c)
XDefineCursor (dsp, win, c);
else
XUndefineCursor (dsp, win);
}
}
/* return the name of the resource containing whether this view is up */
char *
sm_viewupres()
{
return ("SatViewUp");
}
/* create the main shell */
static void
sm_create_shell_w()
{
typedef struct {
char *name; /* toggle button instance name, or NULL */
char *label; /* label */
int *flagp; /* pointer to global flag, or NULL if none */
Widget *wp; /* widget to save, or NULL */
char *tip; /* widget tip */
} Option;
static Option options[] = {
{NULL, "Top view", &topview, &topview_w,
"When on, show view looking from high above N pole"},
{"SkyBkg", "Sky background", &skybkg, &skybkg_w,
"When on, sky will include database objects and Field Stars"},
{"BrightMoons","Bright moons", &brmoons, NULL,
"Display moons disproportionately bright, even if below limit"},
{"Tags", "Tags", &tags, NULL,
"Label each moon with its Roman Numeral sequence number"},
{"FlipTB", "Flip T/B", &flip_tb, NULL,
"Flip the display top-to-bottom"},
{"FlipLR", "Flip L/R", &flip_lr, NULL,
"Flip the display left-to-right"},
};
typedef struct {
char *label; /* what goes on the help label */
char *key; /* string to call hlp_dialog() */
} HelpOn;
static HelpOn helpon[] = {
{"Intro...", "Saturn"},
{"on Mouse...", "Saturn_mouse"},
{"on Control...", "Saturn_control"},
{"on View...", "Saturn_view"},
};
Widget w;
Widget mb_w, pd_w, cb_w;
Widget satform_w;
XmString str;
Arg args[20];
int n;
int i;
/* create form and shell */
n = 0;
XtSetArg (args[n], XmNtitle, "xephem Saturn view"); n++;
XtSetArg (args[n], XmNiconName, "Saturn"); n++;
XtSetArg (args[n], XmNcolormap, xe_cm); n++;
XtSetArg (args[n], XmNdeleteResponse, XmUNMAP); n++;
satshell_w = XtCreatePopupShell ("Saturn", topLevelShellWidgetClass,
toplevel_w, args, n);
setup_icon (satshell_w);
set_something (satshell_w, XmNcolormap, (XtArgVal)xe_cm);
XtAddCallback (satshell_w, XmNpopdownCallback, sm_popdown_cb, 0);
sr_reg (satshell_w, "XEphem*Saturn.width", satcategory, 0);
sr_reg (satshell_w, "XEphem*Saturn.height", satcategory, 0);
sr_reg (satshell_w, "XEphem*Saturn.x", satcategory, 0);
sr_reg (satshell_w, "XEphem*Saturn.y", satcategory, 0);
sr_reg (NULL, sm_viewupres(), satcategory, 0);
n = 0;
satform_w = XmCreateForm (satshell_w, "SaturnF", args, n);
XtAddCallback (satform_w, XmNhelpCallback, sm_help_cb, 0);
XtManageChild (satform_w);
/* create the menu bar across the top */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
mb_w = XmCreateMenuBar (satform_w, "MB", args, n);
XtManageChild (mb_w);
/* make the Control pulldown */
n = 0;
pd_w = XmCreatePulldownMenu (mb_w, "ControlPD", args, n);
XtAddCallback (pd_w, XmNmapCallback, sm_cpdmapping_cb, NULL);
n = 0;
XtSetArg (args[n], XmNsubMenuId, pd_w); n++;
XtSetArg (args[n], XmNmnemonic, 'C'); n++;
cb_w = XmCreateCascadeButton (mb_w, "ControlCB", args, n);
set_xmstring (cb_w, XmNlabelString, "Control");
XtManageChild (cb_w);
/* add the "Print... " push button */
n = 0;
w = XmCreatePushButton (pd_w, "P", args, n);
set_xmstring (w, XmNlabelString, "Print...");
XtAddCallback (w, XmNactivateCallback, sm_print_cb, 0);
wtip (w, "Print front view and detail table");
XtManageChild (w);
/* add the "Annot... " push button */
n = 0;
w = XmCreatePushButton (pd_w, "A", args, n);
set_xmstring (w, XmNlabelString, "User annotation...");
XtAddCallback (w, XmNactivateCallback, ano_cb, 0);
wtip (w, "Open window to create and manage your own annotation");
XtManageChild (w);
/* add the "Field stars" push button */
n = 0;
w = XmCreatePushButton (pd_w, "FS", args, n);
set_xmstring (w, XmNlabelString, "Field Stars...");
XtAddCallback (w, XmNactivateCallback, (XtCallbackProc)fs_manage,0);
wtip (w, "Define where GSC and PPM catalogs are to be found");
XtManageChild (w);
/* add the "GOTO" push button */
n = 0;
tel_w = XmCreatePushButton (pd_w, "GOTO", args, n);
set_xmstring (tel_w, XmNlabelString, "Telescope GoTo");
XtAddCallback (tel_w, XmNactivateCallback, sm_goto_cb, 0);
wtip (tel_w, "Send position to external application");
XtManageChild (tel_w);
/* add the "movie" push button */
n = 0;
w = XmCreatePushButton (pd_w, "Anim", args, n);
set_xmstring (w, XmNlabelString, "Animation demo");
XtAddCallback (w, XmNactivateCallback, sm_anim_cb, 0);
wtip (w, "Start/Stop a fun time-lapse animation");
XtManageChild (w);
/* add the "Movie loop... " push button */
n = 0;
n += ml_addacc (args, n);
w = XmCreatePushButton (pd_w, "ML", args, n);
set_xmstring (w, XmNlabelString, "Add to movie...");
XtAddCallback (w, XmNactivateCallback, sm_mloop_cb, 0);
wtip (w, "Add this scene to the movie loop");
XtManageChild (w);
/* add the "close" push button beneath a separator */
n = 0;
w = XmCreateSeparator (pd_w, "Sep", args, n);
XtManageChild (w);
n = 0;
w = XmCreatePushButton (pd_w, "Close", args, n);
XtAddCallback (w, XmNactivateCallback, sm_close_cb, 0);
wtip (w, "Close this and all supporting dialogs");
XtManageChild (w);
/* make the View pulldown */
n = 0;
pd_w = XmCreatePulldownMenu (mb_w, "ViewPD", args, n);
n = 0;
XtSetArg (args[n], XmNsubMenuId, pd_w); n++;
XtSetArg (args[n], XmNmnemonic, 'V'); n++;
cb_w = XmCreateCascadeButton (mb_w, "ViewCB", args, n);
set_xmstring (cb_w, XmNlabelString, "View");
XtManageChild (cb_w);
for (i = 0; i < XtNumber(options); i++) {
Option *op = &options[i];
n = 0;
XtSetArg (args[n], XmNvisibleWhenOff, True); n++;
XtSetArg (args[n], XmNmarginHeight, 0); n++;
XtSetArg (args[n], XmNindicatorType, XmN_OF_MANY); n++;
w = XmCreateToggleButton (pd_w, op->name ? op->name : "SMTB",
args, n);
XtAddCallback (w, XmNvalueChangedCallback, sm_option_cb,
(XtPointer)(op->flagp));
set_xmstring (w, XmNlabelString, op->label);
if (op->flagp)
*(op->flagp) = XmToggleButtonGetState(w);
if (op->wp)
*op->wp = w;
if (op->tip)
wtip (w, op->tip);
XtManageChild (w);
if (op->name)
sr_reg (w, NULL, satcategory, 1);
}
/* add a separator */
n = 0;
w = XmCreateSeparator (pd_w, "Sep", args, n);
XtManageChild (w);
/* add the More Info control */
n = 0;
w = XmCreatePushButton (pd_w, "Stats", args, n);
set_xmstring (w, XmNlabelString, "More info...");
XtAddCallback (w, XmNactivateCallback, sm_sstats_cb, NULL);
wtip (w, "Display additional details");
XtManageChild (w);
/* make the help pulldown */
n = 0;
pd_w = XmCreatePulldownMenu (mb_w, "HelpPD", args, n);
n = 0;
XtSetArg (args[n], XmNsubMenuId, pd_w); n++;
XtSetArg (args[n], XmNmnemonic, 'H'); n++;
cb_w = XmCreateCascadeButton (mb_w, "HelpCB", args, n);
set_xmstring (cb_w, XmNlabelString, "Help");
XtManageChild (cb_w);
set_something (mb_w, XmNmenuHelpWidget, (XtArgVal)cb_w);
for (i = 0; i < XtNumber(helpon); i++) {
HelpOn *hp = &helpon[i];
str = XmStringCreate (hp->label, XmSTRING_DEFAULT_CHARSET);
n = 0;
XtSetArg (args[n], XmNlabelString, str); n++;
XtSetArg (args[n], XmNmarginHeight, 0); n++;
w = XmCreatePushButton (pd_w, "Help", args, n);
XtAddCallback (w, XmNactivateCallback, sm_helpon_cb,
(XtPointer)(hp->key));
XtManageChild (w);
XmStringFree(str);
}
/* make the date/time stamp label */
n = 0;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
dt_w = XmCreateLabel (satform_w, "DateStamp", args, n);
timestamp (mm_get_now(), dt_w); /* establishes size */
wtip (dt_w, "Date and Time for which map is computed");
XtManageChild (dt_w);
/* make the scale widget.
* attach both top and bottom so it's the one to follow resizing.
*/
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, mb_w); n++;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNbottomWidget, dt_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNmaximum, 100); n++;
XtSetArg (args[n], XmNminimum, 0); n++;
XtSetArg (args[n], XmNscaleMultiple, 10); n++;
XtSetArg (args[n], XmNorientation, XmVERTICAL); n++;
XtSetArg (args[n], XmNprocessingDirection, XmMAX_ON_TOP); n++;
scale_w = XmCreateScale (satform_w, "Scale", args, n);
XtAddCallback (scale_w, XmNdragCallback, sm_scale_cb, 0);
XtAddCallback (scale_w, XmNvalueChangedCallback, sm_scale_cb, 0);
wtip (scale_w, "Zoom in and out");
XtManageChild (scale_w);
sr_reg (scale_w, NULL, satcategory, 0);
/* make the limiting mag scale widget.
* attach both top and bottom so it's the one to follow resizing.
*/
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, mb_w); n++;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNbottomWidget, dt_w); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNmaximum, 20); n++;
XtSetArg (args[n], XmNminimum, 0); n++;
XtSetArg (args[n], XmNscaleMultiple, 1); n++;
XtSetArg (args[n], XmNorientation, XmVERTICAL); n++;
XtSetArg (args[n], XmNprocessingDirection, XmMAX_ON_TOP); n++;
XtSetArg (args[n], XmNshowValue, True); n++;
limmag_w = XmCreateScale (satform_w, "LimMag", args, n);
XtAddCallback (limmag_w, XmNdragCallback, sm_scale_cb, 0);
XtAddCallback (limmag_w, XmNvalueChangedCallback, sm_scale_cb, 0);
wtip (limmag_w, "Adjust the brightness and limiting magnitude");
XtManageChild (limmag_w);
sr_reg (limmag_w, NULL, satcategory, 0);
/* make a frame for the drawing area.
* attach both top and bottom so it's the one to follow resizing.
*/
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, mb_w); n++;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNbottomWidget, dt_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNleftWidget, scale_w); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNrightWidget, limmag_w); n++;
XtSetArg (args[n], XmNshadowType, XmSHADOW_ETCHED_OUT); n++;
smframe_w = XmCreateFrame (satform_w, "SatFrame", args, n);
XtManageChild (smframe_w);
/* make a drawing area for drawing the little map */
n = 0;
sda_w = XmCreateDrawingArea (smframe_w, "SaturnMap", args, n);
XtAddCallback (sda_w, XmNexposeCallback, sm_da_exp_cb, 0);
XtAddCallback (sda_w, XmNinputCallback, sm_da_input_cb,
(XtPointer)SO_MAIN);
XtManageChild (sda_w);
}
/* make the statistics form dialog */
static void
sm_create_ssform_w()
{
typedef struct {
int col; /* C* column code */
int moononly; /* applies to moons only */
char *collabel; /* column label */
char *suffix; /* suffix for plot/list/search name */
char *tip; /* widget tip */
} MoonColumn;
static MoonColumn mc[] = {
{CEV, 1, "E", "EVis",
"Whether geometrically visible from Earth"},
{CSV, 1, "S", "SVis",
"Whether in Sun light"},
{CPS, 1, "P", "PShad",
"Whether shadow falls on planet"},
{CTR, 1, "T", "Transit",
"Whether moon is transitting face of planet"},
{CX, 1, "X (+E)", "X",
"Apparent displacement east of planetary center"},
{CY, 1, "Y (+S)", "Y",
"Apparent displacement south of planetary center"},
{CZ, 1, "Z (+front)", "Z",
"Saturn radii towards Earth from planetary center"},
{CRA, 0, "RA", "RA",
"Right Ascension (to Main's settings)"},
{CDEC, 0, "Dec", "Dec",
"Declination (to Main's settings)"},
{CMAG, 0, "Mag", "Mag",
"Apparent visual magnitude"},
};
MoonData md[S_NMOONS];
Widget w;
Widget rc_w, title_w, sep_w;
Arg args[20];
int n;
int i;
/* just get moon names */
saturn_data (0.0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, md);
/* create form */
n = 0;
XtSetArg (args[n], XmNautoUnmanage, False); n++;
XtSetArg (args[n], XmNresizePolicy, XmRESIZE_ANY); n++;
XtSetArg (args[n], XmNverticalSpacing, 5); n++;
XtSetArg (args[n], XmNcolormap, xe_cm); n++;
XtSetArg (args[n], XmNdefaultPosition, False); n++;
ssform_w = XmCreateFormDialog (satshell_w, "SaturnStats", args, n);
set_something (ssform_w, XmNcolormap, (XtArgVal)xe_cm);
sr_reg (XtParent(ssform_w), "XEphem*SaturnStats.x",satcategory,0);
sr_reg (XtParent(ssform_w), "XEphem*SaturnStats.y",satcategory,0);
/* set some stuff in the parent DialogShell.
* setting XmNdialogTitle in the Form didn't work..
*/
n = 0;
XtSetArg (args[n], XmNtitle, "xephem Saturn info"); n++;
XtSetValues (XtParent(ssform_w), args, n);
/* make ring tilt label */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
title_w = XmCreateLabel (ssform_w, "SatTL", args, n);
XtManageChild (title_w);
set_xmstring (title_w, XmNlabelString, "Ring tilt (degrees, front +S)");
/* make the earth ring tilt r/c */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, title_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNorientation, XmHORIZONTAL); n++;
XtSetArg (args[n], XmNpacking, XmPACK_COLUMN); n++;
XtSetArg (args[n], XmNnumColumns, 1); n++;
rc_w = XmCreateRowColumn (ssform_w, "SatERC", args, n);
XtManageChild (rc_w);
n = 0;
w = XmCreateLabel (rc_w, "SatETMsg", args, n);
set_xmstring (w, XmNlabelString, "From Earth:");
XtManageChild (w);
n = 0;
XtSetArg (args[n], XmNuserData, "Saturn.ETilt"); n++;
ringet_w = XmCreatePushButton (rc_w, "SatET", args, n);
XtAddCallback (ringet_w, XmNactivateCallback, sm_activate_cb, 0);
wtip (ringet_w, "Ring tilt as seen from Earth");
XtManageChild (ringet_w);
/* make the sun tilt r/c */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, title_w); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNorientation, XmHORIZONTAL); n++;
XtSetArg (args[n], XmNpacking, XmPACK_COLUMN); n++;
XtSetArg (args[n], XmNnumColumns, 1); n++;
rc_w = XmCreateRowColumn (ssform_w, "SatSRC", args, n);
XtManageChild (rc_w);
n = 0;
w = XmCreateLabel (rc_w, "SatSTMsg", args, n);
set_xmstring (w, XmNlabelString, "From Sun:");
XtManageChild (w);
n = 0;
XtSetArg (args[n], XmNuserData, "Saturn.STilt"); n++;
ringst_w = XmCreatePushButton (rc_w, "SatST", args, n);
XtAddCallback (ringst_w, XmNactivateCallback, sm_activate_cb, 0);
wtip (ringst_w, "Ring tilt as seen from Sun");
XtManageChild (ringst_w);
/* make table title label */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, rc_w); n++;
XtSetArg (args[n], XmNtopOffset, 10); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
title_w = XmCreateLabel (ssform_w, "SatML", args, n);
XtManageChild (title_w);
set_xmstring (title_w, XmNlabelString,"Moon Positions (Saturn radii)");
/* make the moon table, one column at a time */
/* moon designator column */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, title_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNentryAlignment, XmALIGNMENT_BEGINNING); n++;
XtSetArg (args[n], XmNisAligned, True); n++;
rc_w = XmCreateRowColumn (ssform_w, "SatDes", args, n);
XtManageChild (rc_w);
n = 0;
w = XmCreateLabel (rc_w, "TL", args, n);
set_xmstring (w, XmNlabelString, "Tag");
wtip (w, "Roman Numeral sequence designation of moon");
XtManageChild (w);
for (i = 0; i < S_NMOONS; i++) {
char *tag = md[i].tag;
n = 0;
w = XmCreatePushButton (rc_w, "SatTag", args, n); /*PB for sz */
set_xmstring (w, XmNlabelString, tag ? tag : " ");
buttonAsButton (w, False);
XtManageChild (w);
}
/* moon name column */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, title_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNleftWidget, rc_w); n++;
XtSetArg (args[n], XmNentryAlignment, XmALIGNMENT_BEGINNING); n++;
XtSetArg (args[n], XmNisAligned, True); n++;
rc_w = XmCreateRowColumn (ssform_w, "SatName", args, n);
XtManageChild (rc_w);
n = 0;
w = XmCreateLabel (rc_w, "NL", args, n);
set_xmstring (w, XmNlabelString, "Name");
wtip (w, "Common name of body");
XtManageChild (w);
for (i = 0; i < S_NMOONS; i++) {
n = 0;
w = XmCreatePushButton (rc_w, "SatName", args, n); /*PB for sz*/
set_xmstring (w, XmNlabelString, md[i].full);
buttonAsButton (w, False);
XtManageChild (w);
}
/* make each of the X/Y/Z/Mag/RA/DEC information columns */
for (i = 0; i < XtNumber (mc); i++) {
MoonColumn *mp = &mc[i];
int j;
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, title_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNleftWidget, rc_w); n++;
XtSetArg (args[n], XmNentryAlignment, XmALIGNMENT_CENTER); n++;
XtSetArg (args[n], XmNisAligned, True); n++;
rc_w = XmCreateRowColumn (ssform_w, "SMIRC", args, n);
XtManageChild (rc_w);
n = 0;
w = XmCreateLabel (rc_w, "SatLab", args, n);
set_xmstring (w, XmNlabelString, mp->collabel);
if (mp->tip)
wtip (w, mp->tip);
XtManageChild (w);
for (j = 0; j < S_NMOONS; j++) {
char *sel;
if (!mp->moononly || j > 0) {
sel = XtMalloc (strlen(md[j].full) + strlen(mp->suffix)+2);
(void) sprintf (sel, "%s.%s", md[j].full, mp->suffix);
n = 0;
XtSetArg (args[n], XmNuserData, sel); n++;
w = XmCreatePushButton(rc_w, "SatPB", args, n);
XtAddCallback(w, XmNactivateCallback, sm_activate_cb, 0);
s_w[j][mp->col] = w;
} else {
n = 0;
w = XmCreateLabel(rc_w, "SatPB", args, n);
set_xmstring (w, XmNlabelString, " ");
}
XtManageChild (w);
}
}
/* make a separator */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, rc_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
sep_w = XmCreateSeparator (ssform_w, "Sep1", args, n);
XtManageChild (sep_w);
/* make a date/time stamp */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, sep_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
sdt_w = XmCreateLabel (ssform_w, "JDateStamp", args, n);
wtip (sdt_w, "Date and Time for which data are computed");
XtManageChild (sdt_w);
/* make a separator */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, sdt_w); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
sep_w = XmCreateSeparator (ssform_w, "Sep2", args, n);
XtManageChild (sep_w);
/* make the close button */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET); n++;
XtSetArg (args[n], XmNtopWidget, sep_w); n++;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNbottomOffset, 5); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_POSITION); n++;
XtSetArg (args[n], XmNleftPosition, 30); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_POSITION); n++;
XtSetArg (args[n], XmNrightPosition, 70); n++;
w = XmCreatePushButton (ssform_w, "Close", args, n);
XtAddCallback (w, XmNactivateCallback, sm_sstats_close_cb, 0);
wtip (w, "Close this dialog");
XtManageChild (w);
}
/* create stform_w, the top view dialog */
static void
sm_create_tvform_w()
{
Arg args[20];
int n;
/* create form */
n = 0;
XtSetArg (args[n], XmNautoUnmanage, False); n++;
XtSetArg (args[n], XmNdefaultPosition, False); n++;
XtSetArg (args[n], XmNcolormap, xe_cm); n++;
stform_w = XmCreateFormDialog (satshell_w, "SaturnTV", args, n);
set_something (stform_w, XmNcolormap, (XtArgVal)xe_cm);
XtAddCallback (stform_w, XmNunmapCallback, st_unmap_cb, 0);
XtAddCallback (stform_w, XmNmapCallback, st_map_cb, NULL);
/* set some stuff in the parent DialogShell.
* setting XmNdialogTitle in the Form didn't work..
*/
n = 0;
XtSetArg (args[n], XmNtitle, "xephem Saturn top view"); n++;
XtSetValues (XtParent(stform_w), args, n);
/* fill with a drawing area in a frame */
n = 0;
XtSetArg (args[n], XmNtopAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNbottomAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNleftAttachment, XmATTACH_FORM); n++;
XtSetArg (args[n], XmNrightAttachment, XmATTACH_FORM); n++;
stframe_w = XmCreateFrame (stform_w, "STVF", args, n);
XtManageChild (stframe_w);
n = 0;
stda_w = XmCreateDrawingArea (stframe_w, "SaturnTop", args, n);
XtAddCallback (stda_w, XmNexposeCallback, st_da_exp_cb, NULL);
XtAddCallback (stda_w, XmNinputCallback, sm_da_input_cb,
(XtPointer)SO_TOP);
XtManageChild (stda_w);
}
/* go through all the buttons pickable for plotting and set whether they
* should appear to look like buttons or just flat labels.
*/
static void
sm_set_buttons (whether)
int whether; /* whether setting up for plotting or for not plotting */
{
int i, j;
for (i = 0; i < S_NMOONS; i++)
for (j = 0; j < CNum; j++)
if (s_w[i][j])
buttonAsButton (s_w[i][j], whether);
buttonAsButton (ringet_w, whether);
buttonAsButton (ringst_w, whether);
}
/* callback when the Close button is activated on the stats menu */
/* ARGSUSED */
static void
sm_sstats_close_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XtUnmanageChild (ssform_w);
}
/* callback when the More Info button is activated */
/* ARGSUSED */
static void
sm_sstats_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XtManageChild (ssform_w);
sm_set_buttons(sm_selecting);
}
/* callback when the control menu is becoming visible
*/
/* ARGSUSED */
static void
sm_cpdmapping_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XtSetSensitive (tel_w, telIsOn());
}
/* callback from any of the option buttons.
* client points to global flag to set; some don't have any.
* in any case then just redraw everything.
*/
/* ARGSUSED */
static void
sm_option_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
if (client) {
int *flagp = (int *)client;
*flagp = XmToggleButtonGetState(w);
if (flagp == &topview) {
if (topview) {
if (!stform_w)
sm_create_tvform_w();
XtManageChild (stform_w);
} else
XtUnmanageChild (stform_w);
}
}
sm_update (mm_get_now(), 1);
}
/* callback from the scales changing.
* just redraw everything.
*/
/* ARGSUSED */
static void
sm_scale_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
sm_update (mm_get_now(), 1);
}
/* callback from any of the data menu buttons being activated.
*/
/* ARGSUSED */
static void
sm_activate_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
if (sm_selecting) {
char *name;
get_something (w, XmNuserData, (XtArgVal)&name);
register_selection (name);
}
}
/* callback from either expose or resize of the topview.
*/
/* ARGSUSED */
static void
st_da_exp_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
static int last_nx, last_ny;
XmDrawingAreaCallbackStruct *c = (XmDrawingAreaCallbackStruct *)call;
Window win = XtWindow(w);
Display *dsp = XtDisplay(w);
unsigned int nx, ny, bw, d;
Window root;
int x, y;
/* filter out a few oddball cases */
switch (c->reason) {
case XmCR_EXPOSE: {
/* turn off gravity so we get expose events for either shrink or
* expand.
*/
static int before;
XExposeEvent *e = &c->event->xexpose;
if (!before) {
XSetWindowAttributes swa;
unsigned long mask = CWBitGravity | CWBackingStore;
swa.bit_gravity = ForgetGravity;
swa.backing_store = NotUseful; /* we use a pixmap */
XChangeWindowAttributes (dsp, win, mask, &swa);
before = 1;
}
/* wait for the last in the series */
if (e->count != 0)
return;
break;
}
default:
printf ("Unexpected satform_w event. type=%d\n", c->reason);
abort();
}
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
if (!st_pm || (int)nx != last_nx || (int)ny != last_ny) {
if (st_pm)
XFreePixmap (dsp, st_pm);
st_pm = XCreatePixmap (dsp, win, nx, ny, d);
last_nx = nx;
last_ny = ny;
st_track_size();
sm_update (mm_get_now(), 1);
} else
XCopyArea (dsp, st_pm, win, s_fgc, 0, 0, nx, ny, 0, 0);
}
/* called whenever the topview scene is mapped. */
/* ARGSUSED */
static void
st_map_cb (wid, client, call)
Widget wid;
XtPointer client;
XtPointer call;
{
st_track_size();
}
/* set the width of the topview DrawingArea the same as the main window's.
* we also try to center it just above, but it doesn't always work.
*/
static void
st_track_size()
{
Dimension w, h;
Position mfx, mfy, mdx, mdy;
Position sdy;
Arg args[20];
int n;
/* set widths equal */
n = 0;
XtSetArg (args[n], XmNwidth, &w); n++;
XtGetValues (sda_w, args, n);
n = 0;
XtSetArg (args[n], XmNwidth, w); n++;
XtSetValues (stda_w, args, n);
n = 0;
XtSetArg (args[n], XmNheight, &h); n++;
XtGetValues (stda_w, args, n);
/* set locations -- allow for different stuff on top of drawingareas */
n = 0;
XtSetArg (args[n], XmNx, &mfx); n++;
XtSetArg (args[n], XmNy, &mfy); n++;
XtGetValues (satshell_w, args, n);
n = 0;
XtSetArg (args[n], XmNx, &mdx); n++;
XtSetArg (args[n], XmNy, &mdy); n++;
XtGetValues (smframe_w, args, n);
n = 0;
XtSetArg (args[n], XmNy, &sdy); n++;
XtGetValues (stframe_w, args, n);
n = 0;
XtSetArg (args[n], XmNx, mfx+mdx); n++;
XtSetArg (args[n], XmNy, mfy - h - sdy - mdy - 20); n++;
XtSetValues (stform_w, args, n);
}
/* callback when topview dialog is unmapped */
/* ARGSUSED */
static void
st_unmap_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XmToggleButtonSetState (topview_w, False, True);
}
/* callback when main shell is popped down */
/* ARGSUSED */
static void
sm_popdown_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XtUnmanageChild (ssform_w);
XtUnmanageChild (stform_w);
if (sm_pm) {
XFreePixmap (XtDisplay(sda_w), sm_pm);
sm_pm = (Pixmap) NULL;
}
/* free any field stars */
if (fstars) {
free ((void *)fstars);
fstars = NULL;
nfstars = 0;
}
/* stop movie that might be running */
mm_movie (0.0);
/* register we are now down */
setXRes (sm_viewupres(), "0");
}
/* callback from the main Close button */
/* ARGSUSED */
static void
sm_close_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
/* let pop down do all the work */
XtPopdown (satshell_w);
}
/* callback to add scene to movie loop */
/* ARGSUSED */
static void
sm_mloop_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
ml_add (sm_pm, dt_w);
}
/* callback from the Movie button
*/
/* ARGSUSED */
static void
sm_anim_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
/* smoother if turn off the sky background */
skybkg = 0;
XmToggleButtonSetState (skybkg_w, False, False);
mm_movie (MOVIE_STEPSZ);
}
/* callback from either expose or resize of the drawing area.
*/
/* ARGSUSED */
static void
sm_da_exp_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
static int last_nx, last_ny;
XmDrawingAreaCallbackStruct *c = (XmDrawingAreaCallbackStruct *)call;
Window win = XtWindow(w);
Display *dsp = XtDisplay(w);
unsigned int nx, ny, bw, d;
Window root;
int x, y;
/* filter out a few oddball cases */
switch (c->reason) {
case XmCR_EXPOSE: {
/* turn off gravity so we get expose events for either shrink or
* expand.
*/
static int before;
XExposeEvent *e = &c->event->xexpose;
if (!before) {
XSetWindowAttributes swa;
unsigned long mask = CWBitGravity | CWBackingStore;
swa.bit_gravity = ForgetGravity;
swa.backing_store = NotUseful; /* we use a pixmap */
XChangeWindowAttributes (dsp, win, mask, &swa);
before = 1;
}
/* wait for the last in the series */
if (e->count != 0)
return;
break;
}
default:
printf ("Unexpected satform_w event. type=%d\n", c->reason);
abort();
}
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
if (!sm_pm || (int)nx != last_nx || (int)ny != last_ny) {
if (sm_pm)
XFreePixmap (dsp, sm_pm);
sm_pm = XCreatePixmap (dsp, win, nx, ny, d);
last_nx = nx;
last_ny = ny;
if (topview)
st_track_size();
sm_update (mm_get_now(), 1);
} else
XCopyArea (dsp, sm_pm, win, s_fgc, 0, 0, nx, ny, 0, 0);
}
/* callback from mouse or keyboard input over either drawing area
* client is one of SOIdx.
*/
/* ARGSUSED */
static void
sm_da_input_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XmDrawingAreaCallbackStruct *c = (XmDrawingAreaCallbackStruct *)call;
ScreenObj *sop;
SOIdx soidx;
XEvent *ev;
int x, y;
/* get x and y value iff it was from mouse button 3 */
if (c->reason != XmCR_INPUT)
return;
ev = c->event;
if (ev->xany.type != ButtonPress || ev->xbutton.button != 3)
return;
x = ev->xbutton.x;
y = ev->xbutton.y;
/* find something close on the screen */
soidx = (SOIdx) client;
sop = close_screenobj (soidx, x, y);
if (!sop && soidx == SO_MAIN) {
/* try shadows */
soidx = SO_SHADOW;
sop = close_screenobj (soidx, x, y);
}
if (!sop)
return;
/* put info in popup, smpu_w, creating it first if necessary */
if (!smpu_w)
sm_create_popup();
sm_fill_popup (sop, soidx == SO_SHADOW);
/* put it on screen */
XmMenuPosition (smpu_w, (XButtonPressedEvent *)ev);
XtManageChild (smpu_w);
}
/* create the (unmanaged for now) popup menu in smpu_w. */
static void
sm_create_popup()
{
static Widget *puw[] = {
&smpu_name_w,
&smpu_ra_w,
&smpu_dec_w,
&smpu_mag_w,
};
Widget w;
Arg args[20];
int n;
int i;
n = 0;
XtSetArg (args[n], XmNisAligned, True); n++;
XtSetArg (args[n], XmNentryAlignment, XmALIGNMENT_CENTER); n++;
smpu_w = XmCreatePopupMenu (sda_w, "SatPU", args, n);
/* stack everything up in labels */
for (i = 0; i < XtNumber(puw); i++) {
n = 0;
w = XmCreateLabel (smpu_w, "SPUL", args, n);
XtManageChild (w);
*puw[i] = w;
}
}
/* put up a popup at ev with info about sop */
static void
sm_fill_popup (sop, justname)
ScreenObj *sop;
int justname;
{
char *name;
double ra, dec, mag;
char buf[64], buf2[64];
name = sop->o.o_name;
(void) sprintf (buf2, "%.*s", MAXNM, name);
set_xmstring (smpu_name_w, XmNlabelString, buf2);
if (justname) {
XtUnmanageChild (smpu_mag_w);
XtUnmanageChild (smpu_ra_w);
XtUnmanageChild (smpu_dec_w);
} else {
mag = get_mag(&sop->o);
(void) sprintf (buf2, " Mag: %.3g", mag);
set_xmstring (smpu_mag_w, XmNlabelString, buf2);
XtManageChild (smpu_mag_w);
ra = sop->o.s_ra;
fs_ra (buf, ra);
(void) sprintf (buf2, " RA: %s", buf);
set_xmstring (smpu_ra_w, XmNlabelString, buf2);
XtManageChild (smpu_ra_w);
dec = sop->o.s_dec;
fs_prdec (buf, dec);
(void) sprintf (buf2, " Dec: %s", buf);
set_xmstring (smpu_dec_w, XmNlabelString, buf2);
XtManageChild (smpu_dec_w);
}
}
/* callback from the Help all button
*/
/* ARGSUSED */
static void
sm_help_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
static char *msg[] = {
"This is a simple schematic depiction of Saturn and its moons.",
};
hlp_dialog ("Saturn", msg, XtNumber(msg));
}
/* callback from a specific Help button.
* client is a string to use with hlp_dialog().
*/
/* ARGSUSED */
static void
sm_helpon_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
hlp_dialog ((char *)client, NULL, 0);
}
/* callback from the goto control.
*/
/* ARGSUSED */
static void
sm_goto_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
Obj *op = db_basic (SATURN);
telGoto (op);
}
/* add one entry to the given global screenobj array.
*/
static void
add_screenobj (soidx, op, x, y)
SOIdx soidx;
Obj *op;
int x, y;
{
char *mem = (char *) screenobj[soidx];
int nmem = nscreenobj[soidx];
ScreenObj *sop;
/* grow screenobj by one */
if (mem)
mem = realloc ((char *)mem, (nmem+1)*sizeof(ScreenObj));
else
mem = malloc (sizeof(ScreenObj));
if (!mem) {
xe_msg (0, "Out of memory -- %s will not be pickable", op->o_name);
return;
}
screenobj[soidx] = (ScreenObj *) mem;
sop = &screenobj[soidx][nscreenobj[soidx]++];
/* fill new entry */
sop->o = *op;
sop->x = x;
sop->y = y;
}
/* reclaim any existing screenobj entries from the given collection */
static void
reset_screenobj(soidx)
SOIdx soidx;
{
if (screenobj[soidx]) {
free ((char *)screenobj[soidx]);
screenobj[soidx] = NULL;
}
nscreenobj[soidx] = 0;
}
/* find the entry in the given screenobj closest to [x,y] within MINR.
* if found return the ScreenObj *, else NULL.
*/
static ScreenObj *
close_screenobj (soidx, x, y)
SOIdx soidx;
int x, y;
{
ScreenObj *scop = screenobj[soidx];
ScreenObj *minsop = NULL;
int nobj = nscreenobj[soidx];
int minr = 2*MINR;
int i;
for (i = 0; i < nobj; i++) {
ScreenObj *sop = &scop[i];
int r = abs(x - sop->x) + abs(y - sop->y);
if (r < minr) {
minr = r;
minsop = sop;
}
}
if (minr <= MINR)
return (minsop);
else
return (NULL);
}
/* callback from Print control.
*/
/* ARGSUSED */
static void
sm_print_cb (w, client, call)
Widget w;
XtPointer client;
XtPointer call;
{
XPSAsk ("Saturn", sm_print);
}
/* proceed to generate a postscript file.
* call XPSClose() when finished.
*/
static void
sm_print ()
{
Display *dsp = XtDisplay (sda_w);
Now *np = mm_get_now();
unsigned int w, h, bw, d;
Window root;
int x, y;
if (!sm_ison()) {
xe_msg (1, "Saturn must be open to save a file.");
XPSClose();
return;
}
watch_cursor(1);
/* get size of the rendering area */
XGetGeometry(dsp, sm_pm, &root, &x, &y, &w, &h, &bw, &d);
/* draw in an area 5.5w x 5.5h centered 1in down from top */
if (w >= h)
XPSXBegin (sm_pm, 0, 0, w, h, 1*72, 10*72, (int)(5.5*72));
else {
int pw = (int)(72*5.5*w/h+.5); /* width on paper when 5.5 hi */
XPSXBegin (sm_pm, 0, 0, w, h, (int)((8.5*72-pw)/2), 10*72, pw);
}
/* redraw */
sm_update (np, 1);
/* no more X captures */
XPSXEnd();
/* add some extra info */
sm_ps_annotate (np);
/* finished */
XPSClose();
watch_cursor(0);
}
static void
sm_ps_annotate (np)
Now *np;
{
int ctrx = (int)(8.5*72/2);
Obj *eop = db_basic (SUN);
Obj *sop = db_basic (SATURN);
MoonData md[S_NMOONS];
double etilt, stilt;
double tzmjd, satsize;
char *bp, buf[1024], buf2[32], dir[256];
int n, x, y, i;
/* compute all info */
sprintf (buf, "%s/auxil", getShareDir());
bp = expand_home (buf);
saturn_data (mjd, bp, eop, sop, &satsize, &etilt, &stilt, &pole_ra,
&pole_dec, md);
/* border */
y = (int)AROWY(PRTR+.5);
sprintf (buf, "newpath 72 %d moveto 540 %d lineto stroke\n", y, y);
XPSDirect (buf);
/* title */
y = AROWY(PRTR-2);
if (pref_get(PREF_ZONE) == PREF_UTCTZ) {
tzmjd = mjd;
bp = "UTC";
} else {
tzmjd = mjd-tz/24;
bp = tznm;
}
fs_time (buf, mjd_hr(tzmjd));
fs_date (buf2, pref_get(PREF_DATE_FORMAT), mjd_day(tzmjd));
sprintf (dir,"(XEphem Saturn View at %s %s %s, JD %13.5f) %d %d cstr\n",
buf, buf2, bp, mjd+MJD0, ctrx, y);
XPSDirect (dir);
/* ring tilts */
sprintf (buf,
"Ring tilt, degrees, front +S: From Earth = %7.3f, From Sun = %7.3f",
raddeg(etilt), raddeg(stilt));
y = AROWY(PRTR-3);
sprintf (dir, "(%s) %d %d cstr\n", buf, ctrx, y);
XPSDirect (dir);
/* location if topocentric */
if (pref_get(PREF_EQUATORIAL) == PREF_TOPO) {
char s, *site;
bp = buf;
bp += sprintf (bp, "From ");
site = mm_getsite();
if (site)
bp += sprintf (bp, "%s at ", XPSCleanStr(site,strlen(site)));
/* N.B. without the s= business the sign is printed wrong!! */
fs_sexa (buf2, raddeg(fabs(lat)), 3, 3600);
bp += sprintf (bp, "Latitude %s %c ", buf2, s=(lat<0 ? 'S' : 'N'));
fs_sexa (buf2, raddeg(fabs(lng)), 4, 3600);
bp += sprintf (bp, "Longitude %s %c", buf2, s=(lng<0 ? 'W' : 'E'));
sprintf (dir, "(%s) %d %d cstr\n", buf, ctrx, AROWY(PRTR-4));
XPSDirect (dir);
}
/* table heading */
bp = buf;
bp += sprintf (bp, "%s ", pref_get(PREF_EQUATORIAL) == PREF_TOPO ?
"Topocentric" : "Geocentric");
if (epoch == EOD)
bp += sprintf (bp, "Apparent EOD");
else {
double tmp;
mjd_year (epoch, &tmp);
bp += sprintf (bp, "Astrometric %.2f", tmp);
}
y = AROWY(PRTR-5);
sprintf (dir, "(%s Moon Positions, XYZ in Saturn radii) %d %d cstr\n",
buf, ctrx,y);
XPSDirect (dir);
/* stats for each row */
for (i = 0; i < S_NMOONS; i++) {
y = AROWY(PRTR-7-i);
x = 65;
if (i == 0) {
sprintf (dir, "(Tag) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
if (md[i].tag) {
n = sprintf (buf, "%-4s", md[i].tag);
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
} else
n = 4;
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(Name) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%-9s", md[i].full);
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(E) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%1.0f ", (double)md[i].evis);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(S) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%1.0f ", (double)md[i].svis);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(P) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%1.0f ", (double)md[i].pshad);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(T) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%1.0f ", (double)md[i].trans);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "( X +E) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%7.3f ", md[i].x);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "( Y +S) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%7.3f ", md[i].y);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "( Z +front) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
n = sprintf (buf, "%7.3f ", md[i].z);
if (i > 0) {
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
x += n*PRCW;
if (i == 0) {
sprintf (dir, "( RA) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
fs_sexa (buf, radhr(md[i].ra), 2, 360000);
n = 11;
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
x += n*PRCW;
if (i == 0) {
sprintf (dir, "( Dec) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
fs_sexa (buf, raddeg(md[i].dec), 3, 36000);
n = 11;
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
x += n*PRCW;
if (i == 0) {
sprintf (dir, "(Mag) %d %d lstr\n", x, AROWY(PRTR-6-i));
XPSDirect (dir);
}
sprintf (buf, "%4.1f ", md[i].mag);
sprintf (dir, "(%s) %d %d lstr\n", buf, x, y);
XPSDirect (dir);
}
}
/* given a tilt return suffix of closest image, sign same as tilt */
static int
sm_closesttilt (tilt)
double tilt;
{
double minerr = 1e10;
int mini = 0;
int sign;
int i;
tilt = raddeg(tilt);
if (tilt < 0) {
tilt = -tilt;
sign = -1;
} else
sign = 1;
for (i = 0; i < XtNumber(simtilts); i++) {
double err = fabs(simtilts[i] - tilt);
if (err < minerr) {
mini = i;
minerr = err;
}
}
return (simtilts[mini] * sign);
}
/* make sure the proper gif is loaded for the given ring tilt.
* harmless if called again.
* return 0 if ok else -1.
*/
static int
sm_getgif(dsp, tilt)
Display *dsp;
double tilt; /* ring tilt from earth, front +S rads */
{
#define BOGUSCT 12389
static int lastct = BOGUSCT; /* last index, sign set from tilt */
unsigned char *gif;
char *smapbasenm;
int ngif;
char fn[256];
char buf[256];
int w, h;
FILE *fp;
int ct;
/* find image index with closest tilt, done if same as last time */
ct = sm_closesttilt (tilt);
if (ct == lastct)
return (0);
/* read in the gif */
sprintf (fn, "%s/auxil/saturn%02d.gif", getShareDir(), abs(ct));
smapbasenm = strrchr (fn, '/') + 1;
fp = fopenh (fn, "r");
if (!fp) {
xe_msg (1, "%s:\n%s", fn, syserrstr());
lastct = BOGUSCT;
return (-1);
}
if (fseek (fp, 0L, SEEK_END) < 0) {
xe_msg (1, "%s:\nCan not seek", smapbasenm);
fclose (fp);
lastct = BOGUSCT;
return (-1);
}
ngif = ftell (fp);
gif = (unsigned char *) XtMalloc (ngif);
rewind (fp);
if (fread (gif, ngif, 1, fp) != 1) {
XtFree ((char *)gif);
xe_msg (1, "%s:\n%s", smapbasenm, syserrstr());
fclose (fp);
lastct = BOGUSCT;
return (-1);
}
fclose (fp);
/* explode */
if (gif2X (dsp, xe_cm, gif, ngif, &w, &h, &smappix,
smapxcols, buf) < 0) {
xe_msg (1, "%s:\n%s", smapbasenm, buf);
XtFree ((char *)gif);
lastct = BOGUSCT;
return (-1);
}
XtFree ((char *)gif);
if (w != SMAPW || h != SMAPH) {
xe_msg (1, "%s:\nincorrect file size", smapbasenm);
lastct = BOGUSCT;
return (-1);
}
/* flip t/b if tilt < 0 */
if (tilt < 0) {
for (h = 0; h < SMAPH/2; h++) {
unsigned char rowtmp[SMAPW];
memcpy (rowtmp, &smappix[h*SMAPW], sizeof(rowtmp));
memcpy (&smappix[h*SMAPW], &smappix[(SMAPH-h-1)*SMAPW],
sizeof(rowtmp));
memcpy (&smappix[(SMAPH-h-1)*SMAPW], rowtmp, sizeof(rowtmp));
}
}
/* ready */
lastct = ct;
return (0);
#undef BOGUSCT
}
/* fill win with front image of Saturn. sz is pixels for 1 planet diameter.
* lx and ly are position of upper left corner of square surrounding planet.
* factoids: default orientation is E on right, S on top.
* return 0 if ok, else -1
*/
static int
sm_fimage (dsp, win, lx, ty, sz, tilt)
Display *dsp; /* Display */
Drawable win; /* drawable */
int lx, ty, sz; /* left x, top y, sz */
double tilt; /* ring tilt from earth, front +S rads */
{
Obj *sop = db_basic (SATURN);
XImage *xip;
Pixel gbg;
int imsz;
int depth;
int bpp;
int nbytes;
char *data;
int imx, imy;
double scale;
double tvc, pvc, theta, phi, sa, ca;
/* load the proper gif */
if (sm_getgif(dsp, tilt) < 0)
return(-1);
/* assume gif height is exactly one planet diameter, and width just
* contains rings. create image that is square with width equal to
* gif width at same scale.
*/
scale = (double)SMAPH/sz;
imsz = sz*SMAPW/SMAPH;
/* create a working image */
get_something (sda_w, XmNdepth, (XtArgVal)&depth);
bpp = depth>=17 ? 32 : (depth >= 9 ? 16 : 8);
nbytes = imsz*imsz*bpp/8;
data = XtMalloc (nbytes);
xip = XCreateImage (dsp, DefaultVisual (dsp, DefaultScreen(dsp)),
/* depth */ depth,
/* format */ ZPixmap,
/* offset */ 0,
/* data */ data,
/* width */ imsz,
/* height */ imsz,
/* pad */ bpp,
/* bpl */ 0);
xip->bitmap_bit_order = LSBFirst;
xip->byte_order = LSBFirst;
/* use background color wherever gif pixels match one in its corner,
* assumed to be gif's background color
*/
gbg = smapxcols[(int)smappix[0]].pixel;
/* sky-plane rotation */
tvc = PI/2.0 - sop->s_dec;
pvc = sop->s_ra;
theta = PI/2.0 - pole_dec;
phi = pole_ra;
sa = sin(tvc)*sin(theta)*(cos(pvc)*sin(phi) - sin(pvc)*cos(phi));
ca = sqrt (1.0 - sa*sa);
/* fill xip, include effects of sky plane rotation about center */
for (imy = 0; imy < imsz; imy++) {
int imycf = (flip_tb ? imsz - imy - 1 : imy) - imsz/2;
for (imx = 0; imx < imsz; imx++) {
int imxcf = (flip_lr ? imsz - imx - 1 : imx) - imsz/2;
int gx= (int)floor((imxcf*ca - imycf*sa)*scale + SMAPW/2 + .5);
int gy= (int)floor((imxcf*sa + imycf*ca)*scale + SMAPH/2 + .5);
unsigned long p;
if (gx < 0 || gx >= SMAPW || gy < 0 || gy >= SMAPH)
p = sbg_p;
else {
p = smapxcols[(int)smappix[gy*SMAPW+gx]].pixel;
if (p == gbg)
p = sbg_p;
}
XPutPixel (xip, imx, imy, p);
}
}
/* copy to win */
XPutImage (dsp, win, s_fgc, xip, 0, 0, lx-(imsz-sz)/2, ty-(imsz-sz)/2, imsz, imsz);
/* done */
free ((void *)xip->data);
xip->data = NULL;
XDestroyImage (xip);
return (0);
}
/* given the loc of the moons, draw a nifty little picture.
* also save resulting screen locs of everything in the screenobj array.
* scale of the locations is in terms of saturn radii == 1.
* unflipped view is S up, E right.
* positive tilt means the front rings are tilted southward, in rads.
* planet itself is in md[0], moons in md[1..S_NMOONS-1].
* +md[].x: East, sat radii
* +md[].y: South, sat radii
* +md[].z: in front, sat radii
*/
static void
sm_draw_map (sop, etilt, satsize, md)
Obj *sop;
double etilt;
double satsize;
MoonData md[S_NMOONS];
{
#define RLW 3 /* ring line width, pixels */
#define IRR 1.528 /* inner edge of ring system */
#define ORR 2.267 /* outter edge of A ring */
static int noim;
Display *dsp = XtDisplay(sda_w);
Window win;
Window root;
double scale;
int sv;
int fmag;
char c;
int x, y;
int irw, orw, irx, iry, orx, ory;
unsigned int nx, ny, bw, d;
int ns = flip_tb ? -1 : 1;
int ew = flip_lr ? -1 : 1;
int scale1;
int i, b;
/* first the main graphic */
win = XtWindow (sda_w);
XmScaleGetValue (limmag_w, &fmag);
XmScaleGetValue (scale_w, &sv);
scale = pow(MAXSCALE, sv/100.0);
/* get size and erase */
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
XFillRectangle (dsp, sm_pm, s_bgc, 0, 0, nx, ny);
scale1 = (int)floor(MAPSCALE(1)+0.5);
/* prepare for a new list of things on the screen */
reset_screenobj(SO_MAIN);
reset_screenobj(SO_SHADOW);
/* draw saturn in center with unit radius */
if (noim ||
sm_fimage(dsp,sm_pm,nx/2-scale1,ny/2-scale1,2*scale1-1,etilt)<0){
/* can't load image so draw graphically.
* rings of radius IRR and ORR.
* draw rings in front of planet using xor.
* positive tilt means the front rings are tilted southward.
* always draw the solid s_fgc last in case we are near the ring
* plane.
*/
int irh = (int)(MAPSCALE(2*IRR*fabs(sin(etilt))));
int orh = (int)(MAPSCALE(2*ORR*fabs(sin(etilt))));
irw = (int)(MAPSCALE(2*IRR));
orw = (int)MAPSCALE(2*ORR);
irx = (int)(nx/2 - MAPSCALE(IRR));
iry = (int)(ny/2 - MAPSCALE(IRR*fabs(sin(etilt))));
orx = (int)(nx/2 - MAPSCALE(ORR));
ory = (int)(ny/2 - MAPSCALE(ORR*fabs(sin(etilt))));
XPSFillArc(dsp, sm_pm, s_fgc, nx/2-scale1, ny/2-scale1, 2*scale1-1,
2*scale1-1, 0, 360*64);
if (irh < RLW || orh < RLW) {
/* too near the ring plane to draw a fill ellipse */
XPSDrawLine (dsp, sm_pm, s_fgc, orx, ny/2, nx-orx, ny/2);
} else {
/* near rings are up if tilt is positive and we are not
* flipping n/s or if tilt is negative and we are flipping n/s.
*/
int nearup = ((etilt>0.0) == !flip_tb);
XPSDrawArc (dsp, sm_pm, s_xgc, irx, iry, irw, irh,
nearup ? 0 : 180*64, 180*64-1);
XPSDrawArc (dsp, sm_pm, s_xgc, orx, ory, orw, orh,
nearup ? 0 : 180*64, 180*64-1);
XPSDrawArc (dsp, sm_pm, s_fgc, irx, iry, irw, irh,
nearup ? 180*64 : 0, 180*64-1);
XPSDrawArc (dsp, sm_pm, s_fgc, orx, ory, orw, orh,
nearup ? 180*64 : 0, 180*64-1);
}
/* don't try image again */
noim = 1;
} else
XPSPixmap (sm_pm, nx, ny, xe_cm, s_bgc, 1);
add_screenobj (SO_MAIN, sop, nx/2, ny/2);
/* draw background objects, if desired.
* go out plenty wide to pick up moon during occultations.
*/
if (skybkg)
sky_background(sm_pm, nx, ny, fmag, md[0].ra, md[0].dec,
satsize/MAPSCALE(2), degrad(.5), flip_tb, flip_lr);
/* draw labels */
c = flip_lr ? 'W' : 'E';
XPSDrawString(dsp, sm_pm, s_fgc, nx-s_cw-1, ny/2-2, &c, 1);
c = flip_tb ? 'N' : 'S';
XPSDrawString(dsp, sm_pm, s_fgc, (nx-s_cw)/2-1, s_fs->ascent, &c, 1);
/* draw 1' calibration line */
if (tags)
sm_calibline (dsp, sm_pm, s_fgc, nx/2, 5*ny/6, "1'", s_cw*2, s_ch+4,
(int)MAPSCALE(degrad(1.0/60.0)/(satsize/2)));
/* draw each moon
*/
for (i = 1; i < S_NMOONS; i++) {
double mx = md[i].x;
double my = md[i].y;
double mag = md[i].mag;
int diam;
Obj o;
/* skip if behind or in shadow */
if (!md[i].evis || !md[i].svis)
continue;
diam = magdiam (fmag, 1, satsize/(2*scale1), mag, 0.0);
if (brmoons)
diam += 3;
if (diam <= 0)
continue; /* too faint */
x = XCORD(mx);
y = YCORD(my);
if (diam == 1)
XPSDrawPoint(dsp, sm_pm, s_xgc, x, y);
else
XPSDrawStar (dsp, sm_pm, s_xgc, x-diam/2, y-diam/2, diam);
/* add object to list of screen objects drawn */
memset (&o, 0, sizeof(o));
(void) strcpy (o.o_name, md[i].full);
set_smag (&o, mag);
o.s_ra = (float)md[i].ra;
o.s_dec = (float)md[i].dec;
add_screenobj (SO_MAIN, &o, x, y);
/* shadow, if in front */
if (md[i].pshad) {
int scx = XCORD(md[i].sx);
int scy = YCORD(md[i].sy);
XPSDrawStar (dsp, sm_pm, s_bgc, scx-diam/2, scy-diam/2, diam);
sprintf (o.o_name, "%s shadow", md[i].full);
add_screenobj (SO_SHADOW, &o, scx, scy);
}
/* labels last to cover all */
if (tags && md[i].tag)
XPSDrawString(dsp, sm_pm, s_xgc, x-s_cw/2, y+2*s_ch,
md[i].tag, strlen(md[i].tag));
}
ano_draw (sda_w, sm_pm, sm_ano, 0);
XCopyArea (dsp, sm_pm, win, s_fgc, 0, 0, nx, ny, 0, 0);
/* then the top view, if desired */
if (!topview || !st_pm) /* let expose make new pixmap */
return;
/* get size and erase */
win = XtWindow (stda_w);
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
XFillRectangle (dsp, st_pm, s_bgc, 0, 0, nx, ny);
/* draw saturn in center with unit radius */
i = (int)(ew*64*raddeg(asin(sin(degrad(sop->s_elong))/sop->s_sdist)));
XPSFillArc(dsp, st_pm, s_fgc, nx/2-scale1, ny/2-scale1, 2*scale1-1,
2*scale1-1, -i, -180*64);
reset_screenobj(SO_TOP);
add_screenobj (SO_TOP, sop, nx/2, ny/2);
/* rings of radius IRR and ORR... simple arcs from up here */
irw = (int)(MAPSCALE(2*IRR));
orw = (int)(MAPSCALE(2*ORR));
irx = (int)(nx/2 - MAPSCALE(IRR));
iry = (int)(ny/2 - MAPSCALE(IRR));
orx = (int)(nx/2 - MAPSCALE(ORR));
ory = (int)(ny/2 - MAPSCALE(ORR));
b = (int)(64*raddeg(acos(1./IRR)));
XDrawArc (dsp, st_pm, s_xgc, irx, iry, irw, irw, b-i, -(180*64+2*b));
b = (int)(64*raddeg(acos(1./ORR)));
XDrawArc (dsp, st_pm, s_xgc, orx, ory, orw, orw, b-i, -(180*64+2*b));
/* draw each moon
*/
for (i = 1; i < S_NMOONS; i++) {
double mx = md[i].x;
double mz = md[i].z;
double mag = md[i].mag;
int diam;
Obj o;
if (!md[i].svis)
continue;
diam = magdiam (fmag, 1, satsize/(2*scale1), mag, 0.0);
if (brmoons)
diam += 3;
if (diam <= 0)
continue; /* too faint */
x = XCORD(mx);
y = ZCORD(mz);
if (diam == 1)
XDrawPoint (dsp, st_pm, s_xgc, x, y);
else
XFillArc (dsp, st_pm, s_xgc, x-diam/2, y-diam/2, diam, diam,
0, 360*64);
/* add object to list of screen objects drawn */
memset (&o, 0, sizeof(o));
(void) strcpy (o.o_name, md[i].full);
set_smag (&o, mag);
o.s_ra = (float)md[i].ra;
o.s_dec = (float)md[i].dec;
add_screenobj (SO_TOP, &o, x, y);
if (tags && md[i].tag)
XDrawString(dsp, st_pm, s_xgc, x-s_cw/2, y+2*s_ch,
md[i].tag, strlen(md[i].tag));
}
/* draw label towards earth */
if (tags) {
XPoint xp[5];
XDrawString(dsp, st_pm, s_fgc, nx/2, ny-s_ch, "Earth", 5);
xp[0].x = nx/2 - 15; xp[0].y = ny - 2*s_ch;
xp[1].x = 0; xp[1].y = 3*s_ch/2;
xp[2].x = -5; xp[2].y = -3*s_ch/4;
xp[3].x = 10; xp[3].y = 0;
xp[4].x = -5; xp[4].y = 3*s_ch/4;
XDrawLines (dsp, st_pm, s_fgc, xp, 5, CoordModePrevious);
}
ano_draw (stda_w, st_pm, st_ano, 0);
XCopyArea (dsp, st_pm, win, s_fgc, 0, 0, nx, ny, 0, 0);
}
/* convert saturn X/Y to/from X windows coords depending on w2x.
* return whether visible.
*/
static int
sm_ano (double *xS, double *sY, int *xp, int *yp, int w2x, int arg)
{
Display *dsp = XtDisplay (sda_w);
Window win = XtWindow (sda_w);
int ns = flip_tb ? -1 : 1;
int ew = flip_lr ? -1 : 1;
unsigned int nx, ny, bw, d;
Window root;
double scale;
int x, y;
int sv;
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
XmScaleGetValue (scale_w, &sv);
scale = pow(MAXSCALE, sv/100.0);
if (w2x) {
*xp = XCORD(*xS);
*yp = YCORD(*sY);
} else {
*xS = 2*NORM*(*xp-(int)nx/2.0)/(ew*(int)nx*scale);
*sY = 2*NORM*((int)ny/2.0-*yp)/(ns*(int)ny*scale);
}
return (*xp>=0 && *xp<nx && *yp>=0 && *yp<ny);
}
/* convert saturn X/Z to/from X windows coords depending on w2x.
* return whether visible.
*/
static int
st_ano (double *xS, double *jZ, int *xp, int *yp, int w2x, int arg)
{
Display *dsp = XtDisplay (stda_w);
Window win = XtWindow (stda_w);
int ew = flip_lr ? -1 : 1;
unsigned int nx, ny, bw, d;
Window root;
double scale;
int x, y;
int sv;
XGetGeometry(dsp, win, &root, &x, &y, &nx, &ny, &bw, &d);
XmScaleGetValue (scale_w, &sv);
scale = pow(MAXSCALE, sv/100.0);
if (w2x) {
*xp = XCORD(*xS);
*yp = ZCORD(*jZ);
} else {
*xS = 2*NORM*(*xp-(int)nx/2.0)/(ew*(int)nx*scale);
*jZ = 2*NORM*(*yp-(int)ny/2)/((int)ny*scale);
}
return (*xp>=0 && *xp<nx && *yp>=0 && *yp<ny);
}
static void
make_gcs ()
{
Display *dsp = XtDisplay(toplevel_w);
Window win = XtWindow(toplevel_w);
XFontStruct *fsp;
XGCValues gcv;
unsigned int gcm;
Pixel fg;
get_views_font (dsp, &s_fs);
s_cw = s_fs->max_bounds.width;
s_ch = s_fs->max_bounds.ascent + s_fs->max_bounds.descent;
gcm = GCForeground | GCFont;
get_color_resource (toplevel_w, "saturnColor", &fg);
gcv.foreground = fg;
gcv.font = s_fs->fid;
s_fgc = XCreateGC (dsp, win, gcm, &gcv);
gcm = GCForeground;
get_color_resource (toplevel_w, "SaturnBackground", &sbg_p);
gcv.foreground = sbg_p;
s_bgc = XCreateGC (dsp, win, gcm, &gcv);
gcm = GCForeground | GCFunction | GCFont;
fsp = getXResFont ("moonsFont");
gcv.foreground = fg ^ sbg_p;
gcv.function = GXxor;
gcv.font = fsp->fid;
s_xgc = XCreateGC (dsp, win, gcm, &gcv);
}
/* draw a calibration line l pixels long centered at [xc,yc] marked with tag
* with is in a bounding box tw x th.
*/
static void
sm_calibline (dsp, win, gc, xc, yc, tag, tw, th, l)
Display *dsp;
Drawable win;
GC gc;
int xc, yc;
char *tag;
int tw, th;
int l;
{
int lx = xc - l/2;
int rx = lx + l;
XPSDrawLine (dsp, win, gc, lx, yc, rx, yc);
XPSDrawLine (dsp, win, gc, lx, yc-3, lx, yc+3);
XPSDrawLine (dsp, win, gc, rx, yc-3, rx, yc+3);
XPSDrawString (dsp, win, gc, xc-tw/2, yc+th, tag, strlen(tag));
}
/* draw all database objects in a small sky patch about the given center.
* get field stars too if enabled and we have moved enough.
* save objects and screen locs in the global screenobj array for picking.
* this is used to draw the backgrounds for the planet closeups.
* Based on work by: Dan Bruton <WDB3926@acs.tamu.edu>
*/
static void
sky_background (win, w, h, fmag, ra0,dec0,scale,rad,fliptb,fliplr)
Drawable win; /* window to draw on */
unsigned w, h; /* window size */
int fmag; /* faintest magnitude to display */
double ra0, dec0; /* center of patch, rads */
double scale; /* rads per pixel */
double rad; /* maximum radius to draw away from ra0/dec0, rads */
int fliptb, fliplr; /* flip direction; default is S up E right */
{
static int before;
double cdec0 = cos(dec0);
DBScan dbs;
Obj *op;
double hfov = w * scale;
double vfov = h * scale;
if (!before && pref_get(PREF_EQUATORIAL) == PREF_GEO) {
xe_msg (1, "Equatorial preference should probably be set to Topocentric");
before = 1;
}
/* update field star list */
sm_loadfs (ra0, dec0);
/* scan the database and draw whatever is near */
for (db_scaninit(&dbs, ALLM, fstars, nfstars);
(op = db_scan (&dbs)) != NULL; ) {
double dra, ddec;
GC gc;
int dx, dy, x, y;
int diam;
if (is_planet (op, SATURN)) {
/* we draw it elsewhere :-) */
continue;
}
db_update (op);
/* find size, in pixels. */
diam = magdiam (fmag, 1, scale, get_mag(op),
degrad(op->s_size/3600.0));
if (diam <= 0)
continue;
/* find x/y location if it's in the general area */
dra = op->s_ra - ra0; /* + E */
ddec = dec0 - op->s_dec; /* + S */
if (fabs(ddec) > rad || delra(dra)*cdec0 > rad)
continue;
dx = (int)(dra/scale);
dy = (int)(ddec/scale);
x = fliplr ? (int)w/2-dx : (int)w/2+dx;
y = fliptb ? (int)h/2+dy : (int)h/2-dy;
/* pick a gc */
obj_pickgc(op, toplevel_w, &gc);
/* draw 'er */
sv_draw_obj_x (XtD, win, gc, op, x, y, diam, 0, fliptb, !fliplr, 0, 1, dec0, ra0, vfov, hfov, w, h);
/* save 'er */
add_screenobj (SO_MAIN, op, x, y);
}
sv_draw_obj (XtD, win, (GC)0, NULL, 0, 0, 0, 0); /* flush */
}
/* load field stars around the given location, unless current set is
* already close enough.
*/
static void
sm_loadfs (ra, dec)
double ra, dec;
{
Now *np = mm_get_now();
if (fstars && fabs(dec-fsdec)<FSMOVE && cos(dec)*delra(ra-fsra)<FSMOVE)
return;
if (fstars) {
free ((void *)fstars);
fstars = NULL;
nfstars = 0;
}
nfstars = fs_fetch (np, ra, dec, FSFOV, FSMAG, &fstars);
if (nfstars > 0) {
xe_msg (0, "Saturn View added %d field stars", nfstars);
fsdec = dec;
fsra = ra;
}
}
/* For RCS Only -- Do Not Edit */
static char *rcsid[2] = {(char *)rcsid, "@(#) $RCSfile: satmenu.c,v $ $Date: 2012/07/07 18:04:42 $ $Revision: 1.65 $ $Name: $"};