Source code for esp_parser

#!/usr/bin/env python3
#
#  __init__.py
"""
Parser and unparser for Bethesda ESP files.
"""
#
#  Copyright © 2024 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
#  Permission is hereby granted, free of charge, to any person obtaining a copy
#  of this software and associated documentation files (the "Software"), to deal
#  in the Software without restriction, including without limitation the rights
#  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#  copies of the Software, and to permit persons to whom the Software is
#  furnished to do so, subject to the following conditions:
#
#  The above copyright notice and this permission notice shall be included in all
#  copies or substantial portions of the Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
#  DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
#  OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
#  OR OTHER DEALINGS IN THE SOFTWARE.
#

__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2024 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.0.0"
__email__: str = "dominic@davis-foster.co.uk"

# stdlib
from io import BytesIO
from typing import TYPE_CHECKING, Iterator, Union

# this package
from esp_parser import records
from esp_parser.types import RecordType

if TYPE_CHECKING:
	# this package
	from esp_parser.group import Group

__all__ = ["parse_esp"]


[docs]def parse_esp(raw_bytes: BytesIO) -> Iterator[Union[RecordType, "Group"]]: """ Recursively parse an ESP file. :param raw_bytes: """ # this package from esp_parser import group while True: record_type = raw_bytes.read(4) if not record_type: break if record_type == b"GRUP": yield group.Group.parse(raw_bytes) elif record_type in { b"TES4", b"ACHR", b"ACRE", b"ACTI", b"ADDN", b"ALCH", b"ALOC", b"AMEF", b"AMMO", b"ANIO", b"ARMA", b"ARMO", b"ASPC", b"AVIF", b"BOOK", b"BPTD", b"CAMS", b"CCRD", b"CDCK", b"CELL", b"CHAL", b"CHIP", b"CLAS", b"CLMT", b"CMNY", b"COBJ", b"CONT", b"CPTH", b"CREA", b"CSNO", b"CSTY", b"DEBR", b"DEHY", b"DIAL", b"DOBJ", b"DOOR", b"ECZN", b"EFSH", b"ENCH", b"EXPL", b"EYES", b"FACT", b"FLST", b"FURN", b"GLOB", b"GMST", b"GRAS", b"HAIR", b"HDPT", b"HUNG", b"IDLE", b"IDLM", b"IMAD", b"IMGS", b"IMOD", b"INFO", b"INGR", b"IPCT", b"IPDS", b"KEYM", b"LAND", b"LGTM", b"LIGH", b"LSCR", b"LSCT", b"LTEX", b"LVLC", b"LVLI", b"LVLN", b"MESG", b"MGEF", b"MICN", b"MISC", b"MSET", b"MSTT", b"MUSC", b"NAVI", b"NAVM", b"NOTE", b"NPC_", b"PACK", b"PERK", b"PGRE", b"PROJ", b"PWAT", b"QUST", b"RACE", b"RADS", b"RCCT", b"RCPE", b"REFR", b"REGN", b"REPU", b"RGDL", b"SCOL", b"SCPT", b"SLPD", b"SOUN", b"SPEL", b"STAT", b"TACT", b"TERM", b"TREE", b"TXST", b"VTYP", b"WATR", b"WEAP", b"WRLD", }: yield getattr(records, record_type.decode()).parse(raw_bytes) else: raise NotImplementedError(record_type)