Note unsupported log sections

This commit is contained in:
Trysdyn Black 2024-10-11 17:57:27 -07:00
parent 14ec718890
commit cedf27485a
2 changed files with 32 additions and 1 deletions

View file

@ -27,3 +27,19 @@ Additionally the tool only parses spoiler log data needed for known use-cases, s
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.
## Known Support Gaps
These sections in the BCEX/BCCE spoiler logs currently have no logic and I'm aware of it. That doesn't mean sections *not* listed here have support; they may not and I'm not aware of them.
- AESTHETICS
- MAGITEK
- DANCES
- ESPERS
- ITEM MAGIC
- ITEM EFFECTS
- COLOSSEUM
- MUSIC
- SHOPS
- TREASURE CHESTS
- JUNCTIONS

17
main.py
View file

@ -11,7 +11,22 @@ from pathlib import Path
class Parser:
"""BCEX/BCCE spoiler logfile parser."""
"""
BCEX/BCCE spoiler logfile parser.
Sections missing support:
- AESTHETICS
- MAGITEK
- DANCES
- ESPERS
- ITEM MAGIC
- ITEM EFFECTS
- COLOSSEUM
- MUSIC
- SHOPS
- TREASURE CHESTS
- JUNCTIONS
"""
def __init__(self, filename: str) -> None:
"""Initialize parser with filename."""