This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/engine/system.c

98 lines
2.2 KiB
C

/*
Copyright (C) 1997-2001 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 the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// sys_win.h
#include "engine.h"
/*
===============================================================================
SYSTEM IO
===============================================================================
*/
void Sys_Error( const char *error, ... )
{
char errorstring[MAX_INPUTLINE];
static bool recursive = false;
va_list argptr;
va_start( argptr, error );
com.vsprintf( errorstring, error, argptr );
va_end( argptr );
// don't multiple executes
if( recursive )
{
// echo to system console and log
Sys_Print( va("Sys_RecursiveError: %s\n", errorstring ));
return;
}
recursive = true;
// prepare host to close
sprintf( host.finalmsg, "Server fatal crashed: %s\n", errorstring );
host.state = HOST_ERROR; // lock shutdown state
Host_FreeRender(); // close render to show message error
com.error("%s", errorstring );
}
/*
================
Sys_SendKeyEvents
Send Key_Event calls
================
*/
void Sys_SendKeyEvents (void)
{
// grab frame time
host.sv_timer = Sys_GetKeyEvents();
host.cl_timer = host.realtime * 1000;
host.realtime = Sys_DoubleTime();
}
/*
==================
DllMain
==================
*/
launch_exp_t DLLEXPORT *CreateAPI( stdlib_api_t *input, void *unused )
{
static launch_exp_t Host;
com = *input;
Host.api_size = sizeof(launch_exp_t);
Host.Init = Host_Init;
Host.Main = Host_Main;
Host.Free = Host_Free;
Host.Cmd = Cmd_ForwardToServer;
Host.CPrint = Host_Print;
return &Host;
}