artemis/titles/diva/const.py

16 lines
376 B
Python
Raw Permalink Normal View History

2023-03-09 16:38:58 +00:00
class DivaConstants:
GAME_CODE = "SBZV"
CONFIG_NAME = "diva.yaml"
VER_PROJECT_DIVA_ARCADE = 0
VER_PROJECT_DIVA_ARCADE_FUTURE_TONE = 1
2023-04-02 03:05:10 +00:00
LUT_TIME_FMT = "%Y-%m-%d %H:%M:%S:16.0"
VERSION_NAMES = ("Project Diva Arcade", "Project Diva Arcade Future Tone")
@classmethod
def game_ver_to_string(cls, ver: int):
2023-03-09 16:38:58 +00:00
return cls.VERSION_NAMES[ver]