]> git.xonotic.org Git - xonotic/darkplaces.git/blob - host.h
cmd: inline Cmd_Arg* helper funcs in all compilation units
[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_state_t;
28
29 typedef struct host_static_s
30 {
31         jmp_buf abortframe;
32         int state;
33         unsigned int framecount; // incremented every frame, never reset (checked by Host_Error and Host_SaveConfig_f)
34         double realtime; // the accumulated mainloop time since application started (with filtering), without any slowmo or clamping
35         double dirtytime; // the main loop wall time for this frame, equal to Sys_DirtyTime() at the start of this host frame
36         double sleeptime; // time spent sleeping after the last frame
37         qbool restless; // don't sleep
38         qbool paused; // global paused state, pauses both client and server
39         cmd_buf_t *cbuf;
40
41         struct
42         {
43                 void (*ConnectLocal)(void);
44                 void (*Disconnect)(qbool, const char *, ... );
45                 void (*ToggleMenu)(void);
46                 qbool (*CL_Intermission)(void); // Quake compatibility
47                 void (*CL_SendCvar)(struct cmd_state_s *);
48                 void (*SV_SendCvar)(struct cmd_state_s *);
49                 void (*SV_Shutdown)(void);
50         } hook;
51 } host_static_t;
52
53 extern host_static_t host;
54
55 void Host_Main(void);
56 void Host_Shutdown(void);
57 void Host_Error(const char *error, ...) DP_FUNC_PRINTF(1) DP_FUNC_NORETURN;
58 void Host_LockSession(void);
59 void Host_UnlockSession(void);
60 void Host_AbortCurrentFrame(void) DP_FUNC_NORETURN;
61 void Host_SaveConfig(const char *file);
62
63 #endif