1998-12-05 14:21:28 +00:00
|
|
|
// fg_timer.cxx -- time handling routines
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started June 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$
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
|
1998-04-24 00:52:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-03 22:12:53 +00:00
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
#include <signal.h> // for timer routines
|
|
|
|
#include <stdio.h> // for printf()
|
1997-06-16 19:24:19 +00:00
|
|
|
|
1998-04-28 01:22:16 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
1998-04-03 22:12:53 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
1998-12-05 14:21:28 +00:00
|
|
|
# include <sys/time.h> // for get/setitimer, gettimeofday, struct timeval
|
1998-04-03 22:12:53 +00:00
|
|
|
#endif
|
1997-06-16 19:24:19 +00:00
|
|
|
|
1998-04-24 00:52:24 +00:00
|
|
|
#include "fg_time.hxx"
|
|
|
|
#include "fg_timer.hxx"
|
1998-12-05 14:21:28 +00:00
|
|
|
#include "timestamp.hxx"
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
unsigned long int fgSimTime;
|
1997-06-25 15:39:44 +00:00
|
|
|
|
1998-04-03 22:12:53 +00:00
|
|
|
#ifdef HAVE_SETITIMER
|
1997-06-25 15:39:44 +00:00
|
|
|
static struct itimerval t, ot;
|
|
|
|
static void (*callbackfunc)(int multi_loop);
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
// This routine catches the SIGALRM
|
1998-04-24 00:52:24 +00:00
|
|
|
void fgTimerCatch( int dummy ) {
|
1998-04-25 20:24:00 +00:00
|
|
|
int warning_avoider;
|
|
|
|
|
|
|
|
// get past a compiler warning
|
|
|
|
warning_avoider = dummy;
|
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
// ignore any SIGALRM's until we come back from our EOM iteration
|
1997-06-16 19:24:19 +00:00
|
|
|
signal(SIGALRM, SIG_IGN);
|
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
// printf("In fgTimerCatch()\n");
|
1997-06-16 19:24:19 +00:00
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
// -1 tells the routine to use default interval rather than
|
|
|
|
// something dynamically calculated based on frame rate
|
1997-06-17 03:41:10 +00:00
|
|
|
callbackfunc(-1);
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
signal(SIGALRM, fgTimerCatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-05 14:21:28 +00:00
|
|
|
// this routine initializes the interval timer to generate a SIGALRM
|
|
|
|
// after the specified interval (dt)
|
1998-04-21 17:01:43 +00:00
|
|
|
void fgTimerInit(float dt, void (*f)( int )) {
|
1997-06-16 19:24:19 +00:00
|
|
|
int terr;
|
|
|
|
int isec;
|
1998-04-24 00:52:24 +00:00
|
|
|
int usec;
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
callbackfunc = f;
|
|
|
|
|
|
|
|
isec = (int) dt;
|
1998-04-24 00:52:24 +00:00
|
|
|
usec = 1000000 * ((int)dt - isec);
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
t.it_interval.tv_sec = isec;
|
|
|
|
t.it_interval.tv_usec = usec;
|
|
|
|
t.it_value.tv_sec = isec;
|
|
|
|
t.it_value.tv_usec = usec;
|
1998-12-05 14:21:28 +00:00
|
|
|
// printf("fgTimerInit() called\n");
|
|
|
|
fgTimerCatch(0); // set up for SIGALRM signal catch
|
1997-06-16 19:24:19 +00:00
|
|
|
terr = setitimer( ITIMER_REAL, &t, &ot );
|
|
|
|
if (terr) {
|
|
|
|
printf("Error returned from setitimer");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
1998-12-05 14:21:28 +00:00
|
|
|
#endif // HAVE_SETITIMER
|
1997-06-16 19:24:19 +00:00
|
|
|
|
1997-07-12 02:13:04 +00:00
|
|
|
|
1999-01-09 13:37:32 +00:00
|
|
|
// This function returns the number of microseconds since the last
|
1998-12-05 14:21:28 +00:00
|
|
|
// time it was called.
|
1998-01-19 18:40:15 +00:00
|
|
|
int fgGetTimeInterval( void ) {
|
1997-07-12 02:13:04 +00:00
|
|
|
int interval;
|
|
|
|
static int inited = 0;
|
1999-01-09 13:37:32 +00:00
|
|
|
static FGTimeStamp last;
|
|
|
|
FGTimeStamp current;
|
1997-06-16 19:24:19 +00:00
|
|
|
|
|
|
|
if ( ! inited ) {
|
|
|
|
inited = 1;
|
1998-12-04 01:32:46 +00:00
|
|
|
last.stamp();
|
1997-06-16 19:24:19 +00:00
|
|
|
interval = 0;
|
|
|
|
} else {
|
1998-12-04 01:32:46 +00:00
|
|
|
current.stamp();
|
|
|
|
interval = current - last;
|
|
|
|
last = current;
|
1997-06-16 19:24:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|