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
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __sys_h
|
|
|
|
#define __sys_h
|
|
|
|
|
2004-11-08 23:27:00 +00:00
|
|
|
/** \defgroup sys Portability
|
2006-12-05 11:40:00 +00:00
|
|
|
\ingroup utils
|
2004-11-08 23:27:00 +00:00
|
|
|
Non-portable functions
|
|
|
|
*/
|
|
|
|
//@{
|
|
|
|
|
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>
|
|
|
|
|
2001-04-10 06:55:28 +00:00
|
|
|
extern struct cvar_s *sys_nostdout;
|
2001-08-29 17:45:53 +00:00
|
|
|
extern struct cvar_s *sys_extrasleep;
|
|
|
|
extern struct cvar_s *sys_dead_sleep;
|
|
|
|
extern struct cvar_s *sys_sleep;
|
2001-04-10 06:55:28 +00:00
|
|
|
|
2001-09-21 04:22:46 +00:00
|
|
|
extern struct cvar_s *developer;
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2001-03-30 23:24:57 +00:00
|
|
|
int Sys_FileTime (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
|
|
|
|
2001-07-05 04:59:43 +00:00
|
|
|
typedef void (*sys_printf_t) (const char *fmt, va_list args);
|
|
|
|
|
2002-02-20 19:22:52 +00:00
|
|
|
void Sys_SetStdPrintf (sys_printf_t func);
|
|
|
|
void Sys_SetErrPrintf (sys_printf_t func);
|
2001-07-05 04:59:43 +00:00
|
|
|
|
2002-02-20 19:22:52 +00:00
|
|
|
void Sys_Print (FILE *stream, const char *fmt, va_list args);
|
2001-07-05 00:12:43 +00:00
|
|
|
void Sys_Printf (const char *fmt, ...) __attribute__((format(printf,1,2)));
|
2001-07-30 04:33:59 +00:00
|
|
|
void Sys_Error (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);
|
2001-09-24 21:00:23 +00:00
|
|
|
void Sys_RegisterShutdown (void (*func) (void));
|
2001-02-21 19:35:06 +00:00
|
|
|
double Sys_DoubleTime (void);
|
2003-11-20 07:00:07 +00:00
|
|
|
void Sys_TimeOfDay(date_t *date);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2010-11-23 05:09:30 +00:00
|
|
|
void Sys_MaskPrintf (int mask, const char *fmt, ...) __attribute__((format(printf,2,3)));
|
2010-12-28 00:08:51 +00:00
|
|
|
#define SYS_DEV (1|0)
|
|
|
|
#define SYS_WARN (1|2) // bit 0 so developer 1 will pick it up
|
|
|
|
#define SYS_VID (1|4)
|
|
|
|
#define SYS_FS_NF (1|8)
|
|
|
|
#define SYS_FS_F (1|16)
|
|
|
|
#define SYS_FS (1|32)
|
2010-12-30 10:01:58 +00:00
|
|
|
#define SYS_NET (1|64)
|
2010-11-23 05:09:30 +00:00
|
|
|
|
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);
|
2002-02-19 20:47:45 +00:00
|
|
|
void Sys_PageIn (void *ptr, int size);
|
2001-03-30 23:24:57 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// system IO
|
|
|
|
//
|
2001-07-15 07:04:17 +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);
|
|
|
|
|
|
|
|
//@}
|
2010-08-31 12:15:40 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif // __sys_h
|