Advertisement
lunesss

Untitled

Mar 20th, 2023 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 7.63 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8.  
  9. namespace N_Puzzle
  10. {
  11.     public class Board
  12.     {
  13.         public Tile[,] Tiles { get; private set; }
  14.         private int Size { get; set; } // represent a perfect square
  15.  
  16.  
  17.  
  18.         public void StartGame(int size) //changed - added parameter
  19.         {
  20.             int countSteps = 0;
  21.  
  22.             //Console.Write("Enter size of Board: ");
  23.             //Size = Convert.ToInt32(Console.ReadLine()); //Size -stores the size of user
  24.             Size = size; //changed
  25.             Tiles = new Tile[Size, Size];
  26.  
  27.  
  28.             FillTiles();
  29.  
  30.             ShuffleTiles();
  31.  
  32.             if (IsSolvable() == true)
  33.             {
  34.                 printBoard();
  35.             }
  36.  
  37.             else
  38.             {
  39.                 StartGame(size); //changed added argument
  40.                 return;
  41.             }
  42.  
  43.             countSteps = SwapTiles();
  44.  
  45.             Console.WriteLine($"It took {countSteps} moves to solve the puzzle");
  46.  
  47.  
  48.         }
  49.  
  50.         private void FillTiles()
  51.         {
  52.  
  53.             Tile k = new Tile(0);
  54.             int temp = 0;
  55.  
  56.             for (int i = 0; i < Size; i++) //row
  57.             {
  58.                 for (int j = 0; j < Size; j++) //column
  59.                 {
  60.                     Tiles[i, j] = k;
  61.                     temp++;
  62.  
  63.                     k = new Tile(temp);
  64.  
  65.                 }
  66.  
  67.  
  68.  
  69.             }
  70.         }
  71.  
  72.         private void ShuffleTiles()
  73.         {
  74.             Random r = new Random();
  75.             int n = Tiles.GetLength(1);
  76.  
  77.  
  78.             for (int i = Tiles.Length - 1; i > 0; i--)
  79.             {
  80.  
  81.                 int i0 = i / n;
  82.                 int i1 = i % n;
  83.                 int j = r.Next(i + 1);
  84.                 int j0 = j / n;
  85.                 int j1 = j % n;
  86.                 Tile temp = Tiles[i0, i1];
  87.                 Tiles[i0, i1] = Tiles[j0, j1];
  88.                 Tiles[j0, j1] = temp;
  89.  
  90.  
  91.  
  92.  
  93.             }
  94.  
  95.  
  96.         }
  97.  
  98.         private int GetInvCount()
  99.         {
  100.  
  101.  
  102.             //List<int> flattedList = new List<int> { 1, 20, 6, 4, 5 };
  103.             var flattedList = Tiles.OfType<Tile>().ToList();
  104.             int inv_count = 0;
  105.  
  106.             for (int i = 0; i < flattedList.Count - 1; i++)
  107.             {
  108.                 for (int j = i + 1; j < flattedList.Count; j++)
  109.                 {
  110.                     if ((flattedList[i].value > 0 && flattedList[j].value > 0 && flattedList[i].value > flattedList[j].value))
  111.                     {
  112.                         inv_count++;
  113.                     }
  114.                 }
  115.             }
  116.             return inv_count;
  117.  
  118.  
  119.         }
  120.  
  121.         private int GetRowNumberBelow(int EmptyTilePosition)
  122.         {
  123.             var row = EmptyTilePosition / Size;
  124.             return Size - row;
  125.         }
  126.  
  127.         private bool IsSolvable()
  128.         {
  129.             int numberOfInversions = GetInvCount();
  130.  
  131.             int pos = GetRowNumberBelow(IndexZeroPos());
  132.  
  133.             if (Size % 2 != 0)
  134.             {
  135.                 return (numberOfInversions % 2 == 0);
  136.             }
  137.  
  138.  
  139.  
  140.  
  141.             else if (pos % 2 != 0)
  142.             {
  143.                 return (numberOfInversions % 2 == 0);
  144.             }
  145.  
  146.             else
  147.             {
  148.                 return (numberOfInversions % 2 != 0);
  149.             }
  150.  
  151.         }
  152.  
  153.  
  154.  
  155.         private void printBoard()
  156.         {
  157.            
  158.             int len = (Size * Size).ToString().Length; //calculates the length of the string representation of that maximum value, saves it in "len"
  159.  
  160.            
  161.             for (int i = 0; i < Size; i++)
  162.             {
  163.  
  164.                 for (int j = 0; j < Size; j++)
  165.                 {
  166.  
  167.  
  168.  
  169.                     if (Tiles[i, j].value == 0)
  170.  
  171.                     {
  172.  
  173.                         Console.Write($"{"",3} ");
  174.  
  175.  
  176.                     }
  177.                     else
  178.                     {
  179.                         Console.BackgroundColor = Tiles[i, j].color;
  180.  
  181.                         Console.Write(Tiles[i, j].value.ToString().PadRight(len) + " | ");
  182.  
  183.                         Console.ResetColor();
  184.  
  185.                     }
  186.  
  187.  
  188.  
  189.  
  190.  
  191.                 }
  192.                 Console.WriteLine();
  193.  
  194.             }
  195.  
  196.  
  197.         }
  198.         private bool ArrSorted()
  199.         {
  200.             var flattedList = Tiles.OfType<Tile>().ToList();
  201.             var result = flattedList.OrderByDescending(x => x.value != 0).ThenBy(x => x.value).SequenceEqual(flattedList);
  202.  
  203.             return result;
  204.         }
  205.  
  206.  
  207.  
  208.         private int IndexZeroPos()
  209.         {
  210.             var flattedlist = Tiles.OfType<Tile>().ToList();
  211.  
  212.             int index = flattedlist.FindIndex(x => x.value == 0);
  213.  
  214.             return index;
  215.  
  216.         }
  217.  
  218.         private int SwapTiles()
  219.         {
  220.             int count = 0;
  221.             int y = IndexZeroPos() % Size;
  222.             int x = IndexZeroPos() / Size;
  223.             var IsSorted = ArrSorted();
  224.  
  225.  
  226.  
  227.             while (!IsSorted)
  228.             {
  229.                 ConsoleKeyInfo info = Console.ReadKey();
  230.                 Console.WriteLine();
  231.  
  232.  
  233.                 if (info.Key == ConsoleKey.RightArrow)
  234.                 {
  235.                     if (y >= (Size - 1))
  236.                     {
  237.                         continue;
  238.                     }
  239.  
  240.  
  241.  
  242.                     Tiles[x, y] = Tiles[x, y + 1];
  243.                     Tiles[x, (y + 1)] = new Tile(0);
  244.                     count++;
  245.  
  246.                     y += 1;
  247.                     IsSorted = ArrSorted();
  248.  
  249.                     Console.Clear();
  250.  
  251.                     printBoard();
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.                 }
  259.  
  260.                 if (info.Key == ConsoleKey.LeftArrow)
  261.                 {
  262.                     if (y <= 0)
  263.                     {
  264.                         continue;
  265.                     }
  266.                     Tile temp = Tiles[x, y];
  267.                     Tiles[x, y] = Tiles[x, (y - 1)];
  268.                     Tiles[x, (y - 1)] = temp;
  269.                     count++;
  270.  
  271.                     if (IsSorted != ArrSorted())
  272.                     {
  273.                         break;
  274.                     }
  275.                     else
  276.                     {
  277.                         y = IndexZeroPos() % Size;
  278.                         x = IndexZeroPos() / Size;
  279.                         printBoard();
  280.                     }
  281.                 }
  282.  
  283.                 if (info.Key == ConsoleKey.UpArrow)
  284.                 {
  285.                     if (x <= 0)
  286.                     {
  287.                         continue;
  288.                     }
  289.  
  290.                     Tile temp = Tiles[x, y];
  291.                     Tiles[x, y] = Tiles[(x - 1), y];
  292.                     Tiles[(x - 1), y] = temp;
  293.                     count++;
  294.  
  295.                     if (IsSorted != ArrSorted())
  296.                     {
  297.                         break;
  298.                     }
  299.                     else
  300.                     {
  301.                         y = IndexZeroPos() % Size;
  302.                         x = IndexZeroPos() / Size;
  303.                         printBoard();
  304.                     }
  305.                 }
  306.  
  307.                 if (info.Key == ConsoleKey.DownArrow)
  308.                 {
  309.                     if (x >= (Size - 1))
  310.                     {
  311.                         continue;
  312.                     }
  313.  
  314.  
  315.  
  316.  
  317.  
  318.                     Tile temp = Tiles[x, y];
  319.                     Tiles[x, y] = Tiles[x + 1, y];
  320.                     Tiles[x + 1, y] = new Tile(0);
  321.                     count++;
  322.  
  323.  
  324.                     x += 1;
  325.  
  326.                     IsSorted = ArrSorted();
  327.                     printBoard();
  328.  
  329.                 }
  330.  
  331.             }
  332.  
  333.  
  334.             return count++;
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.         }
  342.  
  343.  
  344.  
  345.  
  346.     }
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement