You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
7.9 KiB
139 lines
7.9 KiB
import yaml
|
|
import json
|
|
import requests
|
|
from fluent.syntax import parse, ast
|
|
|
|
yaml.SafeLoader.add_multi_constructor("", lambda loader, tag_suffix, node: None)
|
|
|
|
# медицинские реагентов
|
|
REAGENTS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/medicine.yml"
|
|
MEDICINE_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/medicine.ftl"
|
|
RECIPES_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Recipes/Reactions/medicine.yml"
|
|
CHEMICALS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/chemicals.yml"
|
|
CHEMICALS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/chemicals.ftl"
|
|
|
|
# элементы раздатчика химикатов
|
|
ELEMENTS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/elements.yml"
|
|
ELEMENTS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/elements.ftl"
|
|
|
|
# токсины
|
|
TOXINS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/toxins.yml"
|
|
TOXINS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/toxins.ftl"
|
|
|
|
# локализация наркотиков/наркотических препаратов
|
|
NARCOTICS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/narcotics.ftl"
|
|
|
|
# газы
|
|
GASES_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/gases.yml"
|
|
GASES_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/gases.ftl"
|
|
|
|
# биология
|
|
BIOLOGY_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/biological.yml"
|
|
BIOLOGY_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/biological.ftl"
|
|
|
|
# ботаника
|
|
BOTANY_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/botany.yml"
|
|
BOTANY_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/botany.ftl"
|
|
|
|
# все съедобное и питьевое
|
|
FOOD_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/dev/Resources/Prototypes/Reagents/Consumable/Food/food.yml"
|
|
CONDIMENTS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml"
|
|
INGREDIENTS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml"
|
|
DRINKS_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml"
|
|
ALCOHOL_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml"
|
|
INGREDIENTS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/consumable/food/ingredients.ftl"
|
|
ALCOHOL_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl"
|
|
CONDIMENTS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/consumable/food/condiments.ftl"
|
|
DRINKS_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl"
|
|
FOOD_LOCALISATION_URL = "https://github.com/SerbiaStrong-220/space-station-14/raw/master/Resources/Locale/ru-RU/reagents/meta/consumable/food/ingredients.ftl"
|
|
|
|
|
|
class Reagent:
|
|
def __init__(self, init_data: dict):
|
|
self.__name: str = init_data.get("name")
|
|
self.__desc: str = init_data.get("desc")
|
|
self.__recipe: dict = init_data.get("reactants")
|
|
self.__product = init_data.get("products")
|
|
# raw значения которые обработаны
|
|
|
|
self.heat: bool = init_data.get("heat")
|
|
|
|
@property
|
|
def name(self):
|
|
return localise(self.__name).capitalize()
|
|
|
|
@property
|
|
def description(self):
|
|
return localise(self.__desc)
|
|
|
|
@property
|
|
def recipe(self):
|
|
result = []
|
|
if not self.__recipe:
|
|
return result
|
|
for item in self.__recipe:
|
|
# Приводим к НОРМАЛЬНОМУ виду
|
|
# "Бикаридин": [ [0, "Углерод", 1], [1, "Инапровалин"] ]
|
|
result.append([self.__recipe[item]["reagent"], localise(item).capitalize(), self.__recipe[item]["amount"]])
|
|
return result
|
|
|
|
|
|
def load_localisation():
|
|
data = {"elements": {}, "placeholders": {}}
|
|
elements_urls = [ELEMENTS_URL, REAGENTS_URL, TOXINS_URL, GASES_URL, FOOD_URL, DRINKS_URL, BIOLOGY_URL,
|
|
CONDIMENTS_URL, BOTANY_URL, ALCOHOL_URL, CHEMICALS_URL, INGREDIENTS_URL]
|
|
for url in elements_urls:
|
|
response = yaml.load(requests.get(url).content.decode("utf-8"), Loader=yaml.SafeLoader)
|
|
for i in response:
|
|
data["elements"][i["id"]] = {"name": i["name"], "desc": i["desc"]}
|
|
|
|
localisation_urls = [MEDICINE_LOCALISATION_URL, ELEMENTS_LOCALISATION_URL, TOXINS_LOCALISATION_URL,
|
|
GASES_LOCALISATION_URL, DRINKS_LOCALISATION_URL, FOOD_LOCALISATION_URL,
|
|
CONDIMENTS_LOCALISATION_URL, BIOLOGY_LOCALISATION_URL, NARCOTICS_LOCALISATION_URL,
|
|
BOTANY_LOCALISATION_URL, ALCOHOL_LOCALISATION_URL, CHEMICALS_LOCALISATION_URL,
|
|
INGREDIENTS_LOCALISATION_URL]
|
|
|
|
for url in localisation_urls:
|
|
response = requests.get(url).content.decode("utf-8")
|
|
for entry in parse(response).body:
|
|
if isinstance(entry, ast.Message):
|
|
data["placeholders"][entry.id.name] = entry.value.elements[0].value
|
|
|
|
with open("locale.json", mode="w", encoding="utf-8") as localisation_file:
|
|
json.dump(data, localisation_file, ensure_ascii=False, indent=2)
|
|
|
|
|
|
def localise(key: str) -> str:
|
|
with open("locale.json", mode="r", encoding="utf-8") as file:
|
|
data = json.load(file)
|
|
if "-" in key: # если это placeholder
|
|
return data["placeholders"].get(key, f"[p] {key}")
|
|
elif key in data["elements"]:
|
|
return localise(data["elements"][key]["name"])
|
|
else:
|
|
return f"[!] {key}"
|
|
|
|
|
|
load_localisation()
|
|
|
|
content = {}
|
|
|
|
for item in yaml.load(requests.get(REAGENTS_URL).content.decode("utf-8"), Loader=yaml.SafeLoader):
|
|
content[item["id"]] = {"name": item["name"], "desc": item["desc"]}
|
|
for item in yaml.load(requests.get(TOXINS_URL).content.decode("utf-8"), Loader=yaml.SafeLoader):
|
|
content[item["id"]] = {"name": item["name"], "desc": item["desc"]}
|
|
for item in yaml.load(requests.get(RECIPES_URL).content.decode("utf-8"), Loader=yaml.SafeLoader):
|
|
if item["id"] not in content:
|
|
continue
|
|
content[item["id"]]["heat"] = "minTemp" in item
|
|
content[item["id"]]["reactants"] = {
|
|
element: {"amount": item["reactants"][element]["amount"], "reagent": element in content} for element in
|
|
item["reactants"]}
|
|
content[item["id"]]["products"] = item["products"]
|
|
|
|
reagents = [Reagent(init_data=content[item]) for item in content] # if "reactants" in content[item]]
|
|
|
|
db = {x.name: x.recipe for x in reagents}
|
|
with open("db.json", mode="w", encoding="utf-8") as db_file:
|
|
json.dump(db, db_file, ensure_ascii=False, indent=2)
|