Support BCEX 5.0

- We have to work around a bug where morph chances have double %
- The skill names in monster specials got changed to single-quoted
instead of double quoted, go figure

It runs; a quick peek makes it look like everything's okay. There'll be
bugs I'm sure.
This commit is contained in:
Trysdyn Black 2024-10-16 00:28:48 -07:00
parent 51cd2f03cc
commit f733ebb66d
2 changed files with 7 additions and 3 deletions

View file

@ -26,6 +26,8 @@ The parser is quite brittle since the inconsistency of the original spoiler log
Additionally the tool only parses spoiler log data needed for known use-cases, so if you plan to use it you may need to request the inclusion of spoiler log sections. The tool can be expanded by adding new functions named `parse_SECTION` where `SECTION` is the full name of a section in the log, as presented in the log.
Development targed BCEX 4.0, but BCEX 5.0 is in limited support. It works but all the bugs haven't been found yet.
BCCE (The community revival of the BCEX project) is supported, but support is geared toward taking BCCE's spoiler logs and producing identical output to BCEX. This means stats are not their own data object, but are folded into character data just like BCEX outputs it. Remonsterate is supported and inserts its data into the monsters object.
BCCE is in active development and this may break at any time; see the first paragraph in this section.

View file

@ -2,7 +2,7 @@
"""Parse BCEX (or BCCE) logs into json objects."""
__version__ = "0.5.0"
__version__ = "0.5.1"
__author__ = "Trysdyn Black"
import json
@ -65,7 +65,8 @@ class Parser: # noqa: PLR0904
elif line.startswith("SPECIAL"):
content = line.split(" ", 1)[1]
if len(content) > 1:
special_name = content.split('"')[1]
# BCEX 5.0 changes the skill name to be single quoted instead of double
special_name = content.split('"')[1] if '"' in content else content.split("'")[1]
special_desc = content.split(": ")[1]
info["special"] = {special_name: special_desc}
else:
@ -73,7 +74,8 @@ class Parser: # noqa: PLR0904
# Morph results, with a percent chance in each one
elif line.startswith("MORPH"):
_, chance, items = line.split(" ", 2)
chance = int(chance[1:-3])
# BCEX 5.0 has a bug where % can be doubled sometimes
chance = int(chance[1:-3].replace("%", ""))
items = items.split(", ")
if "morph" not in info:
info["morph"] = {"percent_chance": chance, "items": items}