]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/miscfunctions.qc
cvar: sv_allow_fullbright
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / miscfunctions.qc
index 29736ae1cd105007436423e2c7bfb13134ece7c5..738c32eba804ad81a6efec24192feb5509daab57 100644 (file)
@@ -16,8 +16,6 @@ void WarpZone_crosshair_trace(entity pl)
 
 void() spawnfunc_info_player_deathmatch; // needed for the other spawnpoints
 void() spawnpoint_use;
-string race_GetName(float pos);
-string race_PlaceName(float pos);
 string GetMapname();
 string ColoredTeamName(float t);
 
@@ -183,6 +181,7 @@ void GameLogClose()
 vector PL_VIEW_OFS;
 vector PL_MIN;
 vector PL_MAX;
+vector PL_HEAD;
 vector PL_CROUCH_VIEW_OFS;
 vector PL_CROUCH_MIN;
 vector PL_CROUCH_MAX;
@@ -193,6 +192,7 @@ void relocate_spawnpoint()
     PL_VIEW_OFS                             = stov(cvar_string("sv_player_viewoffset"));
     PL_MIN                                  = stov(cvar_string("sv_player_mins"));
     PL_MAX                                  = stov(cvar_string("sv_player_maxs"));
+    PL_HEAD                                 = stov(cvar_string("sv_player_headsize"));
     PL_CROUCH_VIEW_OFS                      = stov(cvar_string("sv_player_crouch_viewoffset"));
     PL_CROUCH_MIN                           = stov(cvar_string("sv_player_crouch_mins"));
     PL_CROUCH_MAX                           = stov(cvar_string("sv_player_crouch_maxs"));
@@ -580,9 +580,19 @@ void GetCvars_handleFloatOnce(string thisname, float f, .float field, string nam
                        stuffcmd(self, strcat("cl_cmd sendcvar ", name, "\n"));
        }
 }
-string W_FixWeaponOrder_ForceComplete(string s);
-string W_FixWeaponOrder_AllowIncomplete(string s);
 float w_getbestweapon(entity e);
+string W_FixWeaponOrder_ForceComplete_AndBuildImpulseList(string wo)
+{
+       string o;
+       o = W_FixWeaponOrder_ForceComplete(wo);
+       if(self.weaponorder_byimpulse)
+       {
+               strunzone(self.weaponorder_byimpulse);
+               self.weaponorder_byimpulse = string_null;
+       }
+       self.weaponorder_byimpulse = strzone(W_FixWeaponOrder_BuildImpulseList(o));
+       return o;
+}
 void GetCvars(float f)
 {
        string s;
@@ -599,7 +609,7 @@ void GetCvars(float f)
        GetCvars_handleFloat(s, f, cvar_cl_shownames, "cl_shownames");
        GetCvars_handleString(s, f, cvar_g_xonoticversion, "g_xonoticversion");
        GetCvars_handleFloat(s, f, cvar_cl_handicap, "cl_handicap");
-       GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete);
+       GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete_AndBuildImpulseList);
        GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[0], "cl_weaponpriority0", W_FixWeaponOrder_AllowIncomplete);
        GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[1], "cl_weaponpriority1", W_FixWeaponOrder_AllowIncomplete);
        GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[2], "cl_weaponpriority2", W_FixWeaponOrder_AllowIncomplete);
@@ -627,6 +637,7 @@ void GetCvars(float f)
        GetCvars_handleFloat(s, f, cvar_cl_forceplayermodelsfromxonotic, "cl_forceplayermodelsfromxonotic");
 #endif
        GetCvars_handleFloatOnce(s, f, cvar_cl_gunalign, "cl_gunalign");
+       GetCvars_handleFloat(s, f, cvar_cl_allow_uid2name, "cl_allow_uid2name");
 
        // fixup of switchweapon (needed for LMS or when spectating is disabled, as PutClientInServer comes too early)
        if (f > 0)
@@ -1173,9 +1184,13 @@ void readlevelcvars(void)
                MUTATOR_ADD(mutator_nix);
        if(cvar("g_dodging"))
                MUTATOR_ADD(mutator_dodging);
-       if(cvar("g_rocket_flying") || (cvar("g_balance_rocketlauncher_detonatedelay") == 0 && stof(cvar_defstring("g_balance_rocketlauncher_detonatedelay")) != 0))
+       if(cvar("g_rocket_flying"))
                MUTATOR_ADD(mutator_rocketflying);
 
+       serverflags = 0;
+       if(cvar("sv_allow_fullbright"))
+               serverflags |= SERVERFLAG_ALLOW_FULLBRIGHT;
+
     g_bugrigs = cvar("g_bugrigs");
     g_bugrigs_planar_movement = cvar("g_bugrigs_planar_movement");
     g_bugrigs_planar_movement_car_jumping = cvar("g_bugrigs_planar_movement_car_jumping");
@@ -1721,7 +1736,6 @@ void precache()
 #define INITPRIO_FIRST              0
 #define INITPRIO_GAMETYPE           0
 #define INITPRIO_GAMETYPE_FALLBACK  1
-#define INITPRIO_CVARS              5
 #define INITPRIO_FINDTARGET        10
 #define INITPRIO_DROPTOFLOOR       20
 #define INITPRIO_SETLOCATION       90
@@ -2069,10 +2083,6 @@ void print_to(entity e, string s)
 }
 
 string uid2name(string myuid) {
-       // TODO TODO TODO!
-       // store uid in separate uid2name db IF CLIENT ALLOWS THIS
-       // - make it global for all mods
-       // perhaps show 10 first digits here if missing name?
        string s;
        s = db_get(ServerProgsDB, strcat("uid2name", myuid));
        
@@ -2081,9 +2091,9 @@ string uid2name(string myuid) {
        return s;
 }
 
-float race_GetTime(string map, float pos)
+float race_readTime(string map, float pos)
 {
-       float rr;
+       string rr;
        if(g_cts)
                rr = CTS_RECORD;
        else
@@ -2092,20 +2102,63 @@ float race_GetTime(string map, float pos)
        return stof(db_get(ServerProgsDB, strcat(map, rr, "time", ftos(pos))));
 }
 
-string race_GetUID(string map, float pos)
+string race_readUID(string map, float pos)
 {
-       float rr;
+       string rr;
        if(g_cts)
                rr = CTS_RECORD;
        else
                rr = RACE_RECORD;
 
-       return stof(db_get(ServerProgsDB, strcat(map, rr, "time", ftos(pos))));
+       return db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos)));
 }
 
-string race_GetName(string map, float pos)
+float race_readPos(string map, float t) {
+       float i;
+       for (i = 1; i <= RANKINGS_CNT; ++i)
+               if (race_readTime(map, i) == 0 || race_readTime(map, i) > t)
+                       return i;
+
+       return 0; // pos is zero if unranked
+}
+
+void race_writeTime(string map, float t, string myuid)
 {
-       float rr;
+       string rr;
+       if(g_cts)
+               rr = CTS_RECORD;
+       else
+               rr = RACE_RECORD;
+
+       float newpos;
+       newpos = race_readPos(map, t);
+
+       float i, prevpos;
+       for(i = 1; i <= RANKINGS_CNT; ++i)
+       {
+               if(race_readUID(map, i) == myuid)
+                       prevpos = i;
+       }
+       if (prevpos) { // player improved his existing record, only have to iterate on ranks between new and old recs
+               for (i = prevpos; i > newpos; --i) {
+                       db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
+                       db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
+               }
+       } else { // player has no ranked record yet
+               for (i = RANKINGS_CNT; i > newpos; --i) {
+                       db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
+                       db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
+               }
+       }
+
+       // store new time itself
+       db_put(ServerProgsDB, strcat(map, rr, "time", ftos(newpos)), ftos(t));
+       db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(newpos)), myuid);
+}
+
+string race_readName(string map, float pos)
+{
+       string rr;
        if(g_cts)
                rr = CTS_RECORD;
        else
@@ -2114,14 +2167,14 @@ string race_GetName(string map, float pos)
        return uid2name(db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos))));
 }
 
-string race_PlaceName(float pos) {
-       if(floor((pos % 100)/10) * 10 != 10) // examples: 12th, 111th, 213th will not execute this block
+string race_placeName(float pos) {
+       if(floor((mod(pos, 100))/10) * 10 != 10) // examples: 12th, 111th, 213th will not execute this block
        {
-               if(pos % 10 == 1)
+               if(mod(pos, 10) == 1)
                        return strcat(ftos(pos), "st");
-               else if(pos % 10 == 2)
+               else if(mod(pos, 10) == 2)
                        return strcat(ftos(pos), "nd");
-               else if(pos % 10 == 3)
+               else if(mod(pos, 10) == 3)
                        return strcat(ftos(pos), "rd");
                else
                        return strcat(ftos(pos), "th");
@@ -2164,10 +2217,10 @@ string getrecords(float page) // 50 records per page
         {
             if (MapInfo_Get_ByID(i))
             {
-               r = race_GetTime(MapInfo_Map_bspname, 1);
+               r = race_readTime(MapInfo_Map_bspname, 1);
                 if (r == 0)
                     continue;
-               h = race_GetName(MapInfo_Map_bspname, 1)
+               h = race_readName(MapInfo_Map_bspname, 1);
                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
                 ++rec;
             }
@@ -2180,10 +2233,10 @@ string getrecords(float page) // 50 records per page
         {
             if (MapInfo_Get_ByID(i))
             {
-               r = race_GetTime(MapInfo_Map_bspname, 1);
+               r = race_readTime(MapInfo_Map_bspname, 1);
                 if (r == 0)
                     continue;
-               h = race_GetName(MapInfo_Map_bspname, 1)
+               h = race_readName(MapInfo_Map_bspname, 1);
                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
                 ++rec;
             }
@@ -2213,11 +2266,11 @@ string getrankings()
 
     for (i = 1; i <= RANKINGS_CNT; ++i)
     {
-        t = race_GetTime(map, i);
+        t = race_readTime(map, i);
        if (t == 0)
            continue;
-       n = race_GetName(map, i);
-       p = race_PlaceName(i);
+       n = race_readName(map, i);
+       p = race_placeName(i);
         s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t)), " ", n, "\n");
     }
 
@@ -2229,20 +2282,27 @@ string getrankings()
         return strcat("Records for ", map, ":\n", s);
 }
 
-const float LADDER_FIRSTPOINT = 100;
-const float LADDER_CNT = 10; // position X still gives LADDER_FIRSTPOINT/X points
-const float LADDER_SIZE = 30; // ladder shows the top X players
+#define LADDER_FIRSTPOINT 100
+#define LADDER_CNT 10
+       // position X still gives LADDER_FIRSTPOINT/X points
+#define LADDER_SIZE 30
+       // ladder shows the top X players
 string top_uids[LADDER_SIZE];
 float top_scores[LADDER_SIZE];
-float UIDCNT;
 string getladder()
 {
-    float i, j, k;
-    string s, len, temp_s;
+    float i, j, k, uidcnt;
+    string s, temp_s;
 
     s = "";
     temp_s = "";
 
+    string rr;
+    if(g_cts)
+       rr = CTS_RECORD;
+    else
+       rr = RACE_RECORD;
+
     string myuid;
 
     for (k = 0; k < MapInfo_count; ++k)
@@ -2250,10 +2310,20 @@ string getladder()
         if (MapInfo_Get_ByID(k))
        {
                for (i = 0; i <= LADDER_CNT; ++i) { // i = 0 because it is the speed award
-                       if(race_GetTime(GetMapname(), i) == 0)
-                           break;
+                       if(i == 0) // speed award
+                       {
+                               if(stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/speed"))) == 0)
+                                       continue;
 
-                       myuid = race_GetUID(GetMapname(), i);
+                               myuid = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/crypto_idfp"));
+                       }
+                       else // normal record, if it exists (else break)
+                       {
+                               if(race_readTime(MapInfo_Map_bspname, i) == 0)
+                                       continue;
+
+                               myuid = race_readUID(MapInfo_Map_bspname, i);
+                       }
 
                        // string s contains:
                        // arg 0 = # of speed recs
@@ -2265,8 +2335,8 @@ string getladder()
                        temp_s = db_get(TemporaryDB, strcat("ladder", myuid));
                        if (temp_s == "")
                        {
-                           db_put(TemporaryDB, strcat("uid", ftos(UIDCNT)), myuid);
-                           ++UIDCNT;
+                           db_put(TemporaryDB, strcat("uid", ftos(uidcnt)), myuid);
+                           ++uidcnt;
                            for (j = 0; j <= LADDER_CNT + 1; ++j)
                            {
                                if(j != LADDER_CNT + 1)
@@ -2276,7 +2346,7 @@ string getladder()
                            }
                        }
 
-                       len = tokenize_console(temp_s);
+                       tokenize_console(temp_s);
                        s = "";
 
                        if(i == 0) // speed award
@@ -2313,18 +2383,17 @@ string getladder()
                            s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + floor(LADDER_FIRSTPOINT / i))); // record, add LADDER_FIRSTPOINT / i points
 
                        db_put(TemporaryDB, strcat("ladder", myuid), s);
-               }
-           }
+               }
        }
     }
 
     float thiscnt;
     string thisuid;
-    for (i = 0; i <= UIDCNT; ++i) // for each known uid
+    for (i = 0; i <= uidcnt; ++i) // for each known uid
     {
        thisuid = db_get(TemporaryDB, strcat("uid", ftos(i)));
        temp_s = db_get(TemporaryDB, strcat("ladder", thisuid));
-       len = tokenize_console(temp_s);
+       tokenize_console(temp_s);
         thiscnt = stof(argv(LADDER_CNT+1));
 
        if(thiscnt > top_scores[LADDER_SIZE-1])
@@ -2350,29 +2419,43 @@ string getladder()
     s = strcat(s, " ^7Total  ^3|");
     for (i = 1; i <= LADDER_CNT; ++i)
     {
-       s = strcat(s, " ^7", race_PlaceName(i), " ^3|");
+       s = strcat(s, " ^7", race_placeName(i), " ^3|");
     }
     s = strcat(s, " ^7Speed awards ^3| ^7Name");
 
     s = strcat(s, "\n^3----+--------");
-    for (i = 1; i <= LADDER_CNT; ++i)
+    for (i = 1; i <= min(9, LADDER_CNT); ++i)
     {
        s = strcat(s, "+-----");
     }
+#if LADDER_CNT > 9
+    for (i = 1; i <= LADDER_CNT - 9; ++i)
+    {
+       s = strcat(s, "+------");
+    }
+#endif
+
     s = strcat(s, "+--------------+--------------------\n");
 
     for (i = 0; i < LADDER_SIZE; ++i)
     {
        temp_s = db_get(TemporaryDB, strcat("ladder", top_uids[i]));
-       len = tokenize_console(temp_s);
+       tokenize_console(temp_s);
        if (argv(LADDER_CNT+1) == "") // total is 0, skip
            continue;
-       s = strcat(s, strpad(4, race_PlaceName(i+1)), "^3| ^7"); // pos
+       s = strcat(s, strpad(4, race_placeName(i+1)), "^3| ^7"); // pos
        s = strcat(s, strpad(7, argv(LADDER_CNT+1)), "^3| ^7"); // total
-       for (j = 1; j <= LADDER_CNT; ++j)
+       for (j = 1; j <= min(9, LADDER_CNT); ++j)
        {
            s = strcat(s, strpad(4, argv(j)), "^3| ^7"); // 1st, 2nd, 3rd etc cnt
        }
+#if LADDER_CNT > 9
+       for (j = 10; j <= LADDER_CNT; ++j)
+       {
+           s = strcat(s, strpad(4, argv(j)), " ^3| ^7"); // 1st, 2nd, 3rd etc cnt
+       }
+#endif
+
        s = strcat(s, strpad(13, argv(0)), "^3| ^7"); // speed award cnt
        s = strcat(s, uid2name(top_uids[i]), "\n"); // name
     }