Palworld-co-op-to-server-fix/lib/rawdata/item_container.py

52 lines
1.7 KiB
Python

from typing import Any, Sequence
from lib.archive import *
def decode(
reader: FArchiveReader, type_name: str, size: int, path: str
) -> dict[str, Any]:
if type_name != "ArrayProperty":
raise Exception(f"Expected ArrayProperty, got {type_name}")
value = reader.property(type_name, size, path, allow_custom=False)
data_bytes = value["value"]["values"]
value["value"] = decode_bytes(data_bytes)
return value
def decode_bytes(c_bytes: Sequence[int]) -> dict[str, Any]:
if len(c_bytes) == 0:
return None
reader = FArchiveReader(bytes(c_bytes))
data = {}
data["permission"] = {
"type_a": reader.tarray(lambda r: r.byte()),
"type_b": reader.tarray(lambda r: r.byte()),
"item_static_ids": reader.tarray(lambda r: r.fstring()),
}
if not reader.eof():
raise Exception("Warning: EOF not reached")
return data
def encode(
writer: FArchiveWriter, property_type: str, properties: dict[str, Any]
) -> int:
if property_type != "ArrayProperty":
raise Exception(f"Expected ArrayProperty, got {property_type}")
del properties["custom_type"]
encoded_bytes = encode_bytes(properties["value"])
properties["value"] = {"values": [b for b in encoded_bytes]}
return writer.property_inner(property_type, properties)
def encode_bytes(p: dict[str, Any]) -> bytes:
if p is None:
return bytes()
writer = FArchiveWriter()
writer.tarray(lambda w, d: w.byte(d), p["permission"]["type_a"])
writer.tarray(lambda w, d: w.byte(d), p["permission"]["type_b"])
writer.tarray(lambda w, d: w.fstring(d), p["permission"]["item_static_ids"])
encoded_bytes = writer.bytes()
return encoded_bytes