mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-22 11:03:08 +00:00
71 lines
2 KiB
JavaScript
71 lines
2 KiB
JavaScript
|
|
var debug = true;
|
|
var clientSettings = {
|
|
"debug": true,
|
|
"accentColor": {
|
|
"r": 50,
|
|
"g": 50,
|
|
"b": 50,
|
|
"a": 0.9
|
|
},
|
|
"rainbowEnabled": false,
|
|
"devToolsOnStartup": false
|
|
};
|
|
var clientSettingsPath = "./settings.json";
|
|
if (fs.existsSync(clientSettingsPath)) {
|
|
loadClientSettings();
|
|
} else {
|
|
DB.save(clientSettingsPath, clientSettings)
|
|
}
|
|
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)
|
|
$("#debugEnabled").prop("checked", clientSettings.debug);
|
|
$("#rainbowEnabled").prop("checked", clientSettings.rainbowEnabled);
|
|
$("#devToolsOnStartup").prop("checked", clientSettings.devToolsOnStartup);
|
|
applyClientSettings();
|
|
if (clientSettings.devToolsOnStartup) {
|
|
openDevTools();
|
|
}
|
|
}
|
|
|
|
function applyClientSettings() {
|
|
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);
|
|
}
|
|
}
|
|
$("#rainbowEnabled").on('change', function () {
|
|
clientSettings.rainbowEnabled = $("#rainbowEnabled").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();
|
|
});
|