1
0
Fork 0
flightgear/Time/fg_time.h

86 lines
2.6 KiB
C
Raw Normal View History

1997-08-13 21:55:59 +00:00
/**************************************************************************
* fg_time.h -- data structures and routines for managing time related stuff.
*
* Written by Curtis Olson, started August 1997.
*
* Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
*
* 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 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id$
* (Log is kept at end of this file)
**************************************************************************/
#ifndef FG_TIME_H
#define FG_TIME_H
1997-09-04 02:17:18 +00:00
#ifdef WIN32
# include <windows.h>
#endif
#include <GL/glut.h>
#include <time.h>
1997-09-04 02:17:18 +00:00
1997-08-13 21:55:59 +00:00
#include "../types.h"
#include "../Flight/flight.h"
1997-08-13 21:55:59 +00:00
/* Define a structure containing global time parameters */
struct fgTIME {
/* the date/time in various forms */
time_t cur_time; /* Unix "calendar" time in seconds */
struct tm *gmt; /* Break down of GMT time */
double jd; /* Julian date */
double mjd; /* modified Julian date */
double lst; /* local side real time */
/* position of the sun in various forms */
1997-08-13 21:55:59 +00:00
double sun_lon, sun_gc_lat; /* in geocentric coordinates */
1997-09-04 02:17:18 +00:00
struct fgCartesianPoint fg_sunpos; /* in cartesian coordiantes */
GLfloat sun_vec[4]; /* in view coordinates */
double sun_angle; /* the angle between the sun and the
local horizontal */
1997-08-13 21:55:59 +00:00
};
extern struct fgTIME cur_time_params;
1997-08-13 21:55:59 +00:00
/* Update the time dependent variables */
void fgTimeUpdate(struct FLIGHT *f, struct fgTIME *t);
1997-08-13 21:55:59 +00:00
#endif /* FG_TIME_H */
/* $Log$
/* Revision 1.4 1997/09/13 02:00:08 curt
/* Mostly working on stars and generating sidereal time for accurate star
/* placement.
1997-08-13 21:55:59 +00:00
/*
* Revision 1.3 1997/09/04 02:17:39 curt
* Shufflin' stuff.
*
1997-09-04 02:17:18 +00:00
* Revision 1.2 1997/08/27 03:30:36 curt
* Changed naming scheme of basic shared structures.
*
* Revision 1.1 1997/08/13 21:56:00 curt
* Initial revision.
*
1997-08-13 21:55:59 +00:00
*/