Files
SVSimServer/SVSim.BattleEngine/Shim/View/StoryTitleStubs.cs
gamer147 57f1f0c25e port(m1): wave 7c — SelectionProcessing Parameter + Touch-processor ctors (174->158)
- Generate both SelectionProcessing Parameter classes namespace-aware (full-surface
  captures the 8-arg Main / 6-arg BattleResult ctors); drop the empty hand stubs.
- Add the missing decomp ctors to the 5 empty Touch-processor hand stubs
  (SetCard/EvolutionSimple/Emotion/ClassBuff/DetailPanel) — compile-only ballast,
  empty bodies.
- Regenerate FusionWaitProcessor.g.cs: it was a stale stub whose ctor had dropped
  its decomp `: base(...)` initializer; harmless while SetCardProcessor had an
  implicit default ctor, exposed (CS7036) once the parameterized ctor landed.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-06 00:38:58 -04:00

45 lines
2.0 KiB
C#

// AUTHORED SHIM (not copied). Final M1 residual: non-battle Story chapter-selection /
// Title / Friend / RoomMatch types swept into the closure but never driven headless,
// plus the namespace anchors their `using` directives target. Empty stubs (no copied
// type inherits them); members would unmask only if a battle path touched them.
namespace Wizard.Story
{
public enum StoryEntranceType { None, MainStory, LimitedStory, EventStory, AllStory }
}
namespace Wizard.Story.ChapterSelection
{
public partial class CommonPrefabContainer { }
public class TitlePanelBase { }
}
namespace Wizard.Story.ChapterSelection.SelectionProcessing.Main
{
// Parallel to the BattleResult submodule (already shimmed); some copied files
// `using` this Main module and reference these unqualified.
public interface IProcessing
{
IProcessing NextProcessing { get; set; }
void Execute(Parameter param);
}
// Parameter is generated full-surface (ctor + props) in Shim/Generated/Parameter__*.g.cs
}
namespace Wizard.UIFriend
{
public partial class Friend { public partial class PlayerData { } }
public class FriendDataBase
{
public virtual void SetPlayerData(Friend.PlayerData in_PlayerData, System.Collections.Generic.List<string> in_LoadList) { }
}
}
namespace Wizard.Title { public partial class GameSetup { } }
namespace Wizard.RoomMatch { public class Player { public long Emblem { get; set; } public int Degree { get; set; } public string Country { get; set; } public string Name { get; set; } public int Rank { get; set; } public bool IsFriend { get; set; } public int ViewerId { get; set; } } }
// ---- namespace anchors (referenced via `using`) ----
namespace Wizard.Scripts.Network.Task.ItemAcquireHistory { internal class _ShimAnchor { } }
namespace Wizard.UI.Profile { internal class _ShimAnchor { } }
namespace Wizard.UI.ReportToManagement { internal class _ShimAnchor { } }
namespace Wizard.Battle.Tutorial { internal class _ShimAnchor { } }