-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.java
318 lines (277 loc) · 8.69 KB
/
Settings.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
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
import processing.core.*;
import processing.data.*;
import java.io.InputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.File;
class Settings{
private static final int version = 5;
private int scrollHorozontal = 360;
private int scrollVertical = 250;
private float cameraFOV = 60 * PApplet.DEG_TO_RAD;
private int resolutionHorozontal = 1280;
private int resolutionVertical = 720;
private boolean fullScreen = false;
private int fullScreenScreen = 1;
private float scale = 1;
private boolean debugFPS = false;
private boolean debugInfo = false;
private float soundMusicVolume = 1;
private float soundSoundVolume = 1;
private float soundNarrationVolume = 1;
private int soundNarrationMode = 0;
private int shadows = 3;
private boolean disableMenuTransitions = false;
private String defaultAuthor = "can't_be_botherd_to_chane_it";
private String saveFilePath;
private boolean settingsAfterStart = false;
Settings(String path){
JSONArray file;
saveFilePath = path;
try(InputStream in = new FileInputStream(path)){
file = new JSONArray(PApplet.createReader(in));
}catch(IOException e){
settingsAfterStart=true;
System.out.println("problem loading settings, resetting to defaults");
save();
e.printStackTrace();
return;
}
JSONObject o1 = file.getJSONObject(0);
int inputVersion = o1.getInt("settings version");
if(inputVersion != version){
save();
settingsAfterStart=true;
System.out.println("A duffrent settings version was detected. resetting to defult settings");
//set the go to seeting screen by default value
return;
}
loadScrollSettings(file.getJSONObject(1));
loadResolutionSettings(file.getJSONObject(2));
loadDebugSettings(file.getJSONObject(3));
loadSoundSettings(file.getJSONObject(4));
loadOtherSettings(file.getJSONObject(5));
}
//loading functions
private void loadScrollSettings(JSONObject data){
scrollHorozontal = data.getInt("horozontal");
scrollVertical = data.getInt("vertical");
}
private void loadResolutionSettings(JSONObject data){
resolutionHorozontal = data.getInt("h-res");
resolutionVertical = data.getInt("v-res");
fullScreen = data.getBoolean("full_Screen");
fullScreenScreen = data.getInt("full_Screen_diplay");
scale = data.getFloat("scale");
}
private void loadDebugSettings(JSONObject data){
debugFPS = data.getBoolean("fps");
debugInfo = data.getBoolean("debug info");
}
private void loadSoundSettings(JSONObject data){
soundMusicVolume = data.getFloat("music volume");
soundSoundVolume = data.getFloat("SFX volume");
soundNarrationVolume = data.getFloat("narration volume");
soundNarrationMode = data.getInt("narrationMode");
}
private void loadOtherSettings(JSONObject data){
shadows = data.getInt("3D shaows");
disableMenuTransitions = data.getBoolean("disableMenuTransitions");
defaultAuthor = data.getString("default author");
cameraFOV = data.getFloat("FOVY");
}
//saving functions
void save(){
JSONArray file = new JSONArray();
JSONObject vo = new JSONObject();
vo.setInt("settings version",version);
file.append(vo);
file.append(saveScrolling());
file.append(saveResolution());
file.append(saveDebug());
file.append(saveSoundVolume());
file.append(saveTheRest());
file.save(new File(saveFilePath),null);
}
private JSONObject saveScrolling(){
JSONObject data = new JSONObject();
data.setInt("horozontal",scrollHorozontal);
data.setInt("vertical",scrollVertical);
data.setString("label","scroling location");
return data;
}
private JSONObject saveResolution(){
JSONObject data = new JSONObject();
data.setInt("h-res",resolutionHorozontal);
data.setInt("v-res",resolutionVertical);
data.setBoolean("full_Screen",fullScreen);
data.setInt("full_Screen_diplay",fullScreenScreen);
data.setFloat("scale",scale);
data.setString("label","resolution stuff");
return data;
}
private JSONObject saveDebug(){
JSONObject data = new JSONObject();
data.setBoolean("fps",debugFPS);
data.setBoolean("debug info",debugInfo);
data.setString("label","debug stuffs");
return data;
}
private JSONObject saveSoundVolume(){
JSONObject data = new JSONObject();
data.setFloat("music volume",soundMusicVolume);
data.setFloat("SFX volume",soundSoundVolume);
data.setFloat("narration volume",soundNarrationVolume);
data.setInt("narrationMode",soundNarrationMode);
data.setString("label","music and sound volume");
return data;
}
private JSONObject saveTheRest(){
JSONObject data = new JSONObject();
data.setInt("3D shaows",shadows);
data.setBoolean("disableMenuTransitions",disableMenuTransitions);
data.setString("default author",defaultAuthor);
data.setString("label","outher");
data.setFloat("FOVY",cameraFOV);
return data;
}
//getters
public int getScrollHorozontal(){
return scrollHorozontal;
}
public int getSrollVertical(){
return scrollVertical;
}
public float getFOV(){
return cameraFOV;
}
public int getResolutionHorozontal(){
return resolutionHorozontal;
}
public int getResolutionVertical(){
return resolutionVertical;
}
public boolean getFullScreen(){
return fullScreen;
}
public int getFullScreenScreen(){
return fullScreenScreen;
}
public float getScale(){
return scale;
}
public boolean getDebugFPS(){
return debugFPS;
}
public boolean getDebugInfo(){
return debugInfo;
}
public float getSoundMusicVolume(){
return soundMusicVolume;
}
public float getSoundSoundVolume(){
return soundSoundVolume;
}
public float getSoundNarrationVolume(){
return soundNarrationVolume;
}
public int getSoundNarrationMode(){
return soundNarrationMode;
}
public int getShadows(){
return shadows;
}
public boolean getDisableMenuTransitions(){
return disableMenuTransitions;
}
public String getDefaultAuthor(){
return defaultAuthor;
}
public void setScrollHorozontal(int scrollHorozontal, boolean stats){
this.scrollHorozontal = scrollHorozontal;
if(stats)
adjustStats();
}
public void setScrollVertical(int scrollVertical, boolean stats){
this.scrollVertical = scrollVertical;
if(stats)
adjustStats();
}
public void setFOV(float fov,boolean stats){
cameraFOV = PApplet.radians(fov);
if(stats){
adjustStats();
}
}
public void setResolutionHorozontal(int resolutionHorozontal){
this.resolutionHorozontal=resolutionHorozontal;
adjustStats();
}
public void setResolutionVertical(int resolutionVertical){
this.resolutionVertical=resolutionVertical;
adjustStats();
}
public void setResolution(int hrez,int vrez){
resolutionHorozontal = hrez;
resolutionVertical = vrez;
scale = vrez/720.0f;
adjustStats();
}
public void setFullScreen(boolean fullScreen){
this.fullScreen=fullScreen;
adjustStats();
}
public void setFullScreenScreen(int fullScreenScreen){
this.fullScreenScreen=fullScreenScreen;
adjustStats();
}
public void setScale(float scale){
this.scale=scale;
adjustStats();
}
public void setDebugFPS(boolean debugFPS){
this.debugFPS=debugFPS;
adjustStats();
}
public void setDebugInfo(boolean debugInfo){
this.debugInfo=debugInfo;
adjustStats();
}
public void setSoundMusicVolume(float soundMusicVolume, boolean stats){
this.soundMusicVolume=soundMusicVolume;
if(stats)
adjustStats();
}
public void setSoundSoundVolume(float soundSoundVolume, boolean stats){
this.soundSoundVolume=soundSoundVolume;
if(stats)
adjustStats();
}
public void setSoundNarrationVolume(float soundNarrationVolume, boolean stats){
this.soundNarrationVolume=soundNarrationVolume;
if(stats)
adjustStats();
}
public void setSoundNarrationMode(int soundNarrationMode){
this.soundNarrationMode=soundNarrationMode;
adjustStats();
}
public void setShadows(int shadows){
this.shadows=shadows;
adjustStats();
}
public void setDisableMenuTransitions(boolean disableMenuTransitions){
this.disableMenuTransitions=disableMenuTransitions;
adjustStats();
}
public void setDefaultAuthor(String defaultAuthor){
this.defaultAuthor=defaultAuthor;
adjustStats();
}
public boolean getSettingsAfterStart(){
return settingsAfterStart;
}
private void adjustStats(){
StatisticManager.getInstace().incrementSettingsChnaged();
}
}