quakeforge/nq/source/sys_sdl.c

150 lines
3.0 KiB
C
Raw Normal View History

2001-08-15 20:55:22 +00:00
/*
sys_sdl.c
2001-08-15 20:55:22 +00:00
(description)
Copyright (C) 1996-1997 Id Software, Inc.
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
2001-08-15 21:29:18 +00:00
#endif
2001-08-15 20:55:22 +00:00
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#else
# include <sys/fcntl.h>
2001-08-15 20:55:22 +00:00
#endif
#include <SDL.h>
#include <SDL_main.h>
#include "QF/cvar.h"
2001-08-15 20:55:22 +00:00
#include "QF/qargs.h"
#include "QF/sys.h"
2001-08-15 20:55:22 +00:00
#include "client.h"
#include "host.h"
#ifdef _WIN32
# include "winquake.h"
#endif
int qf_sdl_link;
qboolean isDedicated = false;
static void
startup (void)
2001-08-15 20:55:22 +00:00
{
#ifdef _WIN32
2001-08-15 20:55:22 +00:00
OSVERSIONINFO vinfo;
Sys_MaskFPUExceptions ();
2001-08-15 20:55:22 +00:00
// make sure the timer is high precision, otherwise NT gets 18ms resolution
2001-08-15 20:55:22 +00:00
timeBeginPeriod (1);
vinfo.dwOSVersionInfoSize = sizeof (vinfo);
if (!GetVersionEx (&vinfo))
Sys_Error ("Couldn't get OS info");
if ((vinfo.dwMajorVersion < 4)
|| (vinfo.dwPlatformId == VER_PLATFORM_WIN32s)) {
Sys_Error ("This version of " PACKAGE_NAME
2001-08-15 20:55:22 +00:00
" requires at least Win95 or NT 4.0");
}
#endif
}
static void
shutdown_f (void *data)
{
2001-08-15 20:55:22 +00:00
#ifndef _WIN32
// change stdin to blocking
2001-08-15 20:55:22 +00:00
fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NONBLOCK);
fflush (stdout);
2001-08-15 20:55:22 +00:00
#endif
}
2001-08-15 21:29:18 +00:00
#ifndef SDL_main
# define SDL_main main
#endif
2001-08-15 20:55:22 +00:00
2001-08-15 21:29:18 +00:00
int
SDL_main (int argc, char *argv[])
2001-08-15 20:55:22 +00:00
{
double time, oldtime, newtime;
2001-08-15 20:55:22 +00:00
startup ();
2001-08-15 20:55:22 +00:00
memset (&host_parms, 0, sizeof (host_parms));
COM_InitArgv (argc, (const char **) argv);
2001-08-15 20:55:22 +00:00
host_parms.argc = com_argc;
host_parms.argv = com_argv;
isDedicated = (COM_CheckParm ("-dedicated") != 0);
2001-08-15 20:55:22 +00:00
Sys_RegisterShutdown (Host_Shutdown, 0);
Sys_RegisterShutdown (shutdown_f, 0);
Host_Init ();
2001-08-15 20:55:22 +00:00
#ifndef _WIN32
if (!sys_nostdout->int_val) {
fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) | O_NONBLOCK);
Sys_Printf ("Quake -- Version %s\n", NQ_VERSION);
}
#endif
oldtime = Sys_DoubleTime () - 0.1;
while (1) { // Main message loop
// find time spent rendering last frame
2001-08-15 20:55:22 +00:00
newtime = Sys_DoubleTime ();
time = newtime - oldtime;
if (cls.state == ca_dedicated) { // play vcrfiles at max speed
if (time < sys_ticrate->value && (!vcrFile || recording)) {
usleep (1);
continue; // not time to run a server-only tic yet
}
time = sys_ticrate->value;
}
if (time > sys_ticrate->value * 2)
oldtime = newtime;
else
oldtime += time;
2001-08-15 20:55:22 +00:00
Host_Frame (time);
}
}