Blocker 1: an unrecognized "@allegiance <sub>" subcommand escaped TryMatchAllegiance (which only claimed "info"/"hometown") and fell through the unregistered-tag channel fallback, broadcasting the raw subcommand text to the Allegiance chat channel (0x02000000). Retail's own DoAllegiance never reaches DoChannelCommand for an unrecognized subcommand — it claims the whole verb and prints its own client-local refusal. TryMatchAllegiance now claims "allegiance"/"all" unconditionally and shows retail's "Please see @help Allegiance..." text; ChatCommandRouter also gained a blanket RetailClientCommandCatalog.KnownVerbs ownership guard in TryDispatchChannelFallback as defense in depth. Blocker 2: "@house abandon" sent 0x021F immediately with no confirmation. Retail runs a real two-stage dialog before Event_AbandonHouse(); ported both verbatim strings and chained two ShowConfirmation calls. Should-fixes: a bare unregistered tag with no text now passes through silently instead of showing a refusal that belongs to a different retail function; @join/@leave update RuntimeCharacterOptionsState locally (new SetOptionBit) before the wire push so the Turbine membership gate stops refusing a just-joined room; @permit accepts multi-word names; @clist/ @on/@off validate shape only and raise WeenieError 0x422 for an unknown tag; @mr/@pr help text is now the verbatim retail strings; corrected issue #360, register row TS-68, the campaign doc's B.7 note, and a stale RetailChannelTagTable comment; filed issue #363 + register row AP-183 for the deferred error-typing debt. Nits: fixed TryMatchHouse's stale doc comment, the AP-182/@title "stores the value" comments (the binding is a no-op), IsUnregisteredFallbackTag's olthoi false-positive, added /g and /rp binding-level conformance pins, made @index ignore extra arguments, and noted the six removed invented verbs in ISSUES.md. Suite: 12,216 passed / 4 skipped / 0 failed (Release), up from CH4's 12,190/4/0 — net +26 tests, no removals. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
278 lines
11 KiB
C#
278 lines
11 KiB
C#
using AcDream.Core.Chat;
|
|
using AcDream.Core.Net.Messages;
|
|
using AcDream.Runtime.Gameplay;
|
|
|
|
namespace AcDream.Runtime.Tests.Gameplay;
|
|
|
|
/// <summary>
|
|
/// Campaign CH slice CH3 (2026-08-09): pins the retail
|
|
/// <c>SendTurbineChat @0x0057db10</c> local pre-send gate — the fix for
|
|
/// "side channels don't work" (research doc §5.2/§6.2).
|
|
/// </summary>
|
|
public sealed class TurbineChatMembershipGateTests
|
|
{
|
|
[Fact]
|
|
public void TurbineDisabled_ReturnsUnavailable_EvenWithRoomIdAndOptionOn()
|
|
{
|
|
var turbine = new TurbineChatState(); // never received SetTurbineChatChannels
|
|
var options = new RuntimeCharacterOptionsState();
|
|
|
|
TurbineChatGateResult result = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.Unavailable, result.Status);
|
|
Assert.Equal(0u, result.RoomId);
|
|
}
|
|
|
|
[Fact]
|
|
public void RoomIdZero_ReturnsUnavailable_NoAllegiance()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms(allegianceRoom: 0u);
|
|
var options = new RuntimeCharacterOptionsState();
|
|
|
|
TurbineChatGateResult result = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Allegiance, turbine, options, isOlthoiPlayer: false);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.Unavailable, result.Status);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(ChatChannelKindLite.General)]
|
|
[InlineData(ChatChannelKindLite.Trade)]
|
|
[InlineData(ChatChannelKindLite.Lfg)]
|
|
[InlineData(ChatChannelKindLite.Roleplay)]
|
|
[InlineData(ChatChannelKindLite.Society)]
|
|
public void HearOptionOff_ReturnsNotListening_RoomIdAndTypeStillReported(
|
|
ChatChannelKindLite kind)
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState();
|
|
options.Replace(options.Options1, 0u); // every Hear*Chat bit off
|
|
|
|
TurbineChatGateResult result = TurbineChatMembershipGate.Evaluate(
|
|
kind, turbine, options, isOlthoiPlayer: false);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.NotListening, result.Status);
|
|
Assert.NotEqual(0u, result.RoomId);
|
|
Assert.NotEqual(string.Empty, result.DisplayName);
|
|
}
|
|
|
|
[Fact]
|
|
public void AllegianceHearOptionOff_ReturnsNotListening()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState();
|
|
options.Replace(0u, options.Options2); // HearAllegianceChat bit off
|
|
|
|
TurbineChatGateResult result = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Allegiance, turbine, options, isOlthoiPlayer: false);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.NotListening, result.Status);
|
|
}
|
|
|
|
[Fact]
|
|
public void OlthoiRoom_GatesOnHeritageNotAnOption()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState(); // no Hear-Olthoi bit exists
|
|
|
|
TurbineChatGateResult notOlthoi = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Olthoi, turbine, options, isOlthoiPlayer: false);
|
|
TurbineChatGateResult olthoi = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Olthoi, turbine, options, isOlthoiPlayer: true);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.NotListening, notOlthoi.Status);
|
|
Assert.Equal(TurbineChatGateStatus.Allowed, olthoi.Status);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(ChatChannelKindLite.Allegiance, 0x10u, (uint)TurbineChat.ChatType.Allegiance, "Allegiance")]
|
|
[InlineData(ChatChannelKindLite.General, 0x11u, (uint)TurbineChat.ChatType.General, "General")]
|
|
[InlineData(ChatChannelKindLite.Trade, 0x12u, (uint)TurbineChat.ChatType.Trade, "Trade")]
|
|
[InlineData(ChatChannelKindLite.Lfg, 0x13u, (uint)TurbineChat.ChatType.Lfg, "LFG")]
|
|
[InlineData(ChatChannelKindLite.Society, 0x16u, (uint)TurbineChat.ChatType.Society, "Society")]
|
|
[InlineData(ChatChannelKindLite.Olthoi, 0x17u, (uint)TurbineChat.ChatType.Olthoi, "Olthoi")]
|
|
public void AllowedResultCarriesRoomIdChatTypeAndDisplayName(
|
|
ChatChannelKindLite kind,
|
|
uint expectedRoom,
|
|
uint expectedChatType,
|
|
string expectedName)
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms(
|
|
allegianceRoom: 0x10u,
|
|
generalRoom: 0x11u,
|
|
tradeRoom: 0x12u,
|
|
lfgRoom: 0x13u,
|
|
roleplayRoom: 0x14u,
|
|
olthoiRoom: 0x17u,
|
|
societyRoom: 0x16u);
|
|
var options = new RuntimeCharacterOptionsState();
|
|
options.Replace(
|
|
options.Options1,
|
|
options.Options2
|
|
| (uint)PlayerDescriptionParser.CharacterOptions2.HearSocietyChat);
|
|
|
|
TurbineChatGateResult result = TurbineChatMembershipGate.Evaluate(
|
|
kind, turbine, options, isOlthoiPlayer: true);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.Allowed, result.Status);
|
|
Assert.Equal(expectedRoom, result.RoomId);
|
|
Assert.Equal(expectedChatType, result.ChatType);
|
|
Assert.Equal(expectedName, result.DisplayName);
|
|
}
|
|
|
|
[Fact]
|
|
public void FreshDefaultOptions_MatchAceMembership_RoleplayAndSocietyAreOff()
|
|
{
|
|
// The CH3 headline finding (research doc §5.2): ACE's own
|
|
// CharacterOptions2.Default (0x00948700, byte-identical to
|
|
// RuntimeCharacterOptionsState.DefaultOptions2) OMITS
|
|
// HearRoleplayChat/HearSocietyChat — General/Trade/LFG/Allegiance
|
|
// are on by default, Roleplay/Society are NOT, and a fresh
|
|
// acdream character must reproduce that exact split.
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState(); // untouched defaults
|
|
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Allegiance, turbine, options, false).Status);
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, false).Status);
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Trade, turbine, options, false).Status);
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Lfg, turbine, options, false).Status);
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.NotListening,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Roleplay, turbine, options, false).Status);
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.NotListening,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.Society, turbine, options, false).Status);
|
|
}
|
|
|
|
// ── N3 (CH3 Opus review): shared refusal-text mapping ──
|
|
|
|
[Fact]
|
|
public void ResolveRefusalText_AllowedGate_ReturnsNull()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState();
|
|
TurbineChatGateResult gate = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false);
|
|
|
|
Assert.Equal(TurbineChatGateStatus.Allowed, gate.Status);
|
|
Assert.Null(TurbineChatMembershipGate.ResolveRefusalText(gate));
|
|
}
|
|
|
|
[Fact]
|
|
public void ResolveRefusalText_UnavailableGate_ReturnsRetailUnavailableString()
|
|
{
|
|
var turbine = new TurbineChatState(); // never received SetTurbineChatChannels
|
|
var options = new RuntimeCharacterOptionsState();
|
|
TurbineChatGateResult gate = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false);
|
|
|
|
(string Text, RetailLogTextType Type)? refusal =
|
|
TurbineChatMembershipGate.ResolveRefusalText(gate);
|
|
|
|
Assert.NotNull(refusal);
|
|
Assert.Equal(ClientTextRefusals.TurbineChatUnavailable, refusal!.Value.Text);
|
|
}
|
|
|
|
[Fact]
|
|
public void ResolveRefusalText_NotListeningGate_ReturnsWeenieErrorString()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState();
|
|
options.Replace(options.Options1, 0u); // every Hear*Chat bit off
|
|
TurbineChatGateResult gate = TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false);
|
|
|
|
(string Text, RetailLogTextType Type)? refusal =
|
|
TurbineChatMembershipGate.ResolveRefusalText(gate);
|
|
|
|
Assert.NotNull(refusal);
|
|
(string? expectedText, RetailLogTextType expectedType) =
|
|
WeenieErrorMessages.Resolve(0x0551u, gate.DisplayName);
|
|
Assert.Equal(expectedText, refusal!.Value.Text);
|
|
Assert.Equal(expectedType, refusal.Value.Type);
|
|
}
|
|
|
|
// ── CH4 REJECT-review SHOULD-FIX 4 (2026-08-09) ────────────────────
|
|
// @join/@leave must update RuntimeCharacterOptionsState locally so
|
|
// this SAME-SESSION gate stops refusing without waiting on a fresh
|
|
// PlayerDescription (retail's PlayerModule::SetHear*Chat family
|
|
// writes the bit locally FIRST, then notifies).
|
|
|
|
[Fact]
|
|
public void JoinChannel_SetOptionBit_FlipsGateToAllowed_WithoutFreshPlayerDescription()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState();
|
|
options.Replace(options.Options1, 0u); // every Hear*Chat bit off — starts refused
|
|
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.NotListening,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false).Status);
|
|
|
|
options.SetOptionBit((uint)CharacterOptionId.ListenToGeneralChat, true);
|
|
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false).Status);
|
|
}
|
|
|
|
[Fact]
|
|
public void LeaveChannel_SetOptionBit_FlipsGateToNotListening()
|
|
{
|
|
TurbineChatState turbine = ReceivedRooms();
|
|
var options = new RuntimeCharacterOptionsState(); // General on by default
|
|
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.Allowed,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false).Status);
|
|
|
|
options.SetOptionBit((uint)CharacterOptionId.ListenToGeneralChat, false);
|
|
|
|
Assert.Equal(
|
|
TurbineChatGateStatus.NotListening,
|
|
TurbineChatMembershipGate.Evaluate(
|
|
ChatChannelKindLite.General, turbine, options, isOlthoiPlayer: false).Status);
|
|
}
|
|
|
|
private static TurbineChatState ReceivedRooms(
|
|
uint allegianceRoom = 0x10u,
|
|
uint generalRoom = 0x11u,
|
|
uint tradeRoom = 0x12u,
|
|
uint lfgRoom = 0x13u,
|
|
uint roleplayRoom = 0x14u,
|
|
uint olthoiRoom = 0x15u,
|
|
uint societyRoom = 0x16u)
|
|
{
|
|
var state = new TurbineChatState();
|
|
state.OnChannelsReceived(
|
|
allegianceRoom,
|
|
generalRoom,
|
|
tradeRoom,
|
|
lfgRoom,
|
|
roleplayRoom,
|
|
olthoiRoom,
|
|
societyRoom,
|
|
societyCelestialHandRoom: 0u,
|
|
societyEldrytchWebRoom: 0u,
|
|
societyRadiantBloodRoom: 0u);
|
|
return state;
|
|
}
|
|
}
|