2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
sys.h
|
|
|
|
|
|
|
|
non-portable functions
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#ifndef __QF_sys_h
|
|
|
|
#define __QF_sys_h
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2020-02-21 08:54:42 +00:00
|
|
|
/** \defgroup sys System Portability
|
2006-12-05 11:40:00 +00:00
|
|
|
\ingroup utils
|
2004-11-08 23:27:00 +00:00
|
|
|
Non-portable functions
|
|
|
|
*/
|
2020-02-11 06:20:49 +00:00
|
|
|
///@{
|
2004-11-08 23:27:00 +00:00
|
|
|
|
2002-02-20 19:22:52 +00:00
|
|
|
#include <stdio.h>
|
2007-04-04 08:27:49 +00:00
|
|
|
#include <stdint.h>
|
2001-07-05 04:59:43 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2022-03-31 07:31:13 +00:00
|
|
|
struct dstring_s;
|
|
|
|
|
[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
|
|
|
extern int sys_nostdout;
|
|
|
|
extern int sys_extrasleep;
|
|
|
|
extern int sys_dead_sleep;
|
|
|
|
extern int sys_sleep;
|
2001-04-10 06:55:28 +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
|
|
|
extern int developer;
|
2001-09-21 04:22:46 +00:00
|
|
|
|
|
|
|
|
2001-07-10 15:59:25 +00:00
|
|
|
extern const char sys_char_map[256];
|
|
|
|
|
2003-11-20 07:00:07 +00:00
|
|
|
typedef struct date_s {
|
|
|
|
int sec;
|
|
|
|
int min;
|
|
|
|
int hour;
|
|
|
|
int day;
|
|
|
|
int mon;
|
|
|
|
int year;
|
|
|
|
char str[128];
|
|
|
|
} date_t;
|
|
|
|
|
2013-02-07 06:43:26 +00:00
|
|
|
int Sys_FileExists (const char *path);
|
2013-02-20 04:59:31 +00:00
|
|
|
int Sys_isdir (const char *path);
|
2004-05-09 22:58:37 +00:00
|
|
|
int Sys_mkdir (const char *path);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2021-03-27 10:52:59 +00:00
|
|
|
typedef void (*sys_printf_t) (const char *fmt, va_list args) __attribute__((format(PRINTF, 1, 0)));
|
2016-01-03 14:04:00 +00:00
|
|
|
typedef void (*sys_error_t) (void *data);
|
2001-07-05 04:59:43 +00:00
|
|
|
|
2020-02-23 02:41:19 +00:00
|
|
|
sys_printf_t Sys_SetStdPrintf (sys_printf_t func);
|
|
|
|
sys_printf_t Sys_SetErrPrintf (sys_printf_t func);
|
2001-07-05 04:59:43 +00:00
|
|
|
|
2016-01-03 14:04:00 +00:00
|
|
|
void Sys_PushErrorHandler (sys_error_t func, void *data);
|
|
|
|
void Sys_PopErrorHandler (void);
|
|
|
|
|
2021-03-27 10:52:59 +00:00
|
|
|
void Sys_Print (FILE *stream, const char *fmt, va_list args) __attribute__((format(PRINTF, 2, 0)));
|
|
|
|
void Sys_Printf (const char *fmt, ...) __attribute__((format(PRINTF,1,2)));
|
|
|
|
void Sys_Error (const char *error, ...) __attribute__((format(PRINTF,1,2), noreturn));
|
|
|
|
void Sys_FatalError (const char *error, ...) __attribute__((format(PRINTF,1,2), noreturn));
|
2002-11-20 21:44:04 +00:00
|
|
|
void Sys_Quit (void) __attribute__((noreturn));
|
2002-02-27 06:55:21 +00:00
|
|
|
void Sys_Shutdown (void);
|
2020-03-21 13:24:11 +00:00
|
|
|
void Sys_RegisterShutdown (void (*func) (void *), void *data);
|
2022-07-26 12:14:28 +00:00
|
|
|
int64_t Sys_StartTime (void) __attribute__ ((pure));
|
2013-02-27 05:29:28 +00:00
|
|
|
int64_t Sys_LongTime (void);
|
2001-02-21 19:35:06 +00:00
|
|
|
double Sys_DoubleTime (void);
|
2021-08-27 03:10:05 +00:00
|
|
|
int64_t Sys_TimeBase (void) __attribute__ ((const));
|
2021-07-11 04:29:05 +00:00
|
|
|
double Sys_DoubleTimeBase (void) __attribute__ ((const));
|
2003-11-20 07:00:07 +00:00
|
|
|
void Sys_TimeOfDay(date_t *date);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2021-03-29 10:58:00 +00:00
|
|
|
#define SYS_DEVELOPER(developer) SYS_DeveloperID_##developer,
|
|
|
|
enum {
|
|
|
|
#include "QF/sys_developer.h"
|
|
|
|
};
|
|
|
|
|
|
|
|
// bit 0 so developer 1 will pick it up
|
|
|
|
#define SYS_DEVELOPER(developer) \
|
|
|
|
SYS_##developer = (SYS_dev | (1 << (SYS_DeveloperID_##developer + 1))),
|
2022-06-03 03:04:27 +00:00
|
|
|
typedef enum {
|
2021-03-29 10:58:00 +00:00
|
|
|
SYS_dev = 1,
|
|
|
|
#include "QF/sys_developer.h"
|
2022-06-03 03:04:27 +00:00
|
|
|
} sys_developer_e;
|
|
|
|
|
|
|
|
void Sys_MaskPrintf (sys_developer_e mask, const char *fmt, ...) __attribute__((format(PRINTF,2,3)));
|
2010-11-23 05:09:30 +00:00
|
|
|
|
2021-09-28 01:53:51 +00:00
|
|
|
struct qf_fd_set;
|
|
|
|
int Sys_Select (int maxfd, struct qf_fd_set *fdset, int64_t usec);
|
2005-01-26 01:19:36 +00:00
|
|
|
int Sys_CheckInput (int idle, int net_socket);
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *Sys_ConsoleInput (void);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
void Sys_Sleep (void);
|
2001-11-27 04:50:41 +00:00
|
|
|
|
|
|
|
int Sys_TimeID (void);
|
2001-02-21 19:35:06 +00:00
|
|
|
// called to yield for a little bit so as
|
|
|
|
// not to hog cpu when paused or debugging
|
|
|
|
|
2002-08-20 23:04:57 +00:00
|
|
|
void Sys_MaskFPUExceptions (void);
|
2002-11-13 19:26:44 +00:00
|
|
|
void Sys_PushSignalHook (int (*hook)(int, void*), void *data);
|
2002-08-20 23:04:57 +00:00
|
|
|
void Sys_PopSignalHook (void);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
// send text to the console
|
|
|
|
|
|
|
|
void Sys_Init (void);
|
|
|
|
void Sys_Init_Cvars (void);
|
|
|
|
|
2001-03-30 23:24:57 +00:00
|
|
|
//
|
|
|
|
// memory protection
|
|
|
|
//
|
2007-04-04 07:48:14 +00:00
|
|
|
void Sys_MakeCodeWriteable (uintptr_t startaddr, size_t length);
|
2021-02-03 04:19:19 +00:00
|
|
|
void Sys_PageIn (void *ptr, size_t size);
|
2021-07-12 09:55:16 +00:00
|
|
|
size_t Sys_PageSize (void);
|
2021-02-03 04:19:19 +00:00
|
|
|
void *Sys_Alloc (size_t size);
|
2021-07-12 07:33:47 +00:00
|
|
|
void Sys_Free (void *mem, size_t size);
|
2022-06-04 03:24:53 +00:00
|
|
|
int Sys_LockMemory (void *mem, size_t size);
|
2001-03-30 23:24:57 +00:00
|
|
|
|
2021-08-13 12:26:48 +00:00
|
|
|
int Sys_ProcessorCount (void);
|
|
|
|
|
2001-03-30 23:24:57 +00:00
|
|
|
//
|
|
|
|
// system IO
|
|
|
|
//
|
2021-03-27 10:52:59 +00:00
|
|
|
void Sys_DebugLog(const char *file, const char *fmt, ...) __attribute__((format(PRINTF,2,3)));
|
2001-03-30 23:24:57 +00:00
|
|
|
|
2002-08-20 19:16:11 +00:00
|
|
|
#define SYS_CHECKMEM(x) \
|
|
|
|
do { \
|
|
|
|
if (!(x)) \
|
|
|
|
Sys_Error ("%s: Failed to allocate memory.", __FUNCTION__); \
|
2002-03-21 19:47:31 +00:00
|
|
|
} while (0)
|
|
|
|
|
2010-08-24 23:21:07 +00:00
|
|
|
/** Create all parent directories leading to the file specified by path.
|
|
|
|
|
|
|
|
\param path The path to create.
|
|
|
|
\return 0 on success, -1 on failure.
|
|
|
|
|
|
|
|
\note No directory will be created for the name after the final
|
|
|
|
<code>/</code>. This is to allow the same path string to be used for
|
|
|
|
both this function and Qopen.
|
|
|
|
*/
|
|
|
|
int Sys_CreatePath (const char *path);
|
|
|
|
|
2010-08-24 07:01:01 +00:00
|
|
|
/** Expand leading "~/" in \a path to the user's home directory.
|
|
|
|
On Linux-like systems, the user's home directory is obtained from the
|
|
|
|
system, or failing that, the \c HOME environment variable.
|
|
|
|
|
|
|
|
On Windows systems, first the \c HOME environment variable is checked.
|
|
|
|
If \c HOME is not set, \c WINDIR is used.
|
|
|
|
|
|
|
|
\param path the path to check for "~/"
|
|
|
|
\return the expanded path
|
|
|
|
\note It is the caller's responsibility to free the returned string.
|
|
|
|
*/
|
|
|
|
char *Sys_ExpandSquiggle (const char *path);
|
|
|
|
|
2022-03-31 07:31:13 +00:00
|
|
|
/** Open a newly created file with a guaranteed unique name.
|
|
|
|
|
|
|
|
Uniqueness is guaranteed by adding a numeric sequence between the \a
|
|
|
|
prefix and \a suffix, with a minium of \a mindigits numeric characters
|
|
|
|
(with any required leading 0s to expand the number to \a mindigits).
|
|
|
|
|
|
|
|
The created file has read and write permissions as modified by the OS,
|
|
|
|
and the handle can be bothe written and read.
|
|
|
|
|
|
|
|
\param name dstring into which the name will be generated. Any
|
|
|
|
existing contents will be lost. If an error occurs,
|
|
|
|
\a name will be set to the error string.
|
|
|
|
\param prefix This includes the path to the file and any file name
|
|
|
|
prefix. The numeric sequence will be appended directly
|
|
|
|
to the prefix with no directory separator.
|
|
|
|
\param suffix Optional tail to be appended after the numeric sequence,
|
|
|
|
usually the file extension. A dot is not added
|
|
|
|
automatically, it is up to the caller to supply one. NULL
|
|
|
|
and an empty string are equivalent.
|
|
|
|
\param mindigits The minimum number of digits to include in the
|
|
|
|
generated file name. The sequence number will be padded
|
|
|
|
with 0s in order to meet this menimum. Overflow will
|
|
|
|
simply produce longer numeric sequence sub-strings.
|
|
|
|
\return File handle to the newly created file, or a negative
|
|
|
|
value if an error occured (the negative error code).
|
|
|
|
Suitable for use with read, write, fdopen, Qdopen, etc.
|
|
|
|
\note It is the caller's responsibility to close the file.
|
|
|
|
*/
|
|
|
|
int Sys_UniqueFile (struct dstring_s *name, const char *prefix,
|
|
|
|
const char *suffix, int mindigits);
|
|
|
|
|
2020-02-11 06:20:49 +00:00
|
|
|
///@}
|
2010-08-31 12:15:40 +00:00
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#endif//__QF_sys_h
|