forked from Hay1tsme/artemis
pokken: fill LoadUser, add auto_register flag
This commit is contained in:
parent
de5f61b0de
commit
5ec280ab8c
@ -5,4 +5,5 @@ server:
|
|||||||
port: 9000
|
port: 9000
|
||||||
port_stun: 9001
|
port_stun: 9001
|
||||||
port_turn: 9002
|
port_turn: 9002
|
||||||
port_admission: 9003
|
port_admission: 9003
|
||||||
|
auto_register: True
|
@ -5,8 +5,9 @@ import random
|
|||||||
|
|
||||||
from core.data import Data
|
from core.data import Data
|
||||||
from core import CoreConfig
|
from core import CoreConfig
|
||||||
from titles.pokken.config import PokkenConfig
|
from .config import PokkenConfig
|
||||||
from titles.pokken.proto import jackal_pb2
|
from .proto import jackal_pb2
|
||||||
|
from .database import PokkenData
|
||||||
|
|
||||||
|
|
||||||
class PokkenBase:
|
class PokkenBase:
|
||||||
@ -15,7 +16,7 @@ class PokkenBase:
|
|||||||
self.game_cfg = game_cfg
|
self.game_cfg = game_cfg
|
||||||
self.version = 0
|
self.version = 0
|
||||||
self.logger = logging.getLogger("pokken")
|
self.logger = logging.getLogger("pokken")
|
||||||
self.data = Data(core_cfg)
|
self.data = PokkenData(core_cfg)
|
||||||
|
|
||||||
def handle_noop(self, request: Any) -> bytes:
|
def handle_noop(self, request: Any) -> bytes:
|
||||||
res = jackal_pb2.Response()
|
res = jackal_pb2.Response()
|
||||||
@ -98,7 +99,7 @@ class PokkenBase:
|
|||||||
res.type = jackal_pb2.MessageType.LOAD_CLIENT_SETTINGS
|
res.type = jackal_pb2.MessageType.LOAD_CLIENT_SETTINGS
|
||||||
settings = jackal_pb2.LoadClientSettingsResponseData()
|
settings = jackal_pb2.LoadClientSettingsResponseData()
|
||||||
|
|
||||||
settings.money_magnification = 0
|
settings.money_magnification = 1
|
||||||
settings.continue_bonus_exp = 100
|
settings.continue_bonus_exp = 100
|
||||||
settings.continue_fight_money = 100
|
settings.continue_fight_money = 100
|
||||||
settings.event_bonus_exp = 100
|
settings.event_bonus_exp = 100
|
||||||
@ -132,72 +133,130 @@ class PokkenBase:
|
|||||||
res = jackal_pb2.Response()
|
res = jackal_pb2.Response()
|
||||||
res.result = 1
|
res.result = 1
|
||||||
res.type = jackal_pb2.MessageType.LOAD_USER
|
res.type = jackal_pb2.MessageType.LOAD_USER
|
||||||
access_code = request.load_user.access_code
|
access_code = request.load_user.access_code
|
||||||
|
load_usr = jackal_pb2.LoadUserResponseData()
|
||||||
user_id = self.data.card.get_user_id_from_card(access_code)
|
user_id = self.data.card.get_user_id_from_card(access_code)
|
||||||
|
|
||||||
if user_id is None: # TODO: Toggle auto-register
|
if user_id is None and self.game_cfg.server.auto_register:
|
||||||
user_id = self.data.user.create_user()
|
user_id = self.data.user.create_user()
|
||||||
card_id = self.data.card.create_card(user_id, access_code)
|
card_id = self.data.card.create_card(user_id, access_code)
|
||||||
|
|
||||||
self.logger.info(f"Register new card {access_code} (UserId {user_id}, CardId {card_id})")
|
self.logger.info(f"Register new card {access_code} (UserId {user_id}, CardId {card_id})")
|
||||||
|
|
||||||
# TODO: Check for user data. For now just treat ever card-in as a new user
|
elif user_id is None:
|
||||||
|
self.logger.info(f"Registration of card {access_code} blocked!")
|
||||||
load_usr = jackal_pb2.LoadUserResponseData()
|
res.load_user.CopyFrom(load_usr)
|
||||||
|
return res.SerializeToString()
|
||||||
|
|
||||||
|
"""
|
||||||
|
TODO: Add repeated values
|
||||||
|
tutorial_progress_flag
|
||||||
|
rankmatch_progress
|
||||||
|
support_pokemon_list
|
||||||
|
support_set_1
|
||||||
|
support_set_2
|
||||||
|
support_set_3
|
||||||
|
aid_skill_list
|
||||||
|
achievement_flag
|
||||||
|
pokemon_data
|
||||||
|
event_achievement_flag
|
||||||
|
event_achievement_param
|
||||||
|
"""
|
||||||
|
profile = self.data.profile.get_profile(user_id)
|
||||||
load_usr.commidserv_result = 1
|
load_usr.commidserv_result = 1
|
||||||
load_usr.load_hash = 1
|
load_usr.load_hash = 1
|
||||||
load_usr.cardlock_status = False
|
load_usr.cardlock_status = False
|
||||||
load_usr.banapass_id = user_id
|
load_usr.banapass_id = user_id
|
||||||
load_usr.access_code = access_code
|
load_usr.access_code = access_code
|
||||||
load_usr.new_card_flag = True
|
|
||||||
load_usr.precedent_release_flag = 0xFFFFFFFF
|
load_usr.precedent_release_flag = 0xFFFFFFFF
|
||||||
load_usr.navi_newbie_flag = True
|
|
||||||
load_usr.navi_enable_flag = True
|
if profile is None:
|
||||||
load_usr.pad_vibrate_flag = True
|
profile_id = self.data.profile.create_profile(user_id)
|
||||||
load_usr.home_region_code = 0
|
profile_dict = {'id': profile_id, 'user': user_id}
|
||||||
load_usr.home_loc_name = ""
|
pokemon_data = []
|
||||||
load_usr.pref_code = 0
|
tutorial_progress = []
|
||||||
load_usr.trainer_name = "Newb" + str(random.randint(1111,999999))
|
rankmatch_progress = []
|
||||||
load_usr.trainer_rank_point = 0
|
achievement_flag = []
|
||||||
load_usr.wallet = 0
|
event_achievement_flag = []
|
||||||
load_usr.fight_money = 0
|
event_achievement_param = []
|
||||||
load_usr.score_point = 0
|
load_usr.new_card_flag = True
|
||||||
load_usr.grade_max_num = 0
|
|
||||||
load_usr.total_play_days = 0
|
else:
|
||||||
load_usr.play_date_time = 0
|
profile_dict = profile._asdict()
|
||||||
load_usr.lucky_box_fail_num = 0
|
pokemon_data = self.data.profile.get_all_pokemon_data(user_id)
|
||||||
load_usr.event_reward_get_flag = 0
|
tutorial_progress = []
|
||||||
load_usr.rank_pvp_all = 0
|
rankmatch_progress = []
|
||||||
load_usr.rank_pvp_loc = 0
|
achievement_flag = []
|
||||||
load_usr.rank_cpu_all = 0
|
event_achievement_flag = []
|
||||||
load_usr.rank_cpu_loc = 0
|
event_achievement_param = []
|
||||||
load_usr.rank_event = 0
|
load_usr.new_card_flag = False
|
||||||
load_usr.awake_num = 0
|
|
||||||
load_usr.use_support_num = 0
|
load_usr.navi_newbie_flag = profile_dict.get('navi_newbie_flag', True)
|
||||||
load_usr.rankmatch_flag = 0
|
load_usr.navi_enable_flag = profile_dict.get('navi_enable_flag', True)
|
||||||
load_usr.title_text_id = 0
|
load_usr.pad_vibrate_flag = profile_dict.get('pad_vibrate_flag', True)
|
||||||
load_usr.title_plate_id = 0
|
load_usr.home_region_code = profile_dict.get('home_region_code', 0)
|
||||||
load_usr.title_decoration_id = 0
|
load_usr.home_loc_name = profile_dict.get('home_loc_name', "")
|
||||||
load_usr.navi_trainer = 0
|
load_usr.pref_code = profile_dict.get('pref_code', 0)
|
||||||
load_usr.navi_version_id = 0
|
load_usr.trainer_name = profile_dict.get('trainer_name', "Newb" + str(random.randint(1111,999999)))
|
||||||
load_usr.aid_skill = 0
|
load_usr.trainer_rank_point = profile_dict.get('trainer_rank_point', 0)
|
||||||
load_usr.comment_text_id = 0
|
load_usr.wallet = profile_dict.get('wallet', 0)
|
||||||
load_usr.comment_word_id = 0
|
load_usr.fight_money = profile_dict.get('fight_money', 0)
|
||||||
load_usr.latest_use_pokemon = 0
|
load_usr.score_point = profile_dict.get('score_point', 0)
|
||||||
load_usr.ex_ko_num = 0
|
load_usr.grade_max_num = profile_dict.get('grade_max_num', 0)
|
||||||
load_usr.wko_num = 0
|
load_usr.extra_counter = profile_dict.get('extra_counter', 0)
|
||||||
load_usr.timeup_win_num = 0
|
load_usr.total_play_days = profile_dict.get('total_play_days', 0)
|
||||||
load_usr.cool_ko_num = 0
|
load_usr.play_date_time = profile_dict.get('play_date_time', 0)
|
||||||
load_usr.perfect_ko_num = 0
|
load_usr.lucky_box_fail_num = profile_dict.get('lucky_box_fail_num', 0)
|
||||||
load_usr.record_flag = 0
|
load_usr.event_reward_get_flag = profile_dict.get('event_reward_get_flag', 0)
|
||||||
load_usr.site_register_status = 0
|
load_usr.rank_pvp_all = profile_dict.get('rank_pvp_all', 0)
|
||||||
load_usr.continue_num = 0
|
load_usr.rank_pvp_loc = profile_dict.get('rank_pvp_loc', 0)
|
||||||
load_usr.event_state = 0
|
load_usr.rank_cpu_all = profile_dict.get('rank_cpu_all', 0)
|
||||||
load_usr.event_id = 0
|
load_usr.rank_cpu_loc = profile_dict.get('rank_cpu_loc', 0)
|
||||||
load_usr.sp_bonus_category_id_1 = 0
|
load_usr.rank_event = profile_dict.get('rank_event', 0)
|
||||||
load_usr.sp_bonus_key_value_1 = 0
|
load_usr.awake_num = profile_dict.get('awake_num', 0)
|
||||||
load_usr.sp_bonus_category_id_2 = 0
|
load_usr.use_support_num = profile_dict.get('use_support_num', 0)
|
||||||
load_usr.sp_bonus_key_value_2 = 0
|
load_usr.rankmatch_flag = profile_dict.get('rankmatch_flag', 0)
|
||||||
|
load_usr.rankmatch_max = profile_dict.get('rankmatch_max', 0)
|
||||||
|
load_usr.rankmatch_success = profile_dict.get('rankmatch_success', 0)
|
||||||
|
load_usr.beat_num = profile_dict.get('beat_num', 0)
|
||||||
|
load_usr.title_text_id = profile_dict.get('title_text_id', 0)
|
||||||
|
load_usr.title_plate_id = profile_dict.get('title_plate_id', 0)
|
||||||
|
load_usr.title_decoration_id = profile_dict.get('title_decoration_id', 0)
|
||||||
|
load_usr.navi_trainer = profile_dict.get('navi_trainer', 0)
|
||||||
|
load_usr.navi_version_id = profile_dict.get('navi_version_id', 0)
|
||||||
|
load_usr.aid_skill = profile_dict.get('aid_skill', 0)
|
||||||
|
load_usr.comment_text_id = profile_dict.get('comment_text_id', 0)
|
||||||
|
load_usr.comment_word_id = profile_dict.get('comment_word_id', 0)
|
||||||
|
load_usr.latest_use_pokemon = profile_dict.get('latest_use_pokemon', 0)
|
||||||
|
load_usr.ex_ko_num = profile_dict.get('ex_ko_num', 0)
|
||||||
|
load_usr.wko_num = profile_dict.get('wko_num', 0)
|
||||||
|
load_usr.timeup_win_num = profile_dict.get('timeup_win_num', 0)
|
||||||
|
load_usr.cool_ko_num = profile_dict.get('cool_ko_num', 0)
|
||||||
|
load_usr.perfect_ko_num = profile_dict.get('perfect_ko_num', 0)
|
||||||
|
load_usr.record_flag = profile_dict.get('record_flag', 0)
|
||||||
|
load_usr.site_register_status = profile_dict.get('site_register_status', 0)
|
||||||
|
load_usr.continue_num = profile_dict.get('continue_num', 0)
|
||||||
|
|
||||||
|
load_usr.avatar_body = profile_dict.get('avatar_body', 0)
|
||||||
|
load_usr.avatar_gender = profile_dict.get('avatar_gender', 0)
|
||||||
|
load_usr.avatar_background = profile_dict.get('avatar_background', 0)
|
||||||
|
load_usr.avatar_head = profile_dict.get('avatar_head', 0)
|
||||||
|
load_usr.avatar_battleglass = profile_dict.get('avatar_battleglass', 0)
|
||||||
|
load_usr.avatar_face0 = profile_dict.get('avatar_face0', 0)
|
||||||
|
load_usr.avatar_face1 = profile_dict.get('avatar_face1', 0)
|
||||||
|
load_usr.avatar_face2 = profile_dict.get('avatar_face2', 0)
|
||||||
|
load_usr.avatar_bodyall = profile_dict.get('avatar_bodyall', 0)
|
||||||
|
load_usr.avatar_wear = profile_dict.get('avatar_wear', 0)
|
||||||
|
load_usr.avatar_accessory = profile_dict.get('avatar_accessory', 0)
|
||||||
|
load_usr.avatar_stamp = profile_dict.get('avatar_stamp', 0)
|
||||||
|
|
||||||
|
load_usr.event_state = profile_dict.get('event_state', 0)
|
||||||
|
load_usr.event_id = profile_dict.get('event_id', 0)
|
||||||
|
load_usr.sp_bonus_category_id_1 = profile_dict.get('sp_bonus_category_id_1', 0)
|
||||||
|
load_usr.sp_bonus_key_value_1 = profile_dict.get('sp_bonus_key_value_1', 0)
|
||||||
|
load_usr.sp_bonus_category_id_2 = profile_dict.get('sp_bonus_category_id_2', 0)
|
||||||
|
load_usr.sp_bonus_key_value_2 = profile_dict.get('sp_bonus_key_value_2', 0)
|
||||||
|
load_usr.last_play_event_id = profile_dict.get('last_play_event_id', 0)
|
||||||
|
|
||||||
res.load_user.CopyFrom(load_usr)
|
res.load_user.CopyFrom(load_usr)
|
||||||
return res.SerializeToString()
|
return res.SerializeToString()
|
||||||
@ -208,10 +267,17 @@ class PokkenBase:
|
|||||||
res.type = jackal_pb2.MessageType.SET_BNPASSID_LOCK
|
res.type = jackal_pb2.MessageType.SET_BNPASSID_LOCK
|
||||||
return res.SerializeToString()
|
return res.SerializeToString()
|
||||||
|
|
||||||
|
def handle_save_user(self, request: jackal_pb2.Request) -> bytes:
|
||||||
|
res = jackal_pb2.Response()
|
||||||
|
res.result = 1
|
||||||
|
res.type = jackal_pb2.MessageType.SAVE_USER
|
||||||
|
|
||||||
|
return res.SerializeToString()
|
||||||
|
|
||||||
def handle_save_ingame_log(self, data: jackal_pb2.Request) -> bytes:
|
def handle_save_ingame_log(self, data: jackal_pb2.Request) -> bytes:
|
||||||
res = jackal_pb2.Response()
|
res = jackal_pb2.Response()
|
||||||
res.result = 1
|
res.result = 1
|
||||||
res.type = jackal_pb2.MessageType.SET_BNPASSID_LOCK
|
res.type = jackal_pb2.MessageType.SAVE_INGAME_LOG
|
||||||
return res.SerializeToString()
|
return res.SerializeToString()
|
||||||
|
|
||||||
def handle_matching_noop(self, data: Dict = {}, client_ip: str = "127.0.0.1") -> Dict:
|
def handle_matching_noop(self, data: Dict = {}, client_ip: str = "127.0.0.1") -> Dict:
|
||||||
|
@ -49,6 +49,16 @@ class PokkenServerConfig:
|
|||||||
self.__config, "pokken", "server", "port_admission", default=9003
|
self.__config, "pokken", "server", "port_admission", default=9003
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def auto_register(self) -> bool:
|
||||||
|
"""
|
||||||
|
Automatically register users in `aime_user` on first carding in with pokken
|
||||||
|
if they don't exist already. Set to false to display an error instead.
|
||||||
|
"""
|
||||||
|
return CoreConfig.get_config_field(
|
||||||
|
self.__config, "pokken", "server", "auto_register", default=True
|
||||||
|
)
|
||||||
|
|
||||||
class PokkenConfig(dict):
|
class PokkenConfig(dict):
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
self.server = PokkenServerConfig(self)
|
self.server = PokkenServerConfig(self)
|
||||||
|
@ -182,6 +182,12 @@ class PokkenProfileData(BaseData):
|
|||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_profile(self, user_id: int) -> Optional[Row]:
|
||||||
|
sql = profile.select(profile.c.user == user_id)
|
||||||
|
result = self.execute(sql)
|
||||||
|
if result is None: return None
|
||||||
|
return result.fetchone()
|
||||||
|
|
||||||
def put_pokemon_data(self, user_id: int, pokemon_data: Dict) -> Optional[int]:
|
def put_pokemon_data(self, user_id: int, pokemon_data: Dict) -> Optional[int]:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user