mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
[ci] auto-format
This commit is contained in:
parent
7dd4c75b8b
commit
4a1e7a559e
1 changed files with 69 additions and 61 deletions
|
|
@ -81,17 +81,20 @@ def display_success(msg=None):
|
||||||
else:
|
else:
|
||||||
ba.screenmessage('Successful!', (0, 1, 0))
|
ba.screenmessage('Successful!', (0, 1, 0))
|
||||||
|
|
||||||
|
|
||||||
class Translate(Thread):
|
class Translate(Thread):
|
||||||
def __init__(self, data, callback):
|
def __init__(self, data, callback):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.data = data
|
self.data = data
|
||||||
self._callback = callback
|
self._callback = callback
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
_ba.pushcall(ba.Call(ba.screenmessage, 'Translating...'), from_other_thread=True)
|
_ba.pushcall(ba.Call(ba.screenmessage, 'Translating...'), from_other_thread=True)
|
||||||
response = messenger._send_request(f'{url}/translate', self.data)
|
response = messenger._send_request(f'{url}/translate', self.data)
|
||||||
if response:
|
if response:
|
||||||
_ba.pushcall(ba.Call(self._callback, response), from_other_thread=True)
|
_ba.pushcall(ba.Call(self._callback, response), from_other_thread=True)
|
||||||
|
|
||||||
|
|
||||||
class ColorTracker:
|
class ColorTracker:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.saved = {}
|
self.saved = {}
|
||||||
|
|
@ -170,8 +173,8 @@ class PrivateChatHandler:
|
||||||
if hash == file_hash:
|
if hash == file_hash:
|
||||||
with open(__file__, 'w') as f:
|
with open(__file__, 'w') as f:
|
||||||
f.write(new_file)
|
f.write(new_file)
|
||||||
_ba.pushcall(ba.Call(ba.screenmessage, 'Ultra party window updated\nNeeds restart.'), True)
|
_ba.pushcall(ba.Call(ba.screenmessage,
|
||||||
|
'Ultra party window updated\nNeeds restart.'), True)
|
||||||
|
|
||||||
def _signup(self, registration_key):
|
def _signup(self, registration_key):
|
||||||
data = dict(pb_id=self.myid, registration_key=registration_key)
|
data = dict(pb_id=self.myid, registration_key=registration_key)
|
||||||
|
|
@ -281,7 +284,8 @@ class PrivateChatHandler:
|
||||||
else:
|
else:
|
||||||
message = msg['message']
|
message = msg['message']
|
||||||
else:
|
else:
|
||||||
message = '[' + msg['filter'] + ']: ' + 'Message from unsaved id. Save id to view message.'
|
message = '[' + msg['filter'] + ']: ' + \
|
||||||
|
'Message from unsaved id. Save id to view message.'
|
||||||
return message
|
return message
|
||||||
|
|
||||||
def _get_status(self, id, type='status'):
|
def _get_status(self, id, type='status'):
|
||||||
|
|
@ -723,58 +727,58 @@ class TranslationSettings:
|
||||||
try:
|
try:
|
||||||
|
|
||||||
translation_mode_text = ba.textwidget(parent=self.root_widget,
|
translation_mode_text = ba.textwidget(parent=self.root_widget,
|
||||||
position=(40, height - 215),
|
position=(40, height - 215),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
h_align='left',
|
h_align='left',
|
||||||
v_align='center',
|
v_align='center',
|
||||||
text="Translate Mode",
|
text="Translate Mode",
|
||||||
scale=0.9,
|
scale=0.9,
|
||||||
color=(1, 1, 1))
|
color=(1, 1, 1))
|
||||||
decoration = ba.textwidget(parent=self.root_widget,
|
decoration = ba.textwidget(parent=self.root_widget,
|
||||||
position=(40, height - 225),
|
position=(40, height - 225),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
h_align='left',
|
h_align='left',
|
||||||
v_align='center',
|
v_align='center',
|
||||||
text="________________",
|
text="________________",
|
||||||
scale=0.9,
|
scale=0.9,
|
||||||
color=(1, 1, 1))
|
color=(1, 1, 1))
|
||||||
|
|
||||||
language_char_text = ba.textwidget(parent=self.root_widget,
|
language_char_text = ba.textwidget(parent=self.root_widget,
|
||||||
position=(85, height - 273),
|
position=(85, height - 273),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
h_align='left',
|
h_align='left',
|
||||||
v_align='center',
|
v_align='center',
|
||||||
text='Normal Translation',
|
text='Normal Translation',
|
||||||
scale=0.6,
|
scale=0.6,
|
||||||
color=(1, 1, 1))
|
color=(1, 1, 1))
|
||||||
|
|
||||||
pronunciation_text = ba.textwidget(parent=self.root_widget,
|
pronunciation_text = ba.textwidget(parent=self.root_widget,
|
||||||
position=(295, height - 273),
|
position=(295, height - 273),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
h_align='left',
|
h_align='left',
|
||||||
v_align='center',
|
v_align='center',
|
||||||
text="Show Prononciation",
|
text="Show Prononciation",
|
||||||
scale=0.6,
|
scale=0.6,
|
||||||
color=(1, 1, 1))
|
color=(1, 1, 1))
|
||||||
|
|
||||||
from bastd.ui.radiogroup import make_radio_group
|
from bastd.ui.radiogroup import make_radio_group
|
||||||
cur_val = ba.app.config.get('Pronunciation', True)
|
cur_val = ba.app.config.get('Pronunciation', True)
|
||||||
cb1 = ba.checkboxwidget(
|
cb1 = ba.checkboxwidget(
|
||||||
parent=self.root_widget,
|
parent=self.root_widget,
|
||||||
position=(250, height - 275),
|
position=(250, height - 275),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
maxwidth=300,
|
maxwidth=300,
|
||||||
scale=1,
|
scale=1,
|
||||||
autoselect=True,
|
autoselect=True,
|
||||||
text="")
|
text="")
|
||||||
cb2 = ba.checkboxwidget(
|
cb2 = ba.checkboxwidget(
|
||||||
parent=self.root_widget,
|
parent=self.root_widget,
|
||||||
position=(40, height - 275),
|
position=(40, height - 275),
|
||||||
size=(20, 20),
|
size=(20, 20),
|
||||||
maxwidth=300,
|
maxwidth=300,
|
||||||
scale=1,
|
scale=1,
|
||||||
autoselect=True,
|
autoselect=True,
|
||||||
text="")
|
text="")
|
||||||
make_radio_group((cb1, cb2), (True, False), cur_val,
|
make_radio_group((cb1, cb2), (True, False), cur_val,
|
||||||
self._actions_changed)
|
self._actions_changed)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
@ -783,7 +787,6 @@ class TranslationSettings:
|
||||||
|
|
||||||
ba.containerwidget(edit=self.root_widget, cancel_button=btn)
|
ba.containerwidget(edit=self.root_widget, cancel_button=btn)
|
||||||
|
|
||||||
|
|
||||||
def _change_source(self, choice):
|
def _change_source(self, choice):
|
||||||
cfg = ba.app.config
|
cfg = ba.app.config
|
||||||
cfg['Translate Source Language'] = choice
|
cfg['Translate Source Language'] = choice
|
||||||
|
|
@ -949,7 +952,7 @@ class SettingsWindow:
|
||||||
ba.containerwidget(edit=self.root_widget, cancel_button=btn)
|
ba.containerwidget(edit=self.root_widget, cancel_button=btn)
|
||||||
ba.containerwidget(edit=self.root_widget,
|
ba.containerwidget(edit=self.root_widget,
|
||||||
selected_child=(cbtn if cbtn is not None
|
selected_child=(cbtn if cbtn is not None
|
||||||
and cancel_is_selected else None),
|
and cancel_is_selected else None),
|
||||||
start_button=None)
|
start_button=None)
|
||||||
|
|
||||||
self._translation_btn = ba.buttonwidget(parent=self._subcontainer,
|
self._translation_btn = ba.buttonwidget(parent=self._subcontainer,
|
||||||
|
|
@ -1019,7 +1022,6 @@ class SettingsWindow:
|
||||||
ba.containerwidget(edit=self.root_widget, transition='out_scale')
|
ba.containerwidget(edit=self.root_widget, transition='out_scale')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class PartyWindow(ba.Window):
|
class PartyWindow(ba.Window):
|
||||||
"""Party list/chat window."""
|
"""Party list/chat window."""
|
||||||
|
|
||||||
|
|
@ -1214,7 +1216,8 @@ class PartyWindow(ba.Window):
|
||||||
button_type='square',
|
button_type='square',
|
||||||
autoselect=True,
|
autoselect=True,
|
||||||
color=self.bg_color,
|
color=self.bg_color,
|
||||||
position=(self._width - 530, self._height - 100),
|
position=(self._width - 530,
|
||||||
|
self._height - 100),
|
||||||
on_activate_call=self._ip_port_msg)
|
on_activate_call=self._ip_port_msg)
|
||||||
self._settings_button = ba.buttonwidget(parent=self._root_widget,
|
self._settings_button = ba.buttonwidget(parent=self._root_widget,
|
||||||
size=(50, 50),
|
size=(50, 50),
|
||||||
|
|
@ -1286,7 +1289,8 @@ class PartyWindow(ba.Window):
|
||||||
uiscale = ba.app.ui.uiscale
|
uiscale = ba.app.ui.uiscale
|
||||||
|
|
||||||
choices = ['muteOption', 'modifyColor', 'addQuickReply', 'removeQuickReply', 'credits']
|
choices = ['muteOption', 'modifyColor', 'addQuickReply', 'removeQuickReply', 'credits']
|
||||||
choices_display = ['Mute Option', 'Modify Main Color', 'Add as Quick Reply', 'Remove a Quick Reply', 'Credits']
|
choices_display = ['Mute Option', 'Modify Main Color',
|
||||||
|
'Add as Quick Reply', 'Remove a Quick Reply', 'Credits']
|
||||||
|
|
||||||
if hasattr(_ba.get_foreground_host_activity(), '_map'):
|
if hasattr(_ba.get_foreground_host_activity(), '_map'):
|
||||||
choices.append('manualCamera')
|
choices.append('manualCamera')
|
||||||
|
|
@ -1414,7 +1418,7 @@ class PartyWindow(ba.Window):
|
||||||
# host
|
# host
|
||||||
if self._roster[index]['client_id'] is not None:
|
if self._roster[index]['client_id'] is not None:
|
||||||
is_host = self._roster[index][
|
is_host = self._roster[index][
|
||||||
'client_id'] == -1
|
'client_id'] == -1
|
||||||
else:
|
else:
|
||||||
is_host = (index == 0)
|
is_host = (index == 0)
|
||||||
|
|
||||||
|
|
@ -1450,7 +1454,7 @@ class PartyWindow(ba.Window):
|
||||||
maxwidth=c_width * 0.96 - twd,
|
maxwidth=c_width * 0.96 - twd,
|
||||||
color=(0.1, 1, 0.1, 0.5),
|
color=(0.1, 1, 0.1, 0.5),
|
||||||
text=ba.Lstr(resource=self._r +
|
text=ba.Lstr(resource=self._r +
|
||||||
'.hostText'),
|
'.hostText'),
|
||||||
scale=0.4,
|
scale=0.4,
|
||||||
shadow=0.1,
|
shadow=0.1,
|
||||||
flatness=1.0))
|
flatness=1.0))
|
||||||
|
|
@ -1497,7 +1501,8 @@ class PartyWindow(ba.Window):
|
||||||
h_align='center',
|
h_align='center',
|
||||||
v_align='center')
|
v_align='center')
|
||||||
choices = [i for i in messenger.saved_ids]
|
choices = [i for i in messenger.saved_ids]
|
||||||
choices_display = [ba.Lstr(value=messenger.saved_ids[i]) for i in messenger.saved_ids]
|
choices_display = [ba.Lstr(value=messenger.saved_ids[i])
|
||||||
|
for i in messenger.saved_ids]
|
||||||
choices.append('add')
|
choices.append('add')
|
||||||
choices_display.append(ba.Lstr(value='***Add New***'))
|
choices_display.append(ba.Lstr(value='***Add New***'))
|
||||||
filter_widget = PopupMenu(
|
filter_widget = PopupMenu(
|
||||||
|
|
@ -1743,7 +1748,6 @@ class PartyWindow(ba.Window):
|
||||||
data['type'] = 'pronunciation'
|
data['type'] = 'pronunciation'
|
||||||
Translate(data, _apply_translation).start()
|
Translate(data, _apply_translation).start()
|
||||||
|
|
||||||
|
|
||||||
def _copy_to_clipboard(self):
|
def _copy_to_clipboard(self):
|
||||||
msg = ba.textwidget(query=self._text_field)
|
msg = ba.textwidget(query=self._text_field)
|
||||||
if msg == '':
|
if msg == '':
|
||||||
|
|
@ -1800,7 +1804,8 @@ class PartyWindow(ba.Window):
|
||||||
kick_str = ba.Lstr(resource='kickVoteText')
|
kick_str = ba.Lstr(resource='kickVoteText')
|
||||||
uiscale = ba.app.ui.uiscale
|
uiscale = ba.app.ui.uiscale
|
||||||
choices = ['kick', 'mention', 'adminkick']
|
choices = ['kick', 'mention', 'adminkick']
|
||||||
choices_display = [kick_str] + list(self._create_baLstr_list(['Mention this guy', f'Kick ID: {client_id}']))
|
choices_display = [kick_str] + \
|
||||||
|
list(self._create_baLstr_list(['Mention this guy', f'Kick ID: {client_id}']))
|
||||||
choices.append('customCommands')
|
choices.append('customCommands')
|
||||||
choices_display.append(ba.Lstr(value='Custom Commands'))
|
choices_display.append(ba.Lstr(value='Custom Commands'))
|
||||||
PopupMenuWindow(
|
PopupMenuWindow(
|
||||||
|
|
@ -1901,7 +1906,6 @@ class PartyWindow(ba.Window):
|
||||||
Thread(target=messenger._send_request, args=(url, data)).start()
|
Thread(target=messenger._send_request, args=(url, data)).start()
|
||||||
Thread(target=check_new_message).start()
|
Thread(target=check_new_message).start()
|
||||||
ba.textwidget(edit=self._text_field, text='')
|
ba.textwidget(edit=self._text_field, text='')
|
||||||
|
|
||||||
|
|
||||||
def _write_quick_responds(self, data):
|
def _write_quick_responds(self, data):
|
||||||
try:
|
try:
|
||||||
|
|
@ -2032,7 +2036,8 @@ class PartyWindow(ba.Window):
|
||||||
def _edit_text_msg_box(self, text, action='add'):
|
def _edit_text_msg_box(self, text, action='add'):
|
||||||
if isinstance(text, str):
|
if isinstance(text, str):
|
||||||
if action == 'add':
|
if action == 'add':
|
||||||
ba.textwidget(edit=self._text_field, text=ba.textwidget(query=self._text_field) + text)
|
ba.textwidget(edit=self._text_field, text=ba.textwidget(
|
||||||
|
query=self._text_field) + text)
|
||||||
elif action == 'replace':
|
elif action == 'replace':
|
||||||
ba.textwidget(edit=self._text_field, text=text)
|
ba.textwidget(edit=self._text_field, text=text)
|
||||||
|
|
||||||
|
|
@ -2107,7 +2112,9 @@ class LoginWindow:
|
||||||
self._id = ba.textwidget(parent=self._root_widget,
|
self._id = ba.textwidget(parent=self._root_widget,
|
||||||
scale=0.5,
|
scale=0.5,
|
||||||
color=(1, 1, 1),
|
color=(1, 1, 1),
|
||||||
text=f'Account: ' + ba.internal.get_v1_account_misc_read_val_2('resolvedAccountID', ''),
|
text=f'Account: ' +
|
||||||
|
ba.internal.get_v1_account_misc_read_val_2(
|
||||||
|
'resolvedAccountID', ''),
|
||||||
size=(0, 0),
|
size=(0, 0),
|
||||||
position=(220, 170),
|
position=(220, 170),
|
||||||
h_align='center',
|
h_align='center',
|
||||||
|
|
@ -2525,7 +2532,8 @@ class Manual_camera_window:
|
||||||
elif direction == 'z-':
|
elif direction == 'z-':
|
||||||
center[2] -= increment
|
center[2] -= increment
|
||||||
elif direction == 'reset':
|
elif direction == 'reset':
|
||||||
node.area_of_interest_bounds = activity._map.get_def_bound_box('area_of_interest_bounds')
|
node.area_of_interest_bounds = activity._map.get_def_bound_box(
|
||||||
|
'area_of_interest_bounds')
|
||||||
return
|
return
|
||||||
|
|
||||||
aoi = (center[0] - size[0] / 2,
|
aoi = (center[0] - size[0] / 2,
|
||||||
|
|
@ -2736,8 +2744,8 @@ def _get_store_char_tex(self) -> str:
|
||||||
_ba.set_party_icon_always_visible(True)
|
_ba.set_party_icon_always_visible(True)
|
||||||
return ('storeCharacterXmas' if ba.internal.get_v1_account_misc_read_val(
|
return ('storeCharacterXmas' if ba.internal.get_v1_account_misc_read_val(
|
||||||
'xmas', False) else
|
'xmas', False) else
|
||||||
'storeCharacterEaster' if ba.internal.get_v1_account_misc_read_val(
|
'storeCharacterEaster' if ba.internal.get_v1_account_misc_read_val(
|
||||||
'easter', False) else 'storeCharacter')
|
'easter', False) else 'storeCharacter')
|
||||||
|
|
||||||
|
|
||||||
# ba_meta export plugin
|
# ba_meta export plugin
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue