CrayonCrayoff

Streamerbot Hangman Game

Jan 27th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 8.48 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3. using System.Collections.Generic;
  4.  
  5. public class CPHInline
  6. {
  7.     public bool Execute()
  8.     {
  9.         // your main code goes here
  10.         CPH.TryGetArg("user", out string user);
  11.         CPH.TryGetArg("msgId", out string replyId);
  12.         CPH.TryGetArg("commandName", out string commandName);
  13.         CPH.TryGetArg("rewardName", out string rewardName);
  14.         CPH.TryGetArg("rewardId", out string rewardId);
  15.         string gameState = CPH.GetGlobalVar<string>("HangmanState", false);
  16.        
  17.         // check gameState to determine what to do
  18.         // Hangman game initializer
  19.         if ((gameState == "offline" || string.IsNullOrEmpty(gameState)) && rewardName == "Play Hangman")
  20.         {
  21.             // initialize all the variables to set up the game
  22.             Dictionary<string, List<string>> possibleWordsByCategory = new Dictionary<string, List<string>>();
  23.             possibleWordsByCategory["Animals"] = new List<string>{"alligator", "bear", "cheetah", "deer", "elephant", "fox", "giraffe", "hippo", "jaguar", "kangaroo", "lion", "monkey", "otter", "penguin", "rabbit", "shark", "tiger", "wolf", "yak", "zebra"};
  24.             possibleWordsByCategory["Food and Drink"] = new List<string>{"apple", "banana", "broccoli", "champagne", "cocktail", "coffee", "courgette", "croissant", "curry", "eggs", "espresso", "hamburger", "juice", "kimchi", "lollipop", "macaroni", "onions", "orange", "pasta", "pesto", "porridge", "potatoes", "poutine", "steak", "sushi", "tofu", "vodka", "water", "zucchini"};
  25.             possibleWordsByCategory["Game Characters"] = new List<string>{"alduin", "cloud", "dogmeat", "doomguy", "glados", "guybrush", "haiku", "kassandra", "kratos", "luigi", "mario", "megaman", "owlboy", "parrapa", "pikachu", "ratchet", "rayman", "samus", "sonic", "spyro", "steve", "sylvanas", "toad", "yoshi"};
  26.             possibleWordsByCategory["Sports"] = new List<string>{"badminton", "baseball", "basketball", "bowling", "cycling", "dodgeball", "fencing", "football", "golf", "hockey", "lacrosse", "rowing", "rugby", "soccer", "skiing", "snowboarding", "swimming", "tennis", "volleyball", "wrestling"};
  27.             possibleWordsByCategory["Video Games"] = new List<string>{"balatro", "bloodborne", "broforce", "brotato", "civilization", "crosscode", "dishonored", "exapunks", "hearthstone", "journey", "maplestory", "megaman", "monaco", "morrowind", "oblivion", "owlboy", "phasmophobia", "pokemon", "splodey", "starcraft", "subnautica", "terraria", "tetris", "tunic", "warcraft"};
  28.  
  29.             List<string> categories = new List<string>(possibleWordsByCategory.Keys);
  30.            
  31.             string currentCategory = categories[CPH.Between(0, categories.Count - 1)];
  32.             CPH.SetGlobalVar("Hangman Category", currentCategory, false);
  33.            
  34.             int lengthOfCategory = possibleWordsByCategory[currentCategory].Count;
  35.             string wordToGuess = possibleWordsByCategory[currentCategory][CPH.Between(0, lengthOfCategory - 1)];
  36.            
  37.             CPH.SetGlobalVar("Word To Guess", wordToGuess, false);
  38.            
  39.             // intialize the array for the output with _'s for guessed characters
  40.             char[] outputList = new char[wordToGuess.Length];
  41.             for (int i = 0; i < wordToGuess.Length; i++)
  42.             {
  43.                 outputList[i] = '_';
  44.             }
  45.            
  46.             CPH.SetGlobalVar("Hangman Output List", outputList, false);
  47.            
  48.             string guessedOutput = string.Join(" ", outputList);
  49.             CPH.SendMessage("Let's play Hangman! Guess a letter or try to guess the word! Use !hm to guess");
  50.             CPH.SendMessage(guessedOutput + $" (Category: {currentCategory})");
  51.            
  52.             // set non-persisted global variables for guessed letters, game state, and how many guesses are left
  53.             List<string> previousGuesses = new List<string>();
  54.             CPH.SetGlobalVar("Previous Guesses", previousGuesses, false);
  55.             CPH.SetGlobalVar("HangmanState", "playing", false);
  56.             CPH.SetGlobalVar("Guesses Left", 10, false);
  57.             CPH.SetGlobalVar("Hangman Reward ID", rewardId, false);
  58.             CPH.PauseReward(rewardId);
  59.            
  60.         }
  61.         // if player uses !hmstate, just output the current guessed string
  62.         else if (gameState == "playing" && commandName == "Hangman State")
  63.         {
  64.             char[] outputList = CPH.GetGlobalVar<char[]>("Hangman Output List", false);
  65.             string currentCategory = CPH.GetGlobalVar<string>("Hangman Category", false);
  66.             CPH.SendMessage(string.Join(" ", outputList));
  67.             return true;
  68.         }
  69.         // someone performed a guess
  70.         else if (gameState == "playing" && commandName == "Hangman Guess")
  71.         {
  72.             string wordToGuess = CPH.GetGlobalVar<string>("Word To Guess", false);
  73.             char[] outputList = CPH.GetGlobalVar<char[]>("Hangman Output List", false);
  74.             CPH.TryGetArg("rawInput", out string rawInputEscaped);
  75.             rawInputEscaped = rawInputEscaped.ToLower();
  76.             List<string> previousGuesses = CPH.GetGlobalVar<List<string>>("Previous Guesses", false);
  77.  
  78.             // player didn't provide a letter or a word
  79.             if (string.IsNullOrEmpty(rawInputEscaped))
  80.             {
  81.                 CPH.TwitchReplyToMessage("Guess either a single character or a word of the correct length", replyId);
  82.                 return true;
  83.             }
  84.             // player entered a single character
  85.             else if (rawInputEscaped.Length == 1)
  86.             {
  87.                 if (previousGuesses.Contains(rawInputEscaped))
  88.                 {
  89.                     CPH.TwitchReplyToMessage("That character has already been guessed!", replyId);
  90.                 }
  91.                 else
  92.                 {
  93.                     bool correctGuess = false;
  94.                     char guessedChar = char.Parse(rawInputEscaped);
  95.                     previousGuesses.Add(rawInputEscaped);
  96.                     CPH.SetGlobalVar("Previous Guesses", previousGuesses, false);
  97.                    
  98.                     for (int i = 0; i < wordToGuess.Length; i++)
  99.                     {  
  100.                         if (wordToGuess[i] == guessedChar)
  101.                         {
  102.                             outputList[i] = guessedChar;
  103.                             correctGuess = true;
  104.                         }
  105.                     }
  106.                     if (correctGuess)
  107.                     {
  108.                         CPH.SendMessage("Good guess! That's a hit!");
  109.                         CPH.SetGlobalVar("Hangman Output List", outputList, false);
  110.                     }
  111.                     else
  112.                     {
  113.                         int guessesLeft = CPH.GetGlobalVar<int>("Guesses Left", false) - 1;
  114.                         CPH.SetGlobalVar("Guesses Left", guessesLeft, false);
  115.                         if (guessesLeft > 0)
  116.                         {
  117.                             CPH.SendMessage("Oof, that's a miss!");
  118.                         }
  119.                     }
  120.                 }
  121.             }
  122.             // player guessed a word
  123.             else if (rawInputEscaped.Length == wordToGuess.Length && !(rawInputEscaped.Contains(" ")))
  124.             {
  125.                 if (previousGuesses.Contains(rawInputEscaped))
  126.                 {
  127.                     CPH.TwitchReplyToMessage("That word has already been guessed!", replyId);
  128.                 }
  129.                 else if (rawInputEscaped == wordToGuess)
  130.                 {
  131.                     for (int i = 0; i < wordToGuess.Length; i++)
  132.                     {
  133.                         outputList[i] = wordToGuess[i];
  134.                     }
  135.                 }
  136.                 else
  137.                 {
  138.                     previousGuesses.Add(rawInputEscaped);
  139.                     CPH.SetGlobalVar("Previous Guesses", previousGuesses, false);
  140.                     int guessesLeft = CPH.GetGlobalVar<int>("Guesses Left", false) - 2;
  141.                     CPH.SetGlobalVar("Guesses Left", guessesLeft, false);
  142.                     if (guessesLeft > 0)
  143.                     {
  144.                         CPH.SendMessage("Oof, that's a miss! That costs you 2 guesses!");
  145.                     }
  146.                    
  147.                 }
  148.             }
  149.             // player provided a guess, but the guess is either a sentence or a word of incorrect length
  150.             else
  151.             {
  152.                 CPH.TwitchReplyToMessage("Guess either a character or a word of the correct length", replyId);
  153.                 return true;
  154.             }
  155.            
  156.             // construct the word guessed so far from the outputList
  157.             string guessedWord = string.Join("", outputList);
  158.             // the word has been guessed, either by letters or outright
  159.             if (guessedWord == wordToGuess)
  160.             {
  161.                 CPH.SendMessage($"Amazing! {user} guessed the word! It was \"{guessedWord}\"!");
  162.                 CPH.SetGlobalVar("HangmanState", "offline", false);
  163.                 CPH.UnPauseReward(CPH.GetGlobalVar<string>("Hangman Reward ID", false));
  164.             }
  165.             // the word has not been fully guessed yet
  166.             else
  167.             {
  168.                 int guessesLeft = CPH.GetGlobalVar<int>("Guesses Left", false);
  169.                 // players ran out of guesses and lose
  170.                 if (guessesLeft <= 0)
  171.                 {
  172.                     CPH.SendMessage($"Oof, you ran out of guesses! The word we were looking for was \"{wordToGuess}\"");
  173.                     CPH.SetGlobalVar("HangmanState", "offline", false);
  174.                     CPH.UnPauseReward(CPH.GetGlobalVar<string>("Hangman Reward ID", false));
  175.                 }
  176.                 // players still have more guesses, continue the game
  177.                 else
  178.                 {
  179.                     string guessedOutput = string.Join(" ", outputList);
  180.                     string currentCategory = CPH.GetGlobalVar<string>("Hangman Category", false);
  181.                     CPH.SendMessage(guessedOutput + $" (Category: {currentCategory})");
  182.                    
  183.                     previousGuesses.Sort((x, y) => {
  184.                         int ret = x.Length.CompareTo(y.Length);
  185.                         return ret != 0 ? ret : x.CompareTo(y);});
  186.                     string previousGuessesOutput = string.Join(", ", previousGuesses);
  187.                     CPH.SendMessage($"You can still make {guessesLeft} error(s). Already guessed: {previousGuessesOutput}.");
  188.                 }
  189.             }
  190.         }
  191.         return true;
  192.     }
  193. }
  194.  
Add Comment
Please, Sign In to add comment