Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
f870b48b25 | |||
94db97ef30 | |||
7e2fe2ec96 | |||
7cba78b270 | |||
f6e5ead7ed | |||
7ed7d3045f | |||
37b7bbd2e3 | |||
47f86501b8 | |||
42777c9e0c |
50
.github/workflows/build.yml
vendored
Normal file
50
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
name: Compile and Release
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [released]
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [20.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm ci
|
||||
- run: npm run rebuild
|
||||
- run: npm run pack-linux
|
||||
- name: Add Artifact to Workflow
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: artifact
|
||||
path: |
|
||||
release/*.AppImage
|
||||
|
||||
build-win:
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [20.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm ci
|
||||
- run: npm run rebuild
|
||||
- run: npm run pack-win
|
||||
- name: Add Artifact to Workflow
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: artifact
|
||||
path: |
|
||||
release/*.exe
|
17
.vscode/launch.json
vendored
Normal file
17
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug Main Process",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
||||
"windows": {
|
||||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
||||
},
|
||||
"args" : ["."],
|
||||
"outputCapture": "std"
|
||||
}
|
||||
]
|
||||
}
|
22
app.js
22
app.js
@@ -120,7 +120,6 @@ const run = () => {
|
||||
|
||||
rpc.connect();
|
||||
|
||||
|
||||
let mainWindow;
|
||||
let tray = null
|
||||
app.whenReady().then(async () => {
|
||||
@@ -149,6 +148,7 @@ const run = () => {
|
||||
{
|
||||
label: 'Exit',
|
||||
click: function () {
|
||||
if (isIngame) return;
|
||||
app.exit(0);
|
||||
}
|
||||
}
|
||||
@@ -158,6 +158,9 @@ const run = () => {
|
||||
tray.setContextMenu(trayMenu)
|
||||
|
||||
mainWindow = createWindow();
|
||||
mainWindow.on('close', (e) => {
|
||||
if (isIngame) e.preventDefault();
|
||||
});
|
||||
mainWindow.once('show', async () => {
|
||||
await updateConfigVars(mainWindow);
|
||||
await tryLogin(mainWindow);
|
||||
@@ -197,9 +200,14 @@ const run = () => {
|
||||
const osuFolder = await config.get("osuPath");
|
||||
if (!osuFolder || osuFolder == "") {
|
||||
const foundFolder = await osuUtil.findOsuInstallation();
|
||||
console.log("osu! Installation located at: ", foundFolder);
|
||||
if (foundFolder && osuUtil.isValidOsuFolder(foundFolder)) {
|
||||
mainWindow.webContents.send('alert_message', foundFolder);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
ipcMain.on("alert_response", async (event, path) => {
|
||||
await config.set("osuPath", path);
|
||||
})
|
||||
app.on('activate', function () {
|
||||
if (BrowserWindow.getAllWindows().length === 0) mainWindow = createWindow();
|
||||
@@ -208,6 +216,8 @@ const run = () => {
|
||||
app.quit()
|
||||
})
|
||||
ipcMain.handle('launch', async () => {
|
||||
const osuFolder = await config.get("osuPath");
|
||||
await osuUtil.updateOsuCfg(path.join(osuFolder, "osu!.cfg"));
|
||||
const osuConfig = await osuUtil.getLatestConfig(tempOsuPath);
|
||||
const username = await config.get('username');
|
||||
const password = await config.get('password');
|
||||
@@ -221,13 +231,19 @@ const run = () => {
|
||||
await osuUtil.setConfigValue(osuConfig.path, "Username", "");
|
||||
await osuUtil.setConfigValue(osuConfig.path, "Password", "");
|
||||
}
|
||||
await osuUtil.replaceUI(osuFolder, true);
|
||||
rpc.updateState("Launching osu!...");
|
||||
isIngame = true;
|
||||
mainWindow.closable = false;
|
||||
if (mainWindow.isVisible()) mainWindow.hide();
|
||||
const result = await osuUtil.startOsuWithDevServer(tempOsuPath, "ez-pp.farm", async () => {
|
||||
isIngame = false;
|
||||
if (!mainWindow.isVisible()) mainWindow.show();
|
||||
setTimeout(async () => {
|
||||
isIngame = false;
|
||||
await osuUtil.replaceUI(osuFolder, false);
|
||||
await doUpdateCheck(mainWindow);
|
||||
mainWindow.closable = true;
|
||||
}, 2000);
|
||||
});
|
||||
return result;
|
||||
})
|
||||
|
@@ -2,7 +2,7 @@ const { default: axios } = require("axios");
|
||||
const { compareVersions } = require("compare-versions");
|
||||
|
||||
const appName = "EZPPLauncher"
|
||||
const appVersion = "1.1.4";
|
||||
const appVersion = "1.1.5";
|
||||
|
||||
const hasUpdate = async () => {
|
||||
const releaseInfo = await axios.get(`https://git.ez-pp.farm/api/v1/repos/EZPPFarm/${appName}/releases/latest`);
|
||||
|
@@ -13,6 +13,19 @@ body {
|
||||
background-color: hsl(var(--main-bg), 24%, 19%);
|
||||
}
|
||||
|
||||
p.text-white {
|
||||
margin: .5rem 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.quotetext {
|
||||
color: white;
|
||||
background-color: #727272;
|
||||
border-radius: .35rem;
|
||||
font-size: .95rem;
|
||||
padding: .25rem .5rem;
|
||||
}
|
||||
|
||||
.sections {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
|
116
osuUtil.js
116
osuUtil.js
@@ -8,8 +8,11 @@ const { EventEmitter } = require('events');
|
||||
const { DownloaderHelper } = require('node-downloader-helper');
|
||||
|
||||
const checkUpdateURL = "https://osu.ppy.sh/web/check-updates.php?action=check&stream=";
|
||||
const customUIDLLPath = "https://ez-pp.farm/assets/ezpp!ui.dll";
|
||||
const customUIDLLHash = "https://ez-pp.farm/assets/ezpp!ui.md5";
|
||||
const customUIDLLName = "ezpp!ui.dll";
|
||||
const ignoredOsuEntities = [
|
||||
'osu!auth.dll'
|
||||
'osu!auth.dll',
|
||||
]
|
||||
const osuEntities = [
|
||||
'avcodec-51.dll',
|
||||
@@ -19,11 +22,8 @@ const osuEntities = [
|
||||
'bass_fx.dll',
|
||||
'collection.db',
|
||||
'd3dcompiler_47.dll',
|
||||
'Data',
|
||||
'Downloads',
|
||||
'libEGL.dll',
|
||||
'libGLESv2.dll',
|
||||
'Logs',
|
||||
'Microsoft.Ink.dll',
|
||||
'OpenTK.dll',
|
||||
'osu!.cfg',
|
||||
@@ -36,8 +36,6 @@ const osuEntities = [
|
||||
'presence.db',
|
||||
'pthreadGC2.dll',
|
||||
'scores.db',
|
||||
'Skins',
|
||||
'Songs'
|
||||
]
|
||||
|
||||
async function isValidOsuFolder(path) {
|
||||
@@ -83,12 +81,25 @@ async function getUpdateFiles(releaseStream) {
|
||||
return releaseData.data;
|
||||
}
|
||||
|
||||
async function getEZPPUIMD5() {
|
||||
const releaseData = await axios.get(customUIDLLHash, {});
|
||||
return releaseData.data;
|
||||
}
|
||||
|
||||
async function filesThatNeedUpdate(osuPath, updateFiles) {
|
||||
const filesToDownload = [];
|
||||
for (const updatedFile of updateFiles) {
|
||||
const fileName = updatedFile.filename;
|
||||
const fileHash = updatedFile.file_hash;
|
||||
const fileURL = updatedFile.url_full;
|
||||
let fileName = updatedFile.filename;
|
||||
let fileHash = updatedFile.file_hash;
|
||||
let fileURL = updatedFile.url_full;
|
||||
|
||||
if ("url_patch" in updatedFile && updatedFile.url_patch != undefined) {
|
||||
const stripped = updatedFile.url_patch.split("_");
|
||||
fileHash = stripped[stripped.length - 1];
|
||||
const lastIndex = fileURL.lastIndexOf("/");
|
||||
const baseUrl = fileURL.slice(0, lastIndex);
|
||||
fileURL = baseUrl + "/f_" + fileHash;
|
||||
}
|
||||
|
||||
if (ignoredOsuEntities.includes(fileName)) continue;
|
||||
|
||||
@@ -100,7 +111,7 @@ async function filesThatNeedUpdate(osuPath, updateFiles) {
|
||||
filesToDownload.push({
|
||||
fileName,
|
||||
fileURL
|
||||
})
|
||||
});
|
||||
}
|
||||
} else {
|
||||
filesToDownload.push({
|
||||
@@ -109,6 +120,27 @@ async function filesThatNeedUpdate(osuPath, updateFiles) {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
const ezppUI = path.join(osuPath, "EZPPLauncher", customUIDLLName);
|
||||
if (await fu.existsAsync(ezppUI)) {
|
||||
const latestMd5Hash = await getEZPPUIMD5();
|
||||
const binaryUIContents = await fs.promises.readFile(ezppUI);
|
||||
const existingUIMD5 = crypto.createHash("md5").update(binaryUIContents).digest("hex");
|
||||
if (existingUIMD5 != latestMd5Hash) {
|
||||
filesToDownload.push({
|
||||
folder: "EZPPLauncher",
|
||||
fileName: "ezpp!ui.dll",
|
||||
fileURL: customUIDLLPath
|
||||
})
|
||||
}
|
||||
} else {
|
||||
filesToDownload.push({
|
||||
folder: "EZPPLauncher",
|
||||
fileName: "ezpp!ui.dll",
|
||||
fileURL: customUIDLLPath
|
||||
})
|
||||
}
|
||||
|
||||
return filesToDownload;
|
||||
}
|
||||
|
||||
@@ -116,8 +148,13 @@ async function downloadUpdateFiles(osuPath, filesToUpdate) {
|
||||
const eventEmitter = new EventEmitter();
|
||||
let completedIndex = 0;
|
||||
filesToUpdate.forEach(async (fileToUpdate) => {
|
||||
|
||||
if ("folder" in fileToUpdate) {
|
||||
osuPath = path.join(osuPath, fileToUpdate.folder);
|
||||
if (!(await fu.existsAsync(osuPath))) await fs.promises.mkdir(osuPath);
|
||||
}
|
||||
|
||||
const filePath = path.join(osuPath, fileToUpdate.fileName);
|
||||
console.log(filePath);
|
||||
if (await fu.existsAsync(filePath))
|
||||
await fs.promises.rm(filePath);
|
||||
|
||||
@@ -174,6 +211,41 @@ async function setConfigValue(configPath, key, value) {
|
||||
}
|
||||
await fs.promises.writeFile(configPath, configLines.join("\n"), 'utf-8');
|
||||
}
|
||||
|
||||
async function updateOsuCfg(cfgPath) {
|
||||
const osuFolder = path.dirname(cfgPath);
|
||||
const fileStream = await fs.promises.readFile(cfgPath, "utf-8");
|
||||
const lines = fileStream.split(/\r?\n/);
|
||||
const newLines = [];
|
||||
for (const line of lines) {
|
||||
if (line.includes(' = ')) {
|
||||
const argsPair = line.split(' = ', 2);
|
||||
const keyname = argsPair[0]
|
||||
const value = argsPair[1];
|
||||
|
||||
if (keyname.startsWith("h_")) {
|
||||
const filename = keyname.substring(2, keyname.length);
|
||||
const filepath = path.join(osuFolder, filename);
|
||||
if (!fs.existsSync(filepath)) continue;
|
||||
const binaryFileContents = await fs.promises.readFile(filepath);
|
||||
const existingFileMD5 = crypto.createHash("md5").update(binaryFileContents).digest("hex");
|
||||
if (value == existingFileMD5) newLines.push(line)
|
||||
else newLines.push(`${keyname} = ${existingFileMD5}`);
|
||||
} else {
|
||||
newLines.push(line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const ezppUI = path.join(osuFolder, customUIDLLName);
|
||||
if (fs.existsSync(ezppUI)) {
|
||||
const binaryFileContents = await fs.promises.readFile(ezppUI);
|
||||
const existingFileMD5 = crypto.createHash("md5").update(binaryFileContents).digest("hex");
|
||||
newLines.push(`h_${customUIDLLName} = ${existingFileMD5}`);
|
||||
}
|
||||
await fs.promises.writeFile(cfgPath, newLines.join("\n"), 'utf-8');
|
||||
}
|
||||
|
||||
async function findOsuInstallation() {
|
||||
const regedit = require('qiao-regedit');
|
||||
|
||||
@@ -183,14 +255,32 @@ async function findOsuInstallation() {
|
||||
if (line.includes("REG_SZ")) {
|
||||
let value = (line.trim().split(" ")[2]);
|
||||
value = value.substring(1, value.length - 3);
|
||||
return value.trim();
|
||||
return path.dirname(value.trim());
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
async function replaceUI(folder, isStart) {
|
||||
const ezppUIFile = path.join(folder, "EZPPLauncher", customUIDLLName);
|
||||
const osuUIFile = path.join(folder, "osu!ui.dll");
|
||||
const osuUIFileBackup = path.join(folder, "osu!ui.dll.bak");
|
||||
if (isStart) {
|
||||
if (fs.existsSync(osuUIFileBackup)) await fs.promises.unlink(osuUIFileBackup);
|
||||
await fs.promises.rename(osuUIFile, osuUIFileBackup);
|
||||
await new Promise((res) => setTimeout(res, 1000));
|
||||
await fs.promises.copyFile(ezppUIFile, osuUIFile);
|
||||
} else {
|
||||
if (!fs.existsSync(osuUIFileBackup)) return;
|
||||
await fs.promises.unlink(osuUIFile);
|
||||
await new Promise((res) => setTimeout(res, 1000));
|
||||
await fs.promises.rename(osuUIFileBackup, osuUIFile);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isValidOsuFolder, getLatestConfig, getUpdateFiles, filesThatNeedUpdate,
|
||||
downloadUpdateFiles, startOsuWithDevServer: startWithDevServer, setConfigValue,
|
||||
findOsuInstallation
|
||||
findOsuInstallation, replaceUI, updateOsuCfg, getEZPPUIMD5
|
||||
}
|
3963
package-lock.json
generated
Normal file
3963
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ezpplauncher",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"main": "app.js",
|
||||
"license": "MIT",
|
||||
"author": "HorizonCode",
|
||||
|
@@ -188,6 +188,28 @@ window.addEventListener('DOMContentLoaded', () => {
|
||||
}
|
||||
})
|
||||
|
||||
ipcRenderer.on('alert_message', async (event, path) => {
|
||||
const res = await Swal.fire({
|
||||
title: 'Hey!',
|
||||
html: `<p class="text-white">Detected a osu! installation at</p><span class="quotetext">${path}</span><p class="text-white">Is this correct?</p>`,
|
||||
icon: 'info',
|
||||
showCancelButton: true,
|
||||
confirmButtonText: 'Yes',
|
||||
cancelButtonText: 'No',
|
||||
});
|
||||
if (res.isConfirmed) {
|
||||
$('#currentOsuPath').text(path);
|
||||
ipcRenderer.send('alert_response', path);
|
||||
Swal.fire({
|
||||
title: 'Success!',
|
||||
text: 'osu! folder set.',
|
||||
icon: 'success',
|
||||
confirmButtonText: 'Cool'
|
||||
})
|
||||
ipcRenderer.send("do-update-check");
|
||||
}
|
||||
})
|
||||
|
||||
ipcRenderer.on('status_update', (event, status) => {
|
||||
switch (status.type) {
|
||||
case "up-to-date":
|
||||
|
Reference in New Issue
Block a user