Files
ic10emu/www/stationpedia.py
Rachel Powers d63f8dff36 Device db fuzy search!
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
2024-04-11 14:48:10 -07:00

182 lines
5.5 KiB
Python

import json
import re
from collections import defaultdict
from pathlib import Path
from pprint import pprint
from typing import Any # type: ignore[Any]
from typing import TypedDict
class SlotInsert(TypedDict):
SlotIndex: str
SlotName: str
SlotType: str
class LInsert(TypedDict):
LogicName: str
LogicAccessTypes: str
class PediaPage(TypedDict):
Key: str
Title: str
Description: str
PrefabName: str
PrefabHash: int
SlotInserts: list[SlotInsert]
LogicInsert: list[LInsert]
LogicSlotInsert: list[LInsert]
ModeInsert: list[LInsert]
ConnectionInsert: list[LInsert]
ConnectionList: list[list[str]]
class Pedia(TypedDict):
pages: list[PediaPage]
class DBSlot(TypedDict):
name: str
typ: str
class DBPage(TypedDict):
name: str
hash: int
desc: str
slots: list[DBSlot] | None
logic: dict[str, str] | None
slotlogic: dict[str, list[int]] | None
modes: dict[int, str] | None
conn: dict[int, list[str]] | None
def extract_all() -> None:
db: dict[str, DBPage] = {}
pedia: Pedia = {"pages": []}
linkPat = re.compile(r"<link=\w+><color=[\w#]+>(.+?)</color></link>")
with (Path("data") / "Stationpedia.json").open("r") as f:
pedia = json.load(f)
for page in pedia["pages"]:
item: DBPage = defaultdict(list) # type: ignore[reportAssignmenType]
match page:
case {
"Key": _,
"Title": _,
"Description": desc,
"PrefabName": name,
"PrefabHash": name_hash,
"SlotInserts": slots,
"LogicInsert": logic,
"LogicSlotInsert": slotlogic,
"ModeInsert": modes,
"ConnectionInsert": _,
"ConnectionList": connections,
}:
item["name"] = name
item["hash"] = name_hash
item["desc"] = re.sub(linkPat, r"\1", desc)
match slots:
case []:
item["slots"] = None
case _:
item["slots"] = [{}] * len(slots) # type: ignore[reportAssignmenType]
for slot in slots:
item["slots"][int(slot["SlotIndex"])] = {
"name": slot["SlotName"],
"typ": slot["SlotType"],
}
match logic:
case []:
item["logic"] = None
case _:
item["logic"] = {}
for lat in logic:
item["logic"][re.sub(linkPat, r"\1", lat["LogicName"])] = (
lat["LogicAccessTypes"].replace(" ", "")
)
match slotlogic:
case []:
item["slotlogic"] = None
case _:
item["slotlogic"] = {}
for slt in slotlogic:
item["slotlogic"][
re.sub(linkPat, r"\1", slt["LogicName"])
] = [int(s) for s in slt["LogicAccessTypes"].split(", ")]
match modes:
case []:
item["modes"] = None
case _:
item["modes"] = {}
for mode in modes:
item["modes"][int(mode["LogicAccessTypes"])] = mode[
"LogicName"
]
match connections:
case []:
item["conn"] = None
case _:
item["conn"] = {}
for index, [conn_typ, conn_role] in enumerate(connections):
item["conn"][index] = [conn_typ, conn_role]
case _:
print(f"NON-CONFORMING: ")
pprint(page)
return
db[name] = item
logicable = [item["name"] for item in db.values() if item["logic"] is not None]
slotlogicable = [
item["name"] for item in db.values() if item["slotlogic"] is not None
]
devices = [
item["name"]
for item in db.values()
if item["logic"] is not None and item["conn"] is not None
]
strutures = [
item["name"] for item in db.values() if item["name"].startswith("Structure")
]
items = [item["name"] for item in db.values() if item["name"] not in strutures]
def clean_nones(value: Any) -> Any: # type: ignore[Any]
if isinstance(value, list):
return [clean_nones(x) for x in value if x is not None] # type: ignore[unknown]
elif isinstance(value, dict):
return {
key: clean_nones(val) for key, val in value.items() if val is not None # type: ignore[unknown]
}
else:
return value # type: ignore[Any]
with open("data/database.json", "w") as f:
json.dump(
clean_nones(
{
"logic_enabled": logicable,
"slot_logic_enabled": slotlogicable,
"devices": devices,
"strutures": strutures,
"items": items,
"db": db,
}
),
f,
)
if __name__ == "__main__":
# extract_logicable()
extract_all()