WIP 1:1 decompilation of Super Paper Mario
Go to file
2020-12-21 12:30:06 +00:00
include evtSearchJustBeforeWhile and a bit of documentation 2020-12-21 12:30:06 +00:00
src evtSearchJustBeforeWhile and a bit of documentation 2020-12-21 12:30:06 +00:00
.gitignore Removed scripts 2020-12-20 22:17:36 +00:00
clean.bat Restructure + evtSearchLabel 2020-12-20 21:25:59 +00:00
README.md Readme merge 2020-12-21 11:36:21 +00:00
spm.bat Restructure + evtSearchLabel 2020-12-20 21:25:59 +00:00
ttyd.bat Restructure + evtSearchLabel 2020-12-20 21:25:59 +00:00

spm-decomp

Decompilation of Super Paper Mario. Doesn't produce a dol, asm is just checked by compiling with -S. A small bit of TTYD support.

See also https://github.com/SeekyCt/spm-docs for other documentation

Compiler Version Note

The project currently uses Codewarrior Version 4.1 build 60831, which seems to be a slightly wrong version. The main reason that makes this seem like it could be the case is that to match the variable incrementing order in some loops, while loops have had to be used instead of for loops, like in this code

void evtDeleteID(int id) {
    EvtWork * wp = evtGetWork();
    EvtEntry * entry = wp->entries;
    int i = 0;
    while (i < wp->entryCount) {
        if (entry->flags & 1 != 0 && entry->id == id) {
            evtDelete(entry);
        }
        i++;
        entry++;
    }
}

which matches 1:1 in the Paper Mario 64 decomp as

void kill_script_by_ID(s32 id) {
    s32 i;
    ScriptInstance* scriptContextPtr;

    for (i = 0; i < MAX_SCRIPTS; i++) {
        scriptContextPtr = (*gCurrentScriptListPtr)[i];
        if (scriptContextPtr != NULL && scriptContextPtr->id == id) {
            kill_script(scriptContextPtr);
        }
    }
}

so it seems unlikely the devs would've switched to this weird while format over a for loop.

Matching Notes

  • No attempt is made to match assert line numbers
  • String pool offsets won't match for incomplete files

TTYD Support

TTYD was initially matched too for some of seqdrv, but this was abandoned based on the effort it would've taken to keep doing and also to find the right compiler version & flags for it too. The code that was matched still remains.

Credits

Various members of the TTYD community for their documentation here https://github.com/PistonMiner/ttyd-tools and for porting the demo symbol map to the final game