From f733ebb66d1282f5eec0eec42730c800b7b1c3c1 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Wed, 16 Oct 2024 00:28:48 -0700 Subject: [PATCH] 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. --- README.md | 2 ++ main.py | 8 +++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ca55bd1..3779e65 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/main.py b/main.py index 58f4124..1394bee 100644 --- a/main.py +++ b/main.py @@ -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}