Edited dialogue file (talk_m01_en1.bin) in Mega Man ZX Advent
This is a tool I created in an attempt to make editing Mega Man ZX much easier.
If you need to know where specific assets, values, or code sections are in the game, please see the (unfinished) wiki page, as it contains documentation I accumulated on the game.
Currently, I am focusing on the USA version of Mega Man ZX. This means that the editor's (full) compatibility with other versions of the game is not guarenteed at the moment (although, it's worth noting that MMZXA has the same dialogue system as MMZX, and as such, the dialogue editor works for both games).
The editor can edit, export and import english dialogue files and save them to the ROM. Other files can be viewed but I have not yet implemented the code to view and/or edit most of them in their converted format.
- Dialogue text converter (for dialogue "talk_" and message "m_" files)
- Functional User Interface
- File export with options for converted file formats (WIP)
- File import with support for converted file formats (WIP)
- Togglable patches system
- Playtest button
- Graphics Editor (WIP)
- Font Editor
- SDAT Viewer (WIP)
- ARM Viewer (WIP)
- OAM Editor (WIP)
- Level Editor
- Graphics Editor additional features (exporting and importing)
- VX Export/Import to/from video format (Using the actimagine submodule)
- Find actual patches for the game to add to the editor's "patches" tab*
- Find patches and tweaks that are helpful for playtesting purposes*
- Sound/Music Editor*
- Tweaks/Physics Editor*
- Game Logic Editor*
*This feature may not be implemented/is not currently prioritized since I haven't looked into it and/or it looks/is hard to do.
Currently, there are no releases, so:
- Download&Install Python (using 3.13.2)
- Now that you have Python, you can use pip (Package Installer for Python) to install the two following modules:
- Download&Install NDSPy (using 4.2.0)
- Download&Install PyQt6 (using 6.8.1)
- Download&Install NumPy (submodule dependency)
- Download&Install Pillow (submodule dependency)
- This project > Code > Download ZIP
- Extract the contents of the .zip file wherever you want
- That's it! Now you can run RunEditor.bat (or run MME_NDS.py directly, from command line)
- Filesystem handling: https://ndspy.readthedocs.io/en/latest/
- GUI (PyQt6): https://www.riverbankcomputing.com/software/pyqt/
- Icons (with shadow): https://p.yusukekamiyamane.com/
- appicon.ico: Mega Man ZX devs, taken from here and truncated by me using GIMP
- This project uses a submodule
Some parts of code I copied (and modified) from answers to other people who asked for help (for example, on stack overflow) on topics I myself needed help on.
- My brother, who assisted me in the development of most editor features