mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-25 15:01:11 +02:00
ca4d3d283c
Crystal boots from a user-supplied ROM, imports a full cache and is playable: copyright, the Crystal intro movie, the animated title, gender select, Oak, and out into Johto. 122 of the cart's 169 script specials are implemented. Import and data - tools/make_crystal_manifest.py derives the manifest by importing make_gold_manifest as a library, with three additive keyword seams. Gold and Silver still regenerate byte-identical, which is the standing requirement for touching that generator. - crystal_symbol_deltas.py and crystal_movie_symbols.py carry the symbol delta: Crystal renames the credits mons, splits the trainer card, Pokegear and pack-pal blocks by gender, and replaces the intro and title outright. - Crystal-only manifest keys: engineFlagOrder (162 flags to Gold's 93, so the badge block sits one higher) and unownCharmap (the main charmap parser stops at the first newcharmap so the two cannot contaminate each other). Extractor - RomExtractorGen2 becomes three-edition. Crystal corrections: PAL_MAP_BANK 0x13, a flat PICS_FIX pic bank, audio bank 0x5e, the mapSongs id-100 hole, seven NPC trades, a TradeTexts stride of 8, the five Crystal tileset anim steps with per-row degrade, and the column-major trainer card portraits. - New: animated front sprites (frames, bitmasks, play and idle scripts), the Battle Tower roster, Kris assets, Mobile System GB art, and the Crystal intro and title via src/import/CrystalMovie.lua. Engine - GameVersion gains engine(id) and fixes(id). Gold and Silver keep their original bugs where the bug is not hardware dependent; Crystal gets the fixes Crystal shipped: Lucky Number boxes 10-14, surfing onto an NPC, and the Reflect and Light Screen defence overflow. - Crystal story: Suicune and Eusine, Celebi behind the GS Ball flag, the Ruins of Alph chambers, Buena, the Move Tutor, the Poke Seer, and the Battle Tower including the wInBattleTowerBattle badge-boost guard. - Kris and the gender flag, animated fronts in battle and the summary screen, and mon caught data. Verification - Every extracted asset is pixel-compared against pret's own source PNGs. - Gold caches are byte-identical before and after, file for file. - New Crystal suites plus a T2 Gen 2 tier; the full suite passes.
183 lines
5.9 KiB
Lua
183 lines
5.9 KiB
Lua
-- The four Ruins of Alph secret chambers, opened in a real game.
|
|
--
|
|
-- POKEPORT_IDENTITY=f3-crystal POKEPORT_GAME=crystal \
|
|
-- POKEPORT_VERSION=crystal POKEPORT_SHOT_DIR=/tmp/f3 \
|
|
-- POKEPORT_DRIVER=tests/drivers/crystal_unown_chambers.lua love .
|
|
|
|
local U = require("tests.drivers.util")
|
|
|
|
local GameVersion = require("src.core.GameVersion")
|
|
local Mon = require("src.battle.gen2.Mon")
|
|
local UnownWords = require("src.world.gen2.UnownWords")
|
|
|
|
-- ../pokecrystal/maps/RuinsOfAlphOmanyteChamber.asm:25 closed, :42 open;
|
|
-- ../pokecrystal/engine/overworld/scripting.asm:2147 halves them to block 2,0.
|
|
local WALL_BLOCK = 3
|
|
local WALL_SHUT, WALL_OPEN = 0x2e, 0x30
|
|
|
|
local CHAMBERS = {
|
|
{
|
|
key = "OMANYTE", word = "WATER",
|
|
-- ../pokecrystal/engine/events/unown_walls.asm:25 CheckItem, :38 MON_ITEM
|
|
shut = function(game)
|
|
game.save.inventory = { FIRE_STONE = 1 }
|
|
game.save.party = { Mon.new(game.data, "TYPHLOSION", 40,
|
|
{ item = "FIRE_STONE" }) }
|
|
end,
|
|
arm = function(game)
|
|
game.save.inventory = {}
|
|
game.save.party = {
|
|
Mon.new(game.data, "TYPHLOSION", 40),
|
|
Mon.new(game.data, "LANTURN", 30, { item = "WATER_STONE" }),
|
|
}
|
|
end,
|
|
armed = "a WATER STONE held by the last party mon",
|
|
},
|
|
{
|
|
key = "HO_OH", word = "HO-OH",
|
|
-- ../pokecrystal/engine/events/unown_walls.asm:2 wPartySpecies[0].
|
|
shut = function(game)
|
|
game.save.inventory = {}
|
|
game.save.party = {
|
|
Mon.new(game.data, "TYPHLOSION", 40),
|
|
Mon.new(game.data, "HO_OH", 70),
|
|
}
|
|
end,
|
|
arm = function(game)
|
|
game.save.party = {
|
|
Mon.new(game.data, "HO_OH", 70),
|
|
Mon.new(game.data, "TYPHLOSION", 40),
|
|
}
|
|
end,
|
|
armed = "HO-OH moved into the FIRST party slot",
|
|
},
|
|
{
|
|
key = "KABUTO", word = "ESCAPE",
|
|
shut = function(game)
|
|
game.save.inventory = { ESCAPE_ROPE = 1 }
|
|
game.save.party = { Mon.new(game.data, "TYPHLOSION", 40) }
|
|
end,
|
|
-- ../pokecrystal/engine/events/overworld.asm:809 farcall
|
|
-- SpecialKabutoChamber, off EscapeRopeOrDig's rope arm.
|
|
arm = function(_, world)
|
|
UnownWords.kabutoChamber(world.events, world.map and world.map.id)
|
|
end,
|
|
armed = "SpecialKabutoChamber, as the escape rope calls it",
|
|
},
|
|
{
|
|
key = "AERODACTYL", word = "LIGHT",
|
|
shut = function(game)
|
|
game.save.inventory = {}
|
|
game.save.party = { Mon.new(game.data, "TYPHLOSION", 40) }
|
|
end,
|
|
-- ../pokecrystal/engine/events/overworld.asm:285 farcall
|
|
-- SpecialAerodactylChamber, inside FlashFunction.CheckUseFlash.
|
|
arm = function(_, world)
|
|
UnownWords.aerodactylChamber(world.events, world.map and world.map.id)
|
|
end,
|
|
armed = "SpecialAerodactylChamber, as FLASH calls it",
|
|
},
|
|
}
|
|
|
|
return function(game)
|
|
local out = os.getenv("POKEPORT_SHOT_DIR") or "/tmp/crystal-unown-chambers"
|
|
local fails = 0
|
|
|
|
local function say(line) print("[driver] " .. line) end
|
|
local function ok(cond, line)
|
|
if not cond then fails = fails + 1 end
|
|
say((cond and "OK " or "FAIL ") .. line)
|
|
end
|
|
|
|
local function tap(button, frames)
|
|
game.input.pressQueue[#game.input.pressQueue + 1] = button
|
|
game.input.state[button] = true
|
|
U.wait(2)
|
|
game.input.state[button] = false
|
|
U.wait(frames or 4)
|
|
end
|
|
|
|
local function wordScreen()
|
|
local state = game.stack:top()
|
|
return (state and getmetatable(state) == UnownWords) and state or nil
|
|
end
|
|
|
|
U.wait(60)
|
|
local world = game.world
|
|
assert(world and world.map, "crystal world did not boot")
|
|
say("version=" .. GameVersion.get() .. " engine=" .. GameVersion.engine())
|
|
|
|
game.save.player = game.save.player or {}
|
|
game.save.player.name = game.save.player.name or "CHRIS"
|
|
game.save.player.id = game.save.player.id or 30000
|
|
|
|
local function enter(mapId)
|
|
world:setMap("RUINS_OF_ALPH_OUTSIDE", 8, 15, "down")
|
|
U.wait(20)
|
|
world.mapScenes[mapId] = 0
|
|
world:setMap(mapId, 3, 1, "up")
|
|
for _ = 1, 400 do
|
|
U.wait(2)
|
|
if not world:busy() and not world.pendingSceneScript then break end
|
|
end
|
|
U.wait(30)
|
|
end
|
|
|
|
local function blockNow()
|
|
local blocks = world.map and world.map.def and world.map.def.blocks
|
|
return blocks and blocks[WALL_BLOCK]
|
|
end
|
|
|
|
for index, chamber in ipairs(CHAMBERS) do
|
|
local mapId = UnownWords.CHAMBER_MAPS[chamber.key]
|
|
local flag = UnownWords.WALL_OPENED[chamber.key]
|
|
say(("%d %s (flag %d)"):format(index, mapId, flag))
|
|
world.events:set(flag, false)
|
|
|
|
chamber.shut(game, world)
|
|
enter(mapId)
|
|
ok(world.map and world.map.id == mapId, " stood in the chamber")
|
|
ok(not world.events:get(flag), " the wall flag is still clear")
|
|
ok(blockNow() == WALL_SHUT,
|
|
(" and the hidden-doors callback drew the closed wall (%s)")
|
|
:format(tostring(blockNow())))
|
|
U.shot(game, ("%s/%d-%s-shut.png"):format(out, index,
|
|
chamber.key:lower()))
|
|
|
|
chamber.arm(game, world)
|
|
say(" armed: " .. chamber.armed)
|
|
world.mapScenes[mapId] = 0
|
|
enter(mapId)
|
|
ok(world.events:get(flag), " the wall flag is set now")
|
|
ok(blockNow() == WALL_OPEN,
|
|
(" and the wall-open script rewrote the block (%s)")
|
|
:format(tostring(blockNow())))
|
|
U.shot(game, ("%s/%d-%s-open.png"):format(out, index,
|
|
chamber.key:lower()))
|
|
|
|
-- ../pokecrystal/maps/RuinsOfAlphOmanyteChamber.asm:82
|
|
-- RuinsOfAlphOmanyteChamberWallPatternLeft
|
|
local screen
|
|
for _ = 1, 200 do
|
|
screen = wordScreen()
|
|
if screen then break end
|
|
tap("a", 2)
|
|
end
|
|
ok(screen ~= nil, " the wall pattern reached DisplayUnownWords")
|
|
if screen then
|
|
U.wait(20)
|
|
ok(screen.wall and screen.wall.word == chamber.word,
|
|
(" showing %s (got %s)"):format(chamber.word,
|
|
tostring(screen.wall and screen.wall.word)))
|
|
U.shot(game, ("%s/%d-%s-word.png"):format(out, index,
|
|
chamber.key:lower()))
|
|
tap("a", 10)
|
|
U.wait(20)
|
|
end
|
|
end
|
|
|
|
say(fails == 0 and "ALL OK" or (fails .. " FAILURES"))
|
|
U.wait(10)
|
|
love.event.quit(fails == 0 and 0 or 1)
|
|
end
|