feat(mods): expose map overviews in Gold

This commit is contained in:
AverageConsumer
2026-08-13 22:08:00 +02:00
parent 0b96ac0ab6
commit c5192eaea4
7 changed files with 166 additions and 75 deletions
+27
View File
@@ -25,6 +25,8 @@
local Logger = require("src.core.Logger")
local Movement = require("src.script.gen2.Movement")
local Runtime = require("src.mods.Runtime")
local HiddenItems = require("src.world.gen2.HiddenItems")
local MapOverview = require("src.world.MapOverview")
local WorldAPI = {}
WorldAPI.__index = WorldAPI
@@ -50,6 +52,31 @@ function WorldAPI:current()
facing = p and p.facing }
end
-- The same read-only minimap contract as Gen 1, with Gold's object/event
-- visibility rules supplying the semantic markers.
function WorldAPI:mapOverview()
local world = self:overworld()
if not world or not world.map then return nil, NO_OVERWORLD end
local map, def, markers = world.map, world.map.def or {}, {}
for _, warp in ipairs(def.warps or {}) do
markers[#markers + 1] = { kind = "warp", x = warp.x, y = warp.y }
end
local visible = {}
for _, npc in ipairs(world.npcs or {}) do
if npc.def then visible[npc.def] = true end
end
for _, obj in ipairs(def.objects or {}) do
local item = obj.itemball and obj.itemball.item
if item and item ~= "0" and item ~= 0 and visible[obj] then
markers[#markers + 1] = { kind = "item", x = obj.x, y = obj.y }
end
end
for _, item in ipairs(HiddenItems.unfound(def, world.events)) do
markers[#markers + 1] = { kind = "hidden", x = item.x, y = item.y }
end
return MapOverview.build(map, markers)
end
-- opts is accepted for signature parity with the Gen 1 arm; Gold's arrival FX
-- come from the map setup method, so opts.arrive has nothing to select yet.
function WorldAPI:warpTo(mapId, x, y, facing, opts)