]> git.xonotic.org Git - xonotic/darkplaces.git/blob - host.h
sys: prevent loops in signal handlers
[xonotic/darkplaces.git] / host.h
1 #ifndef HOST_H
2 #define HOST_H
3
4 #include <setjmp.h>
5 #include "qtypes.h"
6 #include "qdefs.h"
7 #include "cmd.h"
8 #include "cvar.h"
9
10 extern cvar_t developer;
11 extern cvar_t developer_entityparsing;
12 extern cvar_t developer_extra;
13 extern cvar_t developer_insane;
14 extern cvar_t developer_loadfile;
15 extern cvar_t developer_loading;
16 extern cvar_t host_isclient;
17 extern cvar_t sessionid;
18
19 struct cmd_state_s;
20
21 typedef enum host_state_e
22 {
23         host_shutdown,
24         host_init,
25         host_loading,
26         host_active,
27         host_failing, ///< crashing
28         host_failed ///< crashed or aborted, SDL dialog open
29 } host_state_t;
30
31 typedef struct host_static_s
32 {
33         jmp_buf abortframe;
34         int state;
35         unsigned int framecount; // incremented every frame, never reset (checked by Host_Error and Host_SaveConfig_f)
36         double realtime; // the accumulated mainloop time since application started (with filtering), without any slowmo or clamping
37         double dirtytime; // the main loop wall time for this frame, equal to Sys_DirtyTime() at the start of this host frame
38         double sleeptime; // time spent sleeping after the last frame
39         qbool restless; // don't sleep
40         qbool paused; // global paused state, pauses both client and server
41         cmd_buf_t *cbuf;
42
43         struct
44         {
45                 void (*ConnectLocal)(void);
46                 void (*Disconnect)(qbool, const char *, ... );
47                 void (*ToggleMenu)(void);
48                 qbool (*CL_Intermission)(void); // Quake compatibility
49                 void (*CL_SendCvar)(struct cmd_state_s *);
50                 void (*SV_SendCvar)(struct cmd_state_s *);
51                 void (*SV_Shutdown)(void);
52         } hook;
53 } host_static_t;
54
55 extern host_static_t host;
56
57 void Host_Main(void);
58 void Host_Error(const char *error, ...) DP_FUNC_PRINTF(1) DP_FUNC_NORETURN;
59 void Host_LockSession(void);
60 void Host_UnlockSession(void);
61 void Host_AbortCurrentFrame(void) DP_FUNC_NORETURN;
62 void Host_SaveConfig(const char *file);
63
64 #endif