public string FilterTags(ITwitchMessage twitchMessage, string input) { Helper.Log("starting filter"); Viewer viewer = Viewers.GetViewer(twitchMessage.Username); StringBuilder output = new StringBuilder(input); output.Replace("{username}", viewer.username); output.Replace("{balance}", viewer.GetViewerCoins().ToString()); output.Replace("{karma}", viewer.GetViewerKarma().ToString()); output.Replace("{purchaselist}", ToolkitSettings.CustomPricingSheetLink); output.Replace("{coin-reward}", ToolkitSettings.CoinAmount.ToString()); output.Replace("\n", ""); Helper.Log("starting regex"); Regex regex = new Regex(@"\[(.*?)\]"); MatchCollection matches = regex.Matches(output.ToString()); foreach (Match match in matches) { Helper.Log("found match " + match.Value); string code = match.Value; code = code.Replace("[", ""); code = code.Replace("]", ""); //Regex doubleReg = new Regex("double\\<(.*?)\\>"); //foreach (Match innerMatch in doubleReg.Matches(match.Value.ToString())) //{ // Helper.Log("found match " + innerMatch.Value); // string innerCode = innerMatch.Value; // innerCode = innerCode.Replace("double<", ""); // innerCode = innerCode.Replace(">", ""); // Helper.Log("executing double " + innerCode); // output.Replace(innerMatch.Value, MoonSharpDouble(code).ToString()); //} // Helper.Log("finished inner code"); output.Replace(match.Value, MoonSharpString(code)); } return(output.ToString()); }
public void CheckCommand(string message, string user) { if (message.Split(' ')[0] == "/w") { List <string> messagewhisper = message.Split(' ').ToList(); messagewhisper.RemoveAt(0); message = string.Join(" ", messagewhisper.ToArray()); Helper.Log(message); } //admin commands if (user.ToLower() == Settings.Channel.ToLower()) { if (message.StartsWith("!resetviewers")) { if (resetWarning == 0) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitResetViewersWarningOne".Translate()); resetWarning = 1; } else if (resetWarning == 1) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitResetViewersWarningTwo".Translate()); resetWarning = 2; } else if (resetWarning == 2) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitResetViewersWarningThree".Translate()); Settings.ViewerIds = null; Settings.ViewerCoins = null; Settings.ViewerKarma = null; Settings.listOfViewers = new List <Viewer>(); _mod.WriteSettings(); resetWarning = 0; } } if (message.StartsWith("!addtoolkitmod")) { string[] command = message.Split(' '); if (command.Length < 2) { return; } string mod = command[1].Replace("@", "").ToLower(); if (Viewer.IsModerator(mod)) { _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitAlreadyMod".Translate(), mod: mod)); return; } Viewer modviewer = Viewer.GetViewer(mod); modviewer.SetAsModerator(); _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitAddedMod".Translate(), mod: mod)); } if (message.StartsWith("!removetoolkitmod")) { string[] command = message.Split(' '); if (command.Length < 2) { return; } string mod = command[1].Replace("@", "").ToLower(); if (!Viewer.IsModerator(mod)) { return; } Viewer modviewer = Viewer.GetViewer(mod); modviewer.RemoveAsModerator(); _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitRemovedMod".Translate(), mod: mod)); } } //moderator commands if (user.ToLower() == Settings.Channel.ToLower() || Viewer.IsModerator(user)) { if (message.StartsWith("!refreshviewers")) { TwitchToolkitDev.WebRequest_BeginGetResponse.Main("https://tmi.twitch.tv/group/user/" + Settings.Channel.ToLower() + "/chatters", new Func <TwitchToolkitDev.RequestState, bool>(Settings.viewers.SaveUsernamesFromJsonResponse)); } if (message.StartsWith("!karmaround")) { Settings.viewers.AwardViewersCoins(); } if (message.StartsWith("!giveallcoins")) { try { string[] command = message.Split(' '); if (command.Length < 2) { return; } bool isNumeric = int.TryParse(command[1], out int amount); if (isNumeric) { foreach (Viewer viewer in Settings.listOfViewers) { viewer.GiveViewerCoins(amount); } _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitGiveAllCoins".Translate(), amount: amount.ToString())); } } catch (InvalidCastException e) { Helper.Log("Give All Coins Syntax Error " + e.Message); } } if (message.StartsWith("!givecoins")) { try { string[] command = message.Split(' '); if (command.Length < 3) { return; } string giftee = command[1].Replace("@", ""); if (user.ToLower() != Settings.Channel.ToLower() && giftee.ToLower() == user.ToLower()) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitModCannotGiveCoins".Translate()); return; } int amount; bool isNumeric = int.TryParse(command[2], out amount); if (isNumeric) { Viewer viewer = Viewer.GetViewer(giftee); Helper.Log($"Giving viewer {viewer.username} {amount} coins"); viewer.GiveViewerCoins(amount); _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitGivingCoins".Translate(), viewer: viewer.username, amount: amount.ToString(), newbalance: viewer.GetViewerCoins().ToString())); } } catch (InvalidCastException e) { Helper.Log("Invalid Give Viewer Coins Command " + e.Message); } } if (message.StartsWith("!checkuser")) { try { string[] command = message.Split(' '); if (command.Length < 2) { return; } string target = command[1].Replace("@", ""); Viewer viewer = Viewer.GetViewer(target); _mod._client.SendMessage($"@{user} " + Helper.ReplacePlaceholder("TwitchToolkitCheckUser".Translate(), viewer: viewer.username, amount: viewer.GetViewerCoins().ToString(), karma: viewer.GetViewerKarma().ToString())); } catch (InvalidCastException e) { Helper.Log("Invalid Check User Command " + e.Message); } } if (message.StartsWith("!setkarma")) { try { string[] command = message.Split(' '); if (command.Length < 3) { return; } string target = command[1].Replace("@", ""); int amount; bool isNumeric = int.TryParse(command[2], out amount); if (isNumeric) { Viewer viewer = Viewer.GetViewer(target); viewer.SetViewerKarma(amount); _mod._client.SendMessage($"@{user}" + Helper.ReplacePlaceholder("TwitchToolkitSetKarma".Translate(), viewer: viewer.username, karma: amount.ToString())); } } catch (InvalidCastException e) { Helper.Log("Invalid Check User Command " + e.Message); } } if (message.StartsWith("!togglecoins")) { if (Settings.EarningCoins) { Settings.EarningCoins = false; _mod._client.SendMessage($"@{user} " + "TwitchToolkitEarningCoinsMessage".Translate() + " " + "TwitchToolkitOff".Translate()); } else { Settings.EarningCoins = true; _mod._client.SendMessage($"@{user} " + "TwitchToolkitEarningCoinsMessage".Translate() + " " + "TwitchToolkitOn".Translate()); } } if (message.StartsWith("!togglestore")) { if (Settings.StoreOpen) { Settings.StoreOpen = false; _mod._client.SendMessage($"@{user} " + "TwitchToolkitStorePurchasesMessage".Translate() + " " + "TwitchToolkitOn".Translate()); } else { Settings.StoreOpen = true; _mod._client.SendMessage($"@{user} " + "TwitchToolkitStorePurchasesMessage".Translate() + " " + "TwitchToolkitOn".Translate()); } } } // commands are suppressed when not earning coins if (Settings.EarningCoins) { if (message.StartsWith(Settings.BalanceCmd)) { Helper.Log("Trying to find User"); Viewer viewer = Viewer.GetViewer(user); _mod._client.SendMessage($"@{viewer.username} " + Helper.ReplacePlaceholder("TwitchToolkitBalanceMessage".Translate(), amount: viewer.GetViewerCoins().ToString(), karma: viewer.GetViewerKarma().ToString())); } if (message.StartsWith(Settings.KarmaCmd) && !message.Contains("!karmaround")) { Viewer viewer = Viewer.GetViewer(user); _mod._client.SendMessage($"@{viewer.username} " + "TwitchToolkitWhatIsKarma".Translate() + $" { viewer.GetViewerKarma()}%"); } if (message.StartsWith(Settings.InstructionsCmd)) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitInstructions".Translate() + $" { Settings.CustomPricingSheetLink}"); } if (message.StartsWith(Settings.PurchaselistCmd)) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitPurchaseList".Translate() + $" {Settings.CustomPricingSheetLink}"); } if (message.StartsWith(Settings.GiftCmd) && Settings.GiftingCoins) { string[] command = message.Split(' '); if (command.Count() < 3) { return; } string target = command[1].Replace("@", ""); bool isNumeric = int.TryParse(command[2], out int amount); if (isNumeric && amount > 0) { Viewer giftee = Viewer.GetViewer(target); Viewer gifter = Viewer.GetViewer(user); if (gifter.GetViewerCoins() >= amount) { gifter.TakeViewerCoins(amount); giftee.GiveViewerCoins(amount); _mod._client.SendMessage($"@{giftee.username} " + Helper.ReplacePlaceholder("TwitchToolkitGiftCoins".Translate(), amount: amount.ToString(), from: gifter.username)); } } } } if (message.StartsWith(Settings.ModinfoCmd)) { _mod._client.SendMessage($"@{user} " + "TwitchToolkitModInfo".Translate() + " https://discord.gg/qrtg224 !"); } if (Settings.StoreOpen) { if (message.StartsWith(Settings.BuyeventCmd)) { if (message.Split(' ').Count() < 2 || (message.Split(' ')[1] == "carepackage")) { return; } ShopCommand command = new ShopCommand(message, Viewer.GetViewer(user)); if (command.errormessage != null) { _mod._client.SendMessage(command.errormessage); } else if (command.successmessage != null && Settings.PurchaseConfirmations) { _mod._client.SendMessage(command.successmessage); //TTS BuyeventCmd Helper.Log($"Attempting to say {message}"); TTSHelper.Speech.SpeakAsync(message); } } if (message.StartsWith(Settings.BuyitemCmd)) { string[] command = message.Split(' '); if (command.Length < 2) { return; } string item = command[1]; command[1] = "TwitchToolkitCarepackage".Translate(); command[0] = item.ToLower(); string newcommand = string.Join(" ", command); Helper.Log("Attemping item purchase " + newcommand); ShopCommand command2 = new ShopCommand(newcommand, Viewer.GetViewer(user)); if (command2.errormessage != null) { _mod._client.SendMessage(command2.errormessage); } else if (command2.successmessage != null && Settings.PurchaseConfirmations) { _mod._client.SendMessage(command2.successmessage); //TTS BuyItemCMD Helper.Log($"Attempting to say {message}"); TTSHelper.Speech.SpeakAsync(message); } } } if (message.StartsWith(Settings.ModsettingsCmd)) { string minutess = Settings.CoinInterval > 1 ? "s" : ""; string storeon = Settings.StoreOpen ? "TwitchToolkitOn".Translate() : "TwitchToolkitOff".Translate(); string earningcoins = Settings.EarningCoins ? "TwitchToolkitOn".Translate() : "TwitchToolkitOff".Translate(); string stats_message = Helper.ReplacePlaceholder("TwitchToolkitModSettings".Translate(), amount: Settings.CoinAmount.ToString(), first: Settings.CoinInterval.ToString(), second: storeon, third: earningcoins, karma: Settings.KarmaCap.ToString() ); _mod._client.SendMessage(stats_message); } if (message.StartsWith(Settings.CommandHelpCmd)) { string commands = " " + Settings.BalanceCmd + ", " + Settings.BuyeventCmd + ", " + Settings.BuyitemCmd + ", " + Settings.InstructionsCmd + ", " + Settings.PurchaselistCmd + ", " + Settings.ModinfoCmd + ", " + Settings.ModsettingsCmd + ", " + Settings.KarmaCmd + ", " + Settings.GiftCmd; _mod._client.SendMessage("TwitchToolkitUserCommands".Translate() + commands); } if (Settings.CommandsAliveEnabled && message.StartsWith("!alive", StringComparison.InvariantCultureIgnoreCase) && (DateTime.Now - _mod._aliveCommand).TotalSeconds >= 10) { _mod._aliveCommand = DateTime.Now; _mod._client.SendMessage( "TwitchStoriesChatMessageColonyAlive".Translate() + " " + Current.Game.tickManager.TicksGame.ToReadableRimworldTimeString() + ", " + "TwitchStoriesChatMessageGamePlayed".Translate() + " " + Current.Game.Info.RealPlayTimeInteracting.ToReadableTimeString() ); return; } if (Settings.CommandsModsEnabled && message.Contains("!installedmods") && (DateTime.Now - _mod._modsCommand).TotalSeconds >= 10) { _mod._modsCommand = DateTime.Now; string msg = "Version: " + _mod.Version + ", Mods: "; string[] mods = LoadedModManager.RunningMods.Select((m) => m.Name).ToArray(); for (int i = 0; i < mods.Length; i++) { msg += mods[i] + ", "; if (i == (mods.Length - 1) || msg.Length > 256) { msg = msg.Substring(0, msg.Length - 2); _mod._client.SendMessage(msg); msg = ""; } } return; } }
public ShopCommand(string message, Viewer viewer) { string[] command = message.Split(' '); string productabr = command[1]; this.message = message; this.viewer = viewer; Helper.Log($"debug {productabr.ToLower()}"); this.product = Products.GetProduct(productabr.ToLower()); if (this.product == null) { Helper.Log("Product is null"); return; } Helper.Log("Configuring purchase"); if (product.type == 0) { //event Helper.Log("Calculating price for event"); if (this.product.amount < 0) { return; } this.calculatedprice = this.product.amount; string[] chatmessage = command; craftedmessage = $"{this.viewer.username}: "; for (int i = 2; i < chatmessage.Length; i++) { craftedmessage += chatmessage[i] + " "; } this.product.evt.chatmessage = craftedmessage; } else if (product.type == 1) { //item try { Helper.Log("Trying ItemEvent Checks"); Item itemtobuy = Item.GetItemFromAbr(command[0]); if (itemtobuy == null) { return; } if (itemtobuy.price < 0) { return; } int itemPrice = itemtobuy.price; int messageStartsAt = 3; // check if 2nd index of command is a number if (command.Count() > 2 && int.TryParse(command[2], out this.quantity)) { messageStartsAt = 3; } else if (command.Count() == 2) { // short command this.quantity = 1; messageStartsAt = 2; } else if (command[2] == "*") { Helper.Log("Getting max"); this.quantity = this.viewer.GetViewerCoins() / itemtobuy.price; messageStartsAt = 3; Helper.Log(this.quantity); } else { this.quantity = 1; messageStartsAt = 2; Helper.Log("Quantity not calculated"); } string[] chatmessage = command; craftedmessage = $"{this.viewer.username}: "; for (int i = messageStartsAt; i < chatmessage.Length; i++) { craftedmessage += chatmessage[i] + " "; } try { if (itemPrice > 0) { Helper.Log($"item: {this.item} - price: {itemPrice} - quantity{this.quantity}"); this.calculatedprice = checked (itemtobuy.CalculatePrice(this.quantity)); this.itemtobuy = itemtobuy; } } catch (OverflowException e) { Helper.Log("overflow in calculated price " + e.Message); } } catch (InvalidCastException e) { Helper.Log("Invalid product or quantity - " + e.Message); } } if (this.calculatedprice <= 0) { // invalid price Helper.Log("Invalid price detected?"); } else if (viewer.GetViewerCoins() < this.calculatedprice && !Settings.UnlimitedCoins) { // send message not enough coins this.errormessage = Helper.ReplacePlaceholder("TwitchToolkitNotEnoughCoins".Translate(), viewer: viewer.username, amount: this.calculatedprice.ToString(), first: viewer.GetViewerCoins().ToString()); } else if (calculatedprice < Settings.MinimumPurchasePrice) { // does not meet minimum purchase price this.errormessage = Helper.ReplacePlaceholder("TwitchToolkitMinPurchaseNotMet".Translate(), viewer: this.viewer.username, amount: this.calculatedprice.ToString(), first: Settings.MinimumPurchasePrice.ToString()); } else if (this.product.type == 0 && !this.product.evt.IsPossible()) { this.errormessage = $"@{this.viewer.username} " + "TwitchToolkitEventNotPossible".Translate(); } else if (this.product.maxEvents < 1 && Settings.EventsHaveCooldowns) { this.errormessage = $"@{this.viewer.username} " + "TwitchToolkitEventOnCooldown".Translate(); } else { this.ExecuteCommand(); } }