RumbleBot derived from SnakeBot
This commit is contained in:
parent
93347f555f
commit
c7a576dfab
4
rumbletest.sh
Executable file
4
rumbletest.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
while true
|
||||||
|
do
|
||||||
|
docker run --rm -p 63187:63187 mediaeng/bots rumble
|
||||||
|
done
|
@ -1,7 +1,11 @@
|
|||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.Queue;
|
||||||
|
|
||||||
public class RumbleBot extends Bot {
|
public class RumbleBot extends Bot {
|
||||||
boolean offByOne = true;
|
protected final static String obstacles = "~#X";
|
||||||
int currentStepCount = 0;
|
protected boolean offByOne = true;
|
||||||
int steps = 0;
|
protected int currentStepCount = 0;
|
||||||
|
protected int steps = 0;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Bot bot = new RumbleBot(args);
|
Bot bot = new RumbleBot(args);
|
||||||
@ -13,49 +17,107 @@ public class RumbleBot extends Bot {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected char nextMove(View view) throws Exception {
|
protected char nextMove(View view) {
|
||||||
String data = view.data;
|
|
||||||
int width = view.width;
|
|
||||||
int height = data.length() / view.width;
|
|
||||||
|
|
||||||
data = data.replace('^', '*');
|
|
||||||
data = data.replace('<', '*');
|
|
||||||
data = data.replace('>', '*');
|
|
||||||
data = data.replace('V', '*');
|
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
int size = view.width;
|
||||||
|
String data = view.data
|
||||||
|
.replace('^', '*')
|
||||||
|
.replace('<', '*')
|
||||||
|
.replace('>', '*')
|
||||||
|
.replace('V', '*');
|
||||||
|
char[][] grid = dataToGrid(data, size);
|
||||||
|
|
||||||
if (data.contains("*")) {
|
if (data.contains("*")) {
|
||||||
int index = data.indexOf('*');
|
if (isInLineOfSight(grid)) {
|
||||||
if (index < width * height / 2 && index % width == 4) {
|
|
||||||
return 'f';
|
return 'f';
|
||||||
} else if (index < width * height / 2 && !(index > width * height / 2 + 1)) {
|
} else {
|
||||||
return safeMove(data);
|
return breadthFirstSearch(grid);
|
||||||
} else if (index % 5 < 2) {
|
|
||||||
return '<';
|
|
||||||
} else if (index % 5 > 2) {
|
|
||||||
return '>';
|
|
||||||
}
|
}
|
||||||
return ' ';
|
} else {
|
||||||
} else if (steps == 0) {
|
return walkAround(grid);
|
||||||
currentStepCount += 1;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected char[][] dataToGrid(String data, int size) {
|
||||||
|
char[][] grid = new char[size][size];
|
||||||
|
for (int i = 0; i < data.length(); i++) {
|
||||||
|
grid[i % size][i / size] = data.charAt(i);
|
||||||
|
}
|
||||||
|
return grid;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean isInLineOfSight(char[][] grid) {
|
||||||
|
int size = grid.length;
|
||||||
|
for (int y = size / 2; y > 0; y--) {
|
||||||
|
if (obstacles.contains("" + grid[size / 2][y]))
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (grid[size / 2][y] == '*') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected char walkAround(char[][] grid) {
|
||||||
|
if (steps == 0) {
|
||||||
|
currentStepCount++;
|
||||||
if (offByOne) {
|
if (offByOne) {
|
||||||
currentStepCount += 1;
|
currentStepCount++;
|
||||||
}
|
}
|
||||||
offByOne = !offByOne;
|
offByOne = !offByOne;
|
||||||
steps = currentStepCount;
|
steps = currentStepCount;
|
||||||
return '>';
|
return '>';
|
||||||
} else {
|
} else {
|
||||||
steps -= 1;
|
steps--;
|
||||||
return safeMove(data);
|
return safeMove(grid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected char safeMove(String data) {
|
protected char safeMove(char[][] grid) {
|
||||||
if ("~#X".contains("" + data.charAt(35))) {
|
int size = grid.length;
|
||||||
currentStepCount = 2;
|
if (obstacles.contains("" + grid[size / 2][size / 2 - 1])) {
|
||||||
return '>';
|
return '<';
|
||||||
} else {
|
} else {
|
||||||
return '^';
|
return '^';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected char breadthFirstSearch(char[][] grid) {
|
||||||
|
int size = grid.length;
|
||||||
|
int start = size / 2;
|
||||||
|
|
||||||
|
boolean[][] visited = new boolean[size][size];
|
||||||
|
Queue<Move> queue = new LinkedList<>();
|
||||||
|
|
||||||
|
int[][] directions = {{0, -1}, {0, 1}, {1, 0}, {-1, 0}};
|
||||||
|
char[] commands = {'^', '>', '>', '<'};
|
||||||
|
for (int i = 0; i < 4; i++) {
|
||||||
|
queue.add(new Move(start + directions[i][0], start + directions[i][1], commands[i]));
|
||||||
|
}
|
||||||
|
|
||||||
|
queue.add(new Move(start, start - 1, '^'));
|
||||||
|
queue.add(new Move(start, start + 1, '>'));
|
||||||
|
queue.add(new Move(start + 1, start, '>'));
|
||||||
|
queue.add(new Move(start - 1, start, '<'));
|
||||||
|
|
||||||
|
while (!queue.isEmpty()) {
|
||||||
|
Move move = queue.poll();
|
||||||
|
if (move.x < 0 || move.x >= size || move.y < 0 || move.y >= size || visited[move.x][move.y]) continue;
|
||||||
|
visited[move.x][move.y] = true;
|
||||||
|
if (obstacles.contains("" + grid[move.x][move.y])) continue;
|
||||||
|
if (grid[move.x][move.y] == '*') return move.direction;
|
||||||
|
|
||||||
|
for (int[] direction : directions) {
|
||||||
|
queue.add(new Move(move.x + direction[0], move.y + direction[1], move.direction));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
System.err.println("No path found");
|
||||||
|
return safeMove(grid);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected record Move(int x, int y, char direction) {
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user