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"> <module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true"> <component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output /> <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="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>

2
.idea/misc.xml generated
View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <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" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>
</project> </project>

View File

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

View File

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