2000-05-10 20:33:16 +00:00
|
|
|
/*
|
2000-05-11 16:03:29 +00:00
|
|
|
buildnum.c
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
build number (actually date) calculator
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-11 16:03:29 +00:00
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
2000-05-21 20:28:20 +00:00
|
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
|
|
Please see the file "AUTHORS" for a list of contributors
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-11 16:03:29 +00:00
|
|
|
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.
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-11 16:03:29 +00:00
|
|
|
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.
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-11 16:03:29 +00:00
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
2000-05-10 20:33:16 +00:00
|
|
|
*/
|
2000-05-11 16:03:29 +00:00
|
|
|
|
2000-05-17 10:03:19 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2000-05-21 20:28:20 +00:00
|
|
|
# include "config.h"
|
2000-05-17 10:03:19 +00:00
|
|
|
#endif
|
2000-05-21 20:28:20 +00:00
|
|
|
|
2000-05-10 20:33:16 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
//char *date = "Dec 21 1999";
|
|
|
|
//char *time = "00:00:00";
|
|
|
|
char *ddate = __DATE__ ;
|
|
|
|
char *dtime = __TIME__ ;
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
char *mon[12] =
|
2000-05-10 20:33:16 +00:00
|
|
|
{ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
|
2000-05-21 20:28:20 +00:00
|
|
|
char mond[12] =
|
2000-05-10 20:33:16 +00:00
|
|
|
{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
|
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
// returns days since Dec 21 1999
|
2000-05-10 20:33:16 +00:00
|
|
|
int build_number( void )
|
|
|
|
{
|
2000-05-21 20:28:20 +00:00
|
|
|
int m = 0;
|
2000-05-10 20:33:16 +00:00
|
|
|
int d = 0;
|
|
|
|
int y = 0;
|
|
|
|
int hr, min;
|
|
|
|
static int b = 0;
|
|
|
|
|
|
|
|
if (b != 0)
|
|
|
|
return b;
|
|
|
|
|
|
|
|
for (m = 0; m < 11; m++)
|
|
|
|
{
|
2000-05-21 20:28:20 +00:00
|
|
|
if (strncasecmp( &ddate[0], mon[m], 3 ) == 0)
|
2000-05-10 20:33:16 +00:00
|
|
|
break;
|
|
|
|
d += mond[m];
|
|
|
|
}
|
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
d += atoi( &ddate[4] ) - 1;
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
y = atoi( &ddate[7] ) - 1900;
|
2000-05-10 20:33:16 +00:00
|
|
|
|
|
|
|
b = d + (int)((y - 1) * 365.25);
|
|
|
|
|
|
|
|
if (((y % 4) == 0) && m > 1)
|
|
|
|
{
|
|
|
|
b += 1;
|
|
|
|
}
|
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
b -= 36148; // Dec 21 1999
|
2000-05-10 20:33:16 +00:00
|
|
|
|
2000-05-21 20:28:20 +00:00
|
|
|
hr = (dtime[0] - '0') * 10 + (dtime[1] - '0');
|
|
|
|
min = (dtime[3] - '0') * 10 + (dtime[4] - '0');
|
|
|
|
// sec = (dtime[6] - '0') * 10 + (dtime[7] - '0');
|
2000-05-10 20:33:16 +00:00
|
|
|
|
|
|
|
b *= 60*24;
|
|
|
|
b += hr * 60 + min;
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|