summaryrefslogtreecommitdiff
path: root/pokemontools
AgeCommit message (Collapse)Author
2013-09-08move vba/ -> pokemontools/vba/Bryan Bishop
2013-09-07fix logging import in labels.pyBryan Bishop
2013-09-02make gbz80disasm use configurationBryan Bishop
gbz80disasm now uses configuration to determine which files to load before disassembling a chunk of bytes.
2013-09-02make wram.py use config for pathsBryan Bishop
The WRAMProcessor class handles reading all constants and labels, which are then used in gbz80disasm.
2013-09-02class Preprocessor instead of just functionsBryan Bishop
2013-09-02basic config supportBryan Bishop
2013-09-02fix "labels" confusion in get_labels_betweenBryan Bishop
There was both the labels module and a list called labels. Rename the local variable to foundlabels instead.
2013-09-01make_wram_labels doesn't need globals nowBryan Bishop
2013-09-01move the map_names import to the topBryan 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-01better ordering of imports in crystal.pyBryan Bishop
2013-09-01better docstrings in helpers.pyBryan Bishop
2013-09-01minor gbz80disasm formattingBryan Bishop
2013-09-01fix syntax on import gbz80disasmBryan Bishop
2013-09-01make mkdir_p raise a specific exceptionBryan Bishop
2013-09-01move mkdir_p out of gfx.py and into helpers.pyBryan Bishop
It seems that mkdir_p is unused at the moment.
2013-09-01import syntax in gfx.pyBryan Bishop
2013-09-01docstring for MenuDataPointerParamBryan Bishop
2013-09-01log message for parse_script_asm_atBryan Bishop
2013-09-01move flatten and flattener into helpersBryan Bishop
2013-09-01fix typo in TrainerGroupTable assert messageBryan Bishop
2013-09-01use TextScriptException againBryan Bishop
2013-09-01make up TextScriptException to replace two assertsBryan Bishop
2013-09-01use a custom AddressException instead of assertsBryan Bishop
There's no reason to have asserts thrown around in the source code like that. This replaces some of them with an AddressException and a new file called "exceptions.py" to store the exception definitions.
2013-09-01move index and grouper into helpers.pyBryan Bishop
2013-09-01improve spacing in Incbin and AsmSectionBryan Bishop
2013-09-01fix spacing in get_pokemon_constant_by_idBryan Bishop
2013-09-01fix import item_constants syntaxBryan Bishop
2013-09-01fix import wram syntaxBryan Bishop
2013-09-01fix import pokemon_constants syntaxBryan Bishop
2013-09-01fix import old_parse_scriptsBryan Bishop
2013-09-01fix "from trainers import .." syntaxBryan Bishop
2013-09-01don't need reBryan Bishop
2013-09-01import interval_map syntaxBryan Bishop
2013-09-01"import pointers" instead of "from .. import .."Bryan Bishop
2013-09-01import move_constants syntaxBryan Bishop
2013-09-01"import romstr" instead of "from romstr import .."Bryan Bishop
2013-09-01"import chars" instead of "from chars import .."Bryan Bishop
2013-09-01move imports togetherBryan Bishop
2013-09-01"import pksv" instead of "from pksv import .."Bryan Bishop
2013-09-01import labels instead of "from .. import .."Bryan Bishop
2013-09-01don't import remove_quoted_text into crystal.pyBryan Bishop
This function isn't used in crystal.py, so it can be safely removed from the imports.
2013-09-01convert more prints to logging callsBryan Bishop
2013-09-01use logging in crystal.py instead of printBryan Bishop
2013-09-01docstring for crystal.pyBryan Bishop
2013-09-01remove bryan_message for NotImplementedErrorBryan Bishop
Nothing was using it.
2013-09-01remove an old comment about __main__ in crystal.pyBryan Bishop
The comment no longer applies.
2013-09-01remove the 'json.read = json.loads' hackBryan Bishop
There's no good reason to use json.read anymore, even in the case of jython.
2013-09-01use an explicit import in labels.pyBryan Bishop
2013-09-01Merge pull request #2 from kanzure/pokered-preprocessorBryan Bishop
Don't make global labels for rgbasm macros.
2013-09-01chmod -x dump_sections.pyBryan Bishop