Compare commits

...

3 Commits

Author SHA1 Message Date
leonmcfly
f67726a7cf SnakeBot fertig 2024-02-07 12:48:48 +01:00
leonmcfly
af06d99bbe SnakeBot fertig 2024-02-06 20:49:31 +01:00
leonmcfly
4332f7d10a SnakeBot fertig 2024-02-06 19:58:08 +01:00
4 changed files with 82 additions and 28 deletions

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,30 @@
package Praktikum05;
import java.util.Scanner;
public class RumbleBot extends Bot{
protected RumbleBot(String[] args) {
super(args);
}
private Scanner input = new Scanner(System.in);
@Override
protected char nextMove(View view) throws Exception {
char roverKennung = view.data.charAt(40);
boolean exit = false;
while (!exit) {
input.close();
}
throw new Exception("Beendet");
}
public static void main(String args[]){
Bot bot = new RumbleBot(args);
bot.run();
}
}

View File

@ -13,20 +13,25 @@ public class SnakeBot extends Bot {
public int counter = 0;
private Random leftOrRight = new Random();
@Override
protected char nextMove(View view) throws Exception{
protected char nextMove(View view) throws Exception {
boolean exit = false;
while(!exit){
System.out.println(counter);
while (!exit) {
int rockPosition = findNextRock(view);
if(rockPosition != -1){
testForWagon(view);
return determineNextStep(rockPosition);
}else{
testForWagon(view);
if (rockPosition != -1) {
System.out.println(counter + "| RockPosition: " + rockPosition);
return testForWagon(view, rockPosition);
} else {
++counter;
if (counter < 8)
return '^';
else{
return testForWagon(view, rockPosition);
else {
if (view.data.charAt(10) == '*' || view.data.charAt(11) == '*') {
counter = 0;
return '>';
} else if (view.data.charAt(13) == '*' || view.data.charAt(14) == '*') {
counter = 0;
return '<';
}else{
if(leftOrRight.nextBoolean() == true) {
counter = 0;
return '<';
@ -37,35 +42,54 @@ public class SnakeBot extends Bot {
}
}
}
throw new Exception("Beendet");
}
throw new Exception("Quit");
}
private char determineNextStep(int rockPosition) {
private char determineNextStep(int rockPosition,View view) {
if (rockPosition < 10)
return '^';
else if(rockPosition == 13 || rockPosition == 14 || rockPosition == 18 || rockPosition == 19 || rockPosition == 23 || rockPosition == 24)
else if(rockPosition == 13 || rockPosition == 14 || rockPosition == 18 || rockPosition == 19 || rockPosition == 23 || rockPosition == 24 && !(view.data.charAt(13) != '*' && view.data.charAt(14) != '*'))
return '>';
else if(rockPosition == 10 || rockPosition == 11 || rockPosition == 15 || rockPosition == 16 || rockPosition == 20 || rockPosition == 21)
else if((rockPosition == 10 || rockPosition == 11 || rockPosition == 15 || rockPosition == 16 || rockPosition == 20 || rockPosition == 21) && !(view.data.charAt(10) != '*' && view.data.charAt(11) != '*'))
return '<';
else return 0;
else return '^';
}
private int findNextRock(View view) {
return view.data.indexOf('@');
}
// test funktioniert nicht muss angepasst werden vielleicht als boolean oder so
private char testForWagon(View view){
private char testForWagon(View view, int rP){
char move = ' ';
if (view.data.charAt(7) == '*'){
if (view.data.charAt(11) != '*') {
return '<';
}else {
if (view.data.charAt(13) == '*') {
return 'V';
} else {
if(view.data.charAt(11) == '*' || view.data.charAt(13) == '*'){
if(view.data.charAt(11) == '*' || view.data.charAt(10) == '*'){
return '>';
}else if(view.data.charAt(13) == '*' || view.data.charAt(14) == '*'){
return '<';
}
}else if(view.data.charAt(11) != '*' && view.data.charAt(13) != '*'){
if(view.data.charAt(8) == '*' || view.data.charAt(9) == '*'){
if(view.data.charAt(10) == '*'){
return '>';
}else if(view.data.charAt(14) == '*'){
return '<';
}
}else if(view.data.charAt(5) == '+' || view.data.charAt(6) == '*'){
if(view.data.charAt(10) == '*'){
return '>';
}else if(view.data.charAt(14) == '*'){
return '<';
}
}
}else return 0;
}
}else{
move = determineNextStep(rP, view);
}
System.out.println(move);
return move;
}
public static void main(String args[]){