def __init__(self, Option: Options.Hidden, CheatList: List[ABCCheat]): self.Option = Option self.CheatList = CheatList # Move legacy presets into the option legacy_path = os.path.join(os.path.dirname(__file__), "Presets.json") try: loaded_data = [] with open(legacy_path) as file: loaded_data = json.load(file) os.remove(legacy_path) self.Option.CurrentValue = loaded_data except (FileNotFoundError, json.JSONDecodeError): pass self.LoadPresets() self._ConfigureBox = OptionBox( Title="Configure Presets", Caption="Select the preset you want to configure", Tooltip=OptionBox.CreateTooltipString(EscMessage="Exit"), Buttons=( self._NewPreset, self._OpenPresetFile, ), ) self._ConfigureBox.OnPress = self._SelectSpecificPreset # type: ignore self._UpdateConfigureBox() self._CurrentPreset = None # These two dialog boxes are mostly the constant, we'll just update their title as needed self._PresetActionBox = OptionBox( Title="Selected 'PRESET NAME'", Caption="Select the action to perform on this preset", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=(self._EditPreset, self._RenamePreset, self._DeletePreset), ) self._PresetActionBox.OnPress = self._SelectPresetAction # type: ignore self._PresetActionBox.OnCancel = self.StartConfiguring # type: ignore self._ConfirmDeleteBox = OptionBox( Title="Delete 'PRESET NAME'", Caption="Are you sure you want to delete this preset?", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=(self._No, self._Yes), ) self._ConfirmDeleteBox.OnPress = self._OnConfirmDelete # type: ignore self._ConfirmDeleteBox.OnCancel = lambda: self._OnConfirmDelete( None) # type: ignore self._RenameBox = TextInputBox("Rename 'PRESET NAME'") self._RenameBox.OnSubmit = self._OnPresetRename # type: ignore
def ShowConfiguration(self) -> None: plus_one = OptionBoxButton("+1") plus_tenth = OptionBoxButton("+0.1") minus_tenth = OptionBoxButton("-0.1") minus_one = OptionBoxButton("-1") direct_edit = OptionBoxButton("Direct Edit") main_box = OptionBox( Title="Configure Delay", Caption=f"Current Delay: {self.Delay:.02f}s", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=(plus_one, plus_tenth, minus_tenth, minus_one, direct_edit)) direct_box = TextInputBox("Configure Delay", f"{self.Delay:.02f}") def OnMainBoxPress(button: OptionBoxButton) -> None: if button == direct_edit: direct_box.Show() return if button == plus_one: self.Delay += 1 elif button == plus_tenth: self.Delay += 0.1 elif button == minus_tenth: self.Delay = max(self.Delay - 0.1, 0) elif button == minus_one: self.Delay = max(self.Delay - 1, 0) direct_box.DefaultMessage = f"{self.Delay:.02f}" main_box.Caption = f"Current Delay: {self.Delay:.02f}s" main_box.Update() main_box.Show(button) main_box.OnPress = OnMainBoxPress # type: ignore main_box.OnCancel = self.OnFinishConfiguration # type: ignore def WriteFloatFilter(char: str, message: str, pos: int) -> bool: if char in "0123456789": return True if char == ".": return "." not in message return False def OnDirectBoxSubmit(msg: str) -> None: if msg != "": self.Delay = round(float(msg), 2) main_box.Caption = f"Current Delay: {self.Delay:.02f}s" main_box.Update() main_box.Show() direct_box.IsAllowedToWrite = WriteFloatFilter # type: ignore direct_box.OnSubmit = OnDirectBoxSubmit # type: ignore main_box.Show()
def __init__(self, FileName: str, CheatList: List[ABCCheat]): self.FileName = FileName self.CheatList = CheatList self._ConfigureBox = OptionBox( Title="Configure Presets", Caption="Select the preset you want to configure", Tooltip=OptionBox.CreateTooltipString(EscMessage="Exit"), Buttons=( self._NewPreset, self._OpenPresetFile, ), ) self._ConfigureBox.OnPress = self._SelectSpecificPreset # type: ignore self.LoadPresets() self._UpdateConfigureBox() self._CurrentPreset = None # These two dialog boxes are mostly the constant, we'll just update their title as needed self._PresetActionBox = OptionBox( Title="Selected 'PRESET NAME'", Caption="Select the action to perform on this preset", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=(self._EditPreset, self._RenamePreset, self._DeletePreset), ) self._PresetActionBox.OnPress = self._SelectPresetAction # type: ignore self._PresetActionBox.OnCancel = self.StartConfiguring # type: ignore self._ConfirmDeleteBox = OptionBox( Title="Delete 'PRESET NAME'", Caption="Are you sure you want to delete this preset?", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=(self._No, self._Yes), ) self._ConfirmDeleteBox.OnPress = self._OnConfirmDelete # type: ignore self._ConfirmDeleteBox.OnCancel = lambda: self._OnConfirmDelete( None) # type: ignore self._RenameBox = TextInputBox("Rename 'PRESET NAME'") self._RenameBox.OnSubmit = self._OnPresetRename # type: ignore
def Configure(self) -> None: toggleEnabledButton = OptionBoxButton("Toggle Enabled") editTriggerButton = OptionBoxButton( "Edit Trigger", "Edits what redemption title triggers this effect. Not case sensitive, but must match exactly otherwise." ) extraConfigurationButton = OptionBoxButton( "Extra Options", "Adjust extra, effect specific options.") def GetCaptionStr(trig: CrowdControl._Trigger) -> str: caption = "" if trig.IsEnabled: caption = f"Enabled: '{trig.Trigger}'" else: caption = "Disabled" caption += "\n" + trig.Effect.Description return caption class _EffectButton(OptionBoxButton): TrigObj: CrowdControl._Trigger def __init__(self, trig: CrowdControl._Trigger) -> None: self.TrigObj = trig @property def Name(self) -> str: # type: ignore return f"{self.TrigObj.Effect.Name} - {GetCaptionStr(self.TrigObj)}" effectButtons = [_EffectButton(trig) for trig in self.Triggers] currentButton = effectButtons[0] selectBox = OptionBox(Title="Configure Effects", Caption="Select the effect to configure.", Buttons=effectButtons, Tooltip=OptionBox.CreateTooltipString() + " " + "[R] Reset All") editBox = OptionBox(Title="Configure <effect>", Caption="Enabled\n<description>", Buttons=(toggleEnabledButton, editTriggerButton, extraConfigurationButton)) renameBox = TextInputBox(Title="Configure <effect>") def UpdateEditBox() -> None: editBox.Title = f"Configure {currentButton.TrigObj.Effect.Name}" if currentButton.TrigObj.IsEnabled: editBox.Caption = f"Enabled: '{currentButton.TrigObj.Trigger}'" else: editBox.Caption = "Disabled" editBox.Caption += "\n" + currentButton.TrigObj.Effect.Description if currentButton.TrigObj.Effect.HasConfigMenu: editBox.Buttons = [ toggleEnabledButton, editTriggerButton, extraConfigurationButton ] else: editBox.Buttons = [toggleEnabledButton, editTriggerButton] editBox.Update() def OnSelect(button: _EffectButton) -> None: nonlocal currentButton currentButton = button UpdateEditBox() editBox.Show() def OnEdit(button: OptionBoxButton) -> None: if button == toggleEnabledButton: currentButton.TrigObj.IsEnabled = not currentButton.TrigObj.IsEnabled for option in currentButton.TrigObj.Effect.Options: option.IsHidden = not currentButton.TrigObj.IsEnabled UpdateEditBox() editBox.Show() elif button == editTriggerButton: renameBox.Title = editBox.Title renameBox.DefaultMessage = currentButton.TrigObj.Trigger renameBox.Show() elif button == extraConfigurationButton: currentButton.TrigObj.Effect.FinishConfiguration = editBox.Show # type: ignore currentButton.TrigObj.Effect.ShowConfiguration() def OnRename(msg: str) -> None: if len(msg) > 0: currentButton.TrigObj.Trigger = msg UpdateEditBox() editBox.Show() oldSelectInput = selectBox.OnInput def OnSelectInput(key: str, event: int) -> None: if key == "R" and event == 1: for trig in self.Triggers: trig.IsEnabled = True trig.Trigger = trig.Effect.Name for option in trig.Effect.Options: option.IsHidden = False UpdateEditBox() selectBox.Hide() selectBox.Show() else: oldSelectInput(key, event) selectBox.OnPress = OnSelect # type: ignore selectBox.OnCancel = self.SaveTriggers # type: ignore selectBox.OnInput = OnSelectInput # type:ignore editBox.OnPress = OnEdit # type: ignore editBox.OnCancel = lambda: selectBox.ShowButton(currentButton ) # type: ignore renameBox.OnSubmit = OnRename # type: ignore selectBox.Show()
def __init__(self, Name: str, Settings: Dict[str, str], CheatList: List[ABCCheat]) -> None: self.Name = Name self.IsBeingConfigured = False self.CheatList = CheatList self._NewSettings = Settings self._OldSettings = dict(Settings) self._SelectedCheat = None self._SaveBox = OptionBox( Title=f"Save '{self.Name}'", Caption="Do you want to save your changes?", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=( self._SaveButton, self._DiscardButton, ), ) self._SaveBox.OnPress = self._FinishConfiguring # type: ignore self._SaveBox.OnCancel = lambda: self._ConfigureBox.Show( ) # type: ignore self._CheatConfigureBoxes = {} cheat_buttons: List[OptionBoxButton] = [] for cheat in self.CheatList: tip: str box: OptionBox if not isinstance(cheat, ABCCycleableCheat): tip = "Currently: Ignore" if cheat.Name in self._NewSettings: tip = "Currently: Run" box = OptionBox( Title=f"Configure '{cheat.Name}'", Caption= ("Select if this cheat should be run or ignored when you press this preset's" " keybind."), Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=( self._RunButton, self._DontRunButton, ), ) else: tip = "Currently: Ignore" if cheat.Name in self._NewSettings: tip = f"Currently: {self._NewSettings[cheat.Name]}" cheat_options: List[OptionBoxButton] = [] for option in cheat.AllValues: cheat_options.append(OptionBoxButton(option)) cheat_options.append(self._IgnoreButton) box = OptionBox( Title=f"Configure '{cheat.Name}'", Caption= ("Select the value that this cheat should be set to when you press this" " preset's keybind."), Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=cheat_options, ) box.OnPress = self._ChangeCheatValue # type: ignore box.OnCancel = lambda: self._ConfigureBox.Show() # type: ignore button = OptionBoxButton(cheat.Name, tip) self._CheatConfigureBoxes[cheat.Name] = box cheat_buttons.append(button) self._ConfigureBox = OptionBox( Title=f"Configure '{self.Name}'", Caption="Choose a specific cheat to configure.", Tooltip=OptionBox.CreateTooltipString(EscMessage="Back"), Buttons=cheat_buttons, ) self._ConfigureBox.OnPress = self._SelectSpecificCheat # type: ignore self._ConfigureBox.OnCancel = lambda: self._SaveBox.Show( ) # type: ignore