2022-06-15 18:55:04 +00:00
|
|
|
"""
|
|
|
|
Used to process the raw data about ingredients pulled from the API.
|
2021-01-18 12:10:28 +00:00
|
|
|
|
2022-06-15 18:55:04 +00:00
|
|
|
Usage:
|
|
|
|
- python process_ings.py [infile] [outfile]
|
|
|
|
OR
|
|
|
|
- python process_ings.py [infile and outfile]
|
|
|
|
"""
|
2021-01-18 12:10:28 +00:00
|
|
|
|
|
|
|
import json
|
2022-06-15 18:55:04 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import base64
|
2022-06-25 07:19:55 +00:00
|
|
|
import argparse
|
2021-01-18 12:10:28 +00:00
|
|
|
|
2022-06-25 23:35:09 +00:00
|
|
|
parser = argparse.ArgumentParser(description="Process raw pulled ingredient data.")
|
|
|
|
parser.add_argument('infile', help='input file to read data from')
|
|
|
|
parser.add_argument('outfile', help='output file to dump clean data into')
|
|
|
|
args = parser.parse_args()
|
|
|
|
infile, outfile = args.infile, args.outfile
|
2021-01-18 12:10:28 +00:00
|
|
|
|
2022-06-15 18:55:04 +00:00
|
|
|
with open(infile, "r") as in_file:
|
|
|
|
ing_data = json.loads(in_file.read())
|
|
|
|
ings = ing_data['ings']
|
|
|
|
|
|
|
|
if os.path.exists("ing_map.json"):
|
|
|
|
with open("ing_map.json","r") as ing_mapfile:
|
2021-05-20 03:35:35 +00:00
|
|
|
ing_map = json.load(ing_mapfile)
|
|
|
|
else:
|
|
|
|
ing_map = {ing["name"]: i for i, ing in enumerate(ings)}
|
|
|
|
texture_names = []
|
|
|
|
|
2021-01-18 12:10:28 +00:00
|
|
|
|
|
|
|
delete_keys = [
|
|
|
|
"addedLore",
|
|
|
|
#"skin",
|
|
|
|
"armorType",
|
|
|
|
"armorColor",
|
|
|
|
"material"
|
|
|
|
]
|
|
|
|
|
|
|
|
ing_translate_mappings = {
|
|
|
|
#"name" : "name",
|
|
|
|
#"tier" :"tier",
|
|
|
|
"level" : "lvl",
|
|
|
|
#"skills" : "skills",
|
|
|
|
"identifications" : "ids",
|
|
|
|
"itemOnlyIDs" : "itemIDs",
|
|
|
|
"consumableOnlyIDs" : "consumableIDs",
|
|
|
|
"ingredientPositionModifiers" : "posMods",
|
|
|
|
}
|
|
|
|
ing_metaID_mappings = {
|
|
|
|
#item only IDs
|
|
|
|
"durabilityModifier": "dura",
|
|
|
|
"strengthRequirement": "strReq",
|
|
|
|
"dexterityRequirement": "dexReq",
|
|
|
|
"intelligenceRequirement": "intReq",
|
|
|
|
"defenceRequirement": "defReq",
|
|
|
|
"agilityRequirement": "agiReq",
|
|
|
|
"attackSpeedModifier": "atkTier",
|
|
|
|
"powderSlotModifier": "slotMod",
|
|
|
|
#consumable only IDs
|
|
|
|
"duration": "dura",
|
|
|
|
#"charges": "charges",
|
|
|
|
#position modifiers
|
|
|
|
#"left": "left",
|
|
|
|
#"right": "right",
|
|
|
|
#"above": "above",
|
|
|
|
#"under": "under",
|
|
|
|
#"touching": "touching",
|
|
|
|
#"notTouching": "notTouching",
|
|
|
|
}
|
|
|
|
ing_id_mappings = { #specifically for the id field of an ingredient.
|
|
|
|
#"name": "name",
|
|
|
|
#"displayName": "displayName",
|
|
|
|
#"tier": "tier",
|
|
|
|
#"set": "set",
|
|
|
|
#"sockets": "slots",
|
|
|
|
#"type": "type",
|
|
|
|
#"armorType": "armorType", (deleted)
|
|
|
|
#"armorColor": "color", (deleted)
|
|
|
|
#"addedLore": "lore", (deleted)
|
|
|
|
#"material": "material", (deleted)
|
|
|
|
#"dropType": "drop",
|
|
|
|
#"quest": "quest",
|
|
|
|
#"restrictions": "restrict",
|
|
|
|
#"damage": "nDam",
|
|
|
|
#"fireDamage": "fDam",
|
|
|
|
#"waterDamage": "wDam",
|
|
|
|
#"airDamage": "aDam",
|
|
|
|
#"thunderDamage": "tDam",
|
|
|
|
#"earthDamage": "eDam",
|
|
|
|
#"ATTACKSPEED": "atkSpd",
|
|
|
|
#"health": "hp",
|
|
|
|
"FIREDEFENSE": "fDefPct",
|
|
|
|
"WATERDEFENSE": "wDefPct",
|
|
|
|
"AIRDEFENSE": "aDefPct",
|
|
|
|
"THUNDERDEFENSE": "tDefPct",
|
|
|
|
"EARTHDEFENSE": "eDefPct",
|
|
|
|
#"level": "lvl",
|
|
|
|
#"classRequirement": "classReq",
|
|
|
|
#"strength": "strReq",
|
|
|
|
#"dexterity": "dexReq",
|
|
|
|
#"intelligence": "intReq",
|
|
|
|
#"agility": "agiReq",
|
|
|
|
#"defense": "defReq",
|
|
|
|
"HEALTHREGEN": "hprPct",
|
|
|
|
"MANAREGEN": "mr",
|
|
|
|
"SPELLDAMAGE": "sdPct",
|
|
|
|
"DAMAGEBONUS": "mdPct",
|
|
|
|
"LIFESTEAL": "ls",
|
|
|
|
"MANASTEAL": "ms",
|
|
|
|
"XPBONUS": "xpb",
|
|
|
|
"LOOTBONUS": "lb",
|
|
|
|
"LOOT_QUALITY": "lq",
|
|
|
|
"REFLECTION": "ref",
|
|
|
|
"STRENGTHPOINTS": "str",
|
|
|
|
"DEXTERITYPOINTS": "dex",
|
|
|
|
"INTELLIGENCEPOINTS": "int",
|
|
|
|
"AGILITYPOINTS": "agi",
|
|
|
|
"DEFENSEPOINTS": "def",
|
|
|
|
"THORNS": "thorns",
|
|
|
|
"EXPLODING": "expd",
|
|
|
|
"SPEED": "spd",
|
|
|
|
"ATTACKSPEED": "atkTier",
|
|
|
|
"POISON": "poison",
|
|
|
|
"HEALTHBONUS": "hpBonus",
|
|
|
|
"SOULPOINTS": "spRegen",
|
|
|
|
"EMERALDSTEALING": "eSteal",
|
|
|
|
"HEALTHREGENRAW": "hprRaw",
|
|
|
|
"SPELLDAMAGERAW": "sdRaw",
|
|
|
|
"DAMAGEBONUSRAW": "mdRaw",
|
|
|
|
"FIREDAMAGEBONUS": "fDamPct",
|
|
|
|
"WATERDAMAGEBONUS": "wDamPct",
|
|
|
|
"AIRDAMAGEBONUS": "aDamPct",
|
|
|
|
"THUNDERDAMAGEBONUS": "tDamPct",
|
|
|
|
"EARTHDAMAGEBONUS": "eDamPct",
|
|
|
|
#"accessoryType": "type",
|
|
|
|
#"identified": "fixID",
|
|
|
|
#"skin": "skin",
|
|
|
|
#"category": "category",
|
|
|
|
#THESE ARE NOT IN ANY INGREDIENT YET. THEY MAY NOT HAVE THE CORRECT ID NAME
|
|
|
|
"SPELLCOSTPCT1": "spPct1",
|
|
|
|
"SPELLCOSTRAW1": "spRaw1",
|
|
|
|
"SPELLCOSTPCT2": "spPct2",
|
|
|
|
"SPELLCOSTRAW2": "spRaw2",
|
|
|
|
"SPELLCOSTPCT3": "spPct3",
|
|
|
|
"SPELLCOSTRAW3": "spRaw3",
|
|
|
|
"SPELLCOSTPCT4": "spPct4",
|
|
|
|
"SPELLCOSTRAW4": "spRaw4",
|
2021-01-29 02:31:31 +00:00
|
|
|
"JUMP_HEIGHT": "jh",
|
2021-01-18 12:10:28 +00:00
|
|
|
#"rainbowSpellDamageRaw": "rainbowRaw",
|
2021-01-29 02:31:31 +00:00
|
|
|
"STAMINA": "sprint",
|
|
|
|
"STAMINA_REGEN": "sprintReg",
|
|
|
|
"GATHER_XP_BONUS": "gXp",
|
|
|
|
"GATHER_SPEED": "gSpd",
|
2021-01-18 12:10:28 +00:00
|
|
|
#"lootQuality": "lq",
|
|
|
|
}
|
|
|
|
ing_delete_keys = [
|
|
|
|
"sprite",
|
2021-07-11 20:43:52 +00:00
|
|
|
"skin"
|
2021-01-18 12:10:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
for ing in ings:
|
|
|
|
for key in ing_delete_keys:
|
|
|
|
if key in ing:
|
|
|
|
del ing[key]
|
|
|
|
|
|
|
|
for k, v in ing_translate_mappings.items():
|
|
|
|
if k in ing:
|
|
|
|
ing[v] = ing[k]
|
|
|
|
del ing[k]
|
|
|
|
|
|
|
|
for k, v in ing_metaID_mappings.items():
|
2021-07-11 16:22:34 +00:00
|
|
|
if 'consumableIDs' not in ing:
|
|
|
|
ing['consumableIDs'] = {
|
|
|
|
"charges": 0,
|
|
|
|
"dura": 0
|
|
|
|
}
|
|
|
|
if 'posMods' not in ing:
|
|
|
|
ing['posMods'] = {
|
|
|
|
"left": 0,
|
|
|
|
"right": 0,
|
|
|
|
"above": 0,
|
|
|
|
"under": 0,
|
|
|
|
"touching": 0,
|
|
|
|
"notTouching": 0
|
|
|
|
}
|
|
|
|
if 'itemIDs' not in ing:
|
|
|
|
ing['consumableIDs'] = {
|
|
|
|
"dura": 0,
|
|
|
|
"strReq": 0,
|
|
|
|
"dexReq": 0,
|
|
|
|
"intReq": 0,
|
|
|
|
"defReq": 0,
|
|
|
|
"agiReq": 0
|
|
|
|
}
|
2021-01-18 12:10:28 +00:00
|
|
|
if k in ing['itemIDs']:
|
|
|
|
ing['itemIDs'][v] = ing['itemIDs'][k]
|
|
|
|
del ing['itemIDs'][k]
|
|
|
|
elif k in ing['consumableIDs']:
|
|
|
|
ing['consumableIDs'][v] = ing['consumableIDs'][k]
|
|
|
|
del ing['consumableIDs'][k]
|
|
|
|
'''elif k in ing.posMods: #Not subbing, if we do sub uncomment this.
|
|
|
|
ing.posMods[v] = ing.posMods[k]
|
|
|
|
del ing.posMods[k] '''
|
|
|
|
|
|
|
|
for k, v in ing_id_mappings.items():
|
|
|
|
if k in ing['ids']: #yes this is dumb
|
|
|
|
ing['ids'][v] = ing['ids'][k]
|
|
|
|
del ing['ids'][k]
|
2021-01-29 02:31:31 +00:00
|
|
|
|
|
|
|
if not (ing["name"] in ing_map):
|
|
|
|
ing_map[ing["name"]] = len(ing_map)
|
|
|
|
print(f'New Ingred: {ing["name"]}')
|
|
|
|
ing["id"] = ing_map[ing["name"]]
|
2021-01-18 12:10:28 +00:00
|
|
|
|
2022-06-15 18:55:04 +00:00
|
|
|
#save ing ids
|
2022-11-12 15:48:27 +00:00
|
|
|
with open("ing_map.json", "w") as ing_mapfile:
|
2021-01-29 02:31:31 +00:00
|
|
|
json.dump(ing_map, ing_mapfile, indent = 2)
|
2021-05-20 03:35:35 +00:00
|
|
|
|
2022-06-15 18:55:04 +00:00
|
|
|
#save ings
|
2022-11-12 15:48:27 +00:00
|
|
|
with open(outfile, "w") as out_file:
|
2023-02-17 11:40:23 +00:00
|
|
|
json.dump(ings, out_file, ensure_ascii=False, separators=(',', ':'))
|