From 1dbfd6c6731eda35b6aa2dfd89642d0a1df8b748 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 1 Mar 2025 10:26:49 -0500 Subject: Entrance randomizer stuff --- GameData.cs | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'GameData.cs') diff --git a/GameData.cs b/GameData.cs index a111b6a..107b408 100644 --- a/GameData.cs +++ b/GameData.cs @@ -15,12 +15,29 @@ namespace ManifoldGardenArchipelago } } + public readonly struct EntranceIdentifier(string region, string name) + { + public readonly string region = region; + public readonly string name = name; + + public override string ToString() + { + return $"Entrance({region},{name})"; + } + } + public readonly struct LocationDescription(string name_arg, Requirement requirement_arg) { public readonly string name = name_arg; public readonly Requirement requirement = requirement_arg; } + public readonly struct PortalDescription(string scene, string name) + { + public readonly string scene = scene; + public readonly string name = name; + } + public class SceneDescription { public readonly List locations = []; @@ -28,6 +45,7 @@ namespace ManifoldGardenArchipelago public readonly Dictionary smokeWalls = []; public readonly Dictionary worldGrows = []; public readonly Dictionary lasers = []; + public readonly Dictionary portals = []; } public class GameStateListeners @@ -51,6 +69,8 @@ namespace ManifoldGardenArchipelago public static readonly Dictionary listenersBySphere = []; public static readonly Dictionary listenersByItem = []; + public static readonly Dictionary portal_by_entrance = []; + public static Requirement ParseRequirement(string scene, Dictionary yamlReq) { List reqs = []; @@ -512,6 +532,19 @@ namespace ManifoldGardenArchipelago } } + if (sceneDetails.ContainsKey("portals")) + { + foreach (var portalPair in (Dictionary)sceneDetails["portals"]) + { + string portalName = (string)portalPair.Key; + var portalData = (Dictionary)portalPair.Value; + EntranceIdentifier entranceIdentifier = new((string)portalData["region"], (string)portalData["connection"]); + + sceneDescription.portals[portalName] = entranceIdentifier; + portal_by_entrance[entranceIdentifier] = new(scenePair.Key, portalName); + } + } + scenes[scenePair.Key] = sceneDescription; } } -- cgit 1.4.1