Note unsupported log sections
This commit is contained in:
parent
14ec718890
commit
cedf27485a
2 changed files with 32 additions and 1 deletions
16
README.md
16
README.md
|
@ -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
17
main.py
|
@ -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."""
|
||||
|
|
Loading…
Add table
Reference in a new issue