Skip to content

Commit 350a53b

Browse files
committed
[Feat] - Refactor compatibility layer initialization for Mac and Linux support
- Updated `initializeCompatibilityLayer` to include Linux in the compatibility checks. - Renamed `setGPTKDefaultOnMacOS` to `setDefaultCompatibilityLayer` for broader applicability. - Enhanced wine version selection logic to accommodate Proton-GE for Linux and improved compatibility checks for MacOS. - Added early return conditions to streamline the process based on platform compatibility. This refactor improves the overall compatibility layer setup for both Mac and Linux environments.
1 parent bb91a87 commit 350a53b

File tree

1 file changed

+36
-20
lines changed

1 file changed

+36
-20
lines changed

src/backend/utils/compatibility_layers.ts

+36-20
Original file line numberDiff line numberDiff line change
@@ -597,9 +597,9 @@ export async function initializeCompatibilityLayer() {
597597
initializationTasks.push(downloadDefaultWine())
598598
}
599599

600-
if (isMac) {
600+
if (isMac || isLinux) {
601601
initializationTasks.push(checkRosettaInstall())
602-
initializationTasks.push(setGPTKDefaultOnMacOS())
602+
initializationTasks.push(setDefaultCompatibilityLayer())
603603
}
604604

605605
try {
@@ -627,10 +627,7 @@ export async function downloadDefaultWine() {
627627
const results = await Promise.all(
628628
availableWine.map(async (version) => {
629629
if (isLinux) {
630-
return (
631-
version.type === 'Wine-GE' &&
632-
version.version.includes('Wine-GE-Proton')
633-
)
630+
return version.type === 'Proton-GE'
634631
}
635632

636633
if (isMac) {
@@ -705,32 +702,51 @@ export async function downloadDefaultWine() {
705702
}
706703
}
707704

708-
export async function setGPTKDefaultOnMacOS() {
709-
const isGPTKCompatible = await isMacSonomaOrHigher()
710-
if (!isGPTKCompatible) {
705+
export async function setDefaultCompatibilityLayer() {
706+
// Early return if not on supported platforms
707+
if (!isMac && !isLinux) {
711708
return
712709
}
713710

711+
// For MacOS, check GPTK compatibility
712+
if (isMac) {
713+
const isGPTKCompatible = await isMacSonomaOrHigher()
714+
if (!isGPTKCompatible) {
715+
return
716+
}
717+
}
718+
714719
const { wineVersion: defaultWine } = GlobalConfig.get().getSettings()
715720

716-
const ignoreList = ['crossover', 'toolkit']
721+
// Get target wine type and prefix name based on platform
722+
const targetType = isMac ? 'toolkit' : 'proton'
723+
const prefixName = isMac ? 'GPTK' : 'Proton'
717724

718-
if (
719-
ignoreList.includes(defaultWine.type.toLowerCase()) ||
720-
defaultWine.name.includes('Toolkit')
721-
) {
725+
// Early return if already using target type
726+
if (isMac) {
727+
const ignoreList = ['crossover', 'toolkit']
728+
if (
729+
ignoreList.includes(defaultWine.type.toLowerCase()) ||
730+
defaultWine.name.includes('Toolkit')
731+
) {
732+
return
733+
}
734+
} else if (defaultWine.type === targetType) {
722735
return
723736
}
724737

738+
// Find target wine version
725739
const wineList = await GlobalConfig.get().getAlternativeWine()
726-
const gptk = wineList.find((wine) => wine.type === 'toolkit')
740+
const targetWine = wineList.find((wine) => wine.type === targetType)
741+
742+
// Set as default if found and valid
743+
if (targetWine && existsSync(targetWine.bin)) {
744+
logInfo(`Changing wine version to ${targetWine.name}`)
745+
GlobalConfig.get().setSetting('wineVersion', targetWine)
727746

728-
if (gptk && existsSync(gptk.bin)) {
729-
logInfo(`Changing wine version to ${gptk.name}`)
730-
GlobalConfig.get().setSetting('wineVersion', gptk)
731-
// update prefix to use the new one as well
747+
// Update prefix path
732748
const installPath = GlobalConfig.get().getSettings().defaultInstallPath
733-
const newPrefix = join(installPath, 'Prefixes', 'GPTK')
749+
const newPrefix = join(installPath, 'Prefixes', prefixName)
734750
GlobalConfig.get().setSetting('winePrefix', newPrefix)
735751
}
736752
return

0 commit comments

Comments
 (0)