]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove reliance of gmqcc allowing to overwrite builtin.
authorRudolf Polzer <divverent@gmail.com>
Wed, 22 Jan 2025 15:36:01 +0000 (15:36 +0000)
committerRudolf Polzer <divverent@gmail.com>
Wed, 22 Jan 2025 15:36:01 +0000 (15:36 +0000)
qcsrc/common/checkextension.qc
qcsrc/common/checkextension.qh
qcsrc/common/gamemodes/gamemode/ctf/sv_ctf.qc
qcsrc/common/gamemodes/gamemode/keepaway/sv_keepaway.qc
qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc
qcsrc/common/gamemodes/gamemode/tka/sv_tka.qc
qcsrc/common/monsters/sv_monsters.qc
qcsrc/common/weapons/weapon/porto.qc
qcsrc/lib/warpzone/common.qc
qcsrc/server/items/items.qc
qcsrc/server/world.qc

index 9e53159578ef9f1c2fcf042732ed10cc7422e07c..9f10501ef73d3d0352d841679379c9f419a00db6 100644 (file)
@@ -39,11 +39,15 @@ void CheckEngineExtensions(void)
                LOG_WARN("Engine lacks DP_CRYPTO, Player IDs (required for XonStat and CTS/CTF records) are unavailable.");
 
 #ifdef SVQC // change to GAMEQC if/when we use nudgeoutofsolid in CSQC
-       if (!checkextension("DP_QC_NUDGEOUTOFSOLID"))
+       if (checkextension("DP_QC_NUDGEOUTOFSOLID"))
+       {
+               nudgeoutofsolid_OrFallback = nudgeoutofsolid;
+       }
+       else
        {
                LOG_WARN("Engine lacks DP_QC_NUDGEOUTOFSOLID, falling back to WarpZoneLib_MoveOutOfSolid().");
                // DP_QC_NUDGEOUTOFSOLID fixes many cases WarpZoneLib_MoveOutOfSolid() can't, usually in less CPU time
-               nudgeoutofsolid = WarpZoneLib_MoveOutOfSolid;
+               nudgeoutofsolid_OrFallback = WarpZoneLib_MoveOutOfSolid;
        }
 
        if (!world.fullspawndata)
@@ -51,11 +55,16 @@ void CheckEngineExtensions(void)
 #endif
 
 #ifdef GAMEQC
-       if (!checkextension("DP_QC_FINDBOX"))
+       if (checkextension("DP_QC_FINDBOX"))
+       {
+               findbox_OrFallback = findbox;
+               findbox_tofield_OrFallback = findbox_tofield;
+       }
+       else
        {
                LOG_WARN("Engine lacks DP_QC_FINDBOX, performance will be suboptimal.");
-               findbox = findbox_Fallback;
-               findbox_tofield = findbox_tofield_Fallback;
+               findbox_OrFallback = findbox_Fallback;
+               findbox_tofield_OrFallback = findbox_tofield_Fallback;
        }
 #endif
 
index 4d42e27e2f61d67c0e87751e46a787c82b7705bf..0cdec8c920cff4dc1ae0ce231c750cd5c6706783 100644 (file)
@@ -1,21 +1,12 @@
 #pragma once
 
-// For some reason, GMQCC _requires_ this code to overwrite builtin globals,
-// while FTEQCC bans the same. Fine...
-#ifndef GMQCC
-
 #ifdef GAMEQC
-var entity(vector mins, vector maxs, .entity tofield) findbox_tofield_CheckedEngineExtensions = findbox_tofield;
-#define findbox_tofield findbox_tofield_CheckedEngineExtensions
-var entity(vector mins, vector maxs) findbox_CheckedEngineExtensions = findbox;
-#define findbox findbox_CheckedEngineExtensions
+var entity(vector mins, vector maxs, .entity tofield) findbox_tofield_OrFallback = nil;
+var entity(vector mins, vector maxs) findbox_OrFallback = nil;
 #endif
 
 #ifdef SVQC // change to GAMEQC if/when we use nudgeoutofsolid in CSQC
-var float(entity ent) nudgeoutofsolid_CheckedEngineExtensions = nudgeoutofsolid;
-#define nudgeoutofsolid nudgeoutofsolid_CheckedEngineExtensions
-#endif
-
+var float(entity ent) nudgeoutofsolid_OrFallback = nil;
 #endif
 
 void CheckEngineExtensions(void);
index 48657df2e2d5411f62eeb8daf3c78bfde1f66828..2bd0bab23f2667cfea82ae3d313d027e5d88d1c7 100644 (file)
@@ -1,5 +1,6 @@
 #include "sv_ctf.qh"
 
+#include <common/checkextension.qh>
 #include <common/effects/all.qh>
 #include <common/mapobjects/teleporters.qh>
 #include <common/mapobjects/triggers.qh>
@@ -500,7 +501,7 @@ void ctf_Handle_Throw(entity player, entity receiver, int droptype)
        tracebox(player.origin - FLAG_DROP_OFFSET, flag.m_mins, flag.m_maxs, player.origin + FLAG_DROP_OFFSET, MOVE_NOMONSTERS, flag);
        flag.solid = SOLID_TRIGGER; // before setorigin to ensure area grid linking
        setorigin(flag, trace_endpos);
-       if (trace_startsolid && !nudgeoutofsolid(flag)) // TODO: trace_allsolid would perform better but isn't 100% reliable yet
+       if (trace_startsolid && !nudgeoutofsolid_OrFallback(flag)) // TODO: trace_allsolid would perform better but isn't 100% reliable yet
        {
                // the flag's bbox doesn't fit but we can assume the player's current bbox does
                tracebox(player.origin - FLAG_DROP_OFFSET, player.mins, player.maxs, player.origin + FLAG_DROP_OFFSET, MOVE_NOMONSTERS, flag);
index cdb56060d10ddce0f3a95f224eb092481c44e760..32be3c74da34fd97d42add24f6d59162f35cffc4 100644 (file)
@@ -1,5 +1,6 @@
 #include "sv_keepaway.qh"
 
+#include <common/checkextension.qh>
 #include <common/effects/all.qh>
 #include <server/client.qh>
 #include <server/gamelog.qh>
@@ -202,7 +203,7 @@ void ka_DropEvent(entity player) // runs any time that a player is supposed to l
        IL_PUSH(g_damagedbycontents, ball);
        ball.effects &= ~EF_NODRAW;
        setorigin(ball, player.origin + '0 0 10');
-       nudgeoutofsolid(ball); // a ball has a horizontally bigger bbox than a player
+       nudgeoutofsolid_OrFallback(ball); // a ball has a horizontally bigger bbox than a player
        ball.velocity = '0 0 200' + '0 100 0'*crandom() + '100 0 0'*crandom();
        ball.owner = NULL;
        navigation_dynamicgoal_set(ball, player);
index d9dda802c085224fd8b3cb259954876feeacd3ff..89997b8bd9bc78f62694c9a3d6a5bdd334919ec2 100644 (file)
@@ -1,5 +1,6 @@
 #include "sv_keyhunt.qh"
 
+#include <common/checkextension.qh>
 #include <server/command/vote.qh>
 #include <server/gamelog.qh>
 #include <server/damage.qh>
@@ -291,7 +292,7 @@ void kh_Key_Detach(entity key) // runs every time a key is dropped or lost. Runs
        if(!IL_CONTAINS(g_items, key))
                IL_PUSH(g_items, key);
        set_movetype(key, MOVETYPE_TOSS);
-       nudgeoutofsolid(key); // a key has a bigger bbox than a player
+       nudgeoutofsolid_OrFallback(key); // a key has a bigger bbox than a player
        key.pain_finished = time + autocvar_g_balance_keyhunt_delay_return;
        key.damageforcescale = autocvar_g_balance_keyhunt_damageforcescale;
        key.takedamage = DAMAGE_YES;
index e0c4647c52ec6734f8917f2cea88a3507bb44561..43685ca06b00d98f7390c23c5e5e1040896ef256 100644 (file)
@@ -1,5 +1,6 @@
 #include "sv_tka.qh"
 
+#include <common/checkextension.qh>
 #include <common/effects/all.qh>
 
 .entity ballcarried;
@@ -183,7 +184,7 @@ void tka_DropEvent(entity player) // runs any time that a player is supposed to
        ball.takedamage = DAMAGE_YES;
        ball.effects &= ~EF_NODRAW;
        setorigin(ball, player.origin + '0 0 10');
-       nudgeoutofsolid(ball); // a ball has a horizontally bigger bbox than a player
+       nudgeoutofsolid_OrFallback(ball); // a ball has a horizontally bigger bbox than a player
        ball.velocity = '0 0 200' + '0 100 0'*crandom() + '100 0 0'*crandom();
        ball.owner = NULL;
        navigation_dynamicgoal_set(ball, player);
index cae2085d819d2f8409742d4d42ead27515a0d4cd..03de664bc20256c352198bfe5a19771f4595fdba 100644 (file)
@@ -1,5 +1,6 @@
 #include "sv_monsters.qh"
 
+#include <common/checkextension.qh>
 #include <common/constants.qh>
 #include <common/deathtypes/all.qh>
 #include <common/items/_mod.qh>
@@ -1543,7 +1544,7 @@ bool Monster_Spawn(entity this, bool check_appear, Monster mon)
                setorigin(this, trace_endpos);
        }
 
-       if (!nudgeoutofsolid(this))
+       if (!nudgeoutofsolid_OrFallback(this))
        {
                // Stuck and not fixable
                Monster_Remove(this);
index ef5c5d7780163e4be293d82ce8bb3500df27d1e1..9c961d750550bf3aa124d68b4a367b682fd4f737 100644 (file)
@@ -1,5 +1,7 @@
 #include "porto.qh"
 
+#include <common/checkextension.qh>
+
 #ifdef CSQC
 
 STATIC_INIT(Porto)
@@ -124,7 +126,7 @@ void W_Porto_Fail(entity this, float failhard)
                // FIXME: item properties should be obtained from the registry
                setsize(this, ITEM_D_MINS, ITEM_D_MAXS);
                setorigin(this, this.origin + trace_plane_normal);
-               if(nudgeoutofsolid(this))
+               if(nudgeoutofsolid_OrFallback(this))
                {
                        this.flags = FL_ITEM;
                        IL_PUSH(g_items, this);
index 65625a877dcef1ac88737eb5fa4c67917332e65b..8ab954ea1f62fb48249c55e1667004c73f592679 100644 (file)
@@ -1,5 +1,7 @@
 #include "common.qh"
 
+#include <common/checkextension.qh>
+
 #if defined(CSQC)
     #include <client/items/items.qh>
 #elif defined(MENUQC)
@@ -134,7 +136,7 @@ float WarpZoneLib_BoxTouchesBrush_Recurse(vector mi, vector ma, entity e, entity
 
 float WarpZoneLib_BoxTouchesBrush(vector mi, vector ma, entity e, entity ig)
 {
-       // bones_was_here: TODO: when findbox() builtin is available, use it to
+       // bones_was_here: TODO: when findbox_OrFallback() is available, use it to
        // optimise this into a single non-recursive function that only calls tracebox once
 
        float f, s;
index ebe9212d54ca34402ccbfb70b9ff203395fad2ca..6b9b4c41e81ac514ea3141700eb6457a2eb29754 100644 (file)
@@ -1,5 +1,6 @@
 #include "items.qh"
 
+#include <common/checkextension.qh>
 #include <common/constants.qh>
 #include <common/deathtypes/all.qh>
 #include <common/gamemodes/gamemode/cts/cts.qh>
@@ -1081,7 +1082,7 @@ void StartItem(entity this, entity def)
                }
 
                // most loot items have a bigger horizontal size than a player
-               nudgeoutofsolid(this);
+               nudgeoutofsolid_OrFallback(this);
 
                // don't drop if in a NODROP zone (such as lava)
                traceline(this.origin, this.origin, MOVE_NORMAL, this);
index 9f87ee28f3742a45dad19f8285435bf94f2b47ac..dbd8c23df44035a381f795bcfc6fb9f68c56a0c0 100644 (file)
@@ -2337,12 +2337,12 @@ void DropToFloor_QC(entity this)
                return;
        }
 
-       /* Prior to sv_legacy_bbox_expand 0, both droptofloor and nudgeoutofsolid were done for items
+       /* Prior to sv_legacy_bbox_expand 0, both droptofloor and nudgeoutofsolid_OrFallback were done for items
         * using box '-16 -16 0' '16 16 48' (without the FL_ITEM expansion applied),
         * which often resulted in bboxes partially in solids once expansion was applied.
         * We don't want bboxes in solids (bad for gameplay and culling),
         * but we also don't want items to land on a "skirting board" or the base of a sloping wall.
-        * For initial nudgeoutofsolid and droptofloor stages we use a small box
+        * For initial nudgeoutofsolid_OrFallback and droptofloor stages we use a small box
         * so they fall as far and in the same place as they traditionally would,
         * then we nudge the full size box out of solid, in a direction appropriate for the plane(s).
         */
@@ -2366,7 +2366,7 @@ void DropToFloor_QC(entity this)
         */
        if(!Q3COMPAT_COMMON && autocvar_sv_mapformat_is_quake3) // Xonotic, Nexuiz
        {
-               nudgeresult = nudgeoutofsolid(this);
+               nudgeresult = nudgeoutofsolid_OrFallback(this);
                if (!nudgeresult)
                        LOG_WARNF("DropToFloor_QC at \"%v\": COULD NOT FIX badly placed entity \"%s\" before drop", this.origin, this.classname);
                else if (nudgeresult > 0)
@@ -2432,12 +2432,12 @@ void DropToFloor_QC(entity this)
 
                // A side effect of using a small box to drop items (and do the initial nudge) is
                // the full size box can end up in collision with a sloping floor or terrain model.
-               nudgeresult = nudgeoutofsolid(this);
+               nudgeresult = nudgeoutofsolid_OrFallback(this);
                // No warns for successful nudge because it would spam about items on slopes/terrain.
        }
        else if (trace_allsolid && trace_fraction) // dropped using "proper" bbox but never left solid
        {
-               nudgeresult = nudgeoutofsolid(this);
+               nudgeresult = nudgeoutofsolid_OrFallback(this);
                if (nudgeresult > 0)
                        LOG_WARNF("DropToFloor_QC at \"%v\": FIXED badly placed entity \"%s\" after drop", this.origin, this.classname);
        }