acdream/tests/AcDream.Core.Tests/Physics/PlayerWeenieTests.cs
Erik bb7b899bfe fix(physics): TS-23 - plumb real PK/PKLite/Impenetrable mover flags
Campaign P Slice P3 item 3. The wire parse (CreateObject's
PublicWeenieDesc._bitfield), the decode (EntityCollisionFlagsExt.
FromPwdBitfield), the per-GUID storage (ClientObjectTable.
PublicWeenieBitfield), and the exemption logic (CollisionExemption.
ShouldSkip) all already existed and were already correct -- every
mover-flags call site just fed a GUID-prefix IsPlayer heuristic instead
of the real per-entity PK/PKLite/Impenetrable state (retail
OBJECTINFO::init 0x0050cf30 state |= 0x80/0x800/0x1000).

Port:
- EntityCollisionFlagsExt.ToMoverState translates the decoded PWD
  bit-space into the ObjectInfoState bit-space FindObjCollisions
  actually reads -- two different numberings that must not be
  confused. Deliberately does not translate IsPlayer (every call site
  already derives that correctly from its own GUID heuristic per
  #184 Slice 2b).
- EntityCollisionFlagsExt.ResolveMoverPvpState is the one shared
  ClientObjectTable-backed lookup (guid -> ObjectInfoState), replacing
  what would otherwise have been three separate inline copies across
  GameWindow/LivePresentationComposition/RemoteTeleportController.
- Threaded as a new optional moverPvpState parameter through
  RuntimeRemotePhysicsUpdater.Tick/TickHidden and
  RuntimeOrdinaryPhysicsUpdater.TryBegin (default None preserves every
  pre-P3 caller unchanged), and as PlayerMovementController.OwnPvpFlags
  for the local player's own two resolve call sites.
- TS-23 section 12b: PlayerWeenie.JumpStaminaCost's pk parameter now
  reads the real PlayerKillerStatus(0x86)/LastPkAttackTimestamp(0x91)
  pair against retail's 20-second recency window
  (pkStatus in {4, 0x40} && (timestamp + 20.0) >= now), replacing the
  P1 hardcoded false. RuntimeMovementSkillState/Snapshot and
  LiveSessionEventRouter.RecomputePvpStatus push both the PWD bitfield
  and the PlayerKillerStatus pair reactively, riding the SAME
  ClientObject event triggers RecomputeBurden already uses.
- A conformance test caught a genuine precision bug in the first
  PK-timer clock choice: DateTimeOffset.UtcNow's Unix-epoch seconds
  (~1.7 billion) loses ~128 seconds of precision in a 32-bit float,
  silently swallowing the entire 20-second window. Switched to
  Environment.TickCount64 (small, monotonic magnitude) -- also the more
  retail-plausible basis, since LastPkAttackTimestamp is itself a wire
  PropertyFloat and retail's Timer::cur_time is almost certainly a
  process/session-relative counter for the same precision reason, not
  an absolute epoch.

Non-PK invariant (the acceptance criterion): an entity with no
ClientObjectTable row, or a row whose PublicWeenieBitfield is null or
0, resolves to ObjectInfoState.None -- a no-op OR into moverFlags,
bit-identical to every pre-P3 caller's hardcoded value. A dedicated
test drives two real ClientObjectTable rows through
CollisionExemption.ShouldSkip and confirms PK-vs-PK collides while
PK-vs-non-PK and non-PK-vs-non-PK both stay exempt (walk through).

Register: TS-23 retired (both the collision-flags and PK-timer halves);
the stale "M2 combat must land TS-23" phase-gate note removed.

dotnet build + dotnet test (Core.Tests 4008/2 skip, Runtime.Tests
425/0, App.Tests 3968/3 skip, complete solution build) all green.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-30 09:52:55 +02:00

280 lines
9.9 KiB
C#

using AcDream.Core.Physics;
using Xunit;
namespace AcDream.Core.Tests.Physics;
public class PlayerWeenieTests
{
[Fact]
public void InqRunRate_Skill200_ReturnsCorrectRate()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.InqRunRate(out float rate));
Assert.Equal(2.375f, rate, precision: 3);
}
[Fact]
public void InqRunRate_Skill800_ReturnsCap()
{
var pw = new PlayerWeenie(runSkill: 800, jumpSkill: 100);
Assert.True(pw.InqRunRate(out float rate));
Assert.Equal(4.5f, rate, precision: 3);
}
[Fact]
public void InqRunRate_Skill0_ReturnsBase()
{
var pw = new PlayerWeenie(runSkill: 0, jumpSkill: 100);
Assert.True(pw.InqRunRate(out float rate));
Assert.Equal(1.0f, rate, precision: 3);
}
[Fact]
public void InqJumpVelocity_FullExtent_Skill100()
{
var pw = new PlayerWeenie(runSkill: 100, jumpSkill: 100);
Assert.True(pw.InqJumpVelocity(1.0f, out float vz));
// height = (100/1400) * 22.2 + 0.05 ≈ 1.636
// vz = sqrt(1.636 * 19.6) ≈ 5.663
Assert.Equal(5.663f, vz, precision: 1);
}
[Fact]
public void InqJumpVelocity_HalfExtent_Skill100()
{
var pw = new PlayerWeenie(runSkill: 100, jumpSkill: 100);
Assert.True(pw.InqJumpVelocity(0.5f, out float vz));
// height = (100/1400) * 22.2 * 0.5 + 0.05 ≈ 0.843
float expectedHeight = 1.0f * (100f / 1400f * 22.2f + 0.05f) * 0.5f;
float expectedVz = MathF.Sqrt(expectedHeight * 19.6f);
Assert.Equal(expectedVz, vz, precision: 2);
}
[Fact]
public void InqJumpVelocity_ZeroSkill_ClampsToMinHeight()
{
var pw = new PlayerWeenie(runSkill: 0, jumpSkill: 0);
Assert.True(pw.InqJumpVelocity(1.0f, out float vz));
// height = max(0.05 * 1.0, 0.35) = 0.35
// vz = sqrt(0.35 * 19.6) ≈ 2.619
Assert.Equal(MathF.Sqrt(0.35f * 19.6f), vz, precision: 2);
}
[Fact]
public void GetBurdenMod_Unencumbered_Returns1()
{
Assert.Equal(1.0f, PlayerWeenie.GetBurdenMod(0f));
Assert.Equal(1.0f, PlayerWeenie.GetBurdenMod(0.5f));
Assert.Equal(1.0f, PlayerWeenie.GetBurdenMod(0.99f));
}
[Fact]
public void GetBurdenMod_Overloaded_Returns0()
{
Assert.Equal(0.0f, PlayerWeenie.GetBurdenMod(2.0f));
Assert.Equal(0.0f, PlayerWeenie.GetBurdenMod(3.0f));
}
[Fact]
public void GetBurdenMod_PartialBurden_LinearDecrease()
{
Assert.Equal(0.5f, PlayerWeenie.GetBurdenMod(1.5f), precision: 3);
Assert.Equal(0.75f, PlayerWeenie.GetBurdenMod(1.25f), precision: 3);
}
// ── Campaign P Slice P1 (2026-07-30): CanJump / JumpStaminaCost / ─────
// ── stamina-zeroing gate ────────────────────────────────────────────
[Fact]
public void CanJump_DefaultUnencumbered_ReturnsTrue()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.CanJump(1.0f));
}
[Theory]
[InlineData(0f)]
[InlineData(1.0f)]
[InlineData(1.99f)]
public void CanJump_BelowThreshold_ReturnsTrue(float burden)
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100, burden: burden);
Assert.True(pw.CanJump(1.0f));
}
[Theory]
[InlineData(2.0f)]
[InlineData(2.5f)]
[InlineData(3.0f)]
public void CanJump_AtOrAboveThreshold_ReturnsFalse(float burden)
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100, burden: burden);
Assert.False(pw.CanJump(1.0f));
}
[Fact]
public void CanJump_SetBurden_UpdatesGateLive()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.CanJump(1.0f));
pw.SetBurden(2.5f);
Assert.False(pw.CanJump(1.0f));
pw.SetBurden(0.5f);
Assert.True(pw.CanJump(1.0f));
}
[Fact]
public void JumpStaminaCost_ReturnsRealNonzeroCost_AndAlwaysAffordable()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
// burden=0: ceil((0+0.5)*1*8+2) = 6 — no longer the pre-P1 zero stub.
Assert.Equal(6, cost);
}
[Fact]
public void JumpStaminaCost_ScalesWithBurden()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100, burden: 1.0f);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
// ceil((1+0.5)*1*8+2) = 14
Assert.Equal(14, cost);
}
// ── TS-23 §12b (Campaign P Slice P3, 2026-07-30): PlayerKillerStatus/ ──
// ── LastPkAttackTimestamp PK-timer jump-cost bump ───────────────────────
// Matches PlayerWeenie.JumpStaminaCost's own clock exactly (see its
// doc remarks for why Environment.TickCount64, not an absolute epoch).
private static float NowSeconds() => Environment.TickCount64 / 1000f;
[Fact]
public void JumpStaminaCost_NeverPushed_UsesNonPkFormula_TheInvariant()
{
// THE non-PK invariant: a character whose PlayerKillerStatus was
// never pushed at all (every ACE default-created character, and
// every pre-P3 caller) must produce the exact SAME cost as before
// this port.
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(6, cost); // ceil((0+0.5)*1*8+2) = 6, unchanged from P1
}
[Fact]
public void JumpStaminaCost_PlayerKillerStatusRetailDefault_UsesNonPkFormula()
{
// Retail InqInt's own default (8, "not a killer") with a fresh
// timestamp still does not qualify — pkStatus must be 4 or 0x40.
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(8, NowSeconds());
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(6, cost);
}
[Fact]
public void JumpStaminaCost_PkStatusNoTimestamp_UsesNonPkFormula()
{
// pkStatus qualifies (PK), but LastPkAttackTimestamp was never
// pushed (retail's InqFloat "fails") — the pk flag stays false.
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(4, null);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(6, cost);
}
[Fact]
public void JumpStaminaCost_PkStatusActiveWithinWindow_UsesPkFormula()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(4, NowSeconds()); // just attacked
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
// pk branch: (int)((power + 1.0) * 100.0) = (1.0+1.0)*100 = 200
Assert.Equal(200, cost);
}
[Fact]
public void JumpStaminaCost_PkLiteStatusActiveWithinWindow_UsesPkFormula()
{
// BF_PKLITE_PKSTATUS decodes to the retail PKLite status code 0x40
// (per CACQualities::JumpStaminaCost's own comparison, §12b) — both
// PK(4) and PKLite(0x40) qualify identically.
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(0x40, NowSeconds());
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(200, cost);
}
[Fact]
public void JumpStaminaCost_PkTimerExpired_UsesNonPkFormula()
{
// 30 seconds ago — past the 20-second recency window.
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(4, NowSeconds() - 30f);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(6, cost);
}
[Fact]
public void JumpStaminaCost_PkTimerRestoredToNeverPushed_ReturnsToNonPkFormula()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetPlayerKillerStatus(4, NowSeconds());
Assert.True(pw.JumpStaminaCost(1.0f, out int cost));
Assert.Equal(200, cost);
pw.SetPlayerKillerStatus(null, null);
Assert.True(pw.JumpStaminaCost(1.0f, out int cost2));
Assert.Equal(6, cost2);
}
[Fact]
public void InqRunRate_ZeroStamina_ZeroesEffectiveSkill()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetStamina(0);
Assert.True(pw.InqRunRate(out float rate));
// skill forced to 0 -> base rate 1.0 (matches InqRunRate_Skill0_ReturnsBase).
Assert.Equal(1.0f, rate, precision: 3);
}
[Fact]
public void InqRunRate_NonzeroStamina_UsesRealSkill()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetStamina(50);
Assert.True(pw.InqRunRate(out float rate));
Assert.Equal(2.375f, rate, precision: 3);
}
[Fact]
public void InqRunRate_UnsetStamina_NeverGates()
{
// No SetStamina call -> null sentinel -> matches every pre-P1 test's
// implicit expectation (no gating at all).
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
Assert.True(pw.InqRunRate(out float rate));
Assert.Equal(2.375f, rate, precision: 3);
}
[Fact]
public void InqJumpVelocity_ZeroStamina_FloorsAt0Point35Meters()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetStamina(0);
Assert.True(pw.InqJumpVelocity(1.0f, out float vz));
Assert.Equal(MathF.Sqrt(0.35f * 19.6f), vz, precision: 2);
}
[Fact]
public void SetStamina_Null_RestoresUnknownSentinel()
{
var pw = new PlayerWeenie(runSkill: 200, jumpSkill: 100);
pw.SetStamina(0);
Assert.True(pw.InqRunRate(out float zeroedRate));
Assert.Equal(1.0f, zeroedRate, precision: 3);
pw.SetStamina(null);
Assert.True(pw.InqRunRate(out float restoredRate));
Assert.Equal(2.375f, restoredRate, precision: 3);
}
}