-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameSystem.java
More file actions
284 lines (226 loc) · 5.06 KB
/
GameSystem.java
File metadata and controls
284 lines (226 loc) · 5.06 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package MemoryGrid;
import java.io.*;
import java.util.*;
public class GameSystem
{
public static String description="The system module is the secondary actor which is "
+ "respnsoble for running the game";
protected static int no_of_users;
protected Login L = new Login();
protected Authentication Auth = new Authentication();
protected Menu m= new Menu();
protected static String theme="./src/MemoryGrid/Image_links/house_easy.txt";
protected static int theme_no=0;
//Used to reflect Game System data (No_of_users and user data)
protected void reflect_data(User u) throws IOException
{
Writer wr = new FileWriter("./src/MemoryGrid/Database/Systeminfo.txt");
wr.write(GameSystem.no_of_users + "");
wr.close();
DB_Accessor.adduser(u.username,u.password);
}
protected static void getdata() throws IOException
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter 1 for easy level\nEnter 2 for medium level\nEnter 3 for hard level");
String path="";
String choice1=sc.nextLine();
if (choice1.equals("1") || choice1.equals("2") || choice1.equals("3"))
{
System.out.println("Enter c or cranky mode.anything else for normal mode");
String choice2=sc.nextLine();
if (choice2.equals("c"))
{
switch(choice1)
{
case "1":
path="./src/MemoryGrid/Database/easy_cranky_scores.txt";
break;
case "2":
path="./src/MemoryGrid/Database/medium_cranky_scores.txt";
break;
case "3":
path="./src/MemoryGrid/Database/hard_cranky_scores.txt";
break;
}
}
else
{
switch(choice1)
{
case "1":
path="./src/MemoryGrid/Database/easy_normal_scores.txt";
break;
case "2":
path="./src/MemoryGrid/Database/medium_normal_scores.txt";
break;
case "3":
path="./src/MemoryGrid/Database/hard_normal_scores.txt";
break;
}
}
DB_Accessor.getleaderborad(path);
}
else
{
System.out.println("Invalid input");
}
}
//used to modify the leaderboard
protected static void reflect_data(Time t1,User u) throws IOException
{
String path="";
if (Grid.cd==240)
{
if (Grid.mode!=1)
{
path="./src/MemoryGrid/Database/easy_normal_scores.txt";
}
else
{
path="./src/MemoryGrid/Database/easy_cranky_scores.txt";
}
}
else if (Grid.cd==160)
{
if (Grid.mode!=1)
{
path="./src/MemoryGrid/Database/medium_normal_scores.txt";
}
else
{
path="./src/MemoryGrid/Database/medium_cranky_scores.txt";
}
}
else if (Grid.cd==120)
{
if (Grid.mode!=1)
{
path="./src/MemoryGrid/Database/hard_normal_scores.txt";
}
else
{
path="./src/MemoryGrid/Database/hard_cranky_scores.txt";
}
}
else
{
return;
}
FileInputStream fis=new FileInputStream(path);
Scanner fsc=new Scanner(fis);
String data[];
String raw_data="";
int changed=-1;
boolean matched=false;
while (fsc.hasNext())
{
raw_data+=fsc.nextLine()+" ";
}
fsc.close();
data=raw_data.split(" ");
int score3=Integer.parseInt(data[1]);
int score2=Integer.parseInt(data[3]);
int score1=Integer.parseInt(data[5]);
if (data[0].equals(u.username))
{
if (score3>t1.timepassed)
{
score3=(int)t1.timepassed;
data[1]=Long.toString(t1.timepassed);
changed=3;
}
matched=true;
}
else if (data[2].equals(u.username))
{
if (score2>t1.timepassed)
{
score2=(int)t1.timepassed;
data[3]=Long.toString(t1.timepassed);
changed=2;
}
matched=true;
}
else if (data[4].equals(u.username))
{
if (score1>t1.timepassed)
{
score1=(int)t1.timepassed;
data[5]=Long.toString(t1.timepassed);
changed=1;
}
matched=true;
}
else
{
}
if (matched==true)
{
if (changed==1 || changed==-1)
{
//do nothing
}
else if (changed==2)
{
if (score2<score1)
{
data[2]=data[4];
data[3]=data[5];
data[4]=u.username;
data[5]=Long.toString(t1.timepassed);
}
}
else
{
if (score3<score2)
{
data[0]=data[2];
data[1]=data[3];
data[2]=u.username;
data[3]=Long.toString(t1.timepassed);
if (score3<score1)
{
data[2]=data[4];
data[3]=data[5];
data[4]=u.username;
data[5]=Long.toString(t1.timepassed);
}
}
}
}
else
{
if(t1.timepassed<score3)
{
if (t1.timepassed<score2)
{
data[0]=data[2];
data[1]=data[3];
if (t1.timepassed<score1)
{
data[2]=data[4];
data[3]=data[5];
data[4]=u.username;
data[5]=Long.toString(t1.timepassed);
}
else
{
data[2]=u.username;
data[3]=Long.toString(t1.timepassed);
}
}
else
{
data[0]=u.username;
data[1]=Long.toString(t1.timepassed);
}
}
}
PrintWriter writer = new PrintWriter(path);
writer.print(data[0]+" "+data[1]+"\n");
writer.print(data[2]+" "+data[3]+"\n");
writer.print(data[4]+" "+data[5]+"\n");
writer.close();
}
}