forked from Hay1tsme/artemis
Merge pull request 'wacca: allow setting prefecture in config by name' (#9) from Raymonf/artemis:feat/wacca-prefecture into develop
Reviewed-on: Hay1tsme/artemis#9
This commit is contained in:
commit
e46c8e7dbd
@ -1,6 +1,7 @@
|
|||||||
server:
|
server:
|
||||||
enable: True
|
enable: True
|
||||||
loglevel: "info"
|
loglevel: "info"
|
||||||
|
prefecture_name: "Hokkaido"
|
||||||
|
|
||||||
mods:
|
mods:
|
||||||
always_vip: True
|
always_vip: True
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
from typing import Any, List, Dict
|
from typing import Any, List, Dict
|
||||||
import logging
|
import logging
|
||||||
|
import inflection
|
||||||
from math import floor
|
from math import floor
|
||||||
|
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
|
|
||||||
from core.config import CoreConfig
|
from core.config import CoreConfig
|
||||||
from titles.wacca.config import WaccaConfig
|
from titles.wacca.config import WaccaConfig
|
||||||
from titles.wacca.const import WaccaConstants
|
from titles.wacca.const import WaccaConstants
|
||||||
@ -23,53 +22,60 @@ class WaccaBase():
|
|||||||
self.season = 1
|
self.season = 1
|
||||||
|
|
||||||
self.OPTIONS_DEFAULTS: Dict[str, Any] = {
|
self.OPTIONS_DEFAULTS: Dict[str, Any] = {
|
||||||
"note_speed": 5,
|
"note_speed": 5,
|
||||||
"field_mask": 0,
|
"field_mask": 0,
|
||||||
"note_sound": 105001,
|
"note_sound": 105001,
|
||||||
"note_color": 203001,
|
"note_color": 203001,
|
||||||
"bgm_volume": 10,
|
"bgm_volume": 10,
|
||||||
"bg_video": 0,
|
"bg_video": 0,
|
||||||
|
|
||||||
"mirror": 0,
|
|
||||||
"judge_display_pos": 0,
|
|
||||||
"judge_detail_display": 0,
|
|
||||||
"measure_guidelines": 1,
|
|
||||||
"guideline_mask": 1,
|
|
||||||
"judge_line_timing_adjust": 10,
|
|
||||||
"note_design": 3,
|
|
||||||
"bonus_effect": 1,
|
|
||||||
"chara_voice": 1,
|
|
||||||
"score_display_method": 0,
|
|
||||||
"give_up": 0,
|
|
||||||
"guideline_spacing": 1,
|
|
||||||
"center_display": 1,
|
|
||||||
"ranking_display": 1,
|
|
||||||
"stage_up_icon_display": 1,
|
|
||||||
"rating_display": 1,
|
|
||||||
"player_level_display": 1,
|
|
||||||
"touch_effect": 1,
|
|
||||||
"guide_sound_vol": 3,
|
|
||||||
"touch_note_vol": 8,
|
|
||||||
"hold_note_vol": 8,
|
|
||||||
"slide_note_vol": 8,
|
|
||||||
"snap_note_vol": 8,
|
|
||||||
"chain_note_vol": 8,
|
|
||||||
"bonus_note_vol": 8,
|
|
||||||
"gate_skip": 0,
|
|
||||||
"key_beam_display": 1,
|
|
||||||
|
|
||||||
"left_slide_note_color": 4,
|
"mirror": 0,
|
||||||
"right_slide_note_color": 3,
|
"judge_display_pos": 0,
|
||||||
"forward_slide_note_color": 1,
|
"judge_detail_display": 0,
|
||||||
"back_slide_note_color": 2,
|
"measure_guidelines": 1,
|
||||||
|
"guideline_mask": 1,
|
||||||
"master_vol": 3,
|
"judge_line_timing_adjust": 10,
|
||||||
"set_title_id": 104001,
|
"note_design": 3,
|
||||||
"set_icon_id": 102001,
|
"bonus_effect": 1,
|
||||||
"set_nav_id": 210001,
|
"chara_voice": 1,
|
||||||
"set_plate_id": 211001
|
"score_display_method": 0,
|
||||||
}
|
"give_up": 0,
|
||||||
|
"guideline_spacing": 1,
|
||||||
|
"center_display": 1,
|
||||||
|
"ranking_display": 1,
|
||||||
|
"stage_up_icon_display": 1,
|
||||||
|
"rating_display": 1,
|
||||||
|
"player_level_display": 1,
|
||||||
|
"touch_effect": 1,
|
||||||
|
"guide_sound_vol": 3,
|
||||||
|
"touch_note_vol": 8,
|
||||||
|
"hold_note_vol": 8,
|
||||||
|
"slide_note_vol": 8,
|
||||||
|
"snap_note_vol": 8,
|
||||||
|
"chain_note_vol": 8,
|
||||||
|
"bonus_note_vol": 8,
|
||||||
|
"gate_skip": 0,
|
||||||
|
"key_beam_display": 1,
|
||||||
|
|
||||||
|
"left_slide_note_color": 4,
|
||||||
|
"right_slide_note_color": 3,
|
||||||
|
"forward_slide_note_color": 1,
|
||||||
|
"back_slide_note_color": 2,
|
||||||
|
|
||||||
|
"master_vol": 3,
|
||||||
|
"set_title_id": 104001,
|
||||||
|
"set_icon_id": 102001,
|
||||||
|
"set_nav_id": 210001,
|
||||||
|
"set_plate_id": 211001
|
||||||
|
}
|
||||||
self.allowed_stages = []
|
self.allowed_stages = []
|
||||||
|
|
||||||
|
prefecture_name = inflection.underscore(game_cfg.server.prefecture_name).replace(' ', '_').upper()
|
||||||
|
if prefecture_name not in [region.name for region in WaccaConstants.Region]:
|
||||||
|
self.logger.warning(f"Invalid prefecture name {game_cfg.server.prefecture_name} in config file")
|
||||||
|
self.region_id = 1
|
||||||
|
else:
|
||||||
|
self.region_id = int(WaccaConstants.Region[prefecture_name].value)
|
||||||
|
|
||||||
def handle_housing_get_request(self, data: Dict) -> Dict:
|
def handle_housing_get_request(self, data: Dict) -> Dict:
|
||||||
req = BaseRequest(data)
|
req = BaseRequest(data)
|
||||||
@ -86,7 +92,7 @@ class WaccaBase():
|
|||||||
req = HousingStartRequestV1(data)
|
req = HousingStartRequestV1(data)
|
||||||
|
|
||||||
resp = HousingStartResponseV1(
|
resp = HousingStartResponseV1(
|
||||||
1,
|
self.region_id,
|
||||||
[ # Recomended songs
|
[ # Recomended songs
|
||||||
1269,1007,1270,1002,1020,1003,1008,1211,1018,1092,1056,32,
|
1269,1007,1270,1002,1020,1003,1008,1211,1018,1092,1056,32,
|
||||||
1260,1230,1258,1251,2212,1264,1125,1037,2001,1272,1126,1119,
|
1260,1230,1258,1251,2212,1264,1125,1037,2001,1272,1126,1119,
|
||||||
|
@ -13,6 +13,10 @@ class WaccaServerConfig():
|
|||||||
def loglevel(self) -> int:
|
def loglevel(self) -> int:
|
||||||
return CoreConfig.str_to_loglevel(CoreConfig.get_config_field(self.__config, 'wacca', 'server', 'loglevel', default="info"))
|
return CoreConfig.str_to_loglevel(CoreConfig.get_config_field(self.__config, 'wacca', 'server', 'loglevel', default="info"))
|
||||||
|
|
||||||
|
@property
|
||||||
|
def prefecture_name(self) -> str:
|
||||||
|
return CoreConfig.get_config_field(self.__config, 'wacca', 'server', 'prefecture_name', default="Hokkaido")
|
||||||
|
|
||||||
class WaccaModsConfig():
|
class WaccaModsConfig():
|
||||||
def __init__(self, parent_config: "WaccaConfig") -> None:
|
def __init__(self, parent_config: "WaccaConfig") -> None:
|
||||||
self.__config = parent_config
|
self.__config = parent_config
|
||||||
|
@ -151,6 +151,7 @@ class WaccaConstants():
|
|||||||
KAGOSHIMA = 46
|
KAGOSHIMA = 46
|
||||||
OKINAWA = 47
|
OKINAWA = 47
|
||||||
UNITED_STATES = 48
|
UNITED_STATES = 48
|
||||||
|
USA = 48
|
||||||
TAIWAN = 49
|
TAIWAN = 49
|
||||||
HONG_KONG = 50
|
HONG_KONG = 50
|
||||||
SINGAPORE = 51
|
SINGAPORE = 51
|
||||||
|
@ -44,7 +44,7 @@ class WaccaLily(WaccaS):
|
|||||||
req = HousingStartRequestV2(data)
|
req = HousingStartRequestV2(data)
|
||||||
|
|
||||||
resp = HousingStartResponseV1(
|
resp = HousingStartResponseV1(
|
||||||
1,
|
self.region_id,
|
||||||
[ # Recomended songs
|
[ # Recomended songs
|
||||||
1269,1007,1270,1002,1020,1003,1008,1211,1018,1092,1056,32,
|
1269,1007,1270,1002,1020,1003,1008,1211,1018,1092,1056,32,
|
||||||
1260,1230,1258,1251,2212,1264,1125,1037,2001,1272,1126,1119,
|
1260,1230,1258,1251,2212,1264,1125,1037,2001,1272,1126,1119,
|
||||||
|
Loading…
Reference in New Issue
Block a user