15 Commits
1.1.4 ... 1.2.0

11 changed files with 5369 additions and 341 deletions

50
.github/workflows/build.yml vendored Normal file
View 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
View 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"
}
]
}

41
app.js
View File

@@ -11,8 +11,11 @@ const windowName = require('get-window-by-name');
const terminalUtil = require('./terminalUtil'); const terminalUtil = require('./terminalUtil');
const osUtil = require('./osUtil'); const osUtil = require('./osUtil');
const appInfo = require('./appInfo'); const appInfo = require('./appInfo');
const executeUtil = require("./executeUtil");
const { DownloaderHelper } = require('node-downloader-helper'); const { DownloaderHelper } = require('node-downloader-helper');
let shouldPatch = false;
let patcherLoc = undefined;
let tempOsuPath; let tempOsuPath;
let osuWindowInfo; let osuWindowInfo;
let isIngame; let isIngame;
@@ -36,6 +39,13 @@ const run = () => {
if (!osuLoaded) { if (!osuLoaded) {
osuLoaded = true; osuLoaded = true;
//TODO: do patch //TODO: do patch
setTimeout(() => {
console.log("yes");
if (shouldPatch) {
console.log("running " + patcherLoc + " in dir " + path.dirname(patcherLoc));
executeUtil.runFileDetached(path.dirname(patcherLoc), patcherLoc);
}
}, 5000);
} }
const windowTitle = firstInstance.processTitle; const windowTitle = firstInstance.processTitle;
let rpcOsuVersion = ""; let rpcOsuVersion = "";
@@ -120,7 +130,6 @@ const run = () => {
rpc.connect(); rpc.connect();
let mainWindow; let mainWindow;
let tray = null let tray = null
app.whenReady().then(async () => { app.whenReady().then(async () => {
@@ -149,6 +158,7 @@ const run = () => {
{ {
label: 'Exit', label: 'Exit',
click: function () { click: function () {
if (isIngame) return;
app.exit(0); app.exit(0);
} }
} }
@@ -158,6 +168,9 @@ const run = () => {
tray.setContextMenu(trayMenu) tray.setContextMenu(trayMenu)
mainWindow = createWindow(); mainWindow = createWindow();
mainWindow.on('close', (e) => {
if (isIngame) e.preventDefault();
});
mainWindow.once('show', async () => { mainWindow.once('show', async () => {
await updateConfigVars(mainWindow); await updateConfigVars(mainWindow);
await tryLogin(mainWindow); await tryLogin(mainWindow);
@@ -197,9 +210,14 @@ const run = () => {
const osuFolder = await config.get("osuPath"); const osuFolder = await config.get("osuPath");
if (!osuFolder || osuFolder == "") { if (!osuFolder || osuFolder == "") {
const foundFolder = await osuUtil.findOsuInstallation(); 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 () { app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) mainWindow = createWindow(); if (BrowserWindow.getAllWindows().length === 0) mainWindow = createWindow();
@@ -207,7 +225,13 @@ const run = () => {
app.on('window-all-closed', () => { app.on('window-all-closed', () => {
app.quit() app.quit()
}) })
ipcMain.handle('launch', async () => { ipcMain.handle('launch', async (e, opts) => {
console.log(opts);
shouldPatch = "patch" in opts && opts.patch;
const osuFolder = await config.get("osuPath");
patcherLoc = path.join(osuFolder, "EZPPLauncher", "patcher.exe");
await osuUtil.updateOsuCfg(path.join(osuFolder, "osu!.cfg"));
const osuConfig = await osuUtil.getLatestConfig(tempOsuPath); const osuConfig = await osuUtil.getLatestConfig(tempOsuPath);
const username = await config.get('username'); const username = await config.get('username');
const password = await config.get('password'); const password = await config.get('password');
@@ -221,13 +245,20 @@ const run = () => {
await osuUtil.setConfigValue(osuConfig.path, "Username", ""); await osuUtil.setConfigValue(osuConfig.path, "Username", "");
await osuUtil.setConfigValue(osuConfig.path, "Password", ""); await osuUtil.setConfigValue(osuConfig.path, "Password", "");
} }
await osuUtil.replaceUI(osuFolder, true);
rpc.updateState("Launching osu!..."); rpc.updateState("Launching osu!...");
isIngame = true; isIngame = true;
mainWindow.closable = false;
if (mainWindow.isVisible()) mainWindow.hide(); if (mainWindow.isVisible()) mainWindow.hide();
const result = await osuUtil.startOsuWithDevServer(tempOsuPath, "ez-pp.farm", async () => { const result = await osuUtil.startOsuWithDevServer(tempOsuPath, "ez-pp.farm", async () => {
isIngame = false;
if (!mainWindow.isVisible()) mainWindow.show(); if (!mainWindow.isVisible()) mainWindow.show();
await doUpdateCheck(mainWindow); setTimeout(async () => {
isIngame = false;
osuLoaded = false;
await osuUtil.replaceUI(osuFolder, false);
await doUpdateCheck(mainWindow);
mainWindow.closable = true;
}, 2000);
}); });
return result; return result;
}) })

View File

@@ -2,7 +2,7 @@ const { default: axios } = require("axios");
const { compareVersions } = require("compare-versions"); const { compareVersions } = require("compare-versions");
const appName = "EZPPLauncher" const appName = "EZPPLauncher"
const appVersion = "1.1.4"; const appVersion = "1.2.0";
const hasUpdate = async () => { const hasUpdate = async () => {
const releaseInfo = await axios.get(`https://git.ez-pp.farm/api/v1/repos/EZPPFarm/${appName}/releases/latest`); const releaseInfo = await axios.get(`https://git.ez-pp.farm/api/v1/repos/EZPPFarm/${appName}/releases/latest`);

View File

@@ -1,53 +1,66 @@
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root { :root {
--main-accent: 335deg; --main-accent: 335deg;
--main-bg: 230deg; --main-bg: 230deg;
} }
* { * {
font-family: 'Exo 2', 'Roboto' !important; font-family: 'Exo 2', 'Roboto' !important;
} }
body { body {
background-color: hsl(var(--main-bg), 24%, 19%); 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 { .sections {
display: flex; display: flex;
flex-flow: column; flex-flow: column;
} }
.app-name { .app-name {
font-size: 40px; font-size: 40px;
font-weight: 500; font-weight: 500;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.37); text-shadow: 0 0 15px rgba(255, 255, 255, 0.37);
} }
.launcher-window { .launcher-window {
width: 100%; width: 100%;
} }
.launch-button-section { .launch-button-section {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.launch-button-section button { .launch-button-section button {
margin-bottom: 10px; margin-bottom: 10px;
} }
.loading-section, .loading-section,
.login-section { .login-section {
margin-top: 35px; margin-top: 35px;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.loading-section { .loading-section {
margin-top: 0; margin-top: 0;
} }
.loading-section {} .loading-section {}
@@ -55,268 +68,268 @@ body {
.loading-indicator {} .loading-indicator {}
.loading-indicator-text { .loading-indicator-text {
display: flex; display: flex;
flex-flow: column; flex-flow: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.folder-section { .folder-section {
margin-top: 50px; margin-top: 50px;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
color: #aaa; color: #aaa;
font-weight: 500; font-weight: 500;
} }
.folder-action { .folder-action {
font-style: italic; font-style: italic;
cursor: pointer; cursor: pointer;
width: fit-content; width: fit-content;
line-height: .9; line-height: .9;
} }
.launch-section { .launch-section {
width: 100%; width: 100%;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.btn.btn-launch { .btn.btn-launch {
margin-top: 10px; margin-top: 10px;
width: 300px; width: 300px;
font-size: 23px; font-size: 23px;
text-transform: none; text-transform: none;
} }
.account-section { .account-section {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 20px; gap: 20px;
} }
.server-logo img { .server-logo img {
user-select: none; user-select: none;
pointer-events: none; pointer-events: none;
} }
.user-info { .user-info {
text-align: start; text-align: start;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
justify-content: center; justify-content: center;
align-content: center; align-content: center;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.user-info .welcome-text { .user-info .welcome-text {
font-size: 31px; font-size: 31px;
letter-spacing: .02rem; letter-spacing: .02rem;
height: 30px; height: 30px;
line-height: .8; line-height: .8;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.349); text-shadow: 0 0 10px rgba(0, 0, 0, 0.349);
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
.user-info .account-action { .user-info .account-action {
font-size: 21px; font-size: 21px;
letter-spacing: .05rem; letter-spacing: .05rem;
font-weight: 500; font-weight: 500;
font-style: italic; font-style: italic;
color: #aaa; color: #aaa;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.349); text-shadow: 0 0 10px rgba(0, 0, 0, 0.349);
cursor: pointer; cursor: pointer;
line-height: 1.2; line-height: 1.2;
width: fit-content; width: fit-content;
} }
.user-image { .user-image {
border: 5px solid white; border: 5px solid white;
border-radius: 0.4rem; border-radius: 0.4rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.349); box-shadow: 0 0 10px rgba(0, 0, 0, 0.349);
background-image: url(https://a.ez-pp.farm/0); background-image: url(https://a.ez-pp.farm/0);
width: 100px; width: 100px;
height: 100px; height: 100px;
background-size: cover; background-size: cover;
background-position: center; background-position: center;
} }
.form-outline .form-control:focus~.form-notch .form-notch-leading { .form-outline .form-control:focus~.form-notch .form-notch-leading {
border-color: hsl(var(--main-accent), 93%, 48%); border-color: hsl(var(--main-accent), 93%, 48%);
box-shadow: -1px 0 0 0 hsl(var(--main-accent), 93%, 48%), 0 1px 0 0 hsl(var(--main-accent), 93%, 48%), 0 -1px 0 0 hsl(var(--main-accent), 93%, 48%); box-shadow: -1px 0 0 0 hsl(var(--main-accent), 93%, 48%), 0 1px 0 0 hsl(var(--main-accent), 93%, 48%), 0 -1px 0 0 hsl(var(--main-accent), 93%, 48%);
} }
.form-outline .form-control:focus~.form-notch .form-notch-middle { .form-outline .form-control:focus~.form-notch .form-notch-middle {
border-color: hsl(var(--main-accent), 93%, 48%); border-color: hsl(var(--main-accent), 93%, 48%);
box-shadow: 0 1px 0 0 hsl(var(--main-accent), 93%, 48%); box-shadow: 0 1px 0 0 hsl(var(--main-accent), 93%, 48%);
border-top: 1px solid transparent; border-top: 1px solid transparent;
} }
.form-outline .form-control:focus~.form-notch .form-notch-trailing { .form-outline .form-control:focus~.form-notch .form-notch-trailing {
border-color: hsl(var(--main-accent), 93%, 48%); border-color: hsl(var(--main-accent), 93%, 48%);
box-shadow: 1px 0 0 0 hsl(var(--main-accent), 93%, 48%), 0 -1px 0 0 hsl(var(--main-accent), 93%, 48%), 0 1px 0 0 hsl(var(--main-accent), 93%, 48%); box-shadow: 1px 0 0 0 hsl(var(--main-accent), 93%, 48%), 0 -1px 0 0 hsl(var(--main-accent), 93%, 48%), 0 1px 0 0 hsl(var(--main-accent), 93%, 48%);
} }
.form-outline .form-control:focus~.form-label { .form-outline .form-control:focus~.form-label {
color: hsl(var(--main-accent), 93%, 48%); color: hsl(var(--main-accent), 93%, 48%);
} }
.btn-accent, .btn-accent,
.btn-accent:active { .btn-accent:active {
background: hsl(var(--main-accent), 93%, 48%); background: hsl(var(--main-accent), 93%, 48%);
color: #fff; color: #fff;
} }
.btn-accent:hover { .btn-accent:hover {
background: hsl(var(--main-accent), 93%, 42%); background: hsl(var(--main-accent), 93%, 42%);
color: #fff ; color: #fff;
} }
.btn-grey, .btn-grey,
.btn-grey:active { .btn-grey:active {
background: #727272; background: #727272;
color: #fff; color: #fff;
} }
.btn-grey:hover { .btn-grey:hover {
background: #626262; background: #626262;
color: #fff; color: #fff;
} }
.btn-grouped { .btn-grouped {
display: flex; display: flex;
gap: 50px; gap: 50px;
} }
.clickable { .clickable {
cursor: pointer; cursor: pointer;
} }
.loader { .loader {
position: relative; position: relative;
margin: 0px auto; margin: 0px auto;
width: 200px; width: 200px;
height: 200px; height: 200px;
transform: scale(0.5); transform: scale(0.5);
} }
.loader:before { .loader:before {
content: ''; content: '';
display: block; display: block;
padding-top: 100%; padding-top: 100%;
} }
.circular-loader { .circular-loader {
-webkit-animation: rotate 2s linear infinite; -webkit-animation: rotate 2s linear infinite;
animation: rotate 2s linear infinite; animation: rotate 2s linear infinite;
height: 100%; height: 100%;
-webkit-transform-origin: center center; -webkit-transform-origin: center center;
-ms-transform-origin: center center; -ms-transform-origin: center center;
transform-origin: center center; transform-origin: center center;
width: 100%; width: 100%;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
margin: auto; margin: auto;
} }
.loader-path { .loader-path {
stroke-dasharray: 150, 200; stroke-dasharray: 150, 200;
stroke-dashoffset: -10; stroke-dashoffset: -10;
-webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite; -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite; animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
stroke-linecap: round; stroke-linecap: round;
} }
@-webkit-keyframes rotate { @-webkit-keyframes rotate {
100% { 100% {
-webkit-transform: rotate(360deg); -webkit-transform: rotate(360deg);
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
@keyframes rotate { @keyframes rotate {
100% { 100% {
-webkit-transform: rotate(360deg); -webkit-transform: rotate(360deg);
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
@-webkit-keyframes dash { @-webkit-keyframes dash {
0% { 0% {
stroke-dasharray: 1, 200; stroke-dasharray: 1, 200;
stroke-dashoffset: 0; stroke-dashoffset: 0;
} }
50% { 50% {
stroke-dasharray: 89, 200; stroke-dasharray: 89, 200;
stroke-dashoffset: -35; stroke-dashoffset: -35;
} }
100% { 100% {
stroke-dasharray: 89, 200; stroke-dasharray: 89, 200;
stroke-dashoffset: -124; stroke-dashoffset: -124;
} }
} }
@keyframes dash { @keyframes dash {
0% { 0% {
stroke-dasharray: 1, 200; stroke-dasharray: 1, 200;
stroke-dashoffset: 0; stroke-dashoffset: 0;
} }
50% { 50% {
stroke-dasharray: 89, 200; stroke-dasharray: 89, 200;
stroke-dashoffset: -35; stroke-dashoffset: -35;
} }
100% { 100% {
stroke-dasharray: 89, 200; stroke-dasharray: 89, 200;
stroke-dashoffset: -124; stroke-dashoffset: -124;
} }
} }
@-webkit-keyframes color { @-webkit-keyframes color {
0% { 0% {
stroke: #fff; stroke: #fff;
} }
40% { 40% {
stroke: #fff; stroke: #fff;
} }
66% { 66% {
stroke: #fff; stroke: #fff;
} }
80%, 80%,
90% { 90% {
stroke: #fff; stroke: #fff;
} }
} }
@keyframes color { @keyframes color {
0% { 0% {
stroke: #fff; stroke: #fff;
} }
40% { 40% {
stroke: #fff; stroke: #fff;
} }
66% { 66% {
stroke: #fff; stroke: #fff;
} }
80%, 80%,
90% { 90% {
stroke: #fff; stroke: #fff;
} }
} }

View File

@@ -4,11 +4,12 @@ module.exports = {
childProcess.execFile(file, args, { childProcess.execFile(file, args, {
cwd: folder cwd: folder
}, (_err, _stdout, _stderr) => { }, (_err, _stdout, _stderr) => {
onExit(); if (onExit)
onExit();
}); });
}, },
runFileDetached: (folder, file, args) => { runFileDetached: (folder, file, args) => {
const subprocess = childProcess.spawn(file + " " + args, { const subprocess = childProcess.spawn(file + (args ? " " + args : ''), {
cwd: folder, cwd: folder,
detached: true, detached: true,
stdio: 'ignore' stdio: 'ignore'

View File

@@ -63,9 +63,9 @@
<img src="../assets/logo.png" height="150"> <img src="../assets/logo.png" height="150">
</div> </div>
<div class="launch-button-section"> <div class="launch-button-section">
<button class="btn btn-lg btn-launch btn-accent" id="launch-btn">Launch</button> <button class="btn btn-lg btn-launch btn-accent" id="launch-btn" disabled>Launch</button>
<div class="patch-checkbox" style="display: none;"> <div class="patch-checkbox">
<input type="checkbox" id="enablePatching" disabled /> <input type="checkbox" id="enablePatching" checked/>
<label for="enablePatching" style="display: initial;">enable <label for="enablePatching" style="display: initial;">enable
Patching</label> Patching</label>
</div> </div>

View File

@@ -8,189 +8,341 @@ const { EventEmitter } = require('events');
const { DownloaderHelper } = require('node-downloader-helper'); const { DownloaderHelper } = require('node-downloader-helper');
const checkUpdateURL = "https://osu.ppy.sh/web/check-updates.php?action=check&stream="; 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 patcherHook = "https://ez-pp.farm/assets/patch.hook.dll";
const patcherHookHash = "https://ez-pp.farm/assets/patch.hook.md5";
const patcherHookName = "patch.hook.dll";
const patcherExe = "https://ez-pp.farm/assets/patcher.exe";
const patcherExeHash = "https://ez-pp.farm/assets/patcher.md5"
const patcherExeName = "patcher.exe";
const ignoredOsuEntities = [ const ignoredOsuEntities = [
'osu!auth.dll' 'osu!auth.dll',
] ]
const osuEntities = [ const osuEntities = [
'avcodec-51.dll', 'avcodec-51.dll',
'avformat-52.dll', 'avformat-52.dll',
'avutil-49.dll', 'avutil-49.dll',
'bass.dll', 'bass.dll',
'bass_fx.dll', 'bass_fx.dll',
'collection.db', 'collection.db',
'd3dcompiler_47.dll', 'd3dcompiler_47.dll',
'Data', 'libEGL.dll',
'Downloads', 'libGLESv2.dll',
'libEGL.dll', 'Microsoft.Ink.dll',
'libGLESv2.dll', 'OpenTK.dll',
'Logs', 'osu!.cfg',
'Microsoft.Ink.dll', 'osu!.db',
'OpenTK.dll', 'osu!.exe',
'osu!.cfg', 'osu!auth.dll',
'osu!.db', 'osu!gameplay.dll',
'osu!.exe', 'osu!seasonal.dll',
'osu!auth.dll', 'osu!ui.dll',
'osu!gameplay.dll', 'presence.db',
'osu!seasonal.dll', 'pthreadGC2.dll',
'osu!ui.dll', 'scores.db',
'presence.db',
'pthreadGC2.dll',
'scores.db',
'Skins',
'Songs'
] ]
async function isValidOsuFolder(path) { async function isValidOsuFolder(path) {
const allFiles = await fs.promises.readdir(path); const allFiles = await fs.promises.readdir(path);
let matches = 0; let matches = 0;
for (const file of allFiles) { for (const file of allFiles) {
if (osuEntities.includes(file)) matches = matches + 1; if (osuEntities.includes(file)) matches = matches + 1;
} }
return Math.round((matches / osuEntities.length) * 100) >= 60; return Math.round((matches / osuEntities.length) * 100) >= 60;
} }
async function getLatestConfig(osuPath) { async function getLatestConfig(osuPath) {
const configFileInfo = { const configFileInfo = {
name: "", name: "",
path: "", path: "",
get: async (key) => { get: async (key) => {
if (!configFileInfo.path) if (!configFileInfo.path)
return ""; return "";
const fileStream = await fs.promises.readFile(configFileInfo.path, "utf-8"); const fileStream = await fs.promises.readFile(configFileInfo.path, "utf-8");
const lines = fileStream.split(/\r?\n/) const lines = fileStream.split(/\r?\n/)
for (const line of lines) { for (const line of lines) {
if (line.includes(' = ')) { if (line.includes(' = ')) {
const argsPair = line.split(' = ', 2); const argsPair = line.split(' = ', 2);
const keyname = argsPair[0] const keyname = argsPair[0]
const value = argsPair[1]; const value = argsPair[1];
if (keyname == key) { if (keyname == key) {
return value; return value;
} }
}
}
} }
}
} }
const userOsuConfig = path.join(osuPath, `osu!.${process.env['USERNAME']}.cfg`) }
if (fs.existsSync(userOsuConfig)) { const userOsuConfig = path.join(osuPath, `osu!.${process.env['USERNAME']}.cfg`)
configFileInfo.name = `osu!.${process.env['USERNAME']}.cfg`; if (fs.existsSync(userOsuConfig)) {
configFileInfo.path = userOsuConfig; configFileInfo.name = `osu!.${process.env['USERNAME']}.cfg`;
} configFileInfo.path = userOsuConfig;
return configFileInfo; }
return configFileInfo;
} }
async function getUpdateFiles(releaseStream) { async function getUpdateFiles(releaseStream) {
const releaseData = await axios.get(checkUpdateURL + releaseStream, {}); const releaseData = await axios.get(checkUpdateURL + releaseStream, {});
return releaseData.data; return releaseData.data;
}
async function getEZPPUIMD5() {
const releaseData = await axios.get(customUIDLLHash, {});
return releaseData.data;
}
async function getMD5Hash(url) {
const releaseData = await axios.get(url, {});
return releaseData.data;
} }
async function filesThatNeedUpdate(osuPath, updateFiles) { async function filesThatNeedUpdate(osuPath, updateFiles) {
const filesToDownload = []; const filesToDownload = [];
for (const updatedFile of updateFiles) { for (const updatedFile of updateFiles) {
const fileName = updatedFile.filename; let fileName = updatedFile.filename;
const fileHash = updatedFile.file_hash; let fileHash = updatedFile.file_hash;
const fileURL = updatedFile.url_full; let fileURL = updatedFile.url_full;
if (ignoredOsuEntities.includes(fileName)) continue; if ("url_patch" in updatedFile && updatedFile.url_patch != undefined) {
const stripped = updatedFile.url_patch.split("_");
const fileOnDisk = path.join(osuPath, fileName); fileHash = stripped[stripped.length - 1];
if (await fu.existsAsync(fileOnDisk)) { const lastIndex = fileURL.lastIndexOf("/");
const binaryFileContents = await fs.promises.readFile(fileOnDisk); const baseUrl = fileURL.slice(0, lastIndex);
const existingFileMD5 = crypto.createHash("md5").update(binaryFileContents).digest("hex"); fileURL = baseUrl + "/f_" + fileHash;
if (existingFileMD5.toLowerCase() != fileHash.toLowerCase()) {
filesToDownload.push({
fileName,
fileURL
})
}
} else {
filesToDownload.push({
fileName,
fileURL
});
}
} }
return filesToDownload;
if (ignoredOsuEntities.includes(fileName)) continue;
const fileOnDisk = path.join(osuPath, fileName);
if (await fu.existsAsync(fileOnDisk)) {
const binaryFileContents = await fs.promises.readFile(fileOnDisk);
const existingFileMD5 = crypto.createHash("md5").update(binaryFileContents).digest("hex");
if (existingFileMD5.toLowerCase() != fileHash.toLowerCase()) {
filesToDownload.push({
fileName,
fileURL
});
}
} else {
filesToDownload.push({
fileName,
fileURL
});
}
}
const ezppUI = path.join(osuPath, "EZPPLauncher", customUIDLLName);
const hook = path.join(osuPath, "EZPPLauncher", patcherHookName);
const patcher = path.join(osuPath, "EZPPLauncher", patcherExeName);
if (await fu.existsAsync(hook)) {
const latestHookMd5Hash = (await getMD5Hash(patcherHookHash)).toLowerCase().trim();
const binaryHookContents = await fs.promises.readFile(hook);
const existingHookMD5 = crypto.createHash("md5").update(binaryHookContents).digest("hex").toLowerCase().trim();
if (existingHookMD5 != latestHookMd5Hash) {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: patcherHookName,
fileURL: patcherHook
});
console.log("patcher has wrong hashsum (" + existingHookMD5 + " / " + latestHookMd5Hash + ")");
}
} else {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: patcherHookName,
fileURL: patcherHook
});
console.log("patcher does not exist");
}
if (await fu.existsAsync(patcher)) {
const latestPatchMd5Hash = (await getMD5Hash(patcherExeHash)).toLowerCase().trim();
const binaryPatchContents = await fs.promises.readFile(patcher);
const existingPatchMD5 = crypto.createHash("md5").update(binaryPatchContents).digest("hex").toLowerCase().trim();
if (existingPatchMD5 != latestPatchMd5Hash) {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: patcherExeName,
fileURL: patcherExe
});
console.log("patcher has wrong hashsum (" + existingPatchMD5 + " / " + latestPatchMd5Hash + ")")
}
} else {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: patcherExeName,
fileURL: patcherExe
});
console.log("patcher does not exist");
}
if (await fu.existsAsync(ezppUI)) {
const latestUIMd5Hash = (await getMD5Hash(customUIDLLHash)).toLowerCase().trim();
const binaryUIContents = await fs.promises.readFile(ezppUI);
const existingUIMD5 = crypto.createHash("md5").update(binaryUIContents).digest("hex").toLowerCase().trim();
if (existingUIMD5 != latestUIMd5Hash) {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: "ezpp!ui.dll",
fileURL: customUIDLLPath
})
}
} else {
filesToDownload.push({
folder: "EZPPLauncher",
fileName: "ezpp!ui.dll",
fileURL: customUIDLLPath
})
}
console.log(JSON.stringify(filesToDownload, null, 2))
return filesToDownload;
} }
async function downloadUpdateFiles(osuPath, filesToUpdate) { async function downloadUpdateFiles(osuPath, filesToUpdate) {
const eventEmitter = new EventEmitter(); const eventEmitter = new EventEmitter();
let completedIndex = 0; let completedIndex = 0;
filesToUpdate.forEach(async (fileToUpdate) => { filesToUpdate.forEach(async (fileToUpdate) => {
const filePath = path.join(osuPath, fileToUpdate.fileName);
console.log(filePath);
if (await fu.existsAsync(filePath))
await fs.promises.rm(filePath);
const fileDownload = new DownloaderHelper(fileToUpdate.fileURL, osuPath, { let tempPath = osuPath;
fileName: fileToUpdate.fileName,
override: true,
});
fileDownload.on('end', () => {
completedIndex = completedIndex + 1;
if (completedIndex >= filesToUpdate.length)
eventEmitter.emit('completed');
});
fileDownload.on('error', (err) => {
console.log(err);
eventEmitter.emit('error');
});
fileDownload.start().catch(err => console.error(err)); if ("folder" in fileToUpdate) {
tempPath = path.join(tempPath, fileToUpdate.folder);
if (!(await fu.existsAsync(tempPath))) await fs.promises.mkdir(tempPath);
}
const filePath = path.join(tempPath, fileToUpdate.fileName);
if (await fu.existsAsync(filePath))
await fs.promises.rm(filePath);
const fileDownload = new DownloaderHelper(fileToUpdate.fileURL, tempPath, {
fileName: fileToUpdate.fileName,
override: true,
});
fileDownload.on('end', () => {
completedIndex = completedIndex + 1;
if (completedIndex >= filesToUpdate.length)
eventEmitter.emit('completed');
});
fileDownload.on('error', (err) => {
console.log(err);
eventEmitter.emit('error');
}); });
return eventEmitter; fileDownload.start().catch(err => console.error(err));
});
return eventEmitter;
} }
async function startWithDevServer(osuPath, serverDomain, onExit) { async function startWithDevServer(osuPath, serverDomain, onExit) {
const osuExe = path.join(osuPath, "osu!.exe"); const osuExe = path.join(osuPath, "osu!.exe");
if (!await fu.existsAsync(osuExe)) return false; if (!await fu.existsAsync(osuExe)) return false;
switch (process.platform) { switch (process.platform) {
case "linux": case "linux":
executeUtil.runFile(osuPath, 'osu-stable', ["-devserver", serverDomain], onExit); executeUtil.runFile(osuPath, 'osu-stable', ["-devserver", serverDomain], onExit);
return true; return true;
case "win32": case "win32":
executeUtil.runFile(osuPath, osuExe, ["-devserver", serverDomain], onExit); executeUtil.runFile(osuPath, osuExe, ["-devserver", serverDomain], onExit);
return true; return true;
} }
return false; return false;
} }
async function setConfigValue(configPath, key, value) { async function setConfigValue(configPath, key, value) {
const configLines = new Array(); const configLines = new Array();
const fileStream = await fs.promises.readFile(configPath, "utf-8"); const fileStream = await fs.promises.readFile(configPath, "utf-8");
const lines = fileStream.split(/\r?\n/) const lines = fileStream.split(/\r?\n/)
for (const line of lines) { for (const line of lines) {
if (line.includes(' = ')) { if (line.includes(' = ')) {
const argsPair = line.split(' = ', 2); const argsPair = line.split(' = ', 2);
const keyname = argsPair[0].trim(); const keyname = argsPair[0].trim();
if (key == keyname) { if (key == keyname) {
configLines.push(`${keyname} = ${value}`); configLines.push(`${keyname} = ${value}`);
} else { } else {
configLines.push(line); configLines.push(line);
} }
} else { } else {
configLines.push(line); configLines.push(line);
}
} }
await fs.promises.writeFile(configPath, configLines.join("\n"), 'utf-8'); }
await fs.promises.writeFile(configPath, configLines.join("\n"), 'utf-8');
} }
async function findOsuInstallation() {
const regedit = require('qiao-regedit');
const osuLocationFromDefaultIcon = "HKLM\\SOFTWARE\\Classes\\osu\\DefaultIcon"; async function updateOsuCfg(cfgPath) {
const osuStruct = await regedit.listValuesSync(osuLocationFromDefaultIcon); const osuFolder = path.dirname(cfgPath);
for (const line of osuStruct.split("\n")) { const fileStream = await fs.promises.readFile(cfgPath, "utf-8");
if (line.includes("REG_SZ")) { const lines = fileStream.split(/\r?\n/);
let value = (line.trim().split(" ")[2]); const newLines = [];
value = value.substring(1, value.length - 3); for (const line of lines) {
return value.trim(); 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);
}
} }
return undefined; }
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');
const osuLocationFromDefaultIcon = "HKLM\\SOFTWARE\\Classes\\osu\\DefaultIcon";
const osuStruct = await regedit.listValuesSync(osuLocationFromDefaultIcon);
for (const line of osuStruct.split("\n")) {
if (line.includes("REG_SZ")) {
let value = (line.trim().split(" ")[2]);
value = value.substring(1, value.length - 3);
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 = { module.exports = {
isValidOsuFolder, getLatestConfig, getUpdateFiles, filesThatNeedUpdate, isValidOsuFolder, getLatestConfig, getUpdateFiles, filesThatNeedUpdate,
downloadUpdateFiles, startOsuWithDevServer: startWithDevServer, setConfigValue, downloadUpdateFiles, startOsuWithDevServer: startWithDevServer, setConfigValue,
findOsuInstallation findOsuInstallation, replaceUI, updateOsuCfg, getEZPPUIMD5
} }

4741
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "ezpplauncher", "name": "ezpplauncher",
"version": "1.1.4", "version": "1.2.0",
"main": "app.js", "main": "app.js",
"license": "MIT", "license": "MIT",
"author": "HorizonCode", "author": "HorizonCode",
@@ -36,7 +36,8 @@
"pack-win": "electron-builder --win --x64", "pack-win": "electron-builder --win --x64",
"pack-linux": "electron-builder --linux --x64", "pack-linux": "electron-builder --linux --x64",
"pack-mac": "electron-builder --mac --x64", "pack-mac": "electron-builder --mac --x64",
"dist": "electron-builder" "dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
}, },
"devDependencies": { "devDependencies": {
"electron": "^24.2.0", "electron": "^24.2.0",

View File

@@ -48,7 +48,7 @@ window.addEventListener('DOMContentLoaded', () => {
case "up-to-date": case "up-to-date":
$("#launch-btn").attr('disabled', true); $("#launch-btn").attr('disabled', true);
$('#launch-btn').html('Launching...'); $('#launch-btn').html('Launching...');
const result = await ipcRenderer.invoke("launch"); const result = await ipcRenderer.invoke("launch", { patch: $('#enablePatching').is(':checked') });
if (!result) { if (!result) {
Swal.fire({ Swal.fire({
title: 'Uh oh!', title: 'Uh oh!',
@@ -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) => { ipcRenderer.on('status_update', (event, status) => {
switch (status.type) { switch (status.type) {
case "up-to-date": case "up-to-date":