summaryrefslogtreecommitdiffhomepage
path: root/proto-wine/proton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'proto-wine/proton.cpp')
-rw-r--r--proto-wine/proton.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/proto-wine/proton.cpp b/proto-wine/proton.cpp
new file mode 100644
index 00000000..15306d26
--- /dev/null
+++ b/proto-wine/proton.cpp
@@ -0,0 +1,62 @@
+/* Copyright (c) 2019 Stanislaw Halik <sthalik@misaki.pl>
+ *
+ * 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 <QtGlobal>
+#include <QString>
+#include <QProcessEnvironment>
+
+QProcessEnvironment make_steam_environ(const QString& proton_version, int appid)
+{
+ auto ret = QProcessEnvironment::systemEnvironment();
+ QString home = qgetenv("HOME");
+
+ 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/%1/pfx").arg(appid));
+
+ 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", qgetenv("HOME"));
+ wine_path.replace("PROTON", proton_version);
+ return wine_path;
+}
+
+#endif