1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-17 05:03:23 -07:00
mm/README.md

122 lines
4.5 KiB
Markdown
Raw Normal View History

2015-03-25 21:41:13 -07:00
# Miscellaneous Zelda 64 Resources
2015-02-19 11:25:44 -08:00
2015-03-25 21:41:13 -07:00
i like to muck around in the memory of these games.
2015-12-17 14:13:07 -08:00
those who are more interested in the ROM will find [the binary template repo][bt]
more resourceful.
[bt]: https://github.com/EntranceJew/zelda-binary-templates
2015-03-25 21:41:13 -07:00
# Majora's Mask
for brevity, all addresses written here are given for the original US version.
2015-05-03 07:39:13 -07:00
refer to the spreadsheets or Lua tables for their equivalent in other versions.
2015-02-19 11:25:44 -08:00
## spreadsheets
2015-05-03 07:39:13 -07:00
some sheets have been put together to dump data in. some of them can be used to predict the result of glitches.
* [Event Flags][eventflags]
are being documented here.
2015-02-19 11:25:44 -08:00
2015-03-01 20:19:29 -08:00
* [Memory Addresses][gs_addrs]
2015-12-17 14:13:07 -08:00
updates more frequently than [the Lua equivalent.][noice]
* [Entrance Data][ed]
a huge laggy mess that brings google docs to its knees.
this has pretty much been deprecated by the [exit calculator][calc] script,
which uses updated names, among other things.
a [4 megabyte csv dump of all exits][csv] is also available.
2015-03-01 20:19:29 -08:00
2015-02-19 11:25:44 -08:00
* [Get Item Manipulation][gim]
mzxrules did the original OoT one, i just jammed in MM's data for the item table and chest contents.
*spoilers:* no desirable results besides light arrows, if it were even possible.
2015-03-25 21:41:13 -07:00
_potential crashes are not taken account for._
2015-02-19 11:25:44 -08:00
2015-05-03 07:39:13 -07:00
[eventflags]: https://docs.google.com/spreadsheets/d/181V9dR5vBROdCVB4FkljG5oz2O4gGU5OTAkoPQX9X10/edit?usp=sharing
2015-03-01 20:19:29 -08:00
[gs_addrs]: https://docs.google.com/spreadsheets/d/1HD8yZM1Jza3O8zO28n3k_Rjwdx58RSMA03915l51oDA/edit?usp=sharing
2015-12-17 14:13:07 -08:00
[noice]: /Lua/addrs/M/common.lua
2015-02-19 11:25:44 -08:00
[gim]: https://docs.google.com/spreadsheets/d/17LsLbF6aRePVRxisui8azPtDBfPmjugWIf91wPuXTsY
[ed]: https://docs.google.com/spreadsheets/d/1e9kDyAW0gxXHFWS-GNEtVIo-rp39wQJJOtf3B0ehhqY
2015-12-17 14:13:07 -08:00
[calc]: /Lua/exit%20calculator.lua
[csv]: https://eaguru.guru/t/_exits.csv
2015-02-19 11:25:44 -08:00
## save files
2015-12-17 14:13:07 -08:00
save contents are mostly documented by [the save file binary templates.][savebt]
2015-02-19 11:25:44 -08:00
2015-12-17 14:13:07 -08:00
[savebt]: https://github.com/EntranceJew/zelda-binary-templates/tree/master/filetypes/Save
2015-03-25 21:41:13 -07:00
2015-12-17 14:13:07 -08:00
in the versions of the game with owl saves,
regular saves are 0x100C in size, and owl saves are 0x3CA0.
owls use the extra space primarily to store the pictograph picture.
2015-02-19 11:25:44 -08:00
2015-02-19 16:23:35 -08:00
the game checks a checksum, and for the text "ZELDA3".
2015-02-19 18:07:54 -08:00
each slot has one backup copy of itself, though they don't seem to be used?
if a slot is corrupted, it will show up as empty in the menu.
2015-02-19 11:25:44 -08:00
2015-02-19 16:23:35 -08:00
the checksum is a 16-bit sum of all bytes up to that point, allowing overflows.
i've written [a checksum-fixing program][chksum] in python for bizhawk savefiles.
2015-12-17 14:13:07 -08:00
i've also written an [010][010] Editor [script][chksum2]
and its [OoT variant][chksumOoT]
for properly formed save files, such as those made by nemu64.
2015-02-19 11:25:44 -08:00
owl saves always have 0x24 added to their checksum for some reason.
2015-02-19 11:28:19 -08:00
[chksum]: /chksum.py
2015-12-17 14:13:07 -08:00
[chksum2]: https://github.com/EntranceJew/zelda-binary-templates/blob/master/scripts/FixSaveMM.1sc
[chksumOoT]: https://github.com/EntranceJew/zelda-binary-templates/blob/master/scripts/FixSaveOoT.1sc
[010]: http://www.sweetscape.com/010editor/
2015-02-19 11:25:44 -08:00
2015-02-19 16:23:35 -08:00
bizhawk save files, at the time of writing, have the first file offset to 0x20800.
also, their byte order is wrong.
2015-02-19 11:25:44 -08:00
2015-12-17 14:13:07 -08:00
here's my usual process (in bash) for hacking on save files:
2015-02-19 11:25:44 -08:00
```
alias revend='objcopy -I binary -O binary --reverse-bytes=4'
s="Legend of Zelda, The - Majora's Mask (USA).SaveRAM"
x=mm-save.xxd
revend "$s"
xxd "$s" > $x
$EDITOR $x
xxd -r $x > "$s"
./chksum.py $s
revend "$s"
```
## save files (for download)
because no one likes first cycle.
sometime i'll bother checking what the bombers/lottery codes are for these.
2015-12-17 14:13:07 -08:00
* [Bizhawk US 1.0 race file](https://eaguru.guru/t/MM%20US%20Race%20File%20for%20Bizhawk.zip )
* [mupen64plus US 1.0 race file](https://eaguru.guru/t/Legend%20of%20Zelda%2C%20The%20-%20Majora%27s%20Mask%20%28U%29%20%5B%21%5D.zip)
2015-02-19 11:25:44 -08:00
2015-03-25 21:45:52 -07:00
## bitfields
### scene flags
2015-03-25 21:41:13 -07:00
two regions of 0x960 bytes are allocated for all the scene flags in the game.
the first (801EFAE0) is loaded from save files, the second (801F35D8) is used for in-game changes.
basically, edit the first for save hacking, and the second for in-game hacking.
each scene in the game uses 0x14 bytes of scene flags.
this implies there's 0x78 possible scenes: 0x78\*0x14 = 0x960.
the current scene's flags are always copied into the same place in memory.
they appear in a different order than in save files, however.
(four bytes each)
803E8978 corresponds to offset 0x4 in the save file.
803E897C corresponds to offset 0x8.
803E8988 corresponds to offset 0x0.
803E898C corresponds to offset 0xC.
803E8994 corresponds to offset 0x10.
### link's status
2015-02-19 11:25:44 -08:00
2015-02-19 16:23:35 -08:00
here's [an incomplete document on some of link's bitfields][linkfields] for JP 1.0.
2015-02-19 11:25:44 -08:00
2015-02-19 11:28:19 -08:00
[linkfields]: /mm-bitflags.txt