blob: 2b367d398e3958458c7d3948a642a8f7e7a07e58 (
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
|
package main;
import java.io.File;
import java.util.ArrayList;
import javafx.beans.property.SimpleStringProperty;
import javafx.scene.image.Image;
import javafx.scene.paint.Color;
import java.io.FileWriter;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
public class Level
{
public Image preview; //optional
private SimpleStringProperty title;
private SimpleStringProperty artist;
public String desc;
public ArrayList<Difficulty> diffList = new ArrayList<Difficulty>();
public Image background; //optional
public Color[] colors; //optional, have default colors
private JSONObject levelStuff;
public void setColors(Color... newColors)
{
colors = newColors;
}
//all below is required for table view
public Level() throws ParseException
{
JSONParser jsonParser = new JSONParser(); //parser to read the file
try(FileReader reader = new FileReader(".json"))
{
Object obj = jsonParser.parse(reader);
levelStuff = (JSONObject)(obj); //converts read object to a JSONObject
title = (SimpleStringProperty)(levelStuff.get("title"));
artist = (SimpleStringProperty)(levelStuff.get("title"));
desc = (String)(levelStuff.get("title"));
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
public String getTitle() {
return title.get();
}
public String getArtist() {
return artist.get();
}
public void setTitle(String title) {
this.title.set(title);
}
public void setArtist(String artist) {
this.artist.set(artist);
}
}
|