]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Move resurfacing (when frozen) code to sys_phys_simulate
authorterencehill <piuntn@gmail.com>
Sun, 24 May 2020 07:16:00 +0000 (09:16 +0200)
committerterencehill <piuntn@gmail.com>
Sun, 24 May 2020 07:16:00 +0000 (09:16 +0200)
qcsrc/common/physics/player.qc
qcsrc/ecs/systems/physics.qc

index 13fcc670f3225e87d1d941faaa906db6041b5145..91073a88e48bd79e0b949120b38857e1243d8e9b 100644 (file)
@@ -617,13 +617,6 @@ void PM_check_frozen(entity this)
        }
        else
                PHYS_CS(this).movement = '0 0 0';
-
-       if(this.waterlevel >= WATERLEVEL_SWIMMING)
-       {
-               this.velocity = this.velocity * 0.5;
-               if(this.waterlevel >= WATERLEVEL_SUBMERGED)
-                       this.velocity.z = 160;
-       }
 }
 
 void PM_check_hitground(entity this)
index 1155c09f274c3e122b0f118fba293adcefc33fff..fb0781e49e527391914ce6bc924e29eab822b2e4 100644 (file)
@@ -217,14 +217,22 @@ void sys_phys_simulate(entity this, float dt)
        vector wishvel = forward * PHYS_CS(this).movement.x
            + right * PHYS_CS(this).movement.y
            + '0 0 1' * PHYS_CS(this).movement.z * (this.com_phys_vel_2d ? 0 : 1);
-       if (this.com_phys_water && !PHYS_FROZEN(this)) {
-               if (PHYS_INPUT_BUTTON_CROUCH(this)) {
-                       wishvel.z = -PHYS_MAXSPEED(this);
+       if (this.com_phys_water) {
+               if (PHYS_FROZEN(this))
+               {
+                       if(this.waterlevel >= WATERLEVEL_SUBMERGED)
+                               wishvel = '0 0 160'; // resurface
                }
-               if (this.viewloc) {
-                       wishvel.z = -160;    // drift anyway
-               } else if (wishvel == '0 0 0') {
-                       wishvel = '0 0 -60'; // drift towards bottom
+               else
+               {
+                       if (PHYS_INPUT_BUTTON_CROUCH(this)) {
+                               wishvel.z = -PHYS_MAXSPEED(this);
+                       }
+                       if (this.viewloc) {
+                               wishvel.z = -160;    // drift anyway
+                       } else if (wishvel == '0 0 0') {
+                               wishvel = '0 0 -60'; // drift towards bottom
+                       }
                }
        }
        if (this.com_phys_ladder) {