mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-01 07:33:43 -05:00
This new code is responsible for packing the following archives: - `pl_personal` -> basic information for each species: stats, types, etc. - `evo` -> evolution lines for each species - `wotbl` -> by-level learnsets for each species - `ppark` -> catching show data for each species - `height` -> y-offsets for front and back sprites for each species - `pl_poke_data` -> sprite-rendering data for each species: animation ID, frame data, shadow size and offsets, etc. Additionally, the following headers are generated: - `res/pokemon/tutorable_moves.h` -> A listing of moves taught by each tutor and how much each move costs to be tutored - `res/pokemon/species_learnsets_by_tutor.h` -> An array of bitmasks for each species designating which moves can be tutored to that species
110 lines
3.3 KiB
Python
110 lines
3.3 KiB
Python
#!/usr/bin/env python3
|
|
import argparse
|
|
import json
|
|
import pathlib
|
|
|
|
from consts.pokemon import PokemonFootprintSize
|
|
from generated.moves import Move
|
|
from generated.species import Species
|
|
|
|
|
|
argparser = argparse.ArgumentParser(
|
|
prog='make_species_tables.py',
|
|
description='Creates generated .h files for species-specific data'
|
|
)
|
|
argparser.add_argument('-s', '--source-dir',
|
|
required=True,
|
|
help='Path to the source directory (res/pokemon)')
|
|
argparser.add_argument('-o', '--output-dir',
|
|
required=True,
|
|
help='Path to the output directory (where the header files will be made)')
|
|
args = argparser.parse_args()
|
|
|
|
source_dir = pathlib.Path(args.source_dir)
|
|
output_dir = pathlib.Path(args.output_dir)
|
|
|
|
NATIONAL_DEX_COUNT = 493
|
|
|
|
FORM_INDICES = {
|
|
'DEOXYS' : {
|
|
'ATTACK': NATIONAL_DEX_COUNT + 1,
|
|
'DEFENSE': NATIONAL_DEX_COUNT + 2,
|
|
'SPEED': NATIONAL_DEX_COUNT + 3,
|
|
},
|
|
'WORMADAM': {
|
|
'SANDY': NATIONAL_DEX_COUNT + 4,
|
|
'TRASH': NATIONAL_DEX_COUNT + 5,
|
|
},
|
|
'GIRATINA': {
|
|
'ORIGIN': NATIONAL_DEX_COUNT + 6,
|
|
},
|
|
'SHAYMIN': {
|
|
'SKY': NATIONAL_DEX_COUNT + 7,
|
|
},
|
|
'ROTOM': {
|
|
'HEAT': NATIONAL_DEX_COUNT + 8,
|
|
'WASH': NATIONAL_DEX_COUNT + 9,
|
|
'FROST': NATIONAL_DEX_COUNT + 10,
|
|
'FAN': NATIONAL_DEX_COUNT + 11,
|
|
'MOW': NATIONAL_DEX_COUNT + 12,
|
|
},
|
|
}
|
|
|
|
species_footprints = {
|
|
0: { "has": False, "size": "FOOTPRINT_SMALL" }
|
|
}
|
|
|
|
for file_path in source_dir.glob("**/data.json"):
|
|
with open(file_path, 'r') as data_file:
|
|
species_data = json.load(data_file)
|
|
|
|
species_name = file_path.parent.stem.upper()
|
|
|
|
if species_name in ["NONE", "EGG", "BAD_EGG"]:
|
|
continue
|
|
|
|
isForm = False
|
|
|
|
if file_path.parent.parent.stem == "forms":
|
|
form_name = species_name
|
|
species_name = file_path.parent.parent.parent.stem.upper()
|
|
|
|
species_id = FORM_INDICES[species_name][form_name]
|
|
|
|
isForm = True
|
|
else:
|
|
species_id = Species[f"SPECIES_{species_name}"].value
|
|
|
|
if not isForm:
|
|
species_footprints[species_id] = species_data["footprint"]
|
|
|
|
|
|
generated_disclaimer = [
|
|
"// This file is GENERATED. Changes will be overwritten here on build\n",
|
|
"// Check make_species_tables.py for reference\n",
|
|
]
|
|
|
|
# write footprint table header
|
|
output_path = output_dir / "footprint_data.h"
|
|
|
|
with open(output_path, "w") as output_file:
|
|
output_file.writelines(generated_disclaimer)
|
|
output_file.write("#ifndef POKEPLATINUM_GENERATED_FOOTPRINT_DATA_H\n")
|
|
output_file.write("#define POKEPLATINUM_GENERATED_FOOTPRINT_DATA_H\n")
|
|
output_file.write("#include \"overlay113/footprint_data.h\"\n")
|
|
output_file.write("#include \"constants/species.h\"\n")
|
|
output_file.write("\n")
|
|
output_file.write("static const FootprintData sSpeciesFootprintData[NATIONAL_DEX_COUNT + 1] = {\n")
|
|
|
|
sorted_array = sorted(species_footprints.items())
|
|
|
|
for key, value in sorted_array:
|
|
|
|
has_footprint = "TRUE" if species_footprints[key]["has"] else "FALSE"
|
|
footprint_size = PokemonFootprintSize[species_footprints[key]["size"]].value
|
|
|
|
output_file.write(f" {{ {has_footprint}, {footprint_size} }},\n")
|
|
|
|
output_file.write("};\n")
|
|
output_file.write("\n#endif\n")
|