summaryrefslogtreecommitdiffhomepage
path: root/proto-wine
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-10-27 07:25:43 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-10-28 07:45:44 +0100
commita5a2ec4f7a855ad35bde6362796a0a07fd419cf7 (patch)
tree60053965f601a5e14ba0f5eecc8e6f2c81ea26cc /proto-wine
parent2716d8e2ae7df7fb99d9d64d1efaa554d1d38034 (diff)
proto/wine: add support for proton
Diffstat (limited to 'proto-wine')
-rw-r--r--proto-wine/ftnoir_protocol_wine.cpp14
-rw-r--r--proto-wine/ftnoir_protocol_wine.h13
-rw-r--r--proto-wine/ftnoir_protocol_wine_dialog.cpp26
-rw-r--r--proto-wine/ftnoir_winecontrols.ui195
-rw-r--r--proto-wine/lang/nl_NL.ts8
-rw-r--r--proto-wine/lang/ru_RU.ts8
-rw-r--r--proto-wine/lang/stub.ts8
-rw-r--r--proto-wine/lang/zh_CN.ts8
-rw-r--r--proto-wine/proton.cpp96
9 files changed, 221 insertions, 155 deletions
diff --git a/proto-wine/ftnoir_protocol_wine.cpp b/proto-wine/ftnoir_protocol_wine.cpp
index 2e618ff9..ce6f6229 100644
--- a/proto-wine/ftnoir_protocol_wine.cpp
+++ b/proto-wine/ftnoir_protocol_wine.cpp
@@ -51,12 +51,24 @@ void wine::pose(const double *headpose, const double*)
}
}
+QProcessEnvironment make_steam_environ(const QString& proton_version);
+QString proton_path(const QString& proton_version);
+
module_status wine::initialize()
{
#ifndef OTR_WINE_NO_WRAPPER
static const QString library_path(OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH);
+
+ QString wine_path = "wine";
+ auto env = QProcessEnvironment::systemEnvironment();
+ if (s.variant_proton)
+ {
+ env = make_steam_environ(s.proton_version);
+ wine_path = proton_path(s.proton_version);
+ }
+
wrapper.setWorkingDirectory(OPENTRACK_BASE_PATH);
- wrapper.start("wine", { library_path + "opentrack-wrapper-wine.exe.so" });
+ wrapper.start(wine_path, { library_path + "opentrack-wrapper-wine.exe.so" });
#endif
if (lck_shm.success())
diff --git a/proto-wine/ftnoir_protocol_wine.h b/proto-wine/ftnoir_protocol_wine.h
index ed142f83..3c64df68 100644
--- a/proto-wine/ftnoir_protocol_wine.h
+++ b/proto-wine/ftnoir_protocol_wine.h
@@ -6,12 +6,23 @@
#include "ui_ftnoir_winecontrols.h"
+#include "options/options.hpp"
+using namespace options;
+
#include <QString>
#include <QProcess>
#include <QMutex>
#include <QDebug>
+struct settings : opts
+{
+ settings() : opts{"proto-wine"} {}
+ value<bool> variant_proton{b, "variant-proton", false },
+ variant_wine{b, "variant-wine", true };
+ value<QString> proton_version{b, "proton-version", {} };
+};
+
class wine : TR, public IProtocol
{
Q_OBJECT
@@ -35,6 +46,7 @@ public:
private:
shm_wrapper lck_shm { WINE_SHM_NAME, WINE_MTX_NAME, sizeof(WineSHM) };
WineSHM* shm = nullptr;
+ settings s;
#ifndef OTR_WINE_NO_WRAPPER
QProcess wrapper;
@@ -55,6 +67,7 @@ public:
private:
Ui::UICFTControls ui;
+ settings s;
private slots:
void doOK();
diff --git a/proto-wine/ftnoir_protocol_wine_dialog.cpp b/proto-wine/ftnoir_protocol_wine_dialog.cpp
index a388df70..bf431c66 100644
--- a/proto-wine/ftnoir_protocol_wine_dialog.cpp
+++ b/proto-wine/ftnoir_protocol_wine_dialog.cpp
@@ -2,18 +2,34 @@
#include <QDebug>
#include "api/plugin-api.hpp"
+static const char* proton_versions[] = {
+ "4.11", "4.2", "3.16", "3.7",
+};
+
FTControls::FTControls()
{
- ui.setupUi( this );
- connect(ui.btnOK, SIGNAL(clicked()), this, SLOT(doOK()));
- connect(ui.btnCancel, SIGNAL(clicked()), this, SLOT(doCancel()));
+ ui.setupUi(this);
+
+ for (const char* version : proton_versions)
+ ui.proton_version->addItem(version, QVariant{version});
+
+ tie_setting(s.proton_version, ui.proton_version);
+ tie_setting(s.variant_wine, ui.variant_wine);
+ tie_setting(s.variant_proton, ui.variant_proton);
+
+ connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &FTControls::doOK);
+ connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &FTControls::doCancel);
}
-void FTControls::doOK() {
+void FTControls::doOK()
+{
+ s.b->save();
close();
}
-void FTControls::doCancel() {
+void FTControls::doCancel()
+{
+ s.b->reload();
close();
}
diff --git a/proto-wine/ftnoir_winecontrols.ui b/proto-wine/ftnoir_winecontrols.ui
index 9356c448..79fca47d 100644
--- a/proto-wine/ftnoir_winecontrols.ui
+++ b/proto-wine/ftnoir_winecontrols.ui
@@ -9,16 +9,16 @@
<rect>
<x>0</x>
<y>0</y>
- <width>409</width>
- <height>110</height>
+ <width>332</width>
+ <height>204</height>
</rect>
</property>
<property name="windowTitle">
- <string>FreeTrack settings FaceTrackNoIR</string>
+ <string>Wine settings</string>
</property>
<property name="windowIcon">
- <iconset>
- <normaloff>images/freetrack.png</normaloff>images/freetrack.png</iconset>
+ <iconset resource="wine-protocol.qrc">
+ <normaloff>:/images/wine.png</normaloff>:/images/wine.png</iconset>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
@@ -26,141 +26,70 @@
<property name="autoFillBackground">
<bool>false</bool>
</property>
- <layout class="QVBoxLayout" name="_vertical_layout">
+ <layout class="QVBoxLayout" name="verticalLayout">
<item>
- <layout class="QHBoxLayout">
- <item>
- <spacer name="horizontalSpacer_3">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </item>
- <item>
- <spacer name="verticalSpacer">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>20</width>
- <height>40</height>
- </size>
+ <widget class="QGroupBox" name="groupBox">
+ <property name="title">
+ <string>Wine variant</string>
</property>
- </spacer>
+ <layout class="QGridLayout" name="gridLayout">
+ <item row="0" column="0">
+ <widget class="QRadioButton" name="variant_wine">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Wine (system)</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QRadioButton" name="variant_proton">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Proton (Steam)</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QComboBox" name="proton_version">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="minimumSize">
+ <size>
+ <width>120</width>
+ <height>0</height>
+ </size>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
</item>
<item>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>There are no settings necessary for the Wine protocol.</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <spacer name="horizontalSpacer_2">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <property name="sizeConstraint">
- <enum>QLayout::SetDefaultConstraint</enum>
- </property>
- <item>
- <widget class="QPushButton" name="btnOK">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>100</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>100</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="text">
- <string>OK</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnCancel">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>100</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>100</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="text">
- <string>Cancel</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <spacer name="horizontalSpacer">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeType">
- <enum>QSizePolicy::Fixed</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>10</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
+ <widget class="QDialogButtonBox" name="buttonBox">
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+ </property>
+ </widget>
</item>
</layout>
</widget>
- <resources/>
+ <resources>
+ <include location="wine-protocol.qrc"/>
+ </resources>
<connections/>
<slots>
<slot>startEngineClicked()</slot>
diff --git a/proto-wine/lang/nl_NL.ts b/proto-wine/lang/nl_NL.ts
index 239e73d1..41f368c6 100644
--- a/proto-wine/lang/nl_NL.ts
+++ b/proto-wine/lang/nl_NL.ts
@@ -4,19 +4,19 @@
<context>
<name>UICFTControls</name>
<message>
- <source>FreeTrack settings FaceTrackNoIR</source>
+ <source>Wine settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>There are no settings necessary for the Wine protocol.</source>
+ <source>Wine variant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>OK</source>
+ <source>Wine (system)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Cancel</source>
+ <source>Proton (Steam)</source>
<translation type="unfinished"></translation>
</message>
</context>
diff --git a/proto-wine/lang/ru_RU.ts b/proto-wine/lang/ru_RU.ts
index 1e80e43f..d6a10fac 100644
--- a/proto-wine/lang/ru_RU.ts
+++ b/proto-wine/lang/ru_RU.ts
@@ -4,19 +4,19 @@
<context>
<name>UICFTControls</name>
<message>
- <source>FreeTrack settings FaceTrackNoIR</source>
+ <source>Wine settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>There are no settings necessary for the Wine protocol.</source>
+ <source>Wine variant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>OK</source>
+ <source>Wine (system)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Cancel</source>
+ <source>Proton (Steam)</source>
<translation type="unfinished"></translation>
</message>
</context>
diff --git a/proto-wine/lang/stub.ts b/proto-wine/lang/stub.ts
index 2da10a0b..2b4793e0 100644
--- a/proto-wine/lang/stub.ts
+++ b/proto-wine/lang/stub.ts
@@ -4,19 +4,19 @@
<context>
<name>UICFTControls</name>
<message>
- <source>FreeTrack settings FaceTrackNoIR</source>
+ <source>Wine settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>There are no settings necessary for the Wine protocol.</source>
+ <source>Wine variant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>OK</source>
+ <source>Wine (system)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Cancel</source>
+ <source>Proton (Steam)</source>
<translation type="unfinished"></translation>
</message>
</context>
diff --git a/proto-wine/lang/zh_CN.ts b/proto-wine/lang/zh_CN.ts
index 2da10a0b..2b4793e0 100644
--- a/proto-wine/lang/zh_CN.ts
+++ b/proto-wine/lang/zh_CN.ts
@@ -4,19 +4,19 @@
<context>
<name>UICFTControls</name>
<message>
- <source>FreeTrack settings FaceTrackNoIR</source>
+ <source>Wine settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>There are no settings necessary for the Wine protocol.</source>
+ <source>Wine variant</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>OK</source>
+ <source>Wine (system)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Cancel</source>
+ <source>Proton (Steam)</source>
<translation type="unfinished"></translation>
</message>
</context>
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 <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 <sys/types.h>
+#include <pwd.h>
+#include <unistd.h>
+#include <errno.h>
+
+#include <memory>
+
+#include <QtGlobal>
+#include <QString>
+#include <QProcessEnvironment>
+#include <QDebug>
+
+static QString home_directory()
+{
+ struct passwd *pwptr = nullptr, pw{};
+ uid_t uid = getuid();
+ int shift = 16;
+ do {
+ auto buf = std::make_unique<char[]>(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