using IdaStar; string[] labyrinthIN = System.IO.File.ReadAllLines(@"./labyrinth.txt"); System.Console.WriteLine("The input labyrinth: "); foreach (string line in labyrinthIN) { FormattedLabRow(line); Console.WriteLine(); } var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList()); int step = 0; bool done = false; ConsoleColor border = ConsoleColor.Magenta; algoBoard.AlgorithmStep += (_) => { Console.Clear(); step++; if(done){ System.Console.WriteLine("The solved labyrinth is:"); }else if(step/2 == 0) { System.Console.WriteLine("Computing [· ]"); }else { System.Console.WriteLine("Computing [ ·]"); } //top border Console.BackgroundColor = border; for (var i=0; i CellStateUtil.ToInput(state)); var str = string.Join("", charlist); //left border Console.BackgroundColor = border; Console.Write(" "); Console.ResetColor(); //labyrinth line FormattedLabRow(str); //right border Console.BackgroundColor = border; Console.Write(" "); Console.ResetColor(); Console.WriteLine(); } //bottom border Console.BackgroundColor = border; for (var i=0; i"); break; } case 'F': { Console.BackgroundColor = ConsoleColor.Red; Console.Write("[ ]"); break; } case 'p': { Console.BackgroundColor = ConsoleColor.Blue; Console.Write(" · "); break; } default: break; } } Console.ResetColor(); }