minor adjustments to checkBarriers(), now properly checks for obstacles

This commit is contained in:
Niklas Katzer 2024-01-18 15:48:23 +01:00
parent d5abecb35d
commit 2dc2bc8a88

View File

@ -24,12 +24,10 @@ public class RumbleBot extends Bot
protected char nextMove(View view)
{
checkBarriers(view);
return walk();
}
//@TODO: add walk() logic
private char walk()
{
if (inDanger(view))
{
//run away
}
if(moves.isEmpty())
{
moves += ' ';
@ -66,11 +64,11 @@ public class RumbleBot extends Bot
int rightIndex = centerIndex + 1;
//these need to be changed to account for obstacles etc.
frontIsBlocked = view.data.charAt(frontIndex) == '*';
backIsBlocked = view.data.charAt(backIndex) == '*';
leftIsBlocked = view.data.charAt(leftIndex) == '*';
rightIsBlocked = view.data.charAt(rightIndex) == '*';
frontIsBlocked = view.data.charAt(frontIndex) == '~' || view.data.charAt(frontIndex) == '#' || view.data.charAt(frontIndex) == 'X';
backIsBlocked = view.data.charAt(backIndex) == '~' || view.data.charAt(frontIndex) == '#' || view.data.charAt(frontIndex) == 'X';
leftIsBlocked = view.data.charAt(leftIndex) == '~' || view.data.charAt(frontIndex) == '#' || view.data.charAt(frontIndex) == 'X';
rightIsBlocked = view.data.charAt(rightIndex) == '~' || view.data.charAt(frontIndex) == '#' || view.data.charAt(frontIndex) == 'X';
trapped = frontIsBlocked && backIsBlocked && leftIsBlocked && rightIsBlocked;
}
}