Skip to content

Commit 6d8070d

Browse files
committed
chore: use native patcher
1 parent 2235c5d commit 6d8070d

File tree

1 file changed

+11
-13
lines changed
  • src/backend/storeManagers/hyperplay

1 file changed

+11
-13
lines changed

src/backend/storeManagers/hyperplay/utils.ts

+11-13
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ import {
1515
qaToken,
1616
valistListingsApiUrl
1717
} from 'backend/constants'
18-
import { getGameInfo, getSettings } from './games'
18+
import { getGameInfo } from './games'
1919
import { LogPrefix, logError, logInfo } from 'backend/logger/logger'
2020
import { join } from 'path'
2121
import { existsSync } from 'graceful-fs'
2222
import { ProjectMetaInterface } from '@valist/sdk/dist/typesShared'
2323
import getPartitionCookies from 'backend/utils/get_partition_cookies'
2424
import { DEV_PORTAL_URL } from 'common/constants'
25-
import { runWineCommand } from 'backend/launcher'
2625

2726
export async function getHyperPlayStoreRelease(
2827
appName: string
@@ -387,14 +386,14 @@ export async function getEpicListingUrl(projectId: string): Promise<string> {
387386
}
388387

389388
export const runModPatcher = async (appName: string) => {
390-
// game_folder/client-patcher patch.exe -m patch/manifest.json
391389
const installPath = getGameInfo(appName)?.install.install_path
392390
if (!installPath) {
393391
logError(`Cannot find install path for ${appName}`, LogPrefix.HyperPlay)
394392
return
395393
}
396394

397-
const patcher = join(installPath, 'client-patcher.exe')
395+
const patcherBinary = isWindows ? 'client-patcher.exe' : 'client-patcher'
396+
const patcher = join(installPath, patcherBinary)
398397
const manifest = join(installPath, 'patch', 'manifest.json')
399398

400399
logInfo(
@@ -407,15 +406,14 @@ export const runModPatcher = async (appName: string) => {
407406
}
408407

409408
try {
410-
if (!isWindows) {
411-
const gameSettings = await getSettings(appName)
412-
runWineCommand({
413-
gameSettings,
414-
commandParts: [patcher, 'patch', '-m', manifest],
415-
wait: true
416-
})
417-
} else {
418-
await spawnAsync(patcher, ['patch', '-m', manifest])
409+
const { stderr, stdout } = await spawnAsync(
410+
patcherBinary,
411+
['patch', '-m', 'patch/manifest.json'],
412+
{ cwd: installPath }
413+
)
414+
logInfo(['Patch Applied', stdout], LogPrefix.HyperPlay)
415+
if (stderr) {
416+
logError(stderr, LogPrefix.HyperPlay)
419417
}
420418
} catch (error) {
421419
throw new Error(`Error running patcher: ${error}`)

0 commit comments

Comments
 (0)