pokecrystal/extras/README.md

29 lines
1.2 KiB
Markdown
Raw Normal View History

2012-05-02 06:38:19 +00:00
Pokémon Crystal utilities and extras
==============================
2012-05-02 06:39:01 +00:00
`crystal.py` parses the ROM into classes and objects. It prmarily parses map headers, "second" map headers, map event headers, map script headers, map triggers, map "callbacks", map blockdata, xy triggers, warps, people-events, texts and scripts. The purpose of the file is to parse the ROM into python and then spit it back out with the global `to_asm()` method.
2012-05-02 06:38:19 +00:00
#### Simple ASM generation example
Note: throughout these examples it is possible to use `reload(crystal)` instead of `import crystal`. Once the module is loaded a first time, it must be reloaded if the file changes and the updates are desired.
```python
import crystal
# parse the ROM
crystal.run_main()
# create a new dump
asm = crystal.Asm()
# insert the first 10 maps
x = 10
asm.insert_multiple_with_dependencies(crystal.all_map_headers[:x])
# dump to extras/output.txt
asm.dump()
```
2012-05-02 06:40:23 +00:00
After running those lines, `cp extras/output.asm main.asm` and run `git diff main.asm` to confirm that changes to `main.asm` have occurred. To test whether or not the newly inserted ASM compiles into the same ROM, use: `make clean && make`. This will complain very loudly if something is broken.
2012-05-02 06:38:19 +00:00