mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-22 11:03:08 +00:00
124 lines
No EOL
3.8 KiB
JavaScript
124 lines
No EOL
3.8 KiB
JavaScript
|
|
var debug = true;
|
|
var clientSettings = {};
|
|
var clientSettingsPath = "./settings.json";
|
|
if (fs.existsSync(clientSettingsPath)) {
|
|
loadClientSettings();
|
|
} else {
|
|
DB.save(clientSettingsPath, {}); //init file
|
|
}
|
|
var saveSettingsTO
|
|
function saveClientSettingsTimeout() {
|
|
clearTimeout(saveSettingsTO);
|
|
saveSettingsTO = setTimeout(saveClientSettings, 500);
|
|
}
|
|
function saveClientSettings() {
|
|
verifySettings();
|
|
DB.save(clientSettingsPath, clientSettings);
|
|
}
|
|
function verifySettings() {
|
|
|
|
}
|
|
function loadClientSettings() {
|
|
clientSettings = DB.load(clientSettingsPath)
|
|
if (clientSettings.debug == undefined) {
|
|
clientSettings.debug = false;
|
|
}
|
|
if (clientSettings.accentColor == undefined) {
|
|
clientSettings.accentColor = {
|
|
"r": 50,
|
|
"g": 50,
|
|
"b": 50,
|
|
"a": 0.9
|
|
};
|
|
}
|
|
if (clientSettings.rainbowEnabled == undefined) {
|
|
clientSettings.rainbowEnabled = true;
|
|
}
|
|
if (clientSettings.devToolsOnStartup == undefined) {
|
|
clientSettings.devToolsOnStartup = false;
|
|
}
|
|
if (clientSettings.devToolsOnStartup == undefined) {
|
|
clientSettings.devToolsOnStartup = false;
|
|
}
|
|
if (clientSettings.ip == undefined) {
|
|
clientSettings.ip = "0.0.0.0";
|
|
}
|
|
if (clientSettings.quality == undefined) {
|
|
clientSettings.quality = 5;
|
|
}
|
|
if (clientSettings.firstInstall == undefined) {
|
|
clientSettings.firstInstall = false;
|
|
}
|
|
|
|
applyClientSettings();
|
|
}
|
|
|
|
function applyClientSettings() {
|
|
$("#debugEnabled").prop("checked", clientSettings.debug);
|
|
$("#rainbowEnabled").prop("checked", clientSettings.rainbowEnabled);
|
|
$("#devToolsOnStartup").prop("checked", clientSettings.devToolsOnStartup);
|
|
$("#autoStart").prop("checked", clientSettings.autoStartStreamer);
|
|
$("#qualitySlider").val(clientSettings.quality);
|
|
$('#qualityLabel').html("Quality: " + clientSettings.quality + "M");
|
|
$("#ipInput").val(clientSettings.ip);
|
|
if (clientSettings.debug) {
|
|
$("#dev-btn").fadeIn(400);
|
|
$("#rld-btn").fadeIn(400);
|
|
} else {
|
|
$("#dev-btn").fadeOut(400);
|
|
$("#rld-btn").fadeOut(400);
|
|
}
|
|
if (clientSettings.rainbowEnabled) {
|
|
rainbowAccent();
|
|
} else {
|
|
setAccentColor(clientSettings.accentColor.r, clientSettings.accentColor.g, clientSettings.accentColor.b, clientSettings.accentColor.a);
|
|
}
|
|
if (clientSettings.devToolsOnStartup) {
|
|
openDevTools();
|
|
}
|
|
if (!clientSettings.firstInstall) {
|
|
ipcRenderer.send('installScpVBus');
|
|
ipcRenderer.send('installAudioDriver');
|
|
clientSettings.firstInstall = true;
|
|
}
|
|
if (clientSettings.autoStartStreamer) {
|
|
connect();
|
|
}
|
|
|
|
saveClientSettings();
|
|
}
|
|
|
|
$("#rainbowEnabled").on('change', function () {
|
|
clientSettings.rainbowEnabled = $("#rainbowEnabled").prop("checked");
|
|
saveClientSettings();
|
|
applyClientSettings();
|
|
});
|
|
$("#autoStart").on('change', function () {
|
|
clientSettings.autoStartStreamer = $("#autoStart").prop("checked");
|
|
saveClientSettings();
|
|
applyClientSettings();
|
|
});
|
|
// $("#debugEnabled").on('change', function () {
|
|
// clientSettings.debug = $("#debugEnabled").prop("checked");
|
|
// saveClientSettings();
|
|
// applyClientSettings();
|
|
// });
|
|
// $("#devToolsOnStartup").on('change', function () {
|
|
// clientSettings.devToolsOnStartup = $("#devToolsOnStartup").prop("checked");
|
|
// saveClientSettings();
|
|
// applyClientSettings();
|
|
// });
|
|
|
|
$('#installScpVBusBtn').click(function () {
|
|
ipcRenderer.send('installScpVBus');
|
|
});
|
|
$('#unInstallScpVBusBtn').click(function () {
|
|
ipcRenderer.send('unInstallScpVBus');
|
|
});
|
|
$('#installAudioDriverBtn').click(function () {
|
|
ipcRenderer.send('installAudioDriver');
|
|
});
|
|
$('#unInstallAudioDriverBtn').click(function () {
|
|
ipcRenderer.send('unInstallAudioDriver');
|
|
}); |