Advertisement
luness02

Untitled

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