Mirror of jeffman/mother2gbatranslation - Mod for Mother 2 for the GBA to localise it for english language speakers
Go to file
jeffman b55a5fb3ae README updates for the GUI tool 2019-01-08 20:53:14 -05:00
notes More cleanup 2019-01-07 23:58:00 -05:00
screenshots Screenshots showing enemy plurality code 2017-03-26 18:30:10 -04:00
src More cleanup 2019-01-07 23:58:00 -05:00
tools Timer is disabled by default 2019-01-08 20:51:40 -05:00
working Merge branch 'master' into cleanup 2019-01-06 19:51:38 -05:00
.gitattributes Update gitignore and gitattributes 2015-03-16 00:15:26 -04:00
.gitignore Update gitignore 2018-12-21 15:18:54 -05:00
CONTRIBUTORS.txt Update contributors 2018-12-03 17:40:43 -05:00
LICENSE Create LICENSE 2018-11-02 11:36:48 -04:00
README.md README updates for the GUI tool 2019-01-08 20:53:14 -05:00
build-tools.ps1 Remove SymbolTableBuilder 2019-01-07 23:56:27 -05:00
build.ps1 Remove SymbolTableBuilder 2019-01-07 23:56:27 -05:00

README.md

MOTHER 2 Translation for the GBA

This is a work-in-progress translation patch for MOTHER 2 on the GBA.

Discord

Our Discord server is pretty active: https://discord.gg/ADXS5Ub

Hasn't it been done?

There are at least two other projects that translate the MOTHER 2 side of the game:

  • Mato's menu text translation: here
  • TheZunar123's full translation (in progress): here and here

Why start another project?

Neither of the above projects use a true variable-width-font (VWF) to render text. A VWF would look much better and would make the game more enjoyable.

Adding a VWF is hard, however. Mato explains here why it's generally a very difficult task to fully translate the game, let alone to insert a VWF.

A long time ago (before the release of the MOTHER 3 Fan Translation), I started working on a proof-of-concept VWF for MOTHER 2 on the GBA. It worked, but it quickly became apparent that the amount of hacking required would be huge; window-rendering functions contain a ton of repeated code and some of it is downright non-sensical.

A few years after that, I tried it again from scratch with the intent of having a more organized codebase. It went much better, but I was soon limited by not having any translated dialogue, rather than not having a VWF; I couldn't test much of my VWF code without any English text inserted into the ROM.

Now what?

This project aims to both complete the VWF codebase and to provide a tool for translating the game's dialogue. My new intent is to bring the hack to a state where I can just sit down and translate text efficiently in my spare time with a graphical tool. Not only that, but having such a tool means that other people can contribute!

Screenshots

Building

Dependencies

  1. One-time setup
    1. Install .NET Core 2.1, PowerShell Core, and GNU Arm Embedded Toolchain.
    2. Copy MOTHER 1+2 ROM to bin/m12fresh.gba.
    3. Copy EarthBound ROM to bin/eb.smc.
    4. Run build-tools.ps1.
      • Windows: .\build-tools.ps1 in a PowerShell prompt
      • Linux: pwsh build-tools.ps1
    5. Copy/build armips.
      • Windows: grab the latest release here and copy the executable to bin/armips.exe.
      • Linux: follow the README to build armips and copy the executable to bin/armips.
  2. Building the ROM
    1. Run build.ps1 (like in Step 4).
    2. The default compiled ROM is copied to bin/m12.gba.
  3. (Optional) Build the GUI script tool with dotnet build tools/ScriptToolGui -o bin/ScriptToolGui, then run it with dotnet bin/ScriptToolGui/ScriptToolGui.dll (or just run the EXE file directly).