Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-23 | sigh, use a global for caching parsed status | Bryan Bishop | |
2013-11-23 | make a way to remember if parse_rom called | Bryan Bishop | |
2013-11-22 | make parse_rom return map_names | Bryan Bishop | |
The map_names object is the entry point to the parsed rom data. | |||
2013-11-22 | fix log message with wrong variable in template | Bryan Bishop | |
2013-11-22 | parse wram labels in crystal.py | Bryan Bishop | |
2013-11-22 | fix call to item_label_by_id | Bryan Bishop | |
2013-11-22 | fixup TextScript to store script_parse_table ref | Bryan Bishop | |
2013-11-22 | fix typo in crystal.py | Bryan Bishop | |
2013-11-22 | rename main -> parse_rom | Bryan Bishop | |
2013-11-22 | comment add_map_offsets_into_map_names | Bryan Bishop | |
2013-11-22 | move the map offsets out of main() | Bryan Bishop | |
This is a function that is necessary outside of the context of a main method. | |||
2013-11-07 | fix spacing for pokered music command classes | yenatch | |
2013-11-07 | add some extra music command classes | yenatch | |
2013-11-07 | crystal: use rom.interval instead of rom_interval | yenatch | |
rom_interval got broken when globals got nuked it's probably a bad idea to keep the function around but it's supposed to work eventually | |||
2013-11-07 | preprocessor: from_asm method and is_rgbasm_macro in command classes | yenatch | |
enjoy this half-assed implementation | |||
2013-11-05 | Merge branch 'master' of github.com:kanzure/pokemon-reverse-engineering-tools | yenatch | |
2013-10-31 | spruce up music command classes plus BigEndianParam | yenatch | |
2013-10-13 | Add pokered music commands | U-Fish-PC\Daniel | |
2013-09-30 | Merge pull request #42 from yenatch/script-commands | Bryan Bishop | |
rename some event script commands | |||
2013-10-01 | use 'wait' for events instead of move effects | yenatch | |
2013-09-30 | event script command 0xaa doesnt exist | yenatch | |
2013-09-30 | fix up the last few event scirpt commands | yenatch | |
2013-09-26 | if_greater_than and if_less_than commands were swapped | yenatch | |
2013-09-26 | fix configuration typo | Bryan Bishop | |
2013-09-26 | fix crystal.py configuration | Bryan Bishop | |
Ugh, it's still a global? | |||
2013-09-26 | Merge branch 'yenatch/map-editor' into master | Bryan Bishop | |
Conflicts: pokemontools/crystal.py Fixes #40. | |||
2013-09-26 | crystal.py: no more relative paths | yenatch | |
2013-09-24 | rename bit1/bit2 script commands to event/flag | yenatch | |
2013-09-24 | script commands wildon and wildoff got mixed up | yenatch | |
this was a mistake in the original pksv spec and tauwasser's notes | |||
2013-09-12 | deglobalize map_internal_ids | Bryan Bishop | |
Also, don't set global rom in the load_rom related methods. This will nip everything for a while, but roms should be passed around as references instead of globals. | |||
2013-09-12 | pass around all_movements (not a global) | Bryan Bishop | |
2013-09-12 | run_main -> main | Bryan Bishop | |
2013-09-12 | pretty_print_trainer_id_constants to trainers.py | Bryan Bishop | |
2013-09-12 | one preprocessor macro needs trainer_group_maximum | Bryan Bishop | |
2013-09-12 | knock out some trainer group globals | Bryan Bishop | |
2013-09-12 | convert all_map_headers from a global | Bryan Bishop | |
2013-09-12 | don't use the old header parsing method | Bryan Bishop | |
2013-09-12 | remove globals from some map group parsers | Bryan Bishop | |
2013-09-12 | move old parsers from 'crystal' into crystalparts/ | Bryan Bishop | |
2013-09-12 | move find_labels_without_addresses into labels.py | Bryan Bishop | |
2013-09-12 | don't override the object type/variable | Bryan Bishop | |
2013-09-12 | split OldTextScript out of crystal.py | Bryan Bishop | |
This creates a new file called old_text_script.py with that huge class. Does this mean that I wrote this a second time when I wrote TextScript ? | |||
2013-09-12 | remove a global from how_many_until | Bryan Bishop | |
2013-09-12 | move is_valid_address into addresses.py | Bryan Bishop | |
2013-09-12 | move load_asm2 next to load_asm | Bryan Bishop | |
2013-09-12 | remove global from load_asm2 | Bryan Bishop | |
Why is there even a second method in the first place? | |||
2013-09-12 | move AsmLine into crystalparts/asmline.py | Bryan Bishop | |
2013-09-02 | fix "labels" confusion in get_labels_between | Bryan Bishop | |
There was both the labels module and a list called labels. Rename the local variable to foundlabels instead. | |||
2013-09-01 | move the map_names import to the top | Bryan Bishop | |
Maybe it will get more attention up here. It needs to be cleaned up since it's a global used throughout the source code, plus it gets modified multiple times everywhere. Awful. | |||
2013-09-01 | better ordering of imports in crystal.py | Bryan Bishop | |