From a5a2ec4f7a855ad35bde6362796a0a07fd419cf7 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 27 Oct 2019 07:25:43 +0100 Subject: proto/wine: add support for proton --- proto-wine/proton.cpp | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 proto-wine/proton.cpp (limited to 'proto-wine/proton.cpp') diff --git a/proto-wine/proton.cpp b/proto-wine/proton.cpp new file mode 100644 index 00000000..c36dbc86 --- /dev/null +++ b/proto-wine/proton.cpp @@ -0,0 +1,96 @@ +/* Copyright (c) 2019 Stanislaw Halik + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + */ + +#ifndef OTR_WINE_NO_WRAPPER + +#include +#include +#include +#include + +#include + +#include +#include +#include +#include + +static QString home_directory() +{ + struct passwd *pwptr = nullptr, pw{}; + uid_t uid = getuid(); + int shift = 16; + do { + auto buf = std::make_unique(1 << shift); + int error = getpwuid_r(uid, &pw, buf.get(), 1 << shift, &pwptr); + if (error) + { + if (errno != EDOM) + return {}; + else + continue; + } + else + break; + } while (++shift < 28); + + if (!pwptr) + return {}; + + return pwptr->pw_dir; +} + +QProcessEnvironment make_steam_environ(const QString& proton_version) +{ + auto ret = QProcessEnvironment::systemEnvironment(); + QString home = home_directory(); + + auto expand = [&](QString x) { + x.replace("HOME", home); + x.replace("PROTON", proton_version); + return x; + }; + + QString path = expand( + "HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/bin:" + "HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/bin:" + "HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin" + ); + path += ':'; path += qgetenv("PATH"); + ret.insert("PATH", path); + + QString library_path = expand( + ":HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/lib" + ":HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/lib64" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_32" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_64" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/i386/lib" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/lib/x86_64-linux-gnu" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/lib" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib" + ); + library_path += ':'; library_path += qgetenv("LD_LIBRARY_PATH"); + ret.insert("LD_LIBRARY_PATH", library_path); + + ret.insert("WINEPREFIX", expand("HOME/.local/share/Steam/steamapps/compatdata/805550/pfx")); + ret.insert("WINEESYNC", "1"); + + return ret; +} + +QString proton_path(const QString& proton_version) +{ + QString wine_path = "HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/bin/wine"; + wine_path.replace("HOME", home_directory()); wine_path.replace("PROTON", proton_version); + return wine_path; +} + +#endif -- cgit v1.2.3 From 9aef0bbdd753939623562f6112adf4e19576c015 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 27 Oct 2019 07:51:20 +0100 Subject: proto/wine: assume HOME exists in environ --- proto-wine/proton.cpp | 38 +++----------------------------------- 1 file changed, 3 insertions(+), 35 deletions(-) (limited to 'proto-wine/proton.cpp') diff --git a/proto-wine/proton.cpp b/proto-wine/proton.cpp index c36dbc86..9cc4af30 100644 --- a/proto-wine/proton.cpp +++ b/proto-wine/proton.cpp @@ -7,47 +7,14 @@ #ifndef OTR_WINE_NO_WRAPPER -#include -#include -#include -#include - -#include - #include #include #include -#include - -static QString home_directory() -{ - struct passwd *pwptr = nullptr, pw{}; - uid_t uid = getuid(); - int shift = 16; - do { - auto buf = std::make_unique(1 << shift); - int error = getpwuid_r(uid, &pw, buf.get(), 1 << shift, &pwptr); - if (error) - { - if (errno != EDOM) - return {}; - else - continue; - } - else - break; - } while (++shift < 28); - - if (!pwptr) - return {}; - - return pwptr->pw_dir; -} QProcessEnvironment make_steam_environ(const QString& proton_version) { auto ret = QProcessEnvironment::systemEnvironment(); - QString home = home_directory(); + QString home = qgetenv("HOME"); auto expand = [&](QString x) { x.replace("HOME", home); @@ -89,7 +56,8 @@ QProcessEnvironment make_steam_environ(const QString& proton_version) QString proton_path(const QString& proton_version) { QString wine_path = "HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/bin/wine"; - wine_path.replace("HOME", home_directory()); wine_path.replace("PROTON", proton_version); + wine_path.replace("HOME", qgetenv("HOME")); + wine_path.replace("PROTON", proton_version); return wine_path; } -- cgit v1.2.3 From 69c9a4136d2decc10f97ad49189070d8e4708110 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 28 Oct 2019 07:45:16 +0100 Subject: proto/wine: implement more proton knobs Reported by: @jp7677 Issue: #996 --- proto-wine/ftnoir_protocol_wine.cpp | 15 ++++++-- proto-wine/ftnoir_protocol_wine.h | 5 ++- proto-wine/ftnoir_protocol_wine_dialog.cpp | 3 ++ proto-wine/ftnoir_winecontrols.ui | 55 ++++++++++++++++++++++++++++-- proto-wine/proton.cpp | 12 +++---- 5 files changed, 77 insertions(+), 13 deletions(-) (limited to 'proto-wine/proton.cpp') diff --git a/proto-wine/ftnoir_protocol_wine.cpp b/proto-wine/ftnoir_protocol_wine.cpp index 719da51f..ae7c6c31 100644 --- a/proto-wine/ftnoir_protocol_wine.cpp +++ b/proto-wine/ftnoir_protocol_wine.cpp @@ -57,15 +57,26 @@ module_status wine::initialize() static const QString library_path(OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH); QString wine_path = "wine"; + auto env = QProcessEnvironment::systemEnvironment(); + if (s.variant_proton) { - QProcessEnvironment make_steam_environ(const QString& proton_version); + if (s.proton_appid == 0) + return error(tr("Must specify application id for Proton (Steam Play)")); + + QProcessEnvironment make_steam_environ(const QString& proton_version, int appid); QString proton_path(const QString& proton_version); wine_path = proton_path(s.proton_version); - wrapper.setProcessEnvironment(make_steam_environ(s.proton_version)); + env = make_steam_environ(s.proton_version, s.proton_appid); } + if (s.esync) + env.insert("WINEESYNC", "1"); + if (s.fsync) + env.insert("WINEFSYNC", "1"); + + wrapper.setProcessEnvironment(env); wrapper.setWorkingDirectory(OPENTRACK_BASE_PATH); wrapper.start(wine_path, { library_path + "opentrack-wrapper-wine.exe.so" }); #endif diff --git a/proto-wine/ftnoir_protocol_wine.h b/proto-wine/ftnoir_protocol_wine.h index 3c64df68..9266e455 100644 --- a/proto-wine/ftnoir_protocol_wine.h +++ b/proto-wine/ftnoir_protocol_wine.h @@ -19,7 +19,10 @@ struct settings : opts { settings() : opts{"proto-wine"} {} value variant_proton{b, "variant-proton", false }, - variant_wine{b, "variant-wine", true }; + variant_wine{b, "variant-wine", true }, + fsync{b, "fsync", true}, + esync{b, "esync", true}; + value proton_appid{b, "proton-appid", 0}; value proton_version{b, "proton-version", {} }; }; diff --git a/proto-wine/ftnoir_protocol_wine_dialog.cpp b/proto-wine/ftnoir_protocol_wine_dialog.cpp index bf431c66..b63268d0 100644 --- a/proto-wine/ftnoir_protocol_wine_dialog.cpp +++ b/proto-wine/ftnoir_protocol_wine_dialog.cpp @@ -16,6 +16,9 @@ FTControls::FTControls() tie_setting(s.proton_version, ui.proton_version); tie_setting(s.variant_wine, ui.variant_wine); tie_setting(s.variant_proton, ui.variant_proton); + tie_setting(s.esync, ui.esync); + tie_setting(s.fsync, ui.fsync); + tie_setting(s.proton_appid, ui.proton_appid); connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &FTControls::doOK); connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &FTControls::doCancel); diff --git a/proto-wine/ftnoir_winecontrols.ui b/proto-wine/ftnoir_winecontrols.ui index 79fca47d..19180f19 100644 --- a/proto-wine/ftnoir_winecontrols.ui +++ b/proto-wine/ftnoir_winecontrols.ui @@ -9,8 +9,8 @@ 0 0 - 332 - 204 + 471 + 400 @@ -55,7 +55,7 @@ - Proton (Steam) + Proton (Steam Play) @@ -78,6 +78,55 @@ + + + + Advanced + + + + + + <html><head/><body><p>When supported.</p></body></html> + + + ESYNC + + + + + + + <html><head/><body><p>When supported.</p></body></html> + + + FSYNC + + + + + + + + + + Application id (Proton only) + + + + + + + 2147483647 + + + + + + + + + diff --git a/proto-wine/proton.cpp b/proto-wine/proton.cpp index 9cc4af30..15306d26 100644 --- a/proto-wine/proton.cpp +++ b/proto-wine/proton.cpp @@ -11,7 +11,7 @@ #include #include -QProcessEnvironment make_steam_environ(const QString& proton_version) +QProcessEnvironment make_steam_environ(const QString& proton_version, int appid) { auto ret = QProcessEnvironment::systemEnvironment(); QString home = qgetenv("HOME"); @@ -23,9 +23,9 @@ QProcessEnvironment make_steam_environ(const QString& proton_version) }; QString path = expand( - "HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/bin:" - "HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/bin:" - "HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin" + ":HOME/.local/share/Steam/steamapps/common/Proton PROTON/dist/bin" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/bin" + ":HOME/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin" ); path += ':'; path += qgetenv("PATH"); ret.insert("PATH", path); @@ -46,9 +46,7 @@ QProcessEnvironment make_steam_environ(const QString& proton_version) ); library_path += ':'; library_path += qgetenv("LD_LIBRARY_PATH"); ret.insert("LD_LIBRARY_PATH", library_path); - - ret.insert("WINEPREFIX", expand("HOME/.local/share/Steam/steamapps/compatdata/805550/pfx")); - ret.insert("WINEESYNC", "1"); + ret.insert("WINEPREFIX", expand("HOME/.local/share/Steam/steamapps/compatdata/%1/pfx").arg(appid)); return ret; } -- cgit v1.2.3