blob: 8420886db4f21cfa1ded0bf718fb96ca7adf5483 (
plain) (
blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
package main;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.time.LocalDate;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
public class Difficulty
{
public String title;
private ObservableList<LeaderboardEntry> leaderboard = FXCollections.observableArrayList();
public File notes;
public int bpm;
public File song;
public int numBeats;
private File leaderboardFile;
public void parseMetadata(File file) throws FileNotFoundException, IOException
{
JSONParser jsonParser = new JSONParser(); //parser to read the file
try(FileReader reader = new FileReader(file))
{
Object obj = jsonParser.parse(reader);
JSONObject diffStuff = (JSONObject)(obj); //converts read object to a JSONObject
title = (String) diffStuff.get("title");
bpm = (int)(diffStuff.get("bpm"));
numBeats = (int)(diffStuff.get("numBeats"));
}
catch (Exception e)
{
System.out.println("Error in json file "+file);
//e.printStackTrace();
}
}
public void parseLeaderboard(File file) throws FileNotFoundException, IOException
{
leaderboardFile = file;
JSONParser jsonParser = new JSONParser(); //parser to read the file
try(FileReader reader = new FileReader(file))
{
Object obj = jsonParser.parse(reader);
JSONArray leaderboardStuff = (JSONArray)(obj); //converts read object to a JSONArray
for (Object cur: leaderboardStuff)
{
JSONObject cur2 = (JSONObject) cur;
String name = (String) cur2.get("name");
int score = Integer.parseInt(""+cur2.get("score"));
String date = (String) cur2.get("date");
leaderboard.add(new LeaderboardEntry(name, score, date));
}
}
catch (Exception e)
{
System.out.println("Error in json file "+leaderboardFile);
//e.printStackTrace();
}
}
public void addToLeaderboard(String name, int score)
{
leaderboard.add(new LeaderboardEntry(name, score, ""+LocalDate.now())); //do not delete this tho its not a placeholder
try (FileWriter fileWriter = new FileWriter(leaderboardFile))
{
//write the settings JSONObject instance to the file
JSONArray jsonArray = new JSONArray();
for (LeaderboardEntry cur: leaderboard)
{
JSONObject obj = new JSONObject();
obj.put("name", cur.getName());
obj.put("score", cur.getScore());
obj.put("date",cur.getDate());
jsonArray.add(obj);
}
jsonArray.writeJSONString(fileWriter);
fileWriter.flush();
}
catch (IOException e) {
e.printStackTrace();
}
}
public ObservableList<LeaderboardEntry> getLeaderboard()
{
return leaderboard;
}
}
|