1999-12-26 07:36:21 +00:00
|
|
|
/*
|
2000-01-06 13:48:07 +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
|
1999-12-26 07:36:21 +00:00
|
|
|
|
|
|
|
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-01-22 12:54:51 +00:00
|
|
|
#ifndef _COMMON_QUAKEDEF_H
|
|
|
|
#define _COMMON_QUAKEDEF_H
|
|
|
|
|
1999-12-26 07:36:21 +00:00
|
|
|
// quakedef.h -- primary header for client
|
|
|
|
|
|
|
|
#define QUAKE_GAME // as opposed to utilities
|
|
|
|
|
1999-12-31 06:54:05 +00:00
|
|
|
#include <config.h> // generated from config.h.in
|
1999-12-26 07:36:21 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <time.h>
|
2000-02-04 13:40:04 +00:00
|
|
|
#include <cvar.h>
|
2000-02-03 08:46:52 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
1999-12-26 07:36:21 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32) && !defined(WINDED)
|
|
|
|
void VID_LockBuffer (void);
|
|
|
|
void VID_UnlockBuffer (void);
|
|
|
|
#else
|
|
|
|
#define VID_LockBuffer()
|
|
|
|
#define VID_UnlockBuffer()
|
|
|
|
#endif
|
|
|
|
|
2000-01-27 17:06:02 +00:00
|
|
|
#include "qtypes.h"
|
|
|
|
#include "qstructs.h"
|
|
|
|
|
|
|
|
/*
|
1999-12-26 07:36:21 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "bspfile.h"
|
|
|
|
#include "vid.h"
|
|
|
|
#include "sys.h"
|
|
|
|
#include "zone.h"
|
|
|
|
#include "mathlib.h"
|
|
|
|
#include "wad.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "cvar.h"
|
|
|
|
#include "screen.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "cmd.h"
|
|
|
|
#include "sbar.h"
|
|
|
|
#include "sound.h"
|
|
|
|
|
|
|
|
#include "model.h"
|
|
|
|
#include "d_iface.h"
|
2000-01-22 12:54:51 +00:00
|
|
|
#include "render.h"
|
|
|
|
#include "client.h"
|
1999-12-26 07:36:21 +00:00
|
|
|
|
|
|
|
#include "input.h"
|
|
|
|
#include "keys.h"
|
|
|
|
#include "console.h"
|
|
|
|
#include "view.h"
|
2000-01-24 00:10:39 +00:00
|
|
|
#ifndef SERVERONLY
|
|
|
|
# include "menu.h"
|
|
|
|
#endif
|
1999-12-26 07:36:21 +00:00
|
|
|
#include "crc.h"
|
|
|
|
#include "cdaudio.h"
|
|
|
|
|
2000-01-25 05:59:19 +00:00
|
|
|
#include "cvars.h"
|
2000-01-27 17:06:02 +00:00
|
|
|
*/
|
1999-12-26 07:36:21 +00:00
|
|
|
|
|
|
|
#ifndef max
|
|
|
|
#define max(a,b) ((a) > (b) ? (a) : (b))
|
|
|
|
#define min(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2000-01-09 02:12:25 +00:00
|
|
|
/* This fixes warnings when compiling with -pedantic */
|
|
|
|
#if defined(__GNUC__) && !defined(inline)
|
|
|
|
# define inline __inline__
|
|
|
|
#endif
|
|
|
|
|
2000-01-05 01:19:13 +00:00
|
|
|
/* Win32 have these underscored... */
|
|
|
|
#if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF)
|
|
|
|
# define snprintf _snprintf
|
|
|
|
#endif
|
|
|
|
#if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
|
|
|
|
# define vsnprintf _vsnprintf
|
|
|
|
#endif
|
1999-12-26 07:36:21 +00:00
|
|
|
|
2000-02-05 15:59:39 +00:00
|
|
|
#ifndef HAVE_SOCKLEN_T
|
|
|
|
# ifdef HAVE_SIZE
|
|
|
|
typedef size_t socklen_t;
|
|
|
|
# else
|
|
|
|
typedef unsigned int socklen_t;
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1999-12-26 07:36:21 +00:00
|
|
|
#define MAX_NUM_ARGVS 50
|
|
|
|
|
|
|
|
|
|
|
|
extern qboolean noclip_anglehack;
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// host
|
|
|
|
//
|
|
|
|
extern quakeparms_t host_parms;
|
|
|
|
|
|
|
|
extern cvar_t sys_ticrate;
|
|
|
|
extern cvar_t sys_nostdout;
|
|
|
|
extern cvar_t developer;
|
|
|
|
|
|
|
|
extern qboolean host_initialized;// true if into command execution
|
|
|
|
extern double host_frametime;
|
|
|
|
extern byte *host_basepal;
|
|
|
|
extern byte *host_colormap;
|
|
|
|
extern int host_framecount;// incremented every frame, never reset
|
|
|
|
extern double realtime; // not bounded in any way, changed at
|
|
|
|
// start of every frame, never reset
|
|
|
|
|
|
|
|
void Host_ServerFrame (void);
|
|
|
|
void Host_InitCommands (void);
|
|
|
|
void Host_Init (quakeparms_t *parms);
|
|
|
|
void Host_Shutdown(void);
|
|
|
|
void Host_Error (char *error, ...);
|
|
|
|
void Host_EndGame (char *message, ...);
|
|
|
|
void Host_Frame (float time);
|
|
|
|
void Host_Quit_f (void);
|
|
|
|
void Host_ClientCommands (char *fmt, ...);
|
|
|
|
void Host_ShutdownServer (qboolean crash);
|
|
|
|
|
|
|
|
extern qboolean msg_suppress_1;
|
|
|
|
// suppresses resolution and cache size console output
|
|
|
|
// an fullscreen DIB focus gain/loss
|
2000-01-22 12:54:51 +00:00
|
|
|
#endif // _COMMON_QUAKEDEF_H
|