mirror of
https://github.com/hypervortex/VH-Bombsquad-Modded-Server-Files
synced 2025-11-07 17:36:08 +00:00
104 lines
2.6 KiB
Python
104 lines
2.6 KiB
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""UI functionality related to users rating the game."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
import ba
|
|
import ba.internal
|
|
|
|
if TYPE_CHECKING:
|
|
pass
|
|
|
|
|
|
def ask_for_rating() -> ba.Widget | None:
|
|
"""(internal)"""
|
|
app = ba.app
|
|
platform = app.platform
|
|
subplatform = app.subplatform
|
|
|
|
# FIXME: should whitelist platforms we *do* want this for.
|
|
if ba.app.test_build:
|
|
return None
|
|
if not (
|
|
platform == 'mac'
|
|
or (platform == 'android' and subplatform in ['google', 'cardboard'])
|
|
):
|
|
return None
|
|
width = 700
|
|
height = 400
|
|
spacing = 40
|
|
uiscale = ba.app.ui.uiscale
|
|
dlg = ba.containerwidget(
|
|
size=(width, height),
|
|
transition='in_right',
|
|
scale=(
|
|
1.6
|
|
if uiscale is ba.UIScale.SMALL
|
|
else 1.35
|
|
if uiscale is ba.UIScale.MEDIUM
|
|
else 1.0
|
|
),
|
|
)
|
|
v = height - 50
|
|
v -= spacing
|
|
v -= 140
|
|
ba.imagewidget(
|
|
parent=dlg,
|
|
position=(width / 2 - 100, v + 10),
|
|
size=(200, 200),
|
|
texture=ba.gettexture('cuteSpaz'),
|
|
)
|
|
ba.textwidget(
|
|
parent=dlg,
|
|
position=(15, v - 55),
|
|
size=(width - 30, 30),
|
|
color=ba.app.ui.infotextcolor,
|
|
text=ba.Lstr(
|
|
resource='pleaseRateText',
|
|
subs=[('${APP_NAME}', ba.Lstr(resource='titleText'))],
|
|
),
|
|
maxwidth=width * 0.95,
|
|
max_height=130,
|
|
scale=0.85,
|
|
h_align='center',
|
|
v_align='center',
|
|
)
|
|
|
|
def do_rating() -> None:
|
|
if platform == 'android':
|
|
appname = ba.internal.appname()
|
|
if subplatform == 'google':
|
|
url = f'market://details?id=net.froemling.{appname}'
|
|
else:
|
|
url = f'market://details?id=net.froemling.{appname}cb'
|
|
else:
|
|
url = 'macappstore://itunes.apple.com/app/id416482767?ls=1&mt=12'
|
|
|
|
ba.open_url(url)
|
|
ba.containerwidget(edit=dlg, transition='out_left')
|
|
|
|
ba.buttonwidget(
|
|
parent=dlg,
|
|
position=(60, 20),
|
|
size=(200, 60),
|
|
label=ba.Lstr(resource='wellSureText'),
|
|
autoselect=True,
|
|
on_activate_call=do_rating,
|
|
)
|
|
|
|
def close() -> None:
|
|
ba.containerwidget(edit=dlg, transition='out_left')
|
|
|
|
btn = ba.buttonwidget(
|
|
parent=dlg,
|
|
position=(width - 270, 20),
|
|
size=(200, 60),
|
|
label=ba.Lstr(resource='noThanksText'),
|
|
autoselect=True,
|
|
on_activate_call=close,
|
|
)
|
|
ba.containerwidget(edit=dlg, cancel_button=btn, selected_child=btn)
|
|
return dlg
|