]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - quakedef.h
added friction and waterfriction movevars stats
[xonotic/darkplaces.git] / quakedef.h
index cd43b7d0b41c57f156b766243bc6e744de4b9a1f..ad63c3019dc8589697d9c9b3089fb3b617d3532f 100644 (file)
@@ -22,6 +22,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #ifndef QUAKEDEF_H
 #define QUAKEDEF_H
 
+#if defined(__GNUC__) && (__GNUC__ > 2)
+#define DP_FUNC_PRINTF(n) __attribute__ ((format (printf, n, n+1)))
+#else
+#define DP_FUNC_PRINTF(n)
+#endif
 
 #include <sys/types.h>
 #include <ctype.h>
@@ -50,7 +55,6 @@ extern char engineversion[128];
 #define MAX_PACKETFRAGMENT 1024                // max length of packet fragment
 #define NET_MAXMESSAGE 65536
 #define NET_MINRATE            1000 // limits "rate" and "sv_maxrate" cvars
-#define NET_MAXRATE            150000 // limits "rate" and "sv_maxrate" cvars
 
 //
 // per-level limits
@@ -90,6 +94,24 @@ extern char engineversion[128];
 //#define STAT_TIME                    17 // FTE
 //#define STAT_VIEW2           20 // FTE
 #define STAT_VIEWZOOM          21 // DP
+#define STAT_MOVEVARS_FRICTION                                         228 // DP
+#define STAT_MOVEVARS_WATERFRICTION                                    239 // DP
+#define STAT_MOVEVARS_TICRATE                                          240 // DP
+#define STAT_MOVEVARS_TIMESCALE                                                241 // DP
+#define STAT_MOVEVARS_GRAVITY                                          242 // DP
+#define STAT_MOVEVARS_STOPSPEED                                                243 // DP
+#define STAT_MOVEVARS_MAXSPEED                                         244 // DP
+#define STAT_MOVEVARS_SPECTATORMAXSPEED                                245 // DP
+#define STAT_MOVEVARS_ACCELERATE                                       246 // DP
+#define STAT_MOVEVARS_AIRACCELERATE                                    247 // DP
+#define STAT_MOVEVARS_WATERACCELERATE                          248 // DP
+#define STAT_MOVEVARS_ENTGRAVITY                                       249 // DP
+#define STAT_MOVEVARS_JUMPVELOCITY                                     250 // DP
+#define STAT_MOVEVARS_EDGEFRICTION                                     251 // DP
+#define STAT_MOVEVARS_MAXAIRSPEED                                      252 // DP
+#define STAT_MOVEVARS_STEPHEIGHT                                       253 // DP
+#define STAT_MOVEVARS_AIRACCEL_QW                                      254 // DP
+#define STAT_MOVEVARS_AIRACCEL_SIDEWAYS_FRICTION       255 // DP
 
 // stock defines
 
@@ -209,6 +231,7 @@ extern char engineversion[128];
 #include "sbar.h"
 #include "sound.h"
 #include "model_shared.h"
+#include "world.h"
 #include "client.h"
 #include "render.h"
 #include "progs.h"
@@ -216,7 +239,6 @@ extern char engineversion[128];
 #include "server.h"
 
 #include "input.h"
-#include "world.h"
 #include "keys.h"
 #include "console.h"
 #include "menu.h"
@@ -239,9 +261,9 @@ void Host_InitCommands(void);
 void Host_Main(void);
 void Host_Shutdown(void);
 void Host_StartVideo(void);
-void Host_Error(const char *error, ...);
+void Host_Error(const char *error, ...) DP_FUNC_PRINTF(1);
 void Host_Quit_f(void);
-void Host_ClientCommands(const char *fmt, ...);
+void Host_ClientCommands(const char *fmt, ...) DP_FUNC_PRINTF(1);
 void Host_ShutdownServer(void);
 void Host_Reconnect_f(void);