コード例 #1
0
 private KMSelectable[] ProcessTwitchCommand(string command)
 {
     command = command.Trim().ToLower();
     if (command == "colorblind")
     {
         colorblindModeEnabled = !colorblindModeEnabled;
         return(new KMSelectable[0]);
     }
     if (Regex.IsMatch(command, @"activate( *all)?"))
     {
         Dictionary <Color, KMSelectable> keys = new Dictionary <Color, KMSelectable>();
         for (int y = 0; y < HEIGHT; y++)
         {
             for (int x = 0; x < WIDTH; x++)
             {
                 ButtonComponent button = buttonsGrid[x][y];
                 if (!button.active && !keys.ContainsKey(button.primaryColor))
                 {
                     keys[button.primaryColor] = button.GetComponent <KMSelectable>();
                 }
             }
         }
         return(keys.Values.ToArray());
     }
     KMSelectable[] parsedCoords = ParseButtonsSet(command);
     if (parsedCoords != null)
     {
         return(parsedCoords);
     }
     return(null);
 }
コード例 #2
0
    public ButtonComponentSolver(BombCommander bombCommander, ButtonComponent bombComponent) :
        base(bombCommander, bombComponent)
    {
        ModuleInformation buttonInfo         = ComponentSolverFactory.GetModuleInfo("ButtonComponentSolver", "!{0} tap [tap the button] | !{0} hold [hold the button] | !{0} release 7 [release when the digit shows 7]");
        ModuleInformation buttonInfoModified = ComponentSolverFactory.GetModuleInfo("ButtonComponentModifiedSolver", "Click the button with !{0} tap. Click the button at time with !{0} tap 8:55 8:44 8:33. Hold the button with !{0} hold. Release the button with !{0} release 9:58 9:49 9:30.");

        bombComponent.GetComponent <Selectable>().OnCancel += bombComponent.OnButtonCancel;
        _button = bombComponent.button;
        modInfo = VanillaRuleModifier.IsSeedVanilla() ? buttonInfo : buttonInfoModified;
    }
コード例 #3
0
    public ButtonComponentSolver(BombCommander bombCommander, ButtonComponent bombComponent, IRCConnection ircConnection, CoroutineCanceller canceller) :
        base(bombCommander, bombComponent, ircConnection, canceller)
    {
        ModuleInformation buttonInfo       = ComponentSolverFactory.GetModuleInfo("ButtonComponentSolver");
        ModuleInformation squarebuttonInfo = ComponentSolverFactory.GetModuleInfo("ButtonV2");

        bombComponent.GetComponent <Selectable>().OnCancel += bombComponent.OnButtonCancel;
        _button = bombComponent.button;
        modInfo = new ModuleInformation
        {
            builtIntoTwitchPlays       = buttonInfo.builtIntoTwitchPlays,
            CameraPinningAlwaysAllowed = buttonInfo.CameraPinningAlwaysAllowed,
            helpText = VanillaRuleModifier.IsSeedVanilla()
                ? buttonInfo.helpText
                : squarebuttonInfo.helpText,
            manualCode        = buttonInfo.manualCode,
            moduleDisplayName = buttonInfo.moduleDisplayName,
            moduleID          = buttonInfo.moduleID,
            moduleScore       = VanillaRuleModifier.IsSeedVanilla()
                ? buttonInfo.moduleScore
                : squarebuttonInfo.moduleScore
        };
    }