2019-12-08 22:43:49 +01:00
|
|
|
from bemani.backend.museca.base import MusecaBase
|
|
|
|
from bemani.common import ID
|
|
|
|
from bemani.protocol import Node
|
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameShopHandler(MusecaBase):
|
|
|
|
def handle_game_3_shop_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
self.update_machine_name(request.child_value("shopname"))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# Respond with number of milliseconds until next request
|
2022-10-15 20:56:30 +02:00
|
|
|
game = Node.void("game_3")
|
|
|
|
game.add_child(Node.u32("nxt_time", 1000 * 5 * 60))
|
2019-12-08 22:43:49 +01:00
|
|
|
return game
|
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameHiscoreHandler(MusecaBase):
|
|
|
|
def handle_game_3_hiscore_request(self, request: Node) -> Node:
|
|
|
|
# Grab location for local scores
|
2022-10-15 20:56:30 +02:00
|
|
|
locid = ID.parse_machine_id(request.child_value("locid"))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# Start the response packet
|
2022-10-15 20:56:30 +02:00
|
|
|
game = Node.void("game_3")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# First, grab hit chart
|
|
|
|
playcounts = self.data.local.music.get_hit_chart(self.game, self.version, 1024)
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
hitchart = Node.void("hitchart")
|
2019-12-08 22:43:49 +01:00
|
|
|
game.add_child(hitchart)
|
2023-02-17 04:02:41 +01:00
|
|
|
for songid, count in playcounts:
|
2022-10-15 20:56:30 +02:00
|
|
|
info = Node.void("info")
|
2019-12-08 22:43:49 +01:00
|
|
|
hitchart.add_child(info)
|
2022-10-15 20:56:30 +02:00
|
|
|
info.add_child(Node.u32("id", songid))
|
|
|
|
info.add_child(Node.u32("cnt", count))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# Now, grab user records
|
|
|
|
records = self.data.remote.music.get_all_records(self.game, self.version)
|
2024-01-02 03:46:24 +01:00
|
|
|
users = {uid: prof for (uid, prof) in self.get_any_profiles([r[0] for r in records])}
|
2019-12-08 22:43:49 +01:00
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
hiscore_allover = Node.void("hiscore_allover")
|
2019-12-08 22:43:49 +01:00
|
|
|
game.add_child(hiscore_allover)
|
|
|
|
|
|
|
|
# Output records
|
2023-02-17 04:02:41 +01:00
|
|
|
for userid, score in records:
|
2022-10-15 20:56:30 +02:00
|
|
|
info = Node.void("info")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
if userid not in users:
|
2022-10-15 20:56:30 +02:00
|
|
|
raise Exception("Logic error, could not find profile for user!")
|
2019-12-08 22:43:49 +01:00
|
|
|
profile = users[userid]
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
info.add_child(Node.u32("id", score.id))
|
|
|
|
info.add_child(Node.u32("type", score.chart))
|
|
|
|
info.add_child(Node.string("name", profile.get_str("name")))
|
|
|
|
info.add_child(Node.string("seq", ID.format_extid(profile.extid)))
|
|
|
|
info.add_child(Node.u32("score", score.points))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# Add to global scores
|
|
|
|
hiscore_allover.add_child(info)
|
|
|
|
|
|
|
|
# Now, grab local records
|
|
|
|
area_users = [
|
2022-10-15 20:56:30 +02:00
|
|
|
uid
|
2024-01-02 03:46:24 +01:00
|
|
|
for (uid, prof) in self.data.local.user.get_all_profiles(self.game, self.version)
|
2022-10-15 20:56:30 +02:00
|
|
|
if prof.get_int("loc", -1) == locid
|
2019-12-08 22:43:49 +01:00
|
|
|
]
|
2024-01-02 03:46:24 +01:00
|
|
|
records = self.data.local.music.get_all_records(self.game, self.version, userlist=area_users)
|
2022-10-15 20:56:30 +02:00
|
|
|
missing_players = [uid for (uid, _) in records if uid not in users]
|
2023-02-17 04:02:41 +01:00
|
|
|
for uid, prof in self.get_any_profiles(missing_players):
|
2019-12-08 22:43:49 +01:00
|
|
|
users[uid] = prof
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
hiscore_location = Node.void("hiscore_location")
|
2019-12-08 22:43:49 +01:00
|
|
|
game.add_child(hiscore_location)
|
|
|
|
|
|
|
|
# Output records
|
2023-02-17 04:02:41 +01:00
|
|
|
for userid, score in records:
|
2022-10-15 20:56:30 +02:00
|
|
|
info = Node.void("info")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
if userid not in users:
|
2022-10-15 20:56:30 +02:00
|
|
|
raise Exception("Logic error, could not find profile for user!")
|
2019-12-08 22:43:49 +01:00
|
|
|
profile = users[userid]
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
info.add_child(Node.u32("id", score.id))
|
|
|
|
info.add_child(Node.u32("type", score.chart))
|
|
|
|
info.add_child(Node.string("name", profile.get_str("name")))
|
|
|
|
info.add_child(Node.string("seq", ID.format_extid(profile.extid)))
|
|
|
|
info.add_child(Node.u32("score", score.points))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# Add to global scores
|
|
|
|
hiscore_location.add_child(info)
|
|
|
|
|
|
|
|
# Now, grab clear rates
|
2022-10-15 20:56:30 +02:00
|
|
|
clear_rate = Node.void("clear_rate")
|
2019-12-08 22:43:49 +01:00
|
|
|
game.add_child(clear_rate)
|
|
|
|
|
|
|
|
clears = self.get_clear_rates()
|
|
|
|
for songid in clears:
|
|
|
|
for chart in clears[songid]:
|
2022-10-15 20:56:30 +02:00
|
|
|
if clears[songid][chart]["total"] > 0:
|
2024-01-02 03:46:24 +01:00
|
|
|
rate = float(clears[songid][chart]["clears"]) / float(clears[songid][chart]["total"])
|
2022-10-15 20:56:30 +02:00
|
|
|
dnode = Node.void("d")
|
2019-12-08 22:43:49 +01:00
|
|
|
clear_rate.add_child(dnode)
|
2022-10-15 20:56:30 +02:00
|
|
|
dnode.add_child(Node.u32("id", songid))
|
|
|
|
dnode.add_child(Node.u32("type", chart))
|
|
|
|
dnode.add_child(Node.s16("cr", int(rate * 10000)))
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
return game
|
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameFrozenHandler(MusecaBase):
|
|
|
|
def handle_game_3_frozen_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
game = Node.void("game_3")
|
|
|
|
game.add_child(Node.u8("result", 0))
|
2019-12-08 22:43:49 +01:00
|
|
|
return game
|
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameNewHandler(MusecaBase):
|
|
|
|
def handle_game_3_new_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
refid = request.child_value("refid")
|
|
|
|
name = request.child_value("name")
|
|
|
|
loc = ID.parse_machine_id(request.child_value("locid"))
|
2019-12-08 22:43:49 +01:00
|
|
|
self.new_profile_by_refid(refid, name, loc)
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
root = Node.void("game_3")
|
2019-12-08 22:43:49 +01:00
|
|
|
return root
|
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameSaveMusicHandler(MusecaBase):
|
|
|
|
def handle_game_3_save_m_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
refid = request.child_value("refid")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
if refid is not None:
|
|
|
|
userid = self.data.remote.user.from_refid(self.game, self.version, refid)
|
|
|
|
else:
|
|
|
|
userid = None
|
|
|
|
|
|
|
|
# Doesn't matter if userid is None here, that's an anonymous score
|
2022-10-15 20:56:30 +02:00
|
|
|
musicid = request.child_value("music_id")
|
|
|
|
chart = request.child_value("music_type")
|
|
|
|
points = request.child_value("score")
|
|
|
|
combo = request.child_value("max_chain")
|
|
|
|
clear_type = self.game_to_db_clear_type(request.child_value("clear_type"))
|
|
|
|
grade = self.game_to_db_grade(request.child_value("score_grade"))
|
2019-12-08 22:43:49 +01:00
|
|
|
stats = {
|
2022-10-15 20:56:30 +02:00
|
|
|
"btn_rate": request.child_value("btn_rate"),
|
|
|
|
"long_rate": request.child_value("long_rate"),
|
|
|
|
"vol_rate": request.child_value("vol_rate"),
|
|
|
|
"critical": request.child_value("critical"),
|
|
|
|
"near": request.child_value("near"),
|
|
|
|
"error": request.child_value("error"),
|
2019-12-08 22:43:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Save the score
|
|
|
|
self.update_score(
|
|
|
|
userid,
|
|
|
|
musicid,
|
|
|
|
chart,
|
|
|
|
points,
|
|
|
|
clear_type,
|
|
|
|
grade,
|
|
|
|
combo,
|
|
|
|
stats,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Return a blank response
|
2022-10-15 20:56:30 +02:00
|
|
|
return Node.void("game_3")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MusecaGamePlayEndHandler(MusecaBase):
|
|
|
|
def handle_game_3_play_e_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
return Node.void("game_3")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MusecaGameSaveHandler(MusecaBase):
|
|
|
|
def handle_game_3_save_request(self, request: Node) -> Node:
|
2022-10-15 20:56:30 +02:00
|
|
|
refid = request.child_value("refid")
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
if refid is not None:
|
|
|
|
userid = self.data.remote.user.from_refid(self.game, self.version, refid)
|
|
|
|
else:
|
|
|
|
userid = None
|
|
|
|
|
|
|
|
if userid is not None:
|
|
|
|
oldprofile = self.get_profile(userid)
|
|
|
|
newprofile = self.unformat_profile(userid, request, oldprofile)
|
|
|
|
else:
|
|
|
|
newprofile = None
|
|
|
|
|
|
|
|
if userid is not None and newprofile is not None:
|
|
|
|
self.put_profile(userid, newprofile)
|
|
|
|
|
2022-10-15 20:56:30 +02:00
|
|
|
return Node.void("game_3")
|