aboutsummaryrefslogtreecommitdiffstats
path: root/engine/movie/oak_speech/init_player_data.asm (unfollow)
Commit message (Collapse)AuthorFilesLines
2026-07-15explore: pivot to noclip free-roam cameraAsh Ketchum1-1/+1
Ground-truth from render_overworld.py showed Kanto is ONE seamless world joined along shared edges with per-connection offsets -- so a map-by-map browser is the wrong model. Replaced it with noclip free-roam that leans on the engine's own player-walk + connection-crossing machinery (which already handles seams/offsets correctly): - wSlopNoclip flag (reused the dead wUnusedObtainedBadges byte at D356, 0 r/w, not unioned, in the saved region -> safe). - CollisionCheckOnLand: 5-byte hook at the top -> when noclip is set, return no-collision. Freed the room in ROM0 by deleting the unreferenced Func_0db5 (dead farcall LoadToggleableObjectData) in LoadMapHeader. - EXPLORE menu entry now just toggles wSlopNoclip and closes the menu, dropping you into the overworld to glide through walls/NPCs/ledges and walk across map connections exactly as the world data defines them. Verified: Pallet -> (walk north through the fences) -> seam-cross into Route 1 at y=35 -> continue north; toggle off restores collision (player blocked).
2026-01-07Use macros to enforce "missable/hide/show object" constraints, and rename ↵Rangi1-1/+1
them to "toggleable objects" (#557)
2025-01-28Consistently capitalize `ASSERT` directives (#489)Rangi1-1/+1
2024-09-25This byte is written to, but not used (#471)Vortyne1-1/+1
it's written to in init_player_data.asm ``` ld hl, wObtainedBadges ld [hli], a ld [hl], a ```
2024-06-15Identify some unused WRAM variables (#453)Sylvie1-1/+1
2022-06-06RGBDS syntax updates (#86)vulcandth1-1/+1
New MACRO and DEF syntax
2022-06-06RGBDS syntax updates (#358)vulcandth1-1/+1
New MACRO and DEF syntax
2021-04-27Use {interpolation} to generate sequences of RAM labelsRangi1-1/+1
Fixes #319
2020-11-04Sync with pokereddannye1-4/+4
2020-07-02Add subdirectories to engine/ similar to pokecrystalRangi1-55/+0
2016-12-31split code out of main.asmYamaArashi1-0/+55
2016-06-11remove address commentsYamaArashi1-3/+3
2016-06-06Clean up white spacedannye1-2/+2
2016-03-17Split bank3 up.luckytyphlosion1-0/+60