mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
19025d77ad
Reorganized. Created a new top level include directory that will hold all of Trick's header files. Moved all of the Trick headers to this directory. Created a libexec directory that holds all of the executables that users don't need to execute directly. Changed all of the executables remaining in bin to start with "trick-". In the sim_services directories changed all source files to find the Trick headers in their new location. Since all of the include files are gone in sim_services, removed the src directories as well, moving all of the source files up a level. Moved the makefiles, docs, man, and other architecture independent files into a top level share directory. Renamed lib_${TRICK_HOST_CPU} to lib64 or lib depending on the platform we're currently on. refs #63
90 lines
1.6 KiB
C++
90 lines
1.6 KiB
C++
|
|
#include "trick/exec_proto.h"
|
|
#include "trick/SimTime.hh"
|
|
|
|
#define GET_TIME( GMT , offset ) \
|
|
{ \
|
|
double temp ; \
|
|
\
|
|
/* Convert the met to a gmt format */ \
|
|
temp = ( exec_get_sim_time() + offset ) / 86400.0 ; \
|
|
GMT.day = (int)temp ; \
|
|
temp = (temp - (double)(GMT.day)) * 24.0 ; \
|
|
GMT.hour = (int)temp ; \
|
|
temp = (temp - (double)(GMT.hour)) * 60.0 ; \
|
|
GMT.min = (int)temp ; \
|
|
GMT.sec = (temp - (double)(GMT.min)) * 60.0 ; \
|
|
}
|
|
|
|
Trick::SimTime * the_simtime ;
|
|
|
|
Trick::SimTime::SimTime() {
|
|
|
|
gmt_ref.day = 0 ;
|
|
gmt_ref.hour = 0 ;
|
|
gmt_ref.min = 0 ;
|
|
gmt_ref.sec = 0 ;
|
|
|
|
met_ref.day = 0 ;
|
|
met_ref.hour = 0 ;
|
|
met_ref.min = 0 ;
|
|
met_ref.sec = 0 ;
|
|
|
|
the_simtime = this ;
|
|
}
|
|
|
|
int Trick::SimTime::init_times() {
|
|
|
|
gmt_sec_ref = gmt_ref.day * 86400
|
|
+ gmt_ref.hour * 3600
|
|
+ gmt_ref.min * 60
|
|
+ gmt_ref.sec;
|
|
|
|
met_sec_ref = met_ref.day * 86400
|
|
+ met_ref.hour * 3600
|
|
+ met_ref.min * 60
|
|
+ met_ref.sec;
|
|
|
|
return 0 ;
|
|
}
|
|
|
|
double Trick::SimTime::get_rettime() {
|
|
|
|
return(exec_get_sim_time());
|
|
|
|
}
|
|
|
|
double Trick::SimTime::get_gmttime() {
|
|
|
|
return(exec_get_sim_time() + gmt_sec_ref);
|
|
|
|
}
|
|
|
|
double Trick::SimTime::get_mettime() {
|
|
|
|
return(exec_get_sim_time() + met_sec_ref);
|
|
|
|
}
|
|
|
|
TIME_OFFSET * Trick::SimTime::get_rettime_struct() {
|
|
|
|
GET_TIME(ret_time, 0.0);
|
|
|
|
return(&ret_time) ;
|
|
}
|
|
|
|
TIME_OFFSET * Trick::SimTime::get_gmttime_struct() {
|
|
|
|
GET_TIME(gmt_time, gmt_sec_ref);
|
|
|
|
return(&gmt_time) ;
|
|
}
|
|
|
|
TIME_OFFSET * Trick::SimTime::get_mettime_struct() {
|
|
|
|
GET_TIME(met_time, met_sec_ref);
|
|
|
|
return(&met_time) ;
|
|
}
|
|
|