2001-08-15 20:55:22 +00:00
|
|
|
/*
|
2001-08-18 21:57:45 +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
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-08-27 07:13:32 +00:00
|
|
|
#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
|
|
|
|
2011-09-03 10:58:03 +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>
|
|
|
|
|
2011-09-03 10:58:03 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-08-15 20:55:22 +00:00
|
|
|
#include "QF/qargs.h"
|
2001-08-27 07:13:32 +00:00
|
|
|
#include "QF/sys.h"
|
2001-08-15 20:55:22 +00:00
|
|
|
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "nq/include/client.h"
|
|
|
|
#include "nq/include/host.h"
|
2001-08-15 20:55:22 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2021-03-27 11:09:37 +00:00
|
|
|
# include "winquake.h"
|
2001-08-15 20:55:22 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-03 10:58:03 +00:00
|
|
|
int qf_sdl_link;
|
2023-06-13 09:06:11 +00:00
|
|
|
bool isDedicated = false;
|
2011-09-03 10:58:03 +00:00
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-06-07 15:46:15 +00:00
|
|
|
startup (void)
|
2001-08-15 20:55:22 +00:00
|
|
|
{
|
2004-01-20 03:47:27 +00:00
|
|
|
#ifdef _WIN32
|
2001-08-15 20:55:22 +00:00
|
|
|
OSVERSIONINFO vinfo;
|
2002-08-20 23:04:57 +00:00
|
|
|
Sys_MaskFPUExceptions ();
|
2001-08-15 20:55:22 +00:00
|
|
|
|
2001-08-27 07:13:32 +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)) {
|
2010-12-23 02:40:16 +00:00
|
|
|
Sys_Error ("This version of " PACKAGE_NAME
|
2001-08-15 20:55:22 +00:00
|
|
|
" requires at least Win95 or NT 4.0");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-09-24 21:00:23 +00:00
|
|
|
static void
|
2020-03-21 13:24:11 +00:00
|
|
|
shutdown_f (void *data)
|
2001-08-18 21:57:45 +00:00
|
|
|
{
|
2001-08-15 20:55:22 +00:00
|
|
|
#ifndef _WIN32
|
2011-09-03 10:58:03 +00:00
|
|
|
// change stdin to blocking
|
2001-08-15 20:55:22 +00:00
|
|
|
fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~O_NONBLOCK);
|
2011-09-03 10:58:03 +00:00
|
|
|
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
|
2011-09-10 06:37:10 +00:00
|
|
|
SDL_main (int argc, char *argv[])
|
2001-08-15 20:55:22 +00:00
|
|
|
{
|
2001-08-27 07:13:32 +00:00
|
|
|
double time, oldtime, newtime;
|
2001-08-15 20:55:22 +00:00
|
|
|
|
2002-06-07 15:46:15 +00:00
|
|
|
startup ();
|
2001-08-15 20:55:22 +00:00
|
|
|
|
|
|
|
memset (&host_parms, 0, sizeof (host_parms));
|
|
|
|
|
2011-09-10 06:37:10 +00:00
|
|
|
COM_InitArgv (argc, (const char **) argv);
|
2001-08-15 20:55:22 +00:00
|
|
|
host_parms.argc = com_argc;
|
|
|
|
host_parms.argv = com_argv;
|
|
|
|
|
2011-09-03 10:58:03 +00:00
|
|
|
isDedicated = (COM_CheckParm ("-dedicated") != 0);
|
2001-08-15 20:55:22 +00:00
|
|
|
|
2020-03-21 13:24:11 +00:00
|
|
|
Sys_RegisterShutdown (shutdown_f, 0);
|
2001-09-24 21:00:23 +00:00
|
|
|
|
2002-02-19 20:47:45 +00:00
|
|
|
Host_Init ();
|
2001-08-15 20:55:22 +00:00
|
|
|
|
2011-09-03 10:58:03 +00:00
|
|
|
#ifndef _WIN32
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (!sys_nostdout) {
|
2011-09-03 10:58:03 +00:00
|
|
|
fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) | O_NONBLOCK);
|
|
|
|
Sys_Printf ("Quake -- Version %s\n", NQ_VERSION);
|
|
|
|
}
|
2021-03-27 11:09:37 +00:00
|
|
|
#else
|
|
|
|
// hack to prevent gcc suggesting noreturn
|
|
|
|
if (!sys_nostdout) {
|
|
|
|
return 1;
|
|
|
|
}
|
2011-09-03 10:58:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
oldtime = Sys_DoubleTime () - 0.1;
|
|
|
|
while (1) { // Main message loop
|
2001-08-27 07:13:32 +00:00
|
|
|
// find time spent rendering last frame
|
2001-08-15 20:55:22 +00:00
|
|
|
newtime = Sys_DoubleTime ();
|
|
|
|
time = newtime - oldtime;
|
|
|
|
|
2022-04-06 10:32:55 +00:00
|
|
|
if (net_is_dedicated) { // play vcrfiles at max speed
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (time < sys_ticrate && (!vcrFile || recording)) {
|
2011-09-03 10:58:03 +00:00
|
|
|
usleep (1);
|
|
|
|
continue; // not time to run a server-only tic yet
|
|
|
|
}
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
time = sys_ticrate;
|
2011-09-03 10:58:03 +00:00
|
|
|
}
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (time > sys_ticrate * 2)
|
2011-09-03 10:58:03 +00:00
|
|
|
oldtime = newtime;
|
|
|
|
else
|
|
|
|
oldtime += time;
|
|
|
|
|
2001-08-15 20:55:22 +00:00
|
|
|
Host_Frame (time);
|
|
|
|
}
|
|
|
|
}
|