-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserMenu.java
88 lines (72 loc) · 1.83 KB
/
UserMenu.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package week6;
import java.util.*;
public class UserMenu {
private static PixelGrid pg;
private static int counter = 0;
public static void printMenu() {
System.out.println("Please make a selection");
System.out.println("B: remove bluest column");
System.out.println("R: remove randomly selected column");
System.out.println("U: undo most recent deletion");
System.out.println("Q: Quit");
}
public static void printResponse(String selection, PixelGrid pg) {
switch (selection) {
case "B":
int col = pg.findBluest();
pg.changeColor(col, true);
counter++;
pg.save(counter, false);
pg.remove(col);
counter++;
pg.save(counter, false);
System.out.println("blue column saved and removed");
break;
case "R":
int colRemove = pg.random();
pg.changeColor(colRemove, false);
counter++;
pg.save(counter, false);
pg.remove(colRemove);
counter++;
pg.save(counter, false);
System.out.println("random column saved and removed");
break;
case "U":
pg.undoDelete();
counter++;
pg.save(counter, false);
System.out.println("undid last deletion");
break;
case "Q":
pg.save(counter, true);
System.out.println("Thanks for playing.");
break;
default:
System.out.println("That is not a valid option. Please select an uppercase letter.");
break;
}
}
public static void main(String[] args) {
boolean shouldQuit = false;
String filename = "images/ponyo.png";
Scanner scan = new Scanner(System.in);
String choice = "";
while (!shouldQuit) {
printMenu();
pg = new PixelGrid(filename);
try {
choice = scan.next();
}
catch (InputMismatchException e) {
System.out.println("Input should be an uppercase letter");
choice = "Q";
}
printResponse(choice, pg);
if (choice.equals("Q")) {
shouldQuit = true;
}
}
scan.close();
}
}