]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cmd.h
physics: fix and refactor unsticking
[xonotic/darkplaces.git] / cmd.h
diff --git a/cmd.h b/cmd.h
index ada9769c433282a40d75ea69344c26799dd37d17..a94ddb16665d9fe91623af7fea8a5f5b91e79bbc 100644 (file)
--- a/cmd.h
+++ b/cmd.h
@@ -51,7 +51,7 @@ struct cmd_state_s;
 #define CF_SERVER_FROM_CLIENT   (1u<<3)  ///< command the client is allowed to execute on the server as a stringcmd
 #define CF_CHEAT                (1u<<4)  ///< command or cvar that gives an unfair advantage over other players and is blocked unless sv_cheats is 1
 #define CF_ARCHIVE              (1u<<5)  ///< cvar should have its set value saved to config.cfg and persist across sessions
-#define CF_READONLY             (1u<<6)  ///< cvar cannot be changed from the console or the command buffer
+#define CF_READONLY             (1u<<6)  ///< cvar cannot be changed from the console or the command buffer, and is considered CF_PERSISTENT
 #define CF_NOTIFY               (1u<<7)  ///< cvar should trigger a chat notification to all connected clients when changed
 #define CF_SERVERINFO           (1u<<8)  ///< command or cvar relevant to serverinfo string handling
 #define CF_USERINFO             (1u<<9)  ///< command or cvar used to communicate userinfo to the server
@@ -268,6 +268,8 @@ int Cmd_CheckParm (cmd_state_t *cmd, const char *parm);
 /// Parses a single line of text into arguments and tries to execute it.
 /// The text can come from the command buffer, a remote client, or stdin.
 void Cmd_ExecuteString(cmd_state_t *cmd, const char *text, size_t textlen, cmd_source_t src, qbool lockmutex);
+/// Like Cmd_ExecuteString, but with variable expansion.
+void Cmd_PreprocessAndExecuteString(cmd_state_t *cmd, const char *text, size_t textlen, cmd_source_t src, qbool lockmutex);
 
 /// quotes a string so that it can be used as a command argument again;
 /// quoteset is a string that contains one or more of ", \, $ and specifies