-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpaths_linux.cpp
88 lines (76 loc) · 2.55 KB
/
paths_linux.cpp
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
86
87
88
#ifndef _WIN32
#include "libwololokingdoms/platform.h"
#include "libwololokingdoms/string_helpers.h"
#include "paths.h"
#include <QProcess>
#include <errno.h>
#include <fs.h>
#include <fstream>
#include <iconv.h>
#include <iostream>
#include <pwd.h>
#include <stdio.h>
#include <string>
fs::path getExePath() { return fs::read_symlink("/proc/self/exe"); }
static fs::path getHomeDirectory() {
const char* homedir = getenv("HOME");
if (homedir == nullptr) {
homedir = getpwuid(getuid())->pw_dir;
}
return fs::path(homedir);
}
fs::path getSteamPath() { return getHomeDirectory() / ".steam" / "steam"; }
static fs::path resolveWinePath(std::string winepath) {
QProcess process;
process.start("winepath", QStringList() << QString::fromStdString(winepath));
process.waitForFinished();
if (process.exitCode() != 0) {
return fs::path();
}
QString result(process.readAllStandardOutput());
return fs::canonical(result.trimmed().toStdString());
}
static std::string dump_wine_registry(std::string regkey) {
fs::path tempFile("wk_tmp.reg");
QProcess wine;
wine.start("wine", QStringList() << QString("regedit") << QString("/E")
<< QString::fromStdString(tempFile.string())
<< QString::fromStdString(regkey));
wine.waitForFinished();
if (wine.exitCode() != 0) {
return std::string();
}
std::ifstream stream(tempFile);
auto result = concat_stream(stream);
fs::remove(tempFile);
return iconvert(result, "UTF16//IGNORE", "UTF8");
}
// On linux, we can still read the Wine registry
// by first dumping the Age of Empires key to a file
fs::path getOutPath([[maybe_unused]] fs::path hdPath) {
std::stringstream registry(dump_wine_registry(
"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\DirectPlay\\Applications\\Age "
"of Empires II - The Conquerors Expansion\\"));
std::string winepath;
std::string prefix = "\"CurrentDirectory\"=";
std::string line;
while (std::getline(registry, line, '\n')) {
if (line.substr(0, prefix.length()) == prefix) {
winepath = line.substr(prefix.length());
break;
}
}
if (!winepath.empty()) {
if (winepath[0] == '"')
winepath = winepath.substr(1);
// probably includes \r from \r\n
if (winepath[winepath.length() - 1] == '\r')
winepath = winepath.substr(0, winepath.length() - 1);
if (winepath[winepath.length() - 1] == '"')
winepath = winepath.substr(0, winepath.length() - 1);
replace_all(winepath, "\\\\", "\\");
return resolveWinePath(winepath);
}
return fs::path();
}
#endif