mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
439 lines
16 KiB
C
439 lines
16 KiB
C
/*
|
|
Copyright (C) 1996-2001 Id Software, Inc.
|
|
Copyright (C) 2002-2009 John Fitzgibbons and others
|
|
Copyright (C) 2010-2014 QuakeSpasm developers
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
#ifndef _Q_COMMON_H
|
|
#define _Q_COMMON_H
|
|
|
|
// comndef.h -- general definitions
|
|
|
|
#if defined(_WIN32)
|
|
#ifdef _MSC_VER
|
|
# pragma warning(disable:4244)
|
|
/* 'argument' : conversion from 'type1' to 'type2',
|
|
possible loss of data */
|
|
# pragma warning(disable:4305)
|
|
/* 'identifier' : truncation from 'type1' to 'type2' */
|
|
/* in our case, truncation from 'double' to 'float' */
|
|
# pragma warning(disable:4267)
|
|
/* 'var' : conversion from 'size_t' to 'type',
|
|
possible loss of data (/Wp64 warning) */
|
|
#endif /* _MSC_VER */
|
|
#endif /* _WIN32 */
|
|
|
|
#undef min
|
|
#undef max
|
|
|
|
#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L))
|
|
#define GENERIC_TYPES(x, separator) \
|
|
x(int, i) separator \
|
|
x(unsigned int, u) separator \
|
|
x(long, l) separator \
|
|
x(unsigned long, ul) separator \
|
|
x(long long, ll) separator \
|
|
x(unsigned long long, ull) separator \
|
|
x(float, f) separator \
|
|
x(double, d)
|
|
|
|
#define COMMA ,
|
|
#define NO_COMMA
|
|
|
|
#define IMPL_GENERIC_FUNCS(type, suffix) \
|
|
static inline type q_min_##suffix (type a, type b) { \
|
|
return (a < b) ? a : b; \
|
|
} \
|
|
static inline type q_max_##suffix (type a, type b) { \
|
|
return (a > b) ? a : b; \
|
|
} \
|
|
static inline type clamp_##suffix (type minval, type val, type maxval) { \
|
|
return (val < minval) ? minval : ((val > maxval) ? maxval : val); \
|
|
}
|
|
|
|
GENERIC_TYPES (IMPL_GENERIC_FUNCS, NO_COMMA)
|
|
|
|
#define SELECT_Q_MIN(type, suffix) type: q_min_##suffix
|
|
#define q_min(a, b) _Generic((a) + (b), GENERIC_TYPES (SELECT_Q_MIN, COMMA))(a, b)
|
|
|
|
#define SELECT_Q_MAX(type, suffix) type: q_max_##suffix
|
|
#define q_max(a, b) _Generic((a) + (b), GENERIC_TYPES (SELECT_Q_MAX, COMMA))(a, b)
|
|
|
|
#define SELECT_CLAMP(type, suffix) type: clamp_##suffix
|
|
#define CLAMP(minval, val, maxval) _Generic((minval) + (val) + (maxval), \
|
|
GENERIC_TYPES (SELECT_CLAMP, COMMA))(minval, val, maxval)
|
|
|
|
#elif defined(__GNUC__)
|
|
/* min and max macros with type checking -- based on tyrquake. */
|
|
#define q_max(a,b) ({ \
|
|
const __typeof(a) a_ = (a); \
|
|
const __typeof(b) b_ = (b); \
|
|
(void)(&a_ == &b_); \
|
|
(a_ > b_) ? a_ : b_; \
|
|
})
|
|
#define q_min(a,b) ({ \
|
|
const __typeof(a) a_ = (a); \
|
|
const __typeof(b) b_ = (b); \
|
|
(void)(&a_ == &b_); \
|
|
(a_ < b_) ? a_ : b_; \
|
|
})
|
|
#define CLAMP(_minval, x, _maxval) ({ \
|
|
const __typeof(x) x_ = (x); \
|
|
const __typeof(_minval) valmin_ = (_minval);\
|
|
const __typeof(_maxval) valmax_ = (_maxval);\
|
|
(void)(&x_ == &valmin_); \
|
|
(void)(&x_ == &valmax_); \
|
|
(x_ < valmin_) ? valmin_ : \
|
|
(x_ > valmax_) ? valmax_ : x_; \
|
|
})
|
|
|
|
#else
|
|
#define q_min(a, b) (((a) < (b)) ? (a) : (b))
|
|
#define q_max(a, b) (((a) > (b)) ? (a) : (b))
|
|
#define CLAMP(_minval, x, _maxval) \
|
|
((x) < (_minval) ? (_minval) : \
|
|
(x) > (_maxval) ? (_maxval) : (x))
|
|
#endif
|
|
|
|
#define countof(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
typedef struct sizebuf_s
|
|
{
|
|
qboolean allowoverflow; // if false, do a Sys_Error
|
|
qboolean overflowed; // set to true if the buffer size failed
|
|
byte *data;
|
|
int maxsize;
|
|
int cursize;
|
|
} sizebuf_t;
|
|
|
|
void SZ_Alloc (sizebuf_t *buf, int startsize);
|
|
void SZ_Free (sizebuf_t *buf);
|
|
void SZ_Clear (sizebuf_t *buf);
|
|
void *SZ_GetSpace (sizebuf_t *buf, int length);
|
|
void SZ_Write (sizebuf_t *buf, const void *data, int length);
|
|
void SZ_Print (sizebuf_t *buf, const char *data); // strcats onto the sizebuf
|
|
|
|
//============================================================================
|
|
|
|
typedef struct link_s
|
|
{
|
|
struct link_s *prev, *next;
|
|
} link_t;
|
|
|
|
|
|
void ClearLink (link_t *l);
|
|
void RemoveLink (link_t *l);
|
|
void InsertLinkBefore (link_t *l, link_t *before);
|
|
void InsertLinkAfter (link_t *l, link_t *after);
|
|
|
|
// (type *)STRUCT_FROM_LINK(link_t *link, type, member)
|
|
// ent = STRUCT_FROM_LINK(link,entity_t,order)
|
|
// FIXME: remove this mess!
|
|
#define STRUCT_FROM_LINK(l,t,m) ((t *)((byte *)l - offsetof(t,m)))
|
|
|
|
//============================================================================
|
|
|
|
extern qboolean host_bigendian;
|
|
|
|
extern short (*BigShort) (short l);
|
|
extern short (*LittleShort) (short l);
|
|
extern int (*BigLong) (int l);
|
|
extern int (*LittleLong) (int l);
|
|
extern float (*BigFloat) (float l);
|
|
extern float (*LittleFloat) (float l);
|
|
|
|
//============================================================================
|
|
|
|
void MSG_WriteChar (sizebuf_t *sb, int c);
|
|
void MSG_WriteByte (sizebuf_t *sb, int c);
|
|
void MSG_WriteShort (sizebuf_t *sb, int c);
|
|
void MSG_WriteLong (sizebuf_t *sb, int c);
|
|
void MSG_WriteUInt64 (sizebuf_t *sb, unsigned long long c);
|
|
void MSG_WriteInt64 (sizebuf_t *sb, long long c);
|
|
void MSG_WriteFloat (sizebuf_t *sb, float f);
|
|
void MSG_WriteDouble (sizebuf_t *sb, double f);
|
|
void MSG_WriteStringUnterminated (sizebuf_t *sb, const char *s);
|
|
void MSG_WriteString (sizebuf_t *sb, const char *s);
|
|
void MSG_WriteCoord (sizebuf_t *sb, float f, unsigned int flags);
|
|
void MSG_WriteAngle (sizebuf_t *sb, float f, unsigned int flags);
|
|
void MSG_WriteAngle16 (sizebuf_t *sb, float f, unsigned int flags); //johnfitz
|
|
void MSG_WriteEntity(sizebuf_t *sb, unsigned int index, unsigned int pext2); //spike
|
|
struct entity_state_s;
|
|
void MSG_WriteStaticOrBaseLine(sizebuf_t *buf, int idx, struct entity_state_s *state, unsigned int protocol_pext2, unsigned int protocol, unsigned int protocolflags); //spike
|
|
|
|
extern int msg_readcount;
|
|
extern qboolean msg_badread; // set if a read goes beyond end of message
|
|
|
|
void MSG_BeginReading (void);
|
|
int MSG_ReadChar (void);
|
|
int MSG_ReadByte (void);
|
|
int MSG_ReadShort (void);
|
|
int MSG_ReadLong (void);
|
|
unsigned long long MSG_ReadUInt64 (void);
|
|
long long MSG_ReadInt64 (void);
|
|
float MSG_ReadFloat (void);
|
|
float MSG_ReadDouble (void);
|
|
const char *MSG_ReadString (void);
|
|
|
|
float MSG_ReadCoord (unsigned int flags);
|
|
float MSG_ReadAngle (unsigned int flags);
|
|
float MSG_ReadAngle16 (unsigned int flags); //johnfitz
|
|
byte *MSG_ReadData (unsigned int length); // spike
|
|
unsigned int MSG_ReadEntity(unsigned int pext2); //spike
|
|
|
|
void COM_Effectinfo_Enumerate(int (*cb)(const char *pname)); //spike -- for dp compat
|
|
|
|
//============================================================================
|
|
|
|
void Q_memset (void *dest, int fill, size_t count);
|
|
void Q_memcpy (void *dest, const void *src, size_t count);
|
|
int Q_memcmp (const void *m1, const void *m2, size_t count);
|
|
void Q_strcpy (char *dest, const char *src);
|
|
void Q_strncpy (char *dest, const char *src, int count);
|
|
int Q_strlen (const char *str);
|
|
char *Q_strrchr (const char *s, char c);
|
|
void Q_strcat (char *dest, const char *src);
|
|
int Q_strcmp (const char *s1, const char *s2);
|
|
int Q_strncmp (const char *s1, const char *s2, int count);
|
|
int Q_atoi (const char *str);
|
|
float Q_atof (const char *str);
|
|
void Q_ftoa(char *str, float in);
|
|
int wildcmp(const char *wild, const char *string);
|
|
void Info_RemoveKey(char *info, const char *key);
|
|
void Info_SetKey(char *info, size_t infosize, const char *key, const char *val);
|
|
const char *Info_GetKey(const char *info, const char *key, char *out, size_t outsize);
|
|
void Info_Print(const char *info);
|
|
void Info_Enumerate(const char *info, void(*cb)(void *ctx, const char *key, const char *value), void *cbctx);
|
|
|
|
|
|
#include "strl_fn.h"
|
|
|
|
/* locale-insensitive strcasecmp replacement functions: */
|
|
extern int q_strcasecmp (const char * s1, const char * s2);
|
|
extern int q_strncasecmp (const char *s1, const char *s2, size_t n);
|
|
|
|
/* locale-insensitive case-insensitive alternative to strstr */
|
|
extern char *q_strcasestr(const char *haystack, const char *needle);
|
|
|
|
/* locale-insensitive strlwr/upr replacement functions: */
|
|
extern char *q_strlwr (char *str);
|
|
extern char *q_strupr (char *str);
|
|
|
|
/* snprintf, vsnprintf : always use our versions. */
|
|
extern int q_snprintf (char *str, size_t size, const char *format, ...) FUNC_PRINTF(3,4);
|
|
extern int q_vsnprintf(char *str, size_t size, const char *format, va_list args) FUNC_PRINTF(3,0);
|
|
|
|
#define strcasecmp brokeninmsvc
|
|
#define stricmp brokenportability
|
|
#define strncasecmp brokeninmsvc
|
|
#define strnicmp brokenportability
|
|
|
|
//============================================================================
|
|
|
|
extern char com_token[1024];
|
|
extern qboolean com_eof;
|
|
|
|
const char *COM_Parse (const char *data);
|
|
|
|
|
|
extern int com_argc;
|
|
extern char **com_argv;
|
|
|
|
extern int safemode;
|
|
/* safe mode: in true, the engine will behave as if one
|
|
of these arguments were actually on the command line:
|
|
-nosound, -nocdaudio, -nomidi, -stdvid, -dibonly,
|
|
-nomouse, -nojoy, -nolan
|
|
*/
|
|
|
|
int COM_CheckParm (const char *parm);
|
|
int COM_CheckParmNext (int last, const char *parm);
|
|
|
|
void COM_Init (void);
|
|
void COM_InitArgv (int argc, char **argv);
|
|
void COM_InitFilesystem (void);
|
|
|
|
const char *COM_SkipPath (const char *pathname);
|
|
void COM_StripExtension (const char *in, char *out, size_t outsize);
|
|
void COM_FileBase (const char *in, char *out, size_t outsize);
|
|
void COM_AddExtension (char *path, const char *extension, size_t len);
|
|
qboolean COM_DownloadNameOkay(const char *filename);
|
|
#if 0 /* COM_DefaultExtension can be dangerous */
|
|
void COM_DefaultExtension (char *path, const char *extension, size_t len);
|
|
#endif
|
|
const char *COM_FileGetExtension (const char *in); /* doesn't return NULL */
|
|
void COM_ExtractExtension (const char *in, char *out, size_t outsize);
|
|
void COM_CreatePath (char *path);
|
|
|
|
char *va (const char *format, ...) FUNC_PRINTF(1,2);
|
|
// does a varargs printf into a temp buffer
|
|
|
|
unsigned COM_HashString (const char *str);
|
|
|
|
// localization support for 2021 rerelease version:
|
|
void LOC_Init (void);
|
|
void LOC_Shutdown (void);
|
|
const char* LOC_GetRawString (const char *key);
|
|
const char* LOC_GetString (const char *key);
|
|
qboolean LOC_HasPlaceholders (const char *str);
|
|
size_t LOC_Format (const char *format, const char* (*getarg_fn)(int idx, void* userdata), void* userdata, char* out, size_t len);
|
|
|
|
//============================================================================
|
|
|
|
// QUAKEFS
|
|
#ifdef _WIN32
|
|
#define qofs_t __int64 //LLP64 sucks and needs clumsy workarounds.
|
|
#define fseek _fseeki64
|
|
#define ftell _ftelli64
|
|
#elif _POSIX_C_SOURCE >= 200112L
|
|
#define qofs_t off_t //posix has its own LFS support for 32bit systems.
|
|
#define fseek fseeko
|
|
#define ftell ftello
|
|
#else
|
|
#define qofs_t long //LP64 just makes more sense. everything just works.
|
|
#endif
|
|
#define qofs_Make(low,high) ((unsigned int)(low) | ((qofs_t)(high)<<32))
|
|
|
|
typedef struct
|
|
{
|
|
char name[MAX_QPATH];
|
|
qofs_t filepos, filelen;
|
|
qofs_t deflatedsize;
|
|
} packfile_t;
|
|
|
|
typedef struct pack_s
|
|
{
|
|
char filename[MAX_OSPATH];
|
|
int handle;
|
|
int numfiles;
|
|
time_t mtime;
|
|
packfile_t *files;
|
|
} pack_t;
|
|
|
|
typedef struct searchpath_s
|
|
{
|
|
unsigned int path_id; // identifier assigned to the game directory
|
|
// Note that <install_dir>/game1 and
|
|
// <userdir>/game1 have the same id.
|
|
char filename[MAX_OSPATH];
|
|
char purename[MAX_OSPATH]; // 'gamedir[/foo.pak]'
|
|
pack_t *pack; // only one of filename / pack will be used
|
|
struct searchpath_s *next;
|
|
} searchpath_t;
|
|
|
|
extern searchpath_t *com_searchpaths;
|
|
extern searchpath_t *com_base_searchpaths;
|
|
|
|
extern qofs_t com_filesize;
|
|
struct cache_user_s;
|
|
|
|
extern char com_basedir[MAX_OSPATH];
|
|
extern char com_gamedir[MAX_OSPATH];
|
|
extern int file_from_pak; // global indicating that file came from a pak
|
|
|
|
void COM_ListAllFiles(void *ctx, const char *pattern, qboolean (*cb)(void *ctx, const char *fname, time_t mtime, size_t fsize, searchpath_t *spath), unsigned int flags, const char *pkgfilter);
|
|
const char *COM_GetGameNames(qboolean full);
|
|
qboolean COM_GameDirMatches(const char *tdirs);
|
|
|
|
pack_t *FSZIP_LoadArchive (const char *packfile);
|
|
FILE *FSZIP_Deflate(FILE *src, qofs_t srcsize, qofs_t outsize, const char *entryname);
|
|
|
|
void COM_WriteFile (const char *filename, const void *data, int len);
|
|
int COM_OpenFile (const char *filename, int *handle, unsigned int *path_id);
|
|
int COM_FOpenFile (const char *filename, FILE **file, unsigned int *path_id);
|
|
qboolean COM_FileExists (const char *filename, unsigned int *path_id);
|
|
void COM_CloseFile (int h);
|
|
|
|
// these procedures open a file using COM_FindFile and loads it into a proper
|
|
// buffer. the buffer is allocated with a total size of com_filesize + 1. the
|
|
// procedures differ by their buffer allocation method.
|
|
byte *COM_LoadStackFile (const char *path, void *buffer, int bufsize,
|
|
unsigned int *path_id);
|
|
// uses the specified stack stack buffer with the specified size
|
|
// of bufsize. if bufsize is too short, uses temp hunk. the bufsize
|
|
// must include the +1
|
|
byte *COM_LoadTempFile (const char *path, unsigned int *path_id);
|
|
// allocates the buffer on the temp hunk.
|
|
byte *COM_LoadHunkFile (const char *path, unsigned int *path_id);
|
|
// allocates the buffer on the hunk.
|
|
byte *COM_LoadZoneFile (const char *path, unsigned int *path_id);
|
|
// allocates the buffer on the zone.
|
|
void COM_LoadCacheFile (const char *path, struct cache_user_s *cu,
|
|
unsigned int *path_id);
|
|
// uses cache mem for allocating the buffer.
|
|
byte *COM_LoadMallocFile (const char *path, unsigned int *path_id);
|
|
// allocates the buffer on the system mem (malloc).
|
|
|
|
// Opens the given path directly, ignoring search paths.
|
|
// Returns NULL on failure, or else a '\0'-terminated malloc'ed buffer.
|
|
// Loads in "t" mode so CRLF to LF translation is performed on Windows.
|
|
byte *COM_LoadMallocFile_TextMode_OSPath (const char *path, long *len_out);
|
|
|
|
// Attempts to parse an int, followed by a newline.
|
|
// Returns advanced buffer position.
|
|
// Doesn't signal parsing failure, but this is not needed for savegame loading.
|
|
const char *COM_ParseIntNewline(const char *buffer, int *value);
|
|
|
|
// Attempts to parse a float followed by a newline.
|
|
// Returns advanced buffer position.
|
|
const char *COM_ParseFloatNewline(const char *buffer, float *value);
|
|
|
|
// Parse a string of non-whitespace into com_token, then tries to consume a
|
|
// newline. Returns advanced buffer position.
|
|
const char *COM_ParseStringNewline(const char *buffer);
|
|
|
|
|
|
#define FS_ENT_NONE (0)
|
|
#define FS_ENT_FILE (1 << 0)
|
|
#define FS_ENT_DIRECTORY (1 << 1)
|
|
|
|
/* The following FS_*() stdio replacements are necessary if one is
|
|
* to perform non-sequential reads on files reopened on pak files
|
|
* because we need the bookkeeping about file start/end positions.
|
|
* Allocating and filling in the fshandle_t structure is the users'
|
|
* responsibility when the file is initially opened. */
|
|
|
|
typedef struct _fshandle_t
|
|
{
|
|
FILE *file;
|
|
qboolean pak; /* is the file read from a pak */
|
|
long start; /* file or data start position */
|
|
long length; /* file or data size */
|
|
long pos; /* current position relative to start */
|
|
} fshandle_t;
|
|
|
|
size_t FS_fread(void *ptr, size_t size, size_t nmemb, fshandle_t *fh);
|
|
int FS_fseek(fshandle_t *fh, long offset, int whence);
|
|
long FS_ftell(fshandle_t *fh);
|
|
void FS_rewind(fshandle_t *fh);
|
|
int FS_feof(fshandle_t *fh);
|
|
int FS_ferror(fshandle_t *fh);
|
|
int FS_fclose(fshandle_t *fh);
|
|
int FS_fgetc(fshandle_t *fh);
|
|
char *FS_fgets(char *s, int size, fshandle_t *fh);
|
|
long FS_filelength (fshandle_t *fh);
|
|
|
|
|
|
extern struct cvar_s registered;
|
|
extern qboolean standard_quake, rogue, hipnotic;
|
|
extern qboolean fitzmode;
|
|
/* if true, run in fitzquake mode disabling custom quakespasm hacks */
|
|
|
|
#endif /* _Q_COMMON_H */
|
|
|