mirror of
https://github.com/dancojocaru2000/ai-project-idastar.git
synced 2025-02-23 08:49:35 +02:00
commit
2c74cde949
3 changed files with 110 additions and 63 deletions
156
Program.cs
156
Program.cs
|
@ -1,71 +1,43 @@
|
||||||
using IdaStar;
|
using IdaStar;
|
||||||
|
|
||||||
string[] labyrinthIN = System.IO.File.ReadAllLines(@"./labyrinth.txt");
|
string[] labyrinthIN = File.ReadAllLines(@"./labyrinth.txt");
|
||||||
|
string[] labyrinth = FormatLabyrinth(labyrinthIN);
|
||||||
|
|
||||||
|
Console.OutputEncoding = System.Text.Encoding.UTF8;
|
||||||
|
|
||||||
System.Console.WriteLine("The input labyrinth: ");
|
Console.WriteLine("The input labyrinth: ");
|
||||||
foreach (string line in labyrinthIN)
|
foreach (string line in labyrinthIN)
|
||||||
{
|
{
|
||||||
FormattedLabRow(line);
|
FormattedLabRow(line);
|
||||||
Console.WriteLine();
|
Console.WriteLine();
|
||||||
}
|
}
|
||||||
|
|
||||||
var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList());
|
Console.WriteLine("The formatted labyrinth: ");
|
||||||
|
foreach (string line in labyrinth)
|
||||||
|
{
|
||||||
|
FormattedLabRow(line);
|
||||||
|
Console.WriteLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
var algoBoard = new IdaStar.WorkingBoard(labyrinth.Select((row) => row.ToList()).ToList());
|
||||||
int step = 0;
|
int step = 0;
|
||||||
bool done = false;
|
|
||||||
ConsoleColor border = ConsoleColor.Magenta;
|
ConsoleColor border = ConsoleColor.Magenta;
|
||||||
algoBoard.AlgorithmStep += (_, threshold) => {
|
bool printSteps = false;
|
||||||
Console.Clear();
|
|
||||||
step++;
|
|
||||||
if(done){
|
|
||||||
System.Console.WriteLine("The solved labyrinth is:");
|
|
||||||
}else if(step%2 == 0) {
|
|
||||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [• ]");
|
|
||||||
}else {
|
|
||||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [ •]");
|
|
||||||
}
|
|
||||||
|
|
||||||
//top border
|
Console.WriteLine();
|
||||||
Console.BackgroundColor = border;
|
Console.WriteLine("Show each step? (Y/N) ");
|
||||||
for (var i=0; i< algoBoard.Board[0].Count + 2; i++){
|
if(Console.ReadLine()?.Trim() == "Y") {
|
||||||
Console.Write(" ");
|
printSteps = true;
|
||||||
}
|
}
|
||||||
Console.ResetColor();
|
|
||||||
Console.WriteLine();
|
|
||||||
|
|
||||||
foreach (var line in algoBoard.Board)
|
if(printSteps) {
|
||||||
{
|
algoBoard.AlgorithmStep += (_, threshold) => {
|
||||||
var charlist = line.Select((state) => CellStateUtil.ToInput(state));
|
PrintBoard(threshold, false);
|
||||||
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< algoBoard.Board[0].Count + 2; i++){
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
Console.ResetColor();
|
|
||||||
Console.WriteLine();
|
|
||||||
Thread.Sleep(200);
|
|
||||||
// Console.ReadLine();
|
|
||||||
};
|
|
||||||
|
|
||||||
algoBoard.RunIdaStar();
|
algoBoard.RunIdaStar();
|
||||||
|
PrintBoard(0, true);
|
||||||
|
|
||||||
static void FormattedLabRow(string line) {
|
static void FormattedLabRow(string line) {
|
||||||
char[] characters = line.ToCharArray();
|
char[] characters = line.ToCharArray();
|
||||||
|
@ -106,3 +78,83 @@ static void FormattedLabRow(string line) {
|
||||||
}
|
}
|
||||||
Console.ResetColor();
|
Console.ResetColor();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string[] FormatLabyrinth(string[] labIN) {
|
||||||
|
var maxW = 0;
|
||||||
|
List<string> lab = new List<string>();
|
||||||
|
foreach (string line in labIN)
|
||||||
|
{
|
||||||
|
if(maxW < line.Length) {
|
||||||
|
maxW = line.Length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (string line in labIN)
|
||||||
|
{
|
||||||
|
if(maxW > line.Length) {
|
||||||
|
var dif = maxW - line.Length;
|
||||||
|
string fLine = line;
|
||||||
|
while (dif > 0) {
|
||||||
|
fLine = fLine+ "#";
|
||||||
|
dif--;
|
||||||
|
}
|
||||||
|
lab.Add(fLine);
|
||||||
|
}else {
|
||||||
|
lab.Add(line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
string[] FormattedLabyrinth = lab.ToArray();
|
||||||
|
return FormattedLabyrinth;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PrintBoard(int threshold, bool done){
|
||||||
|
Console.Clear();
|
||||||
|
step++;
|
||||||
|
if(done){
|
||||||
|
Console.WriteLine("The solved labyrinth is:");
|
||||||
|
}else if(step%2 == 0) {
|
||||||
|
Console.WriteLine($"Computing (threshold: {threshold}) [• ]");
|
||||||
|
}else {
|
||||||
|
Console.WriteLine($"Computing (threshold: {threshold}) [ •]");
|
||||||
|
}
|
||||||
|
|
||||||
|
//top border
|
||||||
|
Console.BackgroundColor = border;
|
||||||
|
for (var i=0; i< algoBoard.Board[0].Count + 2; i++){
|
||||||
|
Console.Write(" ");
|
||||||
|
}
|
||||||
|
Console.ResetColor();
|
||||||
|
Console.WriteLine();
|
||||||
|
|
||||||
|
foreach (var line in algoBoard.Board)
|
||||||
|
{
|
||||||
|
var charlist = line.Select((state) => 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< algoBoard.Board[0].Count + 2; i++){
|
||||||
|
Console.Write(" ");
|
||||||
|
}
|
||||||
|
Console.ResetColor();
|
||||||
|
Console.WriteLine();
|
||||||
|
Thread.Sleep(200);
|
||||||
|
// Console.ReadLine();
|
||||||
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
##########
|
#### ###
|
||||||
#S # # F
|
#S #
|
||||||
### # ## #
|
##### ##
|
||||||
# # #
|
|
||||||
## # #
|
## #### #
|
||||||
# # ### #
|
# # #
|
||||||
##########
|
##F####
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
###S#
|
|
||||||
# p#
|
|
||||||
##pp#
|
|
||||||
#pp##
|
|
||||||
#F###
|
|
Loading…
Add table
Reference in a new issue