]> git.mxchange.org Git - simgear.git/blob - simgear/timing/sg_time.hxx
This code had been written to assume current clock time. Added options
[simgear.git] / simgear / timing / sg_time.hxx
1 /**
2  * \file sg_time.hxx
3  * Data structures and routines for managing time related values.
4  */
5
6 // Written by Curtis Olson, started August 1997.
7 //
8 // Copyright (C) 1997  Curtis L. Olson  - curt@flightgear.org
9 //
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Library General Public
12 // License as published by the Free Software Foundation; either
13 // version 2 of the License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 // Library General Public License for more details.
19 //
20 // You should have received a copy of the GNU Library General Public
21 // License along with this library; if not, write to the
22 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 // Boston, MA  02111-1307, USA.
24 //
25 // $Id$
26
27
28 #ifndef _SG_TIME_HXX
29 #define _SG_TIME_HXX
30
31
32 #ifndef __cplusplus                                                          
33 # error This library requires C++
34 #endif                                   
35
36
37 #include <simgear/compiler.h>
38
39 #ifdef SG_HAVE_STD_INCLUDES
40 #  include <ctime>
41 #else
42 #  include <time.h>
43 #endif
44
45 #include <simgear/timing/timezone.h>
46
47
48 /**
49  * A class to calculate and manage a variety of time parameters.
50  * The SGTime class provides many real-world time values. It
51  * calculates current time in seconds, GMT time, local time zone,
52  * local offset in seconds from GMT, Julian date, and sidereal
53  * time. All of these operate with seconds as their granularity so
54  * this class is not intended for timing sub-second events. These
55  * values are intended as input to things like real world lighting
56  * calculations and real astronomical object placement.
57
58  * To properly use the SGTime class there are a couple of things to be
59  * aware of. After creating an instance of the class, you will need to
60  * periodically (i.e. before every frame) call the update()
61  * method. Optionally, if you care about updating time zone
62  * information based on your latitude and longitude, you can call the
63  * updateLocal() method periodically as your position changes by
64  * significant amounts.
65
66  */
67
68 class SGTime {
69
70 private:
71     // tzContainer stores all the current Timezone control points/
72     TimezoneContainer* tzContainer;
73
74     // Points to the current local timezone name;
75     char *zonename;
76
77     // Unix "calendar" time in seconds
78     time_t cur_time;
79
80     // Break down of equivalent GMT time
81 #if defined(_MSC_VER) || defined(__MINGW32__)
82     struct tm m_gmt;    // copy of system gmtime(&time_t) structure
83 #else
84     struct tm *gmt;
85 #endif
86
87     // offset of local time relative to GMT
88     time_t local_offset;
89
90     // Julian date
91     double jd;
92
93     // modified Julian date
94     double mjd;
95
96     // side real time at prime meridian
97     double gst;
98
99     // local sidereal time
100     double lst;
101
102     // the difference between the precise / expensive sidereal time
103     // algorithm result and the quick course result.  course_gst +
104     // gst_diff has pretty good accuracy over the span of a couple hours
105     double gst_diff;
106
107 public:
108
109     /** Default constructor */
110     SGTime();
111
112     /**
113      * Create an instance based on a specified position and data file path.
114      * This creates an instance of the SGTime object. When calling the
115      * constructor you need to provide a root path pointing to your
116      * time zone definition tree. Optionally, you can call a form of
117      * the constructor that accepts your current longitude and
118      * latitude in radians.
119      *
120      * If you don't know your position when you call the SGTime
121      * constructor, you can just use the first form (which assumes 0,
122      * 0).
123      * @param lon current longitude
124      * @param lat current latitude
125      * @param root root path point to data file location (timezone, etc.)
126      * @param init_time provide an initialization time, 0 means use
127               current clock time */
128     SGTime( double lon, double lat, const string& root, time_t init_time = 0 );
129
130     /**
131      * Create an instance given a data file path.
132      * @param root root path point to data file location (timezone, etc.)
133      */
134     SGTime( const string& root );
135
136     /** Destructor */
137     ~SGTime();
138
139     /** 
140      * Update the time related variables.
141      * The update() method requires you to pass in your position and
142      * an optional time offset in seconds. The offset (or warp) allows
143      * you to offset "sim" time relative to "real" time. The update()
144      * method is designed to be called by the host application before
145      * every frame.
146      * @param lon current longitude
147      * @param lat current latitude
148      * @param ct specify a unix time, otherwise specify 0 to use current
149               clock time
150      * @param warp an optional time offset specified in seconds.  This
151      *        allows us to advance or rewind "time" if we choose to.  */
152     void update( double lon, double lat, time_t ct = 0, long int warp = 0 );
153
154     /**
155      * Given lon/lat, update timezone information and local_offset
156      * The updateLocal() method is intended to be called less
157      * frequently - only when your position is likely to be changed
158      * enough that your timezone may have changed as well. In the
159      * FlightGear project we call updateLocal() every few minutes from
160      * our periodic event manager.
161      * @param lon current longitude
162      * @param lat current latitude
163      * @param root base path containing time zone directory */
164     void updateLocal( double lon, double lat, const string& root );
165
166     /** @return current system/unix time in seconds */
167     inline time_t get_cur_time() const { return cur_time; };
168
169     /** @return time zone name for your current position*/
170     inline char* get_zonename() const { return zonename; }
171
172     /** @return GMT in a "brokent down" tm structure */
173 #if defined(_MSC_VER) || defined(__MINGW32__)
174     inline struct tm* getGmt()const { return (struct tm *)&m_gmt; };
175 #else
176     inline struct tm* getGmt()const { return gmt; };
177 #endif
178
179     /** @return julian date */
180     inline double getJD() const { return jd; };
181
182     /** @return modified julian date */
183     inline double getMjd() const { return mjd; };
184
185     /** @return local side real time */
186     inline double getLst() const { return lst; };
187
188     /** @return grenich side real time (lst when longitude == 0) */
189     inline double getGst() const { return gst; };
190 };
191
192
193 // Some useful utility functions that don't make sense to be part of
194 // the SGTime class
195
196 /**
197  * \relates SGTime
198  * Return unix time in seconds for the given data (relative to GMT)
199  * @param year current GMT year
200  * @param month current GMT month
201  * @param day current GMT day
202  * @param hour current GMT hour
203  * @param minute current minute
204  * @param second current second
205  * @return unix/system time in seconds
206  */
207 time_t sgTimeGetGMT(int year, int month, int day, 
208                     int hour, int minute, int second);
209
210 /**
211  * \relates SGTime
212  * this is just a wrapper for sgTimeGetGMT that allows an alternate
213  * form of input parameters.
214  * @param the_time the current GMT time in the tm structure
215  * @return unix/system time in seconds
216  */
217 inline time_t sgTimeGetGMT(struct tm* the_time) {
218     // printf("Using: %24s as input\n", asctime(the_time));
219     return sgTimeGetGMT(the_time->tm_year,
220                         the_time->tm_mon,
221                         the_time->tm_mday,
222                         the_time->tm_hour,
223                         the_time->tm_min,
224                         the_time->tm_sec);
225 }
226
227 /**
228  * \relates SGTime
229  * Given a date in our form, return the equivalent modified Julian
230  * date (number of days elapsed since 1900 jan 0.5), mjd.  Adapted
231  * from Xephem.
232  * @param mn month
233  * @param dy day
234  * @param yr year
235  * @return modified julian date */
236 double sgTimeCalcMJD(int mn, double dy, int yr);
237
238 /**
239  * \relates SGTime
240  * Given an optional offset from current time calculate the current
241  * modified julian date.
242  * @param ct specify a unix time, otherwise specify 0 to use current
243           clock time
244  * @param warp number of seconds to offset from current time (0 if no offset)
245  * @return current modified Julian date (number of days elapsed
246  * since 1900 jan 0.5), mjd. */
247 double sgTimeCurrentMJD( time_t ct = 0, long int warp = 0 );
248
249 /**
250  * \relates SGTime
251  * Given an mjd, calculate greenwich mean sidereal time, gst
252  * @param mjd modified julian date
253  * @return greenwich mean sidereal time (gst) */
254 double sgTimeCalcGST( double mjd );
255
256 /**
257  * \relates SGTime
258  * Format time in a pretty form
259  * @param p time specified in a tm struct
260  * @param buf buffer space to contain the result
261  * @return pointer to character array containt the result
262  */
263 char* sgTimeFormatTime( const struct tm* p, char* buf );
264
265
266 #endif // _SG_TIME_HXX