diff options
Diffstat (limited to 'frontend/src/steamfixes/restart.ts')
| -rw-r--r-- | frontend/src/steamfixes/restart.ts | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/frontend/src/steamfixes/restart.ts b/frontend/src/steamfixes/restart.ts new file mode 100644 index 00000000..467efd6a --- /dev/null +++ b/frontend/src/steamfixes/restart.ts @@ -0,0 +1,60 @@ +import { Patch, findModuleChild, replacePatch, sleep } from 'decky-frontend-lib'; + +import Logger from '../logger'; + +const logger = new Logger('RestartSteamFix'); + +declare global { + interface Window { + SteamClient: any; + appDetailsStore: any; + } +} + +let patch: Patch; + +function rePatch() { + // If you patch anything on SteamClient within the first few seconds of the client having loaded it will get redefined for some reason, so repatch any of these changes that occur with History.listen or an interval + patch = replacePatch(window.SteamClient.User, 'StartRestart', () => SteamClient.User.StartShutdown(false)); +} + +export default async function restartFix() { + try { + rePatch(); + // TODO type and add to frontend-lib + let History: any; + + while (!History) { + History = findModuleChild((m) => { + if (typeof m !== 'object') return undefined; + for (let prop in m) { + if (m[prop]?.m_history) return m[prop].m_history; + } + }); + if (!History) { + logger.debug('Waiting 5s for history to become available.'); + await sleep(5000); + } + } + + function repatchIfNeeded() { + if (window.SteamClient.User.StartRestart !== patch.patchedFunction) { + rePatch(); + } + } + + const unlisten = History.listen(repatchIfNeeded); + + // Just in case + setTimeout(repatchIfNeeded, 5000); + setTimeout(repatchIfNeeded, 10000); + + return () => { + unlisten(); + patch.unpatch(); + }; + } catch (e) { + logger.error('Error patching StartRestart', e); + } + return () => {}; +} |
