-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDataSource.java
More file actions
82 lines (66 loc) · 1.84 KB
/
Copy pathDataSource.java
File metadata and controls
82 lines (66 loc) · 1.84 KB
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
import java.util.ArrayList;
public class DataSource{
private static DataSource instance;
private int[] SpiderLocation = {0, 0};
private int[] ogSpiderLocation = {0, 0};
private ArrayList<Block> blocks = new ArrayList<>();
private ArrayList<Block> blocksRun = new ArrayList<>();
private ArrayList<Cell> cells = new ArrayList<>();
private ArrayList<Diamond> diamonds = new ArrayList<>();
private int level;
private DataSource(){
}
public static DataSource getInstance(){
if(instance == null){
instance = new DataSource();
}
return instance;
}
public void setSpiderLocation(int x, int y){
SpiderLocation[0] = x;
SpiderLocation[1] = y;
}
public int[] getSpiderLocation(){
return SpiderLocation;
}
public void setLevel(int level){
this.level = level;
}
public int getLevel(){
return level;
}
public ArrayList<Block> getBlockArrayInstance(){
return blocks;
}
public ArrayList<Cell> getCellArrayInstance(){
return cells;
}
public java.util.ArrayList<Block> getBlocksRunInstance() {
return blocksRun;
}
public void setDiamondArray(ArrayList<Diamond> Diamonds){
for(Diamond D : Diamonds){
diamonds.add(D);
}
}
public ArrayList<Diamond> getDiamondArrayInstance(){
return diamonds;
}
public void clearBlocks(){
blocks.clear();
blocksRun.clear();
}
public void clearArrays(){
blocks.clear();
blocksRun.clear();
cells.clear();
diamonds.clear();
}
public void setOgSpiderLocation(int x, int y){
this.ogSpiderLocation[0] = x;
this.ogSpiderLocation[1] = y;
}
public int[] getOgSpiderLocation(){
return this.ogSpiderLocation;
}
}