X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=host.h;h=61182b5242c1140449824f6488854c03f3c4a780;hb=3a9bae6363ee109af0bc7877e53ea747fc1846e0;hp=c87c3649edf86715e69226558e6e0028fd877718;hpb=468f2af6459a6222dc8bbfb4470250f7ffd00edc;p=xonotic%2Fdarkplaces.git diff --git a/host.h b/host.h index c87c3649..61182b52 100644 --- a/host.h +++ b/host.h @@ -5,6 +5,16 @@ #include "qtypes.h" #include "qdefs.h" #include "cmd.h" +#include "cvar.h" + +extern cvar_t developer; +extern cvar_t developer_entityparsing; +extern cvar_t developer_extra; +extern cvar_t developer_insane; +extern cvar_t developer_loadfile; +extern cvar_t developer_loading; +extern cvar_t host_isclient; +extern cvar_t sessionid; struct cmd_state_s; @@ -16,14 +26,14 @@ typedef enum host_state_e host_active } host_state_t; -typedef struct host_s +typedef struct host_static_s { jmp_buf abortframe; int state; - int framecount; // incremented every frame, never reset (checked by Host_Error and Host_SaveConfig_f) + unsigned int framecount; // incremented every frame, never reset (checked by Host_Error and Host_SaveConfig_f) double realtime; // the accumulated mainloop time since application started (with filtering), without any slowmo or clamping double dirtytime; // the main loop wall time for this frame, equal to Sys_DirtyTime() at the start of this host frame - double sleeptime; // time spent sleeping overall + double sleeptime; // time spent sleeping after the last frame qbool restless; // don't sleep qbool paused; // global paused state, pauses both client and server cmd_buf_t *cbuf; @@ -31,15 +41,16 @@ typedef struct host_s struct { void (*ConnectLocal)(void); - void (*Disconnect)(void); + void (*Disconnect)(qbool, const char *, ... ); void (*ToggleMenu)(void); qbool (*CL_Intermission)(void); // Quake compatibility void (*CL_SendCvar)(struct cmd_state_s *); void (*SV_SendCvar)(struct cmd_state_s *); + void (*SV_Shutdown)(void); } hook; -} host_t; +} host_static_t; -extern host_t host; +extern host_static_t host; void Host_Main(void); void Host_Shutdown(void);