From 58fa4a6329bc72421f19d89cb451aa9e888e27fc Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Fri, 24 Nov 2023 07:20:24 +0100 Subject: [PATCH] added patching rx/ap, could be buggy --- app.js | 17 ++++++++++- executeUtil.js | 5 +-- html/index.html | 4 +-- osuUtil.js | 76 +++++++++++++++++++++++++++++++++++++++++----- preload/preload.js | 2 +- 5 files changed, 91 insertions(+), 13 deletions(-) diff --git a/app.js b/app.js index d95cc75..196ceeb 100644 --- a/app.js +++ b/app.js @@ -11,8 +11,10 @@ const windowName = require('get-window-by-name'); const terminalUtil = require('./terminalUtil'); const osUtil = require('./osUtil'); const appInfo = require('./appInfo'); +const executeUtil = require("./executeUtil"); const { DownloaderHelper } = require('node-downloader-helper'); +let patcherLoc = undefined; let tempOsuPath; let osuWindowInfo; let isIngame; @@ -36,6 +38,13 @@ const run = () => { if (!osuLoaded) { osuLoaded = true; //TODO: do patch + setTimeout(() => { + console.log("yes"); + if (patcherLoc) { + console.log("running " + patcherLoc + " in dir " + path.dirname(patcherLoc)); + executeUtil.runFileDetached(path.dirname(patcherLoc), patcherLoc); + } + }, 5000); } const windowTitle = firstInstance.processTitle; let rpcOsuVersion = ""; @@ -215,8 +224,13 @@ const run = () => { app.on('window-all-closed', () => { app.quit() }) - ipcMain.handle('launch', async () => { + ipcMain.handle('launch', async (e, opts) => { + console.log(opts); + const patch = "patch" in opts && opts.patch; const osuFolder = await config.get("osuPath"); + if (patch) patcherLoc = path.join(osuFolder, "EZPPLauncher", "patcher.exe"); + else patcherLoc = undefined; + await osuUtil.updateOsuCfg(path.join(osuFolder, "osu!.cfg")); const osuConfig = await osuUtil.getLatestConfig(tempOsuPath); const username = await config.get('username'); @@ -240,6 +254,7 @@ const run = () => { if (!mainWindow.isVisible()) mainWindow.show(); setTimeout(async () => { isIngame = false; + osuLoaded = false; await osuUtil.replaceUI(osuFolder, false); await doUpdateCheck(mainWindow); mainWindow.closable = true; diff --git a/executeUtil.js b/executeUtil.js index cb5d5ae..adb4e6b 100644 --- a/executeUtil.js +++ b/executeUtil.js @@ -4,11 +4,12 @@ module.exports = { childProcess.execFile(file, args, { cwd: folder }, (_err, _stdout, _stderr) => { - onExit(); + if (onExit) + onExit(); }); }, runFileDetached: (folder, file, args) => { - const subprocess = childProcess.spawn(file + " " + args, { + const subprocess = childProcess.spawn(file + (args ? " " + args : ''), { cwd: folder, detached: true, stdio: 'ignore' diff --git a/html/index.html b/html/index.html index 2d0126f..8087f04 100644 --- a/html/index.html +++ b/html/index.html @@ -64,8 +64,8 @@
-