build.c must die

This commit is contained in:
Anton E. Gavrilov 2000-05-21 20:28:20 +00:00
parent d9da49c2a9
commit dedb64fc98

View file

@ -1,9 +1,11 @@
/* /*
buildnum.c buildnum.c
(description) build number (actually date) calculator
Copyright (C) 1996-1997 Id Software, Inc. Copyright (C) 1996-1997 Id Software, Inc.
Copyright (C) 1999,2000 contributors of the QuakeForge project
Please see the file "AUTHORS" for a list of contributors
This program is free software; you can redistribute it and/or This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License modify it under the terms of the GNU General Public License
@ -27,24 +29,23 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include "config.h"
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <quakedef.h> //char *date = "Dec 21 1999";
//char *time = "00:00:00";
// char *date = "Oct 24 1996"; char *ddate = __DATE__ ;
// char *time = "13:22:52"; char *dtime = __TIME__ ;
char *date = __DATE__ ;
char *time = __TIME__ ;
char *mon[12] = char *mon[12] =
{ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
char mond[12] = char mond[12] =
{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
// returns days since Oct 24 1996 // returns days since Dec 21 1999
int build_number( void ) int build_number( void )
{ {
int m = 0; int m = 0;
@ -58,14 +59,14 @@ int build_number( void )
for (m = 0; m < 11; m++) for (m = 0; m < 11; m++)
{ {
if (_strnicmp( &date[0], mon[m], 3 ) == 0) if (strncasecmp( &ddate[0], mon[m], 3 ) == 0)
break; break;
d += mond[m]; d += mond[m];
} }
d += atoi( &date[4] ) - 1; d += atoi( &ddate[4] ) - 1;
y = atoi( &date[7] ) - 1900; y = atoi( &ddate[7] ) - 1900;
b = d + (int)((y - 1) * 365.25); b = d + (int)((y - 1) * 365.25);
@ -74,15 +75,14 @@ int build_number( void )
b += 1; b += 1;
} }
b -= 34995; // Oct 24 1996 b -= 36148; // Dec 21 1999
hr = (time[0] - '0') * 10 + (time[1] - '0'); hr = (dtime[0] - '0') * 10 + (dtime[1] - '0');
min = (time[3] - '0') * 10 + (time[4] - '0'); min = (dtime[3] - '0') * 10 + (dtime[4] - '0');
// sec = (time[6] - '0') * 10 + (time[7] - '0'); // sec = (dtime[6] - '0') * 10 + (dtime[7] - '0');
b *= 60*24; b *= 60*24;
b += hr * 60 + min; b += hr * 60 + min;
return b; return b;
} }