mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
#include audit
This commit is contained in:
parent
a9ffb0002f
commit
ccba39666b
141 changed files with 825 additions and 749 deletions
|
@ -31,7 +31,9 @@
|
|||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
|
|
@ -29,7 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <dpmi.h>
|
||||
|
||||
#include "dosisms.h"
|
||||
|
||||
extern cvar_t *bgmvolume;
|
||||
|
|
|
@ -29,23 +29,26 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/file.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include "string.h"
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include "strings.h"
|
||||
#endif
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef HAVE_SYS_IOCTL_H
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
#include <linux/cdrom.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "qargs.h"
|
||||
#include "cmd.h"
|
||||
#include "cdaudio.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "qargs.h"
|
||||
#include "sound.h"
|
||||
|
||||
static qboolean cdValid = false;
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "qtypes.h"
|
||||
#include "cdaudio.h"
|
||||
|
||||
void
|
||||
CDAudio_Play (byte track, qboolean looping)
|
||||
|
|
|
@ -32,16 +32,20 @@
|
|||
#ifdef HAVE_WINDOWS_H
|
||||
# include <windows.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRING_H
|
||||
#include "string.h"
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include "strings.h"
|
||||
#endif
|
||||
|
||||
#include <SDL.h>
|
||||
|
||||
#include "qargs.h"
|
||||
#include "console.h"
|
||||
#include "cdaudio.h"
|
||||
#include "cmd.h"
|
||||
#include "host.h"
|
||||
|
||||
extern cvar_t *bgmvolume;
|
||||
#include "console.h"
|
||||
#include "qargs.h"
|
||||
#include "sound.h"
|
||||
|
||||
static qboolean cdValid = false;
|
||||
static qboolean initialized = false;
|
||||
|
|
|
@ -35,11 +35,10 @@
|
|||
|
||||
#include <dmedia/cdaudio.h>
|
||||
|
||||
#include "qtypes.h"
|
||||
#include "cdaudio.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "qargs.h"
|
||||
#include "cmd.h"
|
||||
#include "cdaudio.h"
|
||||
#include "sound.h"
|
||||
|
||||
static qboolean initialized = false;
|
||||
|
|
|
@ -30,11 +30,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include "qargs.h"
|
||||
#include "console.h"
|
||||
|
||||
#include "cdaudio.h"
|
||||
#include "cmd.h"
|
||||
#include "host.h"
|
||||
#include "console.h"
|
||||
#include "qargs.h"
|
||||
|
||||
extern HWND mainwindow;
|
||||
extern cvar_t *bgmvolume;
|
||||
|
||||
|
|
|
@ -29,12 +29,14 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "checksum.h"
|
||||
#include "crc.h"
|
||||
|
||||
|
|
|
@ -43,14 +43,13 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "cvar.h"
|
||||
#include "client.h"
|
||||
#include "pmove.h"
|
||||
#include "msg.h"
|
||||
#include "sbar.h"
|
||||
#include "console.h"
|
||||
#include "commdef.h"
|
||||
#include "cl_cam.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "msg.h"
|
||||
#include "pmove.h"
|
||||
#include "sbar.h"
|
||||
|
||||
#define PM_SPECTATORMAXSPEED 500
|
||||
#define PM_STOPSPEED 100
|
||||
|
|
|
@ -29,17 +29,20 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "cmd.h"
|
||||
#include "msg.h"
|
||||
#include "teamplay.h"
|
||||
|
||||
#include <string.h>
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
===================
|
||||
Cmd_ForwardToServer
|
||||
|
|
|
@ -29,11 +29,10 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "msg.h"
|
||||
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "cvar.h"
|
||||
#include "msg.h"
|
||||
#include "va.h"
|
||||
|
||||
void
|
||||
|
|
|
@ -30,20 +30,16 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "msg.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "qendian.h"
|
||||
#include "va.h"
|
||||
#include "quakefs.h"
|
||||
#include "pmove.h"
|
||||
#include "cl_main.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "host.h"
|
||||
#include "msg.h"
|
||||
#include "pmove.h"
|
||||
#include "qendian.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
|
||||
void CL_FinishTimeDemo (void);
|
||||
|
||||
|
|
|
@ -30,29 +30,18 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "sys.h"
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "msg.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "pmove.h"
|
||||
#include "view.h"
|
||||
#include "teamplay.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "r_local.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_pred.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_ents.h"
|
||||
#include "cl_input.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_pred.h"
|
||||
#include "cl_tent.h"
|
||||
#include "console.h"
|
||||
#include "d_iface.h"
|
||||
#include "host.h"
|
||||
#include "msg.h"
|
||||
#include "pmove.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "view.h"
|
||||
|
||||
extern cvar_t *cl_predict_players;
|
||||
extern cvar_t *cl_predict_players2;
|
||||
|
|
|
@ -30,28 +30,20 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "sys.h"
|
||||
#include "sys.h"
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "msg.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "pmove.h"
|
||||
#include "view.h"
|
||||
#include "checksum.h"
|
||||
#include "keys.h"
|
||||
#include "teamplay.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_demo.h"
|
||||
#include "cl_parse.h"
|
||||
#include "cl_input.h"
|
||||
#include "cl_parse.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "keys.h"
|
||||
#include "msg.h"
|
||||
#include "teamplay.h"
|
||||
#include "view.h"
|
||||
|
||||
cvar_t *cl_nodelta;
|
||||
|
||||
|
|
|
@ -29,47 +29,45 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#include "host.h"
|
||||
#include "bothdefs.h"
|
||||
#include "input.h"
|
||||
#include "in_win.h"
|
||||
#include "sys.h"
|
||||
#include "sys.h"
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "msg.h"
|
||||
#include "va.h"
|
||||
#include "buildnum.h"
|
||||
#include "cdaudio.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_demo.h"
|
||||
#include "cl_ents.h"
|
||||
#include "cl_input.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_parse.h"
|
||||
#include "cl_pred.h"
|
||||
#include "cl_tent.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "draw.h"
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "model.h"
|
||||
#include "msg.h"
|
||||
#include "net.h"
|
||||
#include "pmove.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "pmove.h"
|
||||
#include "view.h"
|
||||
#include "checksum.h"
|
||||
#include "sys.h"
|
||||
#include "menu.h"
|
||||
#include "compat.h"
|
||||
#include "buildnum.h"
|
||||
#include "keys.h"
|
||||
#include "screen.h"
|
||||
#include "sbar.h"
|
||||
#include "draw.h"
|
||||
#include "qargs.h"
|
||||
#include "cdaudio.h"
|
||||
#include "teamplay.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_demo.h"
|
||||
#include "cl_input.h"
|
||||
#include "cl_ents.h"
|
||||
#include "sbar.h"
|
||||
#include "screen.h"
|
||||
#include "skin.h"
|
||||
#include "cl_parse.h"
|
||||
#include "cl_tent.h"
|
||||
#include "cl_pred.h"
|
||||
#include "sound.h"
|
||||
#include "sys.h"
|
||||
#include "teamplay.h"
|
||||
#include "vid.h"
|
||||
#include "view.h"
|
||||
#include "va.h"
|
||||
|
||||
#ifdef __sun
|
||||
/* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */
|
||||
|
|
|
@ -30,25 +30,25 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "bothdefs.h"
|
||||
#include "cdaudio.h"
|
||||
#include "cl_ents.h"
|
||||
#include "cl_input.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_parse.h"
|
||||
#include "cl_tent.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "screen.h"
|
||||
#include "cdaudio.h"
|
||||
#include "bothdefs.h"
|
||||
#include "console.h"
|
||||
#include "host.h"
|
||||
#include "msg.h"
|
||||
#include "va.h"
|
||||
#include "pmove.h"
|
||||
#include "protocol.h"
|
||||
#include "screen.h"
|
||||
#include "sbar.h"
|
||||
#include "teamplay.h"
|
||||
#include "cl_parse.h"
|
||||
#include "cl_main.h"
|
||||
#include "skin.h"
|
||||
#include "cl_ents.h"
|
||||
#include "cl_tent.h"
|
||||
#include "cl_input.h"
|
||||
#include "teamplay.h"
|
||||
#include "va.h"
|
||||
#include "view.h"
|
||||
|
||||
#ifdef HAVE_STRINGS_H
|
||||
|
|
|
@ -29,13 +29,14 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "cvar.h"
|
||||
#include "client.h"
|
||||
#include "pmove.h"
|
||||
|
||||
#include "bothdefs.h"
|
||||
#include "console.h"
|
||||
#include "commdef.h"
|
||||
#include "cl_ents.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "pmove.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include "winquake.h"
|
||||
|
|
|
@ -33,20 +33,23 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "cl_slist.h"
|
||||
#include "bothdefs.h"
|
||||
#include "console.h"
|
||||
#include "cl_slist.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "quakefs.h"
|
||||
#include "va.h"
|
||||
|
||||
|
|
|
@ -30,22 +30,23 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "ctype.h"
|
||||
#include "render.h"
|
||||
#include "protocol.h"
|
||||
#include "client.h"
|
||||
#include "msg.h"
|
||||
#include "console.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "cl_main.h"
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "cl_ents.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_tent.h"
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "host.h"
|
||||
#include "msg.h"
|
||||
#include "r_dynamic.h"
|
||||
|
||||
#define MAX_BEAMS 8
|
||||
#define MAX_BEAM_ENTS 20
|
||||
|
|
|
@ -30,15 +30,17 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "client.h"
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "vid.h"
|
||||
#include "client.h"
|
||||
|
||||
/*
|
||||
=====================
|
||||
|
|
14
source/cmd.c
14
source/cmd.c
|
@ -30,21 +30,23 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "sys.h"
|
||||
#include "cmd.h"
|
||||
#include "compat.h"
|
||||
#include "cvar.h"
|
||||
#include "sizebuf.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "host.h"
|
||||
#include "qargs.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "commdef.h"
|
||||
#include "sizebuf.h"
|
||||
#include "sys.h"
|
||||
#include "zone.h"
|
||||
|
||||
void Cmd_ForwardToServer (void);
|
||||
|
|
11
source/com.c
11
source/com.c
|
@ -29,14 +29,15 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include "sys.h"
|
||||
|
||||
cvar_t *registered;
|
||||
|
||||
|
|
|
@ -31,19 +31,24 @@
|
|||
#endif
|
||||
|
||||
#include <stdarg.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "input.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "keys.h"
|
||||
#include "client.h"
|
||||
#include "draw.h"
|
||||
#include "commdef.h"
|
||||
#include "qargs.h"
|
||||
#include "cmd.h"
|
||||
#include "va.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "draw.h"
|
||||
#include "input.h"
|
||||
#include "keys.h"
|
||||
#include "qargs.h"
|
||||
#include "screen.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
|
||||
int con_ormask;
|
||||
console_t con_main;
|
||||
|
|
|
@ -57,16 +57,16 @@
|
|||
#endif
|
||||
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "context_x11.h"
|
||||
#include "cvar.h"
|
||||
#include "dga_check.h"
|
||||
#include "va.h"
|
||||
#include "input.h"
|
||||
#include "qargs.h"
|
||||
#include "qtypes.h"
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "input.h"
|
||||
#include "va.h"
|
||||
#include "vid.h"
|
||||
|
||||
static void (*event_handlers[LASTEvent]) (XEvent *);
|
||||
qboolean oktodraw = false;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "crc.h"
|
||||
|
||||
// this is a 16 bit, non-reflected CRC using the polynomial 0x1021
|
||||
|
|
|
@ -33,6 +33,15 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "commdef.h"
|
||||
#include "cvar.h"
|
||||
#include "console.h"
|
||||
|
@ -40,13 +49,6 @@
|
|||
#include "cmd.h"
|
||||
#include "commdef.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
cvar_t *cvar_vars;
|
||||
char *cvar_null_string = "";
|
||||
extern cvar_t *developer;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "d_local.h"
|
||||
|
||||
static int miplevel;
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "d_iface.h"
|
||||
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "bothdefs.h"
|
||||
#include "d_local.h"
|
||||
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
|
||||
#include "d_local.h"
|
||||
#include "sys.h"
|
||||
|
||||
int d_vrectx, d_vrecty, d_vrectright_particle, d_vrectbottom_particle;
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "d_local.h"
|
||||
|
||||
#include "d_local.h"
|
||||
|
||||
/*
|
||||
==============
|
||||
|
|
|
@ -30,9 +30,11 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
#include "d_local.h"
|
||||
#include "bothdefs.h"
|
||||
|
||||
// TODO: put in span spilling to shrink list size
|
||||
// !!! if this is changed, it must be changed in d_polysa.s too !!!
|
||||
#define DPS_MAXSPANS MAXHEIGHT+1
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "r_local.h"
|
||||
|
||||
#include "d_local.h"
|
||||
#include "r_local.h"
|
||||
|
||||
unsigned char *r_turb_pbase, *r_turb_pdest;
|
||||
fixed16_t r_turb_s, r_turb_t, r_turb_sstep, r_turb_tstep;
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "r_local.h"
|
||||
|
||||
#include "d_local.h"
|
||||
#include "r_local.h"
|
||||
|
||||
#define SKY_SPAN_SHIFT 5
|
||||
#define SKY_SPAN_MAX (1 << SKY_SPAN_SHIFT)
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "d_local.h"
|
||||
|
||||
static int sprite_height;
|
||||
|
|
|
@ -29,10 +29,11 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "qargs.h"
|
||||
|
||||
#include "d_local.h"
|
||||
#include "qargs.h"
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "d_local.h"
|
||||
|
||||
|
||||
|
|
|
@ -29,16 +29,21 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "draw.h"
|
||||
#include "vid.h"
|
||||
#include "d_iface.h"
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "d_iface.h"
|
||||
#include "draw.h"
|
||||
#include "quakefs.h"
|
||||
#include "sound.h"
|
||||
#include "client.h"
|
||||
|
||||
#include <string.h>
|
||||
#include "sys.h"
|
||||
|
||||
typedef struct {
|
||||
vrect_t rect;
|
||||
|
|
|
@ -36,30 +36,13 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
|
||||
#include "crc.h" // LordHavoc: for texture update
|
||||
// validation
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "crc.h"
|
||||
#include "draw.h"
|
||||
#include "glquake.h"
|
||||
#include "sbar.h"
|
||||
#include "sys.h"
|
||||
|
||||
static int GL_LoadPicTexture (qpic_t *pic);
|
||||
|
||||
|
|
|
@ -29,14 +29,19 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "cl_main.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "cl_main.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#define MAX_FIRES 128 // rocket flames
|
||||
|
||||
|
|
|
@ -30,16 +30,16 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "glquake.h"
|
||||
#include "cmd.h"
|
||||
#include "qargs.h"
|
||||
#include "console.h"
|
||||
#include "sys.h"
|
||||
#include "r_dynamic.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "host.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "qargs.h"
|
||||
#include "sys.h"
|
||||
|
||||
#define MAX_PARTICLES 2048 // default max # of particles at one
|
||||
// time
|
||||
#define ABSOLUTE_MIN_PARTICLES 512 // no fewer than this no matter
|
||||
|
|
|
@ -30,11 +30,11 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "glquake.h"
|
||||
#include "fractalnoise.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "fractalnoise.h"
|
||||
#include "glquake.h"
|
||||
|
||||
static void GDT_InitDotParticleTexture (void);
|
||||
static void GDT_InitSmokeParticleTexture (void);
|
||||
|
||||
|
|
|
@ -29,32 +29,18 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "model.h"
|
||||
#include "quakefs.h"
|
||||
|
||||
/*
|
||||
=================================================================
|
||||
|
|
|
@ -40,11 +40,11 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "model.h"
|
||||
#include "qendian.h"
|
||||
#include "server.h"
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
|
||||
extern model_t *loadmodel;
|
||||
|
||||
|
|
|
@ -32,7 +32,13 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
|
|
|
@ -33,12 +33,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "checksum.h"
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "qendian.h"
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "qendian.h"
|
||||
#include "checksum.h"
|
||||
#include "glquake.h"
|
||||
|
||||
int
|
||||
Mod_Fullbright (byte * skin, int width, int height, char *name)
|
||||
|
|
|
@ -40,9 +40,9 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "glquake.h"
|
||||
#include "model.h"
|
||||
#include "qendian.h"
|
||||
#include "glquake.h"
|
||||
|
||||
extern model_t *loadmodel;
|
||||
extern char loadname[];
|
||||
|
|
|
@ -29,34 +29,20 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "menu.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, gl_model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "cl_parse.h"
|
||||
|
||||
#include "cvar.h"
|
||||
#include "draw.h"
|
||||
#include "glquake.h"
|
||||
#include "sbar.h"
|
||||
|
||||
extern byte *draw_chars; // 8*8 graphic characters
|
||||
extern qboolean lighthalf;
|
||||
|
|
|
@ -31,30 +31,14 @@
|
|||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h" // needed by: view.h
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, gl_model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
|
||||
int r_dlightframecount;
|
||||
|
|
|
@ -31,23 +31,25 @@
|
|||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "qargs.h"
|
||||
#include "bothdefs.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_main.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "model.h"
|
||||
#include "render.h"
|
||||
#include "sys.h"
|
||||
#include "qargs.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "skin.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_cam.h"
|
||||
#include "va.h"
|
||||
#include "sys.h"
|
||||
#include "view.h"
|
||||
|
||||
entity_t r_worldentity;
|
||||
|
|
|
@ -29,36 +29,23 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <string.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, gl_model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "glquake.h"
|
||||
#include "r_dynamic.h"
|
||||
#include "skin.h"
|
||||
#include "sys.h"
|
||||
#include "vid.h"
|
||||
|
||||
qboolean VID_Is8bit (void);
|
||||
void R_InitBubble (void);
|
||||
|
|
|
@ -32,31 +32,16 @@
|
|||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
#include "qargs.h"
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, gl_model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
#include "sys.h"
|
||||
|
||||
qboolean r_cache_thrash;
|
||||
|
||||
|
|
|
@ -30,7 +30,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <time.h>
|
||||
|
||||
#include "cl_parse.h"
|
||||
|
@ -42,7 +47,6 @@
|
|||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "pcx.h"
|
||||
#include "qendian.h"
|
||||
#include "sbar.h"
|
||||
#include "skin.h"
|
||||
#include "sys.h"
|
||||
|
|
|
@ -30,7 +30,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
|
|
|
@ -30,7 +30,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "console.h"
|
||||
|
|
|
@ -30,10 +30,10 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "protocol.h"
|
||||
#include "glquake.h"
|
||||
#include "host.h"
|
||||
#include "protocol.h"
|
||||
#include "sys.h"
|
||||
|
||||
/*
|
||||
=====================
|
||||
|
|
|
@ -29,30 +29,14 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "bothdefs.h" // needed by: common.h, net.h,
|
||||
// client.h
|
||||
|
||||
#include "bspfile.h" // needed by: glquake.h
|
||||
#include "vid.h"
|
||||
#include "sys.h"
|
||||
#include "mathlib.h" // needed by: protocol.h, render.h,
|
||||
// client.h,
|
||||
// modelgen.h, glmodel.h
|
||||
#include "wad.h"
|
||||
#include "draw.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h" // needed by: client.h
|
||||
#include "protocol.h" // needed by: client.h
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "render.h" // needed by: client.h, model.h,
|
||||
// glquake.h
|
||||
#include "client.h" // need cls in this file
|
||||
#include "model.h" // needed by: glquake.h
|
||||
#include "console.h"
|
||||
#include "glquake.h"
|
||||
|
||||
extern byte *host_basepal;
|
||||
|
|
|
@ -43,17 +43,16 @@
|
|||
#include <vgakeyboard.h>
|
||||
#include <vgamouse.h>
|
||||
|
||||
#include "host.h"
|
||||
#include "client.h"
|
||||
#include "cl_input.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "joystick.h"
|
||||
#include "keys.h"
|
||||
#include "qargs.h"
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
#include "view.h"
|
||||
|
||||
|
|
|
@ -37,8 +37,9 @@
|
|||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
@ -55,25 +56,21 @@
|
|||
#include <X11/extensions/xf86dga.h>
|
||||
#endif
|
||||
|
||||
#include "dga_check.h"
|
||||
#include "d_local.h"
|
||||
#include "host.h"
|
||||
#include "sound.h"
|
||||
#include "keys.h"
|
||||
#include "cvar.h"
|
||||
#include "sys.h"
|
||||
#include "cmd.h"
|
||||
#include "draw.h"
|
||||
#include "console.h"
|
||||
#include "cl_input.h"
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "context_x11.h"
|
||||
#include "cvar.h"
|
||||
#include "dga_check.h"
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "joystick.h"
|
||||
#include "keys.h"
|
||||
#include "qargs.h"
|
||||
#include "cl_input.h"
|
||||
#include "sys.h"
|
||||
#include "vid.h"
|
||||
#include "view.h"
|
||||
|
||||
|
||||
cvar_t *_windowed_mouse;
|
||||
cvar_t *m_filter;
|
||||
|
||||
|
|
|
@ -29,15 +29,19 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "console.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "info.h"
|
||||
|
||||
/*
|
||||
=====================================================================
|
||||
|
||||
|
|
|
@ -29,26 +29,27 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "screen.h"
|
||||
#include "client.h"
|
||||
#include "sys.h"
|
||||
|
||||
/*
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "link.h"
|
||||
|
||||
// ClearLink is used for new headnodes
|
||||
|
|
|
@ -31,13 +31,18 @@
|
|||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "locs.h"
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
#include "locs.h"
|
||||
#include "console.h"
|
||||
|
||||
#define LOCATION_BLOCK 128 // 128 locations per block.
|
||||
|
||||
|
|
|
@ -29,15 +29,19 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include "qtypes.h"
|
||||
|
||||
#include "mathlib.h"
|
||||
#include "model.h"
|
||||
|
||||
void Sys_Error (char *error, ...);
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
|
||||
vec3_t vec3_origin = { 0, 0, 0 };
|
||||
int nanmask = 255 << 23;
|
||||
|
@ -563,7 +567,7 @@ FloorDivMod (double numer, double denom, int *quotient, int *rem)
|
|||
|
||||
#ifndef PARANOID
|
||||
if (denom <= 0.0)
|
||||
Sys_Error ("FloorDivMod: bad denominator %d\n", denom);
|
||||
Sys_Error ("FloorDivMod: bad denominator %f\n", denom);
|
||||
|
||||
// if ((floor(numer) != numer) || (floor(denom) != denom))
|
||||
// Sys_Error ("FloorDivMod: non-integer numer or denom %f %f\n",
|
||||
|
|
|
@ -30,15 +30,16 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <string.h> /* XoXus: needed for memset call */
|
||||
|
||||
#ifndef _UINT32_H
|
||||
#include <uint32.h>
|
||||
#endif // _UINT32_H
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#ifndef _MDFOUR_H
|
||||
#include <mdfour.h>
|
||||
#endif // _MDFOUR_H
|
||||
#include "mdfour.h"
|
||||
#include "uint32.h"
|
||||
|
||||
/* NOTE: This code makes no attempt to be fast!
|
||||
|
||||
|
|
|
@ -33,36 +33,34 @@
|
|||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#ifdef _WIN32
|
||||
#include "winquake.h"
|
||||
#endif
|
||||
#include "cl_slist.h"
|
||||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "vid.h"
|
||||
#include "va.h"
|
||||
#include "draw.h"
|
||||
#include "cmd.h"
|
||||
#include "screen.h"
|
||||
#include "client.h"
|
||||
#include "console.h"
|
||||
#include "input.h"
|
||||
#include "view.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_input.h"
|
||||
#include "net.h"
|
||||
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
#include "cl_input.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_slist.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "draw.h"
|
||||
#include "host.h"
|
||||
#include "input.h"
|
||||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "protocol.h"
|
||||
#include "screen.h"
|
||||
#include "sound.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
#include "vid.h"
|
||||
#include "view.h"
|
||||
|
||||
void (*vid_menudrawfn) (void);
|
||||
void (*vid_menukeyfn) (int key);
|
||||
|
||||
|
|
|
@ -40,11 +40,11 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "model.h"
|
||||
#include "quakefs.h"
|
||||
#include "cvar.h"
|
||||
#include "server.h"
|
||||
#include "model.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "server.h"
|
||||
|
||||
void Mod_LoadAliasModel (model_t *mod, void *buf);
|
||||
void Mod_LoadSpriteModel (model_t *mod, void *buf);
|
||||
|
|
|
@ -40,15 +40,16 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "qendian.h"
|
||||
#include "checksum.h"
|
||||
#include "crc.h"
|
||||
#include "server.h"
|
||||
#include "msg.h"
|
||||
#include "cl_main.h"
|
||||
#include "client.h"
|
||||
#include "crc.h"
|
||||
#include "info.h"
|
||||
#include "model.h"
|
||||
#include "msg.h"
|
||||
#include "qendian.h"
|
||||
#include "quakefs.h"
|
||||
#include "r_local.h"
|
||||
#include "server.h"
|
||||
|
||||
extern char loadname[];
|
||||
extern model_t *loadmodel;
|
||||
|
|
|
@ -32,14 +32,20 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <math.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "checksum.h"
|
||||
#include "cvar.h"
|
||||
#include "model.h"
|
||||
#include "qendian.h"
|
||||
#include "server.h"
|
||||
#include "checksum.h"
|
||||
|
||||
extern model_t *loadmodel;
|
||||
extern char loadname[];
|
||||
|
|
|
@ -37,18 +37,19 @@
|
|||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include <time.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "qtypes.h"
|
||||
#include "console.h"
|
||||
#include "msg.h"
|
||||
#include "sizebuf.h"
|
||||
#include "cvar.h"
|
||||
#include "net.h"
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "msg.h"
|
||||
#include "net.h"
|
||||
|
||||
#define PACKET_HEADER 8
|
||||
|
||||
|
|
|
@ -32,7 +32,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include <mdfour.h>
|
||||
|
||||
#include "mdfour.h"
|
||||
|
||||
unsigned int
|
||||
Com_BlockChecksum (void *buffer, int length)
|
||||
|
|
|
@ -36,12 +36,10 @@
|
|||
#include <ctype.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "qtypes.h"
|
||||
#include "quakeio.h"
|
||||
#include "msg.h"
|
||||
#include "net.h"
|
||||
#include "protocol.h"
|
||||
#include "msg.h"
|
||||
|
||||
#include "quakeio.h"
|
||||
#include "server.h"
|
||||
|
||||
cvar_t *netlogger;
|
||||
|
|
|
@ -30,10 +30,6 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "net.h"
|
||||
#include "qargs.h"
|
||||
#include "console.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -68,16 +64,21 @@
|
|||
# include <sys/filio.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# include <winquake.h>
|
||||
# undef EWOULDBLOCK
|
||||
# define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
#endif
|
||||
|
||||
#ifdef NeXT
|
||||
#include <libc.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "net.h"
|
||||
#include "sys.h"
|
||||
#include "qargs.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
# include "winquake.h"
|
||||
# undef EWOULDBLOCK
|
||||
# define EWOULDBLOCK WSAEWOULDBLOCK
|
||||
#endif
|
||||
|
||||
#ifndef MAXHOSTNAMELEN
|
||||
# define MAXHOSTNAMELEN 512
|
||||
#endif
|
||||
|
|
|
@ -29,7 +29,13 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "cl_parse.h"
|
||||
#include "console.h"
|
||||
|
|
|
@ -29,14 +29,15 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "compat.h"
|
||||
#include "qtypes.h"
|
||||
#include "client.h"
|
||||
#include "pmove.h"
|
||||
#include "cvar.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
#include "client.h"
|
||||
#include "compat.h"
|
||||
#include "cvar.h"
|
||||
#include "pmove.h"
|
||||
#include "qtypes.h"
|
||||
|
||||
cvar_t *no_pogo_stick;
|
||||
movevars_t movevars;
|
||||
|
||||
|
|
|
@ -29,14 +29,19 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "qtypes.h"
|
||||
#include "pmove.h"
|
||||
#include "model.h"
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "console.h"
|
||||
#include "model.h"
|
||||
#include "pmove.h"
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
|
||||
static hull_t box_hull;
|
||||
static dclipnode_t box_clipnodes[6];
|
||||
|
|
|
@ -30,7 +30,12 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
|
|
|
@ -32,19 +32,24 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "string.h"
|
||||
#include "ctype.h"
|
||||
#include "stdlib.h"
|
||||
#include "qtypes.h"
|
||||
#include "crc.h"
|
||||
#include "sys.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "client.h"
|
||||
#include "assert.h"
|
||||
#include "commdef.h"
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "client.h"
|
||||
#include "commdef.h"
|
||||
#include "console.h"
|
||||
#include "cmd.h"
|
||||
#include "crc.h"
|
||||
#include "qtypes.h"
|
||||
#include "sys.h"
|
||||
|
||||
usercmd_t nullcmd; // guarenteed to be zero
|
||||
|
||||
|
|
|
@ -33,7 +33,8 @@
|
|||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
#include <qtypes.h>
|
||||
|
||||
#include "qtypes.h"
|
||||
|
||||
/*
|
||||
============================================================================
|
||||
|
|
|
@ -58,7 +58,12 @@
|
|||
# include <windows.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "qfgl_ext.h"
|
||||
#include "qtypes.h"
|
||||
|
|
|
@ -32,7 +32,12 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <ctype.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
|
@ -55,30 +60,23 @@
|
|||
#define _POSIX_
|
||||
#endif
|
||||
#include <limits.h>
|
||||
#include "qtypes.h"
|
||||
|
||||
#include "quakefs.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "draw.h"
|
||||
#include "cmd.h"
|
||||
#include "cvar.h"
|
||||
#include "commdef.h"
|
||||
#include "qendian.h"
|
||||
#include "console.h"
|
||||
#include "cvar.h"
|
||||
#include "draw.h"
|
||||
#include "info.h"
|
||||
#include "server.h"
|
||||
#include "va.h"
|
||||
#include "qargs.h"
|
||||
|
||||
// LordHavoc: win32 would not compile without this
|
||||
#ifndef __const
|
||||
#define __const const
|
||||
#endif
|
||||
#include "qendian.h"
|
||||
#include "qtypes.h"
|
||||
#include "quakefs.h"
|
||||
#include "server.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
|
||||
#ifndef HAVE_FNMATCH_PROTO
|
||||
int fnmatch (__const char *__pattern, __const char *__string,
|
||||
|
||||
int __flags);
|
||||
int fnmatch (const char *__pattern, const char *__string, int __flags);
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -37,7 +37,12 @@
|
|||
#endif
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#ifdef WIN32
|
||||
# include <io.h>
|
||||
# include <fcntl.h>
|
||||
|
@ -52,8 +57,8 @@
|
|||
#endif
|
||||
#include <limits.h>
|
||||
|
||||
#include "quakeio.h"
|
||||
#include "quakefs.h"
|
||||
#include "quakeio.h"
|
||||
|
||||
#ifdef WIN32
|
||||
# ifndef __BORLANDC__
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "r_local.h"
|
||||
|
||||
#include "d_local.h"
|
||||
#include "r_local.h"
|
||||
|
||||
static finalvert_t fv[2][8];
|
||||
static auxvert_t av[8];
|
||||
|
|
|
@ -29,11 +29,12 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
|
||||
#include "console.h"
|
||||
#include "d_ifacea.h"
|
||||
#include "r_local.h"
|
||||
#include "skin.h"
|
||||
#include "sys.h"
|
||||
|
||||
#define LIGHT_MIN 5 // lowest light value we'll allow, to
|
||||
// avoid the
|
||||
|
|
|
@ -29,12 +29,13 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "r_local.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
#include "console.h"
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
|
||||
//
|
||||
// current entity info
|
||||
//
|
||||
|
|
|
@ -29,9 +29,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
#include "d_local.h" // FIXME: shouldn't need to include
|
||||
// this
|
||||
|
||||
#define MAXLEFTCLIPEDGES 100
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "d_ifacea.h"
|
||||
#include "r_local.h"
|
||||
|
||||
|
|
|
@ -29,12 +29,13 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
|
||||
#include "bothdefs.h"
|
||||
#include "r_local.h"
|
||||
#include "cl_main.h"
|
||||
#include "cl_tent.h"
|
||||
#include "console.h"
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
|
||||
mnode_t *r_pefragtopnode;
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
|
||||
int r_dlightframecount;
|
||||
|
|
|
@ -29,21 +29,25 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#include "sys.h"
|
||||
#include "cmd.h"
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "bothdefs.h"
|
||||
#include "screen.h"
|
||||
#include "console.h"
|
||||
#include "r_local.h"
|
||||
#include "cl_cam.h"
|
||||
#include "cl_main.h"
|
||||
#include "console.h"
|
||||
#include "cmd.h"
|
||||
#include "r_local.h"
|
||||
#include "screen.h"
|
||||
#include "sys.h"
|
||||
#include "view.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
//define PASSAGES
|
||||
|
||||
void *colormap;
|
||||
|
|
|
@ -30,15 +30,15 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "host.h"
|
||||
#include "sys.h"
|
||||
#include "console.h"
|
||||
#include "cmd.h"
|
||||
#include "sbar.h"
|
||||
#include "r_local.h"
|
||||
#include "draw.h"
|
||||
#include "menu.h"
|
||||
#include "cl_parse.h"
|
||||
#include "draw.h"
|
||||
#include "host.h"
|
||||
#include "menu.h"
|
||||
#include "r_local.h"
|
||||
#include "sbar.h"
|
||||
#include "sys.h"
|
||||
|
||||
qboolean allowskybox; // whether or not to allow skyboxes
|
||||
|
||||
|
|
|
@ -30,14 +30,14 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "console.h"
|
||||
#include "host.h"
|
||||
#include "qargs.h"
|
||||
#include "r_local.h"
|
||||
#include "console.h"
|
||||
#include "quakefs.h"
|
||||
#include "r_dynamic.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "r_local.h"
|
||||
|
||||
#define MAX_PARTICLES 2048 // default max # of particles at one
|
||||
// time
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "r_local.h"
|
||||
#include "d_local.h"
|
||||
|
||||
|
||||
int iskyspeed = 8;
|
||||
|
|
|
@ -29,12 +29,18 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
|
||||
#include "console.h"
|
||||
#include "r_local.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include "sys.h"
|
||||
|
||||
static int clip_current;
|
||||
static vec5_t clip_verts[2][MAXWORKINGVERTS];
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sys.h"
|
||||
|
||||
#include "r_local.h"
|
||||
#include "sys.h"
|
||||
|
||||
drawsurf_t r_drawsurf;
|
||||
|
||||
|
|
|
@ -33,14 +33,16 @@
|
|||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "host.h"
|
||||
#include "view.h"
|
||||
#include "bothdefs.h"
|
||||
#include "screen.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "r_local.h"
|
||||
#include "cvar.h"
|
||||
#include "host.h"
|
||||
#include "msg.h"
|
||||
#include "commdef.h"
|
||||
#include "pmove.h"
|
||||
#include "screen.h"
|
||||
#include "vid.h"
|
||||
#include "view.h"
|
||||
|
||||
/*
|
||||
|
||||
|
|
|
@ -29,21 +29,26 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#include "sbar.h"
|
||||
#include "screen.h"
|
||||
#include "vid.h"
|
||||
#include "wad.h"
|
||||
#include "commdef.h"
|
||||
#include "draw.h"
|
||||
#include "cmd.h"
|
||||
#include "client.h"
|
||||
#include "bothdefs.h"
|
||||
#include "va.h"
|
||||
#include "msg.h"
|
||||
#include "cl_cam.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "bothdefs.h"
|
||||
#include "cl_cam.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "commdef.h"
|
||||
#include "draw.h"
|
||||
#include "msg.h"
|
||||
#include "sbar.h"
|
||||
#include "screen.h"
|
||||
#include "va.h"
|
||||
#include "vid.h"
|
||||
|
||||
int sb_updates; // if >= vid.numpages, no update
|
||||
|
||||
|
|
|
@ -31,9 +31,15 @@
|
|||
#endif
|
||||
|
||||
#include <time.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "cl_parse.h"
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "console.h"
|
||||
#include "d_iface.h"
|
||||
|
@ -42,7 +48,6 @@
|
|||
#include "keys.h"
|
||||
#include "menu.h"
|
||||
#include "pcx.h"
|
||||
#include "qendian.h"
|
||||
#include "sbar.h"
|
||||
#include "skin.h"
|
||||
#include "sys.h"
|
||||
|
|
|
@ -30,18 +30,22 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "client.h"
|
||||
#include "cmd.h"
|
||||
#include "cl_parse.h"
|
||||
#include "console.h"
|
||||
#include "cmd.h"
|
||||
#include "msg.h"
|
||||
#include "pcx.h"
|
||||
#include "sys.h"
|
||||
#include "qendian.h"
|
||||
#include "va.h"
|
||||
#include "skin.h"
|
||||
#include "cl_parse.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
|
||||
cvar_t *baseskin;
|
||||
cvar_t *noskins;
|
||||
|
|
|
@ -31,11 +31,6 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <qtypes.h>
|
||||
#include <sound.h>
|
||||
#include <qargs.h>
|
||||
#include <console.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
|
@ -59,6 +54,10 @@
|
|||
|
||||
#include <sys/asoundlib.h>
|
||||
|
||||
#include "console.h"
|
||||
#include "qargs.h"
|
||||
#include "sound.h"
|
||||
|
||||
#ifndef MAP_FAILED
|
||||
# define MAP_FAILED ((void*)-1)
|
||||
#endif
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue