aboutsummaryrefslogtreecommitdiff
path: root/src/app/js/settings.js
blob: 3aa9c4320da3f5532e5f051e6f88ceab7609413d (plain)
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
const fs = require("fs");
const Fuse = require("fuse.js");
const ipcRenderer = require("electron").ipcRenderer;

const lang = require("../../lang");

const events = require("./events");
const popups = require("./popups");

let settings_fuse;

// base settings, and future set settings data
let settings_data = {
	nsargs: "",
	gamepath: "",
	nsupdate: true,
	autolang: true,
	forcedlang: "en",
	autoupdate: true,
	originkill: false,
	zip: "/northstar.zip",
	lang: navigator.language,
	excludes: [
		"ns_startup_args.txt",
		"ns_startup_args_dedi.txt"
	]
}

// loads the settings
if (fs.existsSync("viper.json")) {
	let iteration = 0;

	// loads the config file, it's loaded in an interval like this in
	// case the config file is currently being written to, if we were to
	// read from the file during that, then it'd be empty or similar.
	//
	// and because of that, we check if the file is empty when loading
	// it, if so we wait 100ms, then check again, and we keep doing that
	// hoping it'll become normal again. unless we've checked it 50
	// times, then we simply give up, and force the user to re-select
	// the gamepath, as this'll make the config file readable again.
	//
	// ideally it'll never have to check those 50 times, it's only in
	// case something terrible has gone awry, like if a write got
	// interrupted, or a user messed with the file.
	//
	// were it to truly be broken, then it'd take up to 5 seconds to
	// then reset, this is basically nothing, especially considering
	// this should only happen in very rare cases... hopefully!
	let config_interval = setInterval(() => {
		let gamepath = require("./gamepath");

		iteration++;

		config = json("viper.json") || {};

		// checks whether `settings_data.gamepath` is set, and if so,
		// it'll attempt to load ns_startup_args.txt
		let parse_settings = () => {
			// if gamepath is not set, attempt to set it
			if (settings_data.gamepath.length === 0) {
				gamepath.set(false);
			} else {
				// if the gamepath is set, we'll simply tell the main
				// process about it, and it'll then show the main
				// renderer BrowserWindow
				gamepath.set(true);
			}

			// filepath to Northstar's startup args file
			let args = path.join(settings_data.gamepath, "ns_startup_args.txt");

			// check file exists, and that no `nsargs` setting was set
			if (! settings_data.nsargs && fs.existsSync(args)) {
				// load arguments from file into `settings`
				settings_data.nsargs = fs.readFileSync(args, "utf8") || "";
			}
		}

		// make sure config isn't empty
		if (Object.keys(config).length !== 0) {
			// add `config` to `settings_data`
			settings.set(config);
			parse_settings();

			clearInterval(config_interval);
			return;
		}

		// we've attempted to load the config 50 times now, give up
		if (iteration >= 50) {
			// request a new gamepath be set
			gamepath.set(false);
			clearInterval(config_interval);
		}
	}, 100)
} else {
	require("./gamepath").set();
}

ipcRenderer.on("changed-settings", (e, new_settings) => {
	// attempt to set `settings_data` to `new_settings`
	try {
		settings.set(new_settings);
	}catch(e) {}
})

let settings = {
	default: {...settings_data},

	data: () => {return settings_data},

	// asks the main process to reset the config/settings file
	reset: () => {
		ipcRenderer.send("reset-config");
	},

	// merges `object` with `settings_data`, unless `no_merge` is set,
	// then it replaces it entirely
	set: (object, no_merge) => {
		if (no_merge) {
			settings_data = object;
			return;
		}

		settings_data = {
			...settings_data,
			...object
		}
	},

	popup: {}
}

settings.popup.toggle = (state) => {
	settings.popup.load();
	options.scrollTo(0, 0);

	popups.set("#options", state);
}

settings.popup.apply = () => {
	settings.set(settings.popup.get());
	ipcRenderer.send("save-settings", settings.popup.get());
}

settings.popup.get = () => {
	let opts = {};
	let options = document.querySelectorAll(".option");

	for (let i = 0; i < options.length; i++) {
		let optName = options[i].getAttribute("name");
		if (options[i].querySelector(".actions input")) {
			let input = options[i].querySelector(".actions input").value;
			if (options[i].getAttribute("type")) {
				opts[optName] = input.split(" ");
			} else {
				opts[optName] = input;
			}
		} else if (options[i].querySelector(".actions select")) {
			opts[optName] = options[i].querySelector(".actions select").value;
		} else if (options[i].querySelector(".actions .switch")) {
			if (options[i].querySelector(".actions .switch.on")) {
				opts[optName] = true;
			} else {
				opts[optName] = false;
			}
		}
	}

	return opts;
}

settings.popup.load = () => {
	// re-opens any closed categories
	let categories = document.querySelectorAll("#options details");
	for (let i = 0; i < categories.length; i++) {
		categories[i].setAttribute("open", true);

		// hide categories that aren't for the current platform
		let for_platform = categories[i].getAttribute("platform");
		if (for_platform && process.platform != for_platform) {
			categories[i].style.display = "none";
			categories[i].setAttribute("perma-hidden", true);
		}
	}

	let options = document.querySelectorAll(".option");

	for (let i = 0; i < options.length; i++) {
		// hide options that aren't for the current platform
		let for_platform = options[i].getAttribute("platform");
		if (for_platform && process.platform != for_platform) {
			options[i].style.display = "none";
			options[i].setAttribute("perma-hidden", true);
		}

		let optName = options[i].getAttribute("name");
		if (optName == "forcedlang") {
			let div = options[i].querySelector("select");

			div.innerHTML = "";
			let lang_dir = __dirname + "/../../lang";
			let langs = fs.readdirSync(lang_dir);
			for (let i in langs) {
				let lang_file = require(lang_dir + "/" + langs[i]);
				let lang_no_extension = langs[i].replace(/\..*$/, "");

				if (! lang_file.lang || ! lang_file.lang.title) {
					continue;
				}

				let title = lang_file.lang.title;

				if (title) {
					div.innerHTML += `<option value="${lang_no_extension}">${title}</option>`
				}
				
			}

			div.value = settings_data.forcedlang;
			continue;
		}

		if (settings_data[optName] != undefined) {
			// check if setting has a `<select>`
			let select_el = options[i].querySelector(".actions select");
			if (select_el) {
				// get `<option>` for settings value, if it exists
				let option = select_el.querySelector(
					`option[value="${settings_data[optName]}"]`
				)

				// check if it exists
				if (option) {
					// set the `<select>` to the settings value
					select_el.value = settings_data[optName];
				} else { // use the default value
					select_el.value = settings.default[optName];
				}

				continue;
			}

			switch(typeof settings_data[optName]) {
				case "string":
					options[i].querySelector(".actions input").value = settings_data[optName];
					break
				case "object":
					options[i].querySelector(".actions input").value = settings_data[optName].join(" ");
					break
				case "boolean":
					let switchDiv = options[i].querySelector(".actions .switch");
					if (settings_data[optName]) {
						switchDiv.classList.add("on");
						switchDiv.classList.remove("off");
					} else {
						switchDiv.classList.add("off");
						switchDiv.classList.remove("on");
					}
					break

			}
		}
	}

	// create Fuse based on options from `get_search_arr()`
	settings_fuse = new Fuse(get_search_arr(), {
		keys: ["text"],
		threshold: 0.4,
		ignoreLocation: true
	})

	// reset search
	settings.popup.search();
	search_el.value = "";

	ipcRenderer.send("can-autoupdate");
	ipcRenderer.on("cant-autoupdate", () => {
		document.querySelector(".option[name=autoupdate]")
			.style.display = "none";

		document.querySelector(".option[name=autoupdate]")
			.setAttribute("perma-hidden", true);
	})
}

settings.popup.switch = (el, state) => {
	if (state) {
		return el.classList.add("on");
	} else if (state === false) {
		return el.classList.remove("on");
	}

	if (el.classList.contains("switch") && el.tagName == "BUTTON") {
		el.classList.toggle("on");
	}
}

// searches for `query` in the list of options, hides the options
// that dont match, and shows the one that do, if `query` is falsy,
// it'll simply reset everything back to being visible
settings.popup.search = (query = "") => {
	// get list of elements that can be hidden
	let search_els = [
		...document.querySelectorAll(".options .title"),
		...document.querySelectorAll(".options .option"),
		...document.querySelectorAll(".options .buttons"),
		...document.querySelectorAll(".options .details"),
	]

	// this sets the visibility of all elements found in
	// `search_els` unless the element has the `perma-hidden`
	// attribute set
	let set_all = (state) => {
		// set `state` to the CSS equivalent
		if (state) {
			state = null;
		} else {
			state = "none";
		}

		// run through elements
		for (let i = 0; i < search_els.length; i++) {
			// check that the element shouldn't be perma hidden, and
			// if so, hide it correctly.
			if (search_els[i].hasAttribute("perma-hidden")) {
				search_els[i].style.display = "none";
				continue;
			}

			// set the visibility
			search_els[i].style.display = state;
		}
	}

	// check if `query` is empty, and reset search if so
	if (! query || ! query.trim()) {
		set_all(true);
	} else {
		// hide everything
		set_all(false);
	}

	// unhides `el` and relevant elements related to it
	let unhide = (el) => {
		// list of elements that could be relevant through `el`'s
		// `.closest()` function
		let closest = [
			".option",
			"details",
			".buttons",
		]

		// run through `closest`
		for (let i = 0; i < closest.length; i++) {
			// shorthand
			let closest_el = el.closest(closest[i]);

			// was a relevant element found?
			if (closest_el) {
				// is it supposed to always be hidden? do nothing
				if (el.hasAttribute("perma-hidden")
					|| closest_el.hasAttribute("perma-hidden")) {

					break;
				}

				// reset visibility
				closest_el.style.display = null;

				// are we at a `<details>`?
				if (closest[i] == "details") {
					// attempt to get a `.title` inside that
					// `<details>` element
					let title = closest_el.querySelector(".title");

					// did we find a title?
					if (title) {
						// reset visibility of title and also reset
						// open state of `<details>`
						title.style.display = null;
						closest_el.setAttribute("open", false);
					}
				}
			}
		}
	}

	// do a Fuse.js search with `query`
	let res = settings_fuse.search(query);

	// if nothing was found, reset all
	if (res.length == 0) {
		return set_all(true);
	}

	// run through results and unhide all of them
	for (let i = 0; i < res.length; i++) {
		unhide(res[i].item.el);
	}
}

// search on key events in search input
let search_el = document.body.querySelector("#options .search");
search_el.addEventListener("keyup", () => {
	settings.popup.search(search_el.value);
})

// returns a Fuse.js compatible Array for searching through the settings
function get_search_arr() {
	// list of elements that should be taken into consideration when
	// trying to do a search
	let searchables_queries = [
		".option .text",
		".buttons .text",
		".option .actions input",
		".option .actions select",
		".buttons .actions button:not(.switch)",
	]

	let searchables_els = [];

	// run through queries
	for (let i = 0; i < searchables_queries.length; i++) {
		// attempt to get element(s) with that query
		let query = document.querySelectorAll(
			".options " + searchables_queries[i]
		)

		// if something was found add it
		searchables_els = [
			...query,
			...searchables_els
		]
	}

	let searchables = [];

	// run through the found elements
	for (let i = 0; i < searchables_els.length; i++) {
		let el = searchables_els[i];
		switch(el.tagName.toLowerCase()) {
			// is this an `<input>`?
			case "input":
				// if no value is in the input, do nothing
				if (! el.value) {
					continue;
				}

				// add to list of searchable elements, using the value
				// of the input as the text
				searchables.push({
					el: el,
					text: el.value
				})
				break;

			// is this a `<select>`?
			case "select":
				// get options in `<select>`
				let options = el.children;

				// run through options
				for (let ii = 0; ii < options.length; ii++) {
					// add to list of searchable elements, using the
					// insides of the option as the text, and the
					// element being the `<select>` and not the
					// `<option>`!
					searchables.push({
						el: el,
						text: options[ii].innerText
					})
				}
				break;

			default:
				// add to list of searchable elements using the insides
				// of the element as the text
				searchables.push({
					el: el,
					text: el.innerText
				})
		}
	}

	// return the actual searchable elements and text
	return searchables;
}

events.on("popup-changed", () => {
	let settings_is_shown =
		document.getElementById("options")
		.classList.contains("shown");

	let settings_btn = document.getElementById("settings");

	if (settings_is_shown) {
		settings_btn.classList.add("shown");
	} else {
		settings_btn.classList.remove("shown");
	}
})

document.body.addEventListener("click", (e) => {
	let el = document.elementFromPoint(e.clientX, e.clientY);
	settings.popup.switch(el);
})

settings.popup.load();

// sets the lang to the system default
ipcRenderer.send("setlang", settings_data.lang);

module.exports = settings;