-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScoreBoard.java
49 lines (44 loc) · 1.33 KB
/
ScoreBoard.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
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
public class ScoreBoard {
float width = 270, height, xPos = 10, yPos = 20;
String highScoreText = "";
public void display(App main) {
main.fill(255, 255, 255);
main.textSize(18);
main.text("Score: " + main.score, 10, main.height - 10);
main.text("Press H to toggle sort", main.width - 180, main.height - 10);
main.text("High scores: ", xPos, yPos);
highScoreText = "";
for (String nameAndScore : main.highScoresList) {
highScoreText += nameAndScore;
highScoreText += "\n";
}
main.text(highScoreText, xPos, yPos + 30);
}
public void saveScoresToFile(App main) {
PrintStream scoreFile;
try {
scoreFile = new PrintStream("scores.txt");
for (String nameAndScore : main.highScoresList) {
scoreFile.println(nameAndScore);
}
scoreFile.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void readScoresFromFile(App main) {
try {
main.highScoresList = new ArrayList<>(Files.readAllLines(Paths.get("scores.txt")));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}