]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Match Q3 wishspeed and wishdir calculations 1441/head
authorbones_was_here <bones_was_here@xonotic.au>
Wed, 22 Jan 2025 18:18:10 +0000 (04:18 +1000)
committerbones_was_here <bones_was_here@xonotic.au>
Tue, 11 Feb 2025 16:58:14 +0000 (02:58 +1000)
This is equivalent to the relevant change in
0e542a1e3052b8bfe744b6ab34fe62de005b379d and produces the same pipeline
hash (ie the same hash as given by reverting
bec7b1df67bdb738bd65cdb261fe4e6a30890073).

It's written `wishvel * (1 / wishspeed)` because that's how Q3 does it.
The difference in the result is insignificant for normal gametypes but
might be significant for Q3 DeFRaG compatibility in extreme cases.

See https://gitlab.com/xonotic/xonotic-data.pk3dir/-/merge_requests/1438
for discussion.

.gitlab-ci.yml
qcsrc/ecs/systems/physics.qc

index 037245249dad4fb906a9e1e39404095fdef7e1fc..c94fcbfe52986a752e83e9e90bb7217a9f4e3645 100644 (file)
@@ -45,7 +45,7 @@ test_compilation_units:
 test_sv_game:
   stage: test
   script:
-    - export EXPECT=5a343412b4fa7772695453d4dd0d03a7
+    - export EXPECT=601b58ab0baed5060eb18c8fc084e072
     - qcsrc/tools/sv_game-hashtest.sh
     - exit $?
 
index cfa927b8e3ccec59245f968a1134f37711fce626..da2000c21296c4e98902449a87687303afc096d2 100644 (file)
@@ -266,8 +266,11 @@ void sys_phys_simulate(entity this, float dt)
        }
 
        // acceleration
-       const vector wishdir = normalize(wishvel);
-       float wishspeed = min(vlen(wishvel), this.com_phys_vel_max);
+       float wishspeed = vlen(wishvel);
+       // Mathematically equivalent to normalize(wishvel) but more closely matches Q3
+       // which uses the same single-precision optimisation to save one sqrt()
+       const vector wishdir = wishspeed ? wishvel * (1 / wishspeed) : '0 0 0';
+       wishspeed = min(wishspeed, this.com_phys_vel_max);
 
        if (this.com_phys_air) {
                if (!(this.flags & FL_WATERJUMP)) {