2022-04-23 23:48:21 +00:00
|
|
|
/**
|
|
|
|
* Get configuration
|
|
|
|
*
|
|
|
|
* @returns {Promise<string>}
|
|
|
|
*/
|
|
|
|
async function getCfg() {
|
|
|
|
const defaultConf = {
|
2022-04-26 05:22:54 +00:00
|
|
|
gameexe: '',
|
2022-04-23 23:48:21 +00:00
|
|
|
serverFolder: '',
|
|
|
|
lastConnect: '',
|
|
|
|
enableKillswitch: false,
|
|
|
|
serverLaunchPanel: false,
|
2022-04-24 23:17:23 +00:00
|
|
|
language: 'en',
|
|
|
|
useHttps: true,
|
2022-04-23 23:48:21 +00:00
|
|
|
}
|
|
|
|
const cfgStr = await Neutralino.storage.getData('config').catch(e => {
|
|
|
|
// The data isn't set, so this is our first time opening
|
|
|
|
Neutralino.storage.setData('config', JSON.stringify(defaultConf))
|
|
|
|
|
|
|
|
// Show the first time notice if there is no config
|
|
|
|
document.querySelector('#firstTimeNotice').style.display = 'block'
|
|
|
|
})
|
|
|
|
|
|
|
|
const config = cfgStr ? JSON.parse(cfgStr) : defaultConf
|
|
|
|
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the list of favorite IPs
|
|
|
|
*
|
|
|
|
* @returns {Promise<string[]>}
|
|
|
|
*/
|
|
|
|
async function getFavIps() {
|
|
|
|
const ipStr = await Neutralino.storage.getData('favorites').catch(e => {
|
|
|
|
// The data isn't set, so this is our first time opening
|
|
|
|
Neutralino.storage.setData('favorites', JSON.stringify([]))
|
|
|
|
})
|
|
|
|
|
|
|
|
const ipArr = ipStr ? JSON.parse(ipStr) : []
|
|
|
|
|
|
|
|
return ipArr
|
|
|
|
}
|
|
|
|
|
|
|
|
async function proxyIsInstalled() {
|
|
|
|
// Check if the proxy server is installed
|
|
|
|
const curDirList = await filesystem.readDirectory(NL_CWD)
|
|
|
|
|
|
|
|
if (curDirList.find(f => f.entry === 'ext')) {
|
|
|
|
const extFiles = await filesystem.readDirectory(NL_CWD + '/ext')
|
|
|
|
|
|
|
|
if (extFiles.find(f => f.entry === 'mitmdump.exe')) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-04-26 09:12:58 +00:00
|
|
|
async function openGameFolder() {
|
|
|
|
const config = await getCfg()
|
2022-04-30 08:10:32 +00:00
|
|
|
const folder = config.gameexe.match(/.*\\/g, '')[0]
|
2022-04-26 09:12:58 +00:00
|
|
|
|
2022-04-26 09:26:53 +00:00
|
|
|
openInExplorer(folder)
|
2022-04-26 09:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function openGrasscutterFolder() {
|
|
|
|
const config = await getCfg()
|
|
|
|
const folder = config.serverFolder.match(/.*\\/g, '')[0]
|
|
|
|
|
2022-04-26 09:26:53 +00:00
|
|
|
openInExplorer(folder)
|
2022-04-26 09:12:58 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 23:48:21 +00:00
|
|
|
/**
|
|
|
|
* Minimize the window
|
|
|
|
*/
|
|
|
|
function minimizeWin() {
|
|
|
|
console.log('min')
|
|
|
|
Neutralino.window.minimize()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the window
|
|
|
|
*/
|
|
|
|
function closeWin() {
|
|
|
|
console.log('close')
|
|
|
|
Neutralino.app.exit()
|
2022-04-25 05:40:03 +00:00
|
|
|
|
|
|
|
window.close()
|
2022-04-23 23:48:21 +00:00
|
|
|
}
|