add nextMove method

This commit is contained in:
Alina Ehrensberger 2023-12-14 16:34:39 +01:00
parent d61cff8eeb
commit 23d97635ad
4 changed files with 9 additions and 8 deletions

4
.idea/BotsAI.iml generated
View File

@ -2,7 +2,9 @@
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>

2
.idea/misc.xml generated
View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="17" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_20" project-jdk-name="17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -1,3 +1,4 @@
public class Main {
}

View File

@ -1,6 +1,7 @@
import java.util.Scanner;
public class ManualBot extends Bot{
public static void main(String[] args) {
Bot manualBot = new ManualBot(args);
manualBot.run();
}
@ -13,22 +14,19 @@ public class ManualBot extends Bot{
switch(scanner.nextLine()){
case "w":
return '^' ;
break;
case "s":
return 'V' ;
break;
case "a":
return '<' ;
break;
case "d":
return '>' ;
break;
case "q":
throw new Exception;
break;
throw new Exception();
default:
break;
}
return 0;
}