nitro-docker/assets/translation/FurnitureDataTranslator.py

34 lines
1.2 KiB
Python
Raw Normal View History

2023-03-13 18:36:30 +01:00
import json
2023-03-16 01:56:44 +01:00
todo_types = ["roomitemtypes", "wallitemtypes"]
2023-03-13 18:36:30 +01:00
# Create a dictionary mapping classname to name and description
furniture_dict = {}
with open('gamedata/furnidata.json', 'r', encoding='utf-8') as f:
furniture_data = json.load(f)
2023-03-16 01:56:44 +01:00
for todo_type in todo_types:
for furnitype in furniture_data[todo_type]["furnitype"]:
classname = furnitype['classname']
furniture_dict[classname] = {
"name": furnitype['name'],
"description": furnitype['description'],
}
2023-03-13 18:36:30 +01:00
2023-03-16 01:56:44 +01:00
orig_furniture_data = {}
2023-03-13 18:36:30 +01:00
# Load the JSON file
with open('../assets/gamedata/FurnitureData.json', 'r', encoding='utf-8') as f:
2023-03-16 01:56:44 +01:00
orig_furniture_data = json.load(f)
2023-03-13 18:36:30 +01:00
# Replace the name and description values with values from the XML file
2023-03-16 01:56:44 +01:00
for todo_type in todo_types:
for furnitype in orig_furniture_data[todo_type]["furnitype"]:
classname = furnitype['classname']
if classname in furniture_dict:
furnitype['name'] = furniture_dict[classname]['name']
furnitype['description'] = furniture_dict[classname]['description']
2023-03-13 18:36:30 +01:00
# Save the updated JSON file
with open('../assets/gamedata/FurnitureData.json', 'w') as f:
2023-03-16 01:56:44 +01:00
json.dump(orig_furniture_data, f, separators=(',', ':'))