2023-03-03 22:46:29 +00:00
|
|
|
from datetime import date, datetime, timedelta
|
|
|
|
from typing import Any, Dict, List
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
from enum import Enum
|
|
|
|
|
2023-10-16 13:20:00 +00:00
|
|
|
import pytz
|
2023-03-03 22:46:29 +00:00
|
|
|
from core.config import CoreConfig
|
|
|
|
from core.data.cache import cached
|
|
|
|
from titles.cm.const import CardMakerConstants
|
|
|
|
from titles.cm.config import CardMakerConfig
|
|
|
|
|
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
class CardMakerBase:
|
2023-03-03 22:46:29 +00:00
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: CardMakerConfig) -> None:
|
|
|
|
self.core_cfg = core_cfg
|
|
|
|
self.game_cfg = game_cfg
|
|
|
|
self.date_time_format = "%Y-%m-%d %H:%M:%S"
|
2023-03-09 16:38:58 +00:00
|
|
|
self.date_time_format_ext = (
|
|
|
|
"%Y-%m-%d %H:%M:%S.%f" # needs to be lopped off at [:-5]
|
|
|
|
)
|
2023-03-03 22:46:29 +00:00
|
|
|
self.date_time_format_short = "%Y-%m-%d"
|
|
|
|
self.logger = logging.getLogger("cardmaker")
|
|
|
|
self.game = CardMakerConstants.GAME_CODE
|
|
|
|
self.version = CardMakerConstants.VER_CARD_MAKER
|
|
|
|
|
2023-05-30 10:14:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def _parse_int_ver(version: str) -> str:
|
|
|
|
return version.replace(".", "")[:3]
|
|
|
|
|
2023-03-03 22:46:29 +00:00
|
|
|
def handle_get_game_connect_api_request(self, data: Dict) -> Dict:
|
2023-03-09 15:35:58 +00:00
|
|
|
if self.core_cfg.server.is_develop:
|
|
|
|
uri = f"http://{self.core_cfg.title.hostname}:{self.core_cfg.title.port}"
|
|
|
|
else:
|
2023-03-09 15:37:29 +00:00
|
|
|
uri = f"http://{self.core_cfg.title.hostname}"
|
2023-03-03 22:46:29 +00:00
|
|
|
|
2023-05-30 10:14:18 +00:00
|
|
|
# grab the dict with all games version numbers from user config
|
|
|
|
games_ver = self.game_cfg.version.version(self.version)
|
|
|
|
|
2023-03-03 22:46:29 +00:00
|
|
|
return {
|
|
|
|
"length": 3,
|
|
|
|
"gameConnectList": [
|
2023-05-30 10:14:18 +00:00
|
|
|
# CHUNITHM
|
|
|
|
{
|
|
|
|
"modelKind": 0,
|
|
|
|
"type": 1,
|
|
|
|
"titleUri": f"{uri}/SDHD/{self._parse_int_ver(games_ver['chuni'])}/",
|
|
|
|
},
|
|
|
|
# maimai DX
|
|
|
|
{
|
|
|
|
"modelKind": 1,
|
|
|
|
"type": 1,
|
|
|
|
"titleUri": f"{uri}/SDEZ/{self._parse_int_ver(games_ver['maimai'])}/",
|
|
|
|
},
|
|
|
|
# ONGEKI
|
|
|
|
{
|
|
|
|
"modelKind": 2,
|
|
|
|
"type": 1,
|
|
|
|
"titleUri": f"{uri}/SDDT/{self._parse_int_ver(games_ver['ongeki'])}/",
|
|
|
|
},
|
2023-03-09 16:38:58 +00:00
|
|
|
],
|
2023-03-03 22:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
|
2023-10-16 13:20:00 +00:00
|
|
|
# if reboot start/end time is not defined use the default behavior of being a few hours ago
|
|
|
|
if self.core_cfg.title.reboot_start_time == "" or self.core_cfg.title.reboot_end_time == "":
|
|
|
|
reboot_start = datetime.strftime(
|
|
|
|
datetime.utcnow() + timedelta(hours=6), self.date_time_format
|
|
|
|
)
|
|
|
|
reboot_end = datetime.strftime(
|
|
|
|
datetime.utcnow() + timedelta(hours=7), self.date_time_format
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# get current datetime in JST
|
|
|
|
current_jst = datetime.now(pytz.timezone('Asia/Tokyo')).date()
|
|
|
|
|
|
|
|
# parse config start/end times into datetime
|
|
|
|
reboot_start_time = datetime.strptime(self.core_cfg.title.reboot_start_time, "%H:%M")
|
|
|
|
reboot_end_time = datetime.strptime(self.core_cfg.title.reboot_end_time, "%H:%M")
|
|
|
|
|
|
|
|
# offset datetimes with current date/time
|
|
|
|
reboot_start_time = reboot_start_time.replace(year=current_jst.year, month=current_jst.month, day=current_jst.day, tzinfo=pytz.timezone('Asia/Tokyo'))
|
|
|
|
reboot_end_time = reboot_end_time.replace(year=current_jst.year, month=current_jst.month, day=current_jst.day, tzinfo=pytz.timezone('Asia/Tokyo'))
|
|
|
|
|
|
|
|
# create strings for use in gameSetting
|
|
|
|
reboot_start = reboot_start_time.strftime(self.date_time_format)
|
|
|
|
reboot_end = reboot_end_time.strftime(self.date_time_format)
|
2023-03-03 22:46:29 +00:00
|
|
|
|
2023-05-30 10:14:18 +00:00
|
|
|
# grab the dict with all games version numbers from user config
|
|
|
|
games_ver = self.game_cfg.version.version(self.version)
|
|
|
|
|
2023-03-03 22:46:29 +00:00
|
|
|
return {
|
|
|
|
"gameSetting": {
|
|
|
|
"dataVersion": "1.30.00",
|
2023-05-30 10:14:18 +00:00
|
|
|
"ongekiCmVersion": games_ver["ongeki"],
|
|
|
|
"chuniCmVersion": games_ver["chuni"],
|
|
|
|
"maimaiCmVersion": games_ver["maimai"],
|
2023-03-03 22:46:29 +00:00
|
|
|
"requestInterval": 10,
|
|
|
|
"rebootStartTime": reboot_start,
|
|
|
|
"rebootEndTime": reboot_end,
|
|
|
|
"maxCountCharacter": 100,
|
|
|
|
"maxCountItem": 100,
|
|
|
|
"maxCountCard": 100,
|
|
|
|
"watermark": False,
|
|
|
|
"isMaintenance": False,
|
2023-03-09 16:38:58 +00:00
|
|
|
"isBackgroundDistribute": False,
|
2023-03-03 22:46:29 +00:00
|
|
|
},
|
|
|
|
"isDumpUpload": False,
|
2023-03-09 16:38:58 +00:00
|
|
|
"isAou": False,
|
2023-03-03 22:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def handle_get_client_bookkeeping_api_request(self, data: Dict) -> Dict:
|
2023-03-09 16:38:58 +00:00
|
|
|
return {"placeId": data["placeId"], "length": 0, "clientBookkeepingList": []}
|
2023-03-03 22:46:29 +00:00
|
|
|
|
|
|
|
def handle_upsert_client_setting_api_request(self, data: Dict) -> Dict:
|
|
|
|
return {"returnCode": 1, "apiName": "UpsertClientSettingApi"}
|
|
|
|
|
|
|
|
def handle_upsert_client_bookkeeping_api_request(self, data: Dict) -> Dict:
|
|
|
|
return {"returnCode": 1, "apiName": "UpsertClientBookkeepingApi"}
|