これを行うにはさまざまな方法があることは知っていますが、端末の操作がかなり上手になり、ユーザー インターフェイスとデスクトップ アプリの作成に進みたいと考えています。非常に安っぽくて厄介な「数字ゲーム」を書いたので、それをボタン付きのアプレットで実行したいと思います。
public static void gameStart() {
System.out.println("Welcome to the Game of Awesome V1.2");
System.out.println("-------------------------------------");
spin();
}
public static void spin() {
int spinNum = (int)(10*Math.random());
Scanner input = new Scanner(System.in);
Scanner input2 = new Scanner(System.in);
System.out.println("type a number between 1 and 10:");
int guessNum = input.nextInt();
if(guessNum > 10) {
System.out.println(guessNum + " is greater than 10 you fool!");
spin();
}else if(guessNum < 1) {
System.out.println(guessNum + " is less than 1 you fool!");
spin();
}else {
System.out.println("\nSweet, looks like you chose [" + guessNum + "], good luck...");
System.out.println("\ntype \"s\" to spin and \"quit\" to, quit...");
String run = input2.nextLine();
switch (run.toLowerCase()) {
case "s":
System.out.println("\nyou spun [" + spinNum + "] and guessed [" + guessNum + "]!");
if(guessNum == spinNum) {
win();
askPlay();
}else {
lose();
askPlay();
}
break;
case "quit":
System.out.println("See ya later!");
System.out.println();
System.exit(0);
break;
default:
System.out.println("shit, you broke it! Luckily, I can fix this.");
askPlay();
System.out.println();
break;
}
}
}
public static void askPlay() {
Scanner input = new Scanner(System.in);
System.out.println("\nWanna play again? (Type \"yes\" or \"no\")");
String decideSpin = input.nextLine();
switch (decideSpin.toLowerCase()) {
case "yes":
spin();
break;
case "no":
System.out.println("\nI know it's a crappy game, thanks for playing though!");
System.out.println();
System.exit(0);
break;
default:
System.out.println("\nI'm sorry,\nI was made by a lazy "
+ "programmer and can only understand \"yes\" or \"no\"..");
askPlay();
break;
}
}
public static void win() {
System.out.println("\nWINNER: you won this insanley stupid game, of awesome! Be proud, winner. (:");
}
public static void lose() {
System.out.println("\nLOOOOOSSSSSEEEERRRR: yep, you stand with the majority with this loss.");
}
どうやってやるの?