-
Notifications
You must be signed in to change notification settings - Fork 0
/
DrBsGui.java
138 lines (104 loc) · 3.55 KB
/
DrBsGui.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import java.io.File;
import java.io.IOException;
import javax.swing.JFrame;
public class DrBsGui extends JFrame{
private static final long serialVersionUID = 1L;
private Screen screen;
public DrBsGui() {
setTitle("Dr Bs Dungeon Crawler");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
File fileWithLayout = findRandomLayout();
screen = new Screen(fileWithLayout);
this.add(screen);
pack();
setVisible(true);
}
public DrBsGui(File fileWithLayout) {
setTitle("Dr Bs Dungeon Crawler - " + fileWithLayout.getName());
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
screen = new Screen(fileWithLayout);
this.add(screen);
pack();
setVisible(true);
}
public DrBsGui(String mapName, String [] theMap) {
setTitle(mapName);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
String [][] theNewMap = new String[theMap.length][theMap[0].length()];
for(int i = 0; i < theNewMap.length; i++) {
char[] characters = theMap[i].toCharArray();
for(int j = 0; j<theNewMap[i].length; j++) {
theNewMap[i][j] = characters[j]+"";
}
}
screen = new Screen(mapName, theNewMap);
this.add(screen);
pack();
setVisible(true);
}
public DrBsGui(String mapName, String [][] theMap) {
setTitle(mapName);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
screen = new Screen(mapName, theMap);
this.add(screen);
pack();
setVisible(true);
}
@SuppressWarnings("unused")
private static void loadAllFiles() {
try {
File folder = new File("DungeonLayouts");
String [] files = folder.list();
for(int i = 0; i < files.length; i++) {
File f = new File(folder.getCanonicalPath() + "/" + files[i]);
if(f.isFile()) {
new DrBsGui(new File(folder.getCanonicalPath() + "/" + files[i]));
//MyGui g = new MyGui(new File(folder.getCanonicalPath() + "/" + files[i]));
//g.dispose();
}
}
} catch (IOException e) {
e.printStackTrace();
}
return;
}
private static File findRandomLayout() {
File f = null;
try {
File folder = new File("DungeonLayouts");
String [] files = folder.list();
f = new File(folder.getCanonicalPath() + "/" + files[(int)((Math.random()*files.length))]);
while(f.isDirectory()) {
f = new File(folder.getCanonicalPath() + "/" + files[(int)((Math.random()*files.length))]);
}
} catch (IOException e) {
e.printStackTrace();
}
return f;
}
public static void main(String [] args){
//loadAllFiles();
//new MyGui();
//new MyGui(new File("DungeonLayouts/testMaze.txt"));
// new DrBsGui(new File("DungeonLayouts/testSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/tinySafeSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/tinySearch.txt"));
// new DrBsGui(new File("DungeonLayouts/greedySearch.txt"));
// new DrBsGui(new File("DungeonLayouts/smallSafeSearch.txt"));
new DrBsGui(new File("DungeonLayouts/smallSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/mediumSafeSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/trickySearch.txt"));
//These might be too hard
// new DrBsGui(new File("DungeonLayouts/openSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/boxSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/mediumSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/bigSafeSearch.txt"));
// new DrBsGui(new File("DungeonLayouts/oddSearch.txt"));
// String[]vacuumWorld =
// {"wwww",
// "wA w",
// "wwww"};
//
// new MyGui("Vacuum World", vacuumWorld);
}
}