1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/* 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 <QDebug>
#include <QtGlobal>
#include <QString>
#include <QProcessEnvironment>
#include <QDir>
#include <QFileInfo>
static const char* steam_paths[] = {
"/.steam/steam/steamapps/compatdata",
"/.local/share/Steam/steamapps/compatdata",
};
static const char* runtime_paths[] = {
"/.local/share/Steam/ubuntu12_32/steam-runtime",
"/.steam/ubuntu12_32/steam-runtime",
};
QProcessEnvironment make_steam_environ(const QString& proton_path, int appid)
{
auto ret = QProcessEnvironment::systemEnvironment();
QString home = qgetenv("HOME");
QString runtime_path;
for (const char* path : runtime_paths) {
QDir dir(QDir::homePath() + path);
if (dir.exists())
runtime_path = dir.absolutePath();
}
auto expand = [&](QString x) {
x.replace("HOME", home);
x.replace("PROTON_PATH", proton_path);
x.replace("RUNTIME_PATH", runtime_path);
return x;
};
QString path = expand(
":PROTON_PATH/dist/bin"
);
path += ':'; path += qgetenv("PATH");
ret.insert("PATH", path);
QString library_path = expand(
":PROTON_PATH/dist/lib"
":PROTON_PATH/dist/lib64"
":RUNTIME_PATH/pinned_libs_32"
":RUNTIME_PATH/pinned_libs_64"
":RUNTIME_PATH/i386/lib/i386-linux-gnu"
":RUNTIME_PATH/i386/lib"
":RUNTIME_PATH/i386/usr/lib/i386-linux-gnu"
":RUNTIME_PATH/i386/usr/lib"
":RUNTIME_PATH/amd64/lib/x86_64-linux-gnu"
":RUNTIME_PATH/amd64/lib"
":RUNTIME_PATH/amd64/usr/lib/x86_64-linux-gnu"
":RUNTIME_PATH/amd64/usr/lib"
);
library_path += ':'; library_path += qgetenv("LD_LIBRARY_PATH");
ret.insert("LD_LIBRARY_PATH", library_path);
for (const char* path : steam_paths) {
QDir dir(QDir::homePath() + path + expand("/%1/pfx").arg(appid));
if (dir.exists())
ret.insert("WINEPREFIX", dir.absolutePath());
}
return ret;
}
QString proton_path(const QString& proton_path)
{
return proton_path + "/dist/bin/wine";
}
#endif
|