]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/getreplies.qc
Show compact times (1.34 instead of 0:01.34) in some places (messages, scoreboard...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / getreplies.qc
index c5a26e8c92b7d598032409ff4942fcc75b240a15..b6bde0c68c210121793de4b84275bc83e195e7f6 100644 (file)
@@ -1,35 +1,38 @@
 #include "getreplies.qh"
 
-#include <common/weapons/_all.qh>
-#include <common/stats.qh>
-#include <server/g_world.qh>
-#include <server/miscfunctions.qh>
-
 #include <common/command/_mod.qh>
-#include "getreplies.qh"
-
-#include "../race.qh"
-
 #include <common/constants.qh>
 #include <common/gamemodes/_mod.qh>
+#include <common/monsters/_mod.qh>
 #include <common/net_linked.qh>
+#include <common/notifications/all.qh>
+#include <common/playerstats.qh>
+#include <common/stats.qh>
 #include <common/util.qh>
-
-#include <common/monsters/_mod.qh>
+#include <common/weapons/_all.qh>
+#include <common/wepent.qh>
+#include <server/command/getreplies.qh>
+#include <server/intermission.qh>
+#include <server/main.qh>
+#include <server/mapvoting.qh>
+#include <server/mutators/_mod.qh>
+#include <server/race.qh>
+#include <server/weapons/selection.qh>
+#include <server/world.qh>
 
 // =========================================================
 //  Reply messages for common commands, re-worked by Samual
 //  Last updated: December 30th, 2011
 // =========================================================
 
-// These strings are set usually during init in g_world.qc,
+// These strings are set usually during init in world.qc,
 // or also by some game modes or other functions manually,
 // and their purpose is to output information to clients
 // without using any extra processing time.
 
 // See common.qc for their proper commands
 
-string getrecords(int page)  // 50 records per page
+string getrecords(int page)
 {
        string s = "";
 
@@ -37,9 +40,6 @@ string getrecords(int page)  // 50 records per page
        s = M_ARGV(1, string);
 
        MapInfo_ClearTemps();
-
-       if (s == "" && page == 0)
-               return "No records are available on this server for the current game mode.\n";
        return s;
 }
 
@@ -59,7 +59,7 @@ string getrankings()
 
                n = race_readName(map, i);
                p = count_ordinal(i);
-               s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t)), " ", n, "\n");
+               s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t, false)), " ", n, "\n");
        }
 
        MapInfo_ClearTemps();
@@ -299,3 +299,102 @@ string getmonsterlist()
 
        return sprintf("^7Monsters available: %s\n", monsterlist);
 }
+
+/*
+=============
+GetCvars
+=============
+Superseded by REPLICATE
+Called with:
+  0:  sends the request
+  >0: receives a cvar from name=argv(f) value=argv(f+1)
+*/
+void GetCvars_handleString(entity this, entity store, string thisname, float f, .string field, string name)
+{
+       if (f < 0)
+       {
+               strfree(store.(field));
+       }
+       else if (f > 0)
+       {
+               if (thisname == name)
+               {
+                       strcpy(store.(field), argv(f + 1));
+               }
+       }
+       else
+               stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
+}
+void GetCvars_handleString_Fixup(entity this, entity store, string thisname, float f, .string field, string name, string(entity, string) func)
+{
+       GetCvars_handleString(this, store, thisname, f, field, name);
+       if (f >= 0) // also initialize to the fitting value for "" when sending cvars out
+               if (thisname == name)
+               {
+                       string s = func(this, strcat1(store.(field)));
+                       if (s != store.(field))
+                       {
+                               strcpy(store.(field), s);
+                       }
+               }
+}
+void GetCvars_handleFloat(entity this, entity store, string thisname, float f, .float field, string name)
+{
+       if (f < 0)
+       {
+       }
+       else if (f > 0)
+       {
+               if (thisname == name)
+                       store.(field) = stof(argv(f + 1));
+       }
+       else
+               stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
+}
+void GetCvars_handleFloatOnce(entity this, entity store, string thisname, float f, .float field, string name)
+{
+       if (f < 0)
+       {
+       }
+       else if (f > 0)
+       {
+               if (thisname == name)
+               {
+                       if (!store.(field))
+                       {
+                               store.(field) = stof(argv(f + 1));
+                               if (!store.(field))
+                                       store.(field) = -1;
+                       }
+               }
+       }
+       else
+       {
+               if (!store.(field))
+                       stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
+       }
+}
+
+/**
+ * @param f -1: cleanup, 0: request, 1: receive
+ */
+void GetCvars(entity this, entity store, int f)
+{
+       string s = string_null;
+
+       if (f == 0)
+               LOG_INFO("Warning: requesting cvar values is deprecated. Client should send them automatically using REPLICATE.\n");
+
+       if (f > 0)
+               s = strcat1(argv(f));
+
+       get_cvars_f = f;
+       get_cvars_s = s;
+       MUTATOR_CALLHOOK(GetCvars);
+
+       Notification_GetCvars(this, store);
+
+       ReplicateVars(this, store, s, f);
+       if (f > 0)
+               ReplicateVars_ApplyChange(this, store, s, f);
+}