Fixed Menu
This commit is contained in:
parent
7c7c1ce9f9
commit
9436508c60
@ -1,6 +1,8 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
|
||||||
public class Menu {
|
public class Menu {
|
||||||
public static void main(String[] args) throws IOException {
|
public static void main(String[] args) throws IOException {
|
||||||
@ -9,8 +11,11 @@ public class Menu {
|
|||||||
|
|
||||||
Tester tester = new Tester();
|
Tester tester = new Tester();
|
||||||
|
|
||||||
String in = System.console().readLine();
|
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
|
||||||
String[] input = in.split(" ");
|
|
||||||
|
boolean isExiting = false;
|
||||||
|
while(!isExiting) {
|
||||||
|
String[] input = br.readLine().split(" ");
|
||||||
switch (input[0]) {
|
switch (input[0]) {
|
||||||
case "loadMap":
|
case "loadMap":
|
||||||
tester.loadMap(input[1]);
|
tester.loadMap(input[1]);
|
||||||
@ -36,6 +41,10 @@ public class Menu {
|
|||||||
case "listStargates":
|
case "listStargates":
|
||||||
tester.listStargates();
|
tester.listStargates();
|
||||||
break;
|
break;
|
||||||
|
case "exit":
|
||||||
|
isExiting = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user