Factory hat jetzt einen Switch womit der User arbeiten kann
parent
47375ba647
commit
98f688fa9d
|
@ -1,7 +1,50 @@
|
|||
package ui;
|
||||
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Factory {
|
||||
Scanner sc = new Scanner(System.in);
|
||||
|
||||
public Factory() {
|
||||
hauptmenü();
|
||||
}
|
||||
|
||||
|
||||
private void hauptmenü() {
|
||||
|
||||
mainloop:
|
||||
while (true) {
|
||||
System.out.println();
|
||||
System.out.println("========");
|
||||
System.out.println("Factory Hauptmenü");
|
||||
System.out.println("1 -> Roboter bauen");
|
||||
System.out.println("9 -> Beenden");
|
||||
System.out.println();
|
||||
|
||||
System.out.println("> ");
|
||||
int input = Integer.parseInt(sc.nextLine());
|
||||
System.out.println();
|
||||
|
||||
try {
|
||||
switch(input) {
|
||||
case 1: roboterBauen();
|
||||
case 9: break mainloop;
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
|
||||
}
|
||||
System.out.println();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
private void roboterBauen() {
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue