Advertisement
Inksaver

TicTacToe C# Console

Mar 17th, 2017
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 10.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace TicTacToe
  6. {
  7.     class Program
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             string coords;
  12.             string gameWon;
  13.             Game.Initialise(false); //initialise only. set to true if re-setting
  14.             Console.WriteLine("Welcome to TicTacToe!");
  15.             while (true)
  16.             {
  17.                 Game.ChoosePlayer();    //give choice of X or O
  18.                 Game.PrintGame();       //print ASCII grid
  19.                 while (true)
  20.                 {
  21.                     coords = GetCoords(); //get coordinates of grid to play
  22.                     Game.SetGrid(coords); // place X or O in the grid array at chosen coordinate
  23.                     Game.PrintGame();
  24.                     gameWon = Game.CheckGameOver(); //one of 4 return values X, O = winner, Q = all grid places filled with no winner, "" continue
  25.                     if (gameWon == "X" || gameWon == "O")
  26.                     {
  27.                         Console.WriteLine("Player '" + Game.GetPlayer() + "' WINS!");
  28.                         break;
  29.                     }
  30.                     else if (gameWon == "Q")
  31.                     {
  32.                         Console.WriteLine("Game is a DRAW!");
  33.                         break;
  34.                     }
  35.                     //the following lines only run if no winner or draw
  36.                     Game.switchPlayer(); // change from X to O or vice-versa
  37.                     Console.WriteLine(); // space before next grid drawn
  38.                 }
  39.                 if (PlayAgain())
  40.                 {
  41.                     Game.Initialise(true); //reset arrays
  42.                 }
  43.                 else
  44.                 {
  45.                     break;
  46.                 }
  47.             }
  48.             //user did not want to continue
  49.             Console.WriteLine("Thank you for playing TicTacToe");
  50.             Console.Write("Press any key to continue . . . ");
  51.             Console.ReadKey(true);
  52.         }
  53.         static string GetCoords()
  54.         {
  55.             // array of acceptable keyboard inputs
  56.             string[] goodResponse = {"a1","a2","a3","b1","b2","b3","c1","c2","c3","1a","1b","1c","2a","2b","2c","3a","3b","3c"};
  57.             string response;
  58.             int xcoord;
  59.             while (true)
  60.             {
  61.                 response = Game.Input("Player '" + Game.GetPlayer() + "' - Type your coords (e.g. a1) > ").ToLower();
  62.                 // check if response found in array of acceptable responses
  63.                 if(Array.Find(goodResponse, s => s.Equals(response)) != string.Empty)
  64.                 {
  65.                     // ensure coords are in letter+number format
  66.                     if(int.TryParse( response.Substring(0,1), out xcoord)) //1a, 3c
  67.                     {
  68.                         //reverse coordinates 1a -> a1
  69.                         response = response.Substring(1,1) + response.Substring(0,1);
  70.                     }
  71.                     //check if coords available (not already containing X or O)
  72.                     if( Game.getGrid(response).Equals(' '))
  73.                     {
  74.                         break;
  75.                     }
  76.                 }
  77.             }
  78.             return response;
  79.         }
  80.         static bool PlayAgain()
  81.         {
  82.             if(Game.Input("Play Again? (y/n)").ToLower() == "y")
  83.             {
  84.                 return true;
  85.             }
  86.             else
  87.             {
  88.                 return false;
  89.             }
  90.         }
  91.     }
  92.    
  93.  
  94.     static class Game
  95.     {
  96.         //arrays and other module level variables
  97.         private static char Player;
  98.         private static Dictionary<char, byte> asciiDict = new Dictionary<char, byte>();
  99.         private static byte[][] byteArray = new byte[8][];
  100.         private static char[] gameArray;
  101.        
  102.         // function to convert a byte array of ASCII codes into a string
  103.         // Obscure graphics ╗
  104.         private static string ASCII8ToString(byte[] ASCIIData)
  105.         {
  106.             var e = Encoding.GetEncoding("437");
  107.             return e.GetString(ASCIIData);
  108.         }
  109.         public static string CheckGameOver()
  110.         {
  111.             string gameWon = string.Empty;
  112.             bool gameOver = false;
  113.             string testString;
  114.             /*grid:
  115.              * |O| | |
  116.              * |X|X|X|
  117.              * |O|O| |
  118.              * This layout equates to:
  119.              * gameArray = "O  XXXOO " (9 places)
  120.              */
  121.             for (int i = 0; i < 8; i = i + 3)
  122.             {
  123.                 //checks 3 rows for full set of x or O
  124.                 testString = CheckWinner(new int[]{i, i + 1, i + 2});
  125.                 if (testString == "X" || testString == "O")
  126.                 {
  127.                     gameWon = testString;
  128.                     gameOver = true;
  129.                     break;
  130.                 }
  131.             }
  132.             if(!gameOver)
  133.             {
  134.                 for (int i = 0; i < 3; i++)
  135.                 {
  136.                     testString = CheckWinner(new int[]{i, i + 3, i + 6});
  137.                     if (testString == "X" || testString == "O")
  138.                     {
  139.                         gameWon = testString;
  140.                         gameOver = true;
  141.                         break;
  142.                     }
  143.                 }
  144.             }
  145.             if(!gameOver)
  146.             {
  147.                 testString = CheckWinner(new int[]{0, 4, 8});
  148.                 if (testString == "X" || testString == "O")
  149.                 {
  150.                     gameWon = testString;
  151.                     gameOver = true;
  152.                 }
  153.             }
  154.             if(!gameOver)
  155.             {
  156.                 testString = CheckWinner(new int[]{2, 4, 6});
  157.                 if (testString == "X" || testString == "O")
  158.                 {
  159.                     gameWon = testString;
  160.                     gameOver = true;
  161.                 }
  162.             }
  163.             //test for full grid with no winner
  164.             if(!gameOver)
  165.             {
  166.                 //no winner yet. Assume game grid is full
  167.                 gameOver = true;
  168.                 // test for gaps in game grid
  169.                 if(!Array.Exists(gameArray, s => s.Equals(' ')))
  170.                 {
  171.                     gameWon = "Q";
  172.                 }
  173.             }
  174.             return gameWon; // X , O, Q or empty string
  175.         }
  176.         private static string CheckWinner(int[] arrCheck)
  177.         {
  178.             string check = Convert.ToString(gameArray[arrCheck[0]]) + Convert.ToString(gameArray[arrCheck[1]]) + Convert.ToString(gameArray[arrCheck[2]]);
  179.             string gameWon = string.Empty;
  180.             if (check == "XXX")
  181.             {
  182.                 gameWon = "X";
  183.             }
  184.             else if (check == "OOO")
  185.             {
  186.                 gameWon = "O";
  187.             }
  188.             return gameWon;
  189.         }
  190.         public static void ChoosePlayer()
  191.         {
  192.             string player;
  193.             while (true)
  194.             {
  195.                 player = Input("Choose 'X' or 'O' to play");
  196.                 if (player == "X" || player == "x")
  197.                 {
  198.                     player = "X";
  199.                     break;
  200.                 }
  201.                 else if (player == "o" || player == "O" || player == "0")
  202.                 {
  203.                     player = "O";
  204.                     break;
  205.                 }
  206.             }
  207.             char[] arrPlayer = player.ToCharArray();
  208.             Player = arrPlayer[0];
  209.         }
  210.         private static string Decode(byte[] input)
  211.         {
  212.             //convert input byte array to string
  213.             return ASCII8ToString(input);
  214.         }
  215.         public static char getGrid(string coord)
  216.         {
  217.             // get the status of the byte stored in the equivalent of the grid centre of the chosen coordinate
  218.             byte status = 0;
  219.             if      (coord == "a1") {status = byteArray[1][5]; }
  220.             else if (coord == "a2") {status = byteArray[1][9]; }
  221.             else if (coord == "a3") {status = byteArray[1][13];}
  222.             else if (coord == "b1") {status = byteArray[3][5]; }
  223.             else if (coord == "b2") {status = byteArray[3][9]; }
  224.             else if (coord == "b3") {status = byteArray[3][13];}
  225.             else if (coord == "c1") {status = byteArray[5][5]; }
  226.             else if (coord == "c2") {status = byteArray[5][9]; }
  227.             else if (coord == "c3") {status = byteArray[5][13];}
  228.             //Convert to char and return (X, O or space)
  229.             return Convert.ToChar(status);
  230.         }
  231.         public static char GetPlayer()
  232.         {
  233.             return Player;
  234.         }
  235.         public static void Initialise(bool reset)
  236.         {
  237.             if(!reset) //when game is started
  238.             {
  239.                 //fill the public 2D (8 x 16) Array of bytes with 0
  240.                 for(int i = 0; i < 8; i++)
  241.                 {
  242.                     byteArray[i] =  new byte[]{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  243.                 }
  244.                 //fill the public dictionary with char keys and byte values (Use single quotes for char!)
  245.                 asciiDict.Add('=', 200); // ╚
  246.                 asciiDict.Add('-', 205); // ═
  247.                 asciiDict.Add('/', 188); // ╝
  248.                 asciiDict.Add('|', 186); // ║
  249.                 asciiDict.Add('~', 201); // ╔
  250.                 asciiDict.Add('%', 187); // ╗
  251.                 asciiDict.Add('+', 206); // ╬
  252.                 asciiDict.Add('^', 202); // ╩
  253.                 asciiDict.Add('`', 203); // ╦
  254.                 asciiDict.Add('$', 204); // ╠
  255.                 asciiDict.Add('*', 185); // ╣
  256.                 asciiDict.Add(' ', 32);
  257.                 asciiDict.Add('A', 65);
  258.                 asciiDict.Add('B', 66);
  259.                 asciiDict.Add('C', 67);
  260.                 asciiDict.Add('1', 49);
  261.                 asciiDict.Add('2', 50);
  262.                 asciiDict.Add('3', 51);
  263.             }
  264.             // reset runs from here
  265.             // create and fill a local 2D (8 x 16) array of chars
  266.             // It is easier to use obscure chars that can be directly typed in and convert them
  267.             char[][] charArray = new char[8][];
  268.             charArray[0] = "   ~---`---`---%".ToCharArray();
  269.             charArray[1] = " A |   |   |   |".ToCharArray(); //X or O will occupy charArray[1][5], [1][9] and [1][13]
  270.             charArray[2] = "   $---+---+---*".ToCharArray();
  271.             charArray[3] = " B |   |   |   |".ToCharArray(); //X or O will occupy charArray[3][5], [3][9] and [3][13]
  272.             charArray[4] = "   $---+---+---*".ToCharArray();
  273.             charArray[5] = " C |   |   |   |".ToCharArray(); //X or O will occupy charArray[5][5], [5][9] and [5][13]
  274.             charArray[6] = "   =---^---^---/".ToCharArray();
  275.             charArray[7] = "     1   2   3  ".ToCharArray();
  276.            
  277.             /*change all the values in byteArray with bytes based on the ASCII code of the characters
  278.              * that should be eventually printed to the console to draw the game grid.
  279.              * substitute the keyboard characters used in the charArray above with the ASCII codes for the old DOS based
  280.              * graphics. Use the Dictionary to look up the byte values from the character key
  281.              * Normal characters (ABC123XO) have their ASCII codes inserted into the array when appropriate
  282.              */
  283.             byte b;
  284.             char c;
  285.             for (int j = 0; j < 8; j++)
  286.             {
  287.                 for (int i = 0; i < charArray[j].Length; i++)
  288.                 {
  289.                     c = charArray[j][i];
  290.                     b = asciiDict[c];
  291.                     byteArray[j][i] = b;
  292.                 }
  293.             }
  294.             gameArray = "         ".ToCharArray(); //initialise or reset to 9 space characters
  295.         }
  296.         // mimics Python's input() function
  297.         public static string Input(string prompt)
  298.         {
  299.             Console.Write(prompt + "_");
  300.             return(Console.ReadLine());
  301.         }
  302.         public static void PrintGame()
  303.         {
  304.             for (int i = 0; i < 8; i++)
  305.             {
  306.                 Console.WriteLine(Decode(byteArray[i]));
  307.             }
  308.         }
  309.         public static void SetGrid(string coord)
  310.         {
  311.             // status = X, O
  312.             if (coord == "a1")
  313.             {
  314.                 byteArray[1][5] = Convert.ToByte(Player);
  315.                 gameArray[0] =  Player;
  316.             }
  317.             else if (coord == "a2")
  318.             {
  319.                 byteArray[1][9] = Convert.ToByte(Player);
  320.                 gameArray[1] =  Player;
  321.             }
  322.             else if (coord == "a3")
  323.             {
  324.                 byteArray[1][13] = Convert.ToByte(Player);
  325.                 gameArray[2] =  Player;
  326.             }
  327.             else if (coord == "b1")
  328.             {
  329.                 byteArray[3][5] = Convert.ToByte(Player);
  330.                 gameArray[3] =  Player;
  331.             }
  332.             else if (coord == "b2")
  333.             {
  334.                 byteArray[3][9] = Convert.ToByte(Player);
  335.                 gameArray[4] =  Player;
  336.             }
  337.             else if (coord == "b3")
  338.             {
  339.                 byteArray[3][13] = Convert.ToByte(Player);
  340.                 gameArray[5] =  Player;
  341.             }
  342.             else if (coord == "c1")
  343.             {
  344.                 byteArray[5][5] = Convert.ToByte(Player);
  345.                 gameArray[6] =  Player;
  346.             }
  347.             else if (coord == "c2")
  348.             {
  349.                 byteArray[5][9] = Convert.ToByte(Player);
  350.                 gameArray[7] =  Player;
  351.             }
  352.             else if (coord == "c3")
  353.             {
  354.                 byteArray[5][13] = Convert.ToByte(Player);
  355.                 gameArray[8] =  Player;
  356.             }
  357.         }
  358.         public static void switchPlayer()
  359.         {
  360.             if (Player == 'X')
  361.             {
  362.                 Player = 'O';
  363.             }
  364.             else
  365.             {
  366.                 Player = 'X';
  367.             }
  368.         }
  369.     }
  370. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement