An app to explore the content of the Maniac Mansion game on NES.
This tool is a web app to explore the resources from the Maniac Mansion game on NES. The goal is to encourage the ROM hacking community to modify the game and create new hacks.
This app only works with Maniac Mansion on NES, it won't work with data files from other platforms or other games.
Some of the code comes from the ScummVM project.
It currently support:
- Rooms (partially)
- Room graphics
- Prepositions
The following version are supported:
- American English
- European English
- French
- German
- Italian
- Spanish
- Swedish
- American English prototype (partial support)
The Japanese version is not supported.
The app doesn't use the runtime code used by the NES to start and play the game. It only works with the SCUMM resources stored in the ROM files.
It does not modify the ROM, it is only an explorer of the resources present in the game.
To run it locally, clone the repo and install the dependencies:
npm install
Start the dev server with:
npm run dev
Create a production build with:
npm run build
Then deploy the content of the dist
folder.
- Use Typescript.
- Write tests.
- The parsing scripts should be callable from a CLI.
- Parse more resource types (scripts, sounds...).
- QoF improvements (store the ROM files locally...)
- Enable modification of the resources to create new games.
- Cover other SCUMM versions.