2000-05-14 17:08:28 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
2000-05-10 11:29:38 +00:00
|
|
|
|
2000-05-17 10:03:19 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
2000-05-21 11:28:37 +00:00
|
|
|
|
2000-05-14 20:34:28 +00:00
|
|
|
#include "winquake.h"
|
|
|
|
#include <limits.h>
|
2000-05-12 03:44:21 +00:00
|
|
|
#include <direct.h>
|
2000-05-21 19:59:44 +00:00
|
|
|
#include "server.h"
|
|
|
|
|
|
|
|
/* This is unused in the client, but we need the symbol there too. */
|
|
|
|
server_static_t svs;
|
2000-05-10 11:29:38 +00:00
|
|
|
|
2000-05-14 20:34:28 +00:00
|
|
|
/*
|
|
|
|
==============
|
|
|
|
Sys_DoubleTime
|
|
|
|
==============
|
|
|
|
*/
|
|
|
|
double Sys_DoubleTime (void)
|
|
|
|
{
|
|
|
|
static DWORD starttime;
|
|
|
|
static qboolean first = true;
|
|
|
|
DWORD now;
|
|
|
|
|
|
|
|
now = timeGetTime();
|
|
|
|
|
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
starttime = now;
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (now < starttime) // wrapped?
|
|
|
|
return (now / 1000.0) + (LONG_MAX - starttime / 1000.0);
|
|
|
|
|
|
|
|
if (now - starttime == 0)
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
return (now - starttime) / 1000.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-10 11:29:38 +00:00
|
|
|
/*
|
|
|
|
================
|
2000-05-10 23:17:39 +00:00
|
|
|
Sys_mkdir
|
2000-05-10 11:29:38 +00:00
|
|
|
================
|
|
|
|
*/
|
2000-05-10 23:17:39 +00:00
|
|
|
void Sys_mkdir (char *path)
|
2000-05-10 11:29:38 +00:00
|
|
|
{
|
2000-05-10 23:17:39 +00:00
|
|
|
_mkdir(path);
|
2000-05-10 11:29:38 +00:00
|
|
|
}
|
|
|
|
|