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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
#include <array>
#include <charconv>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <optional>
#include <string>
#include <rawaccel-settings.h>
using namespace System;
using namespace System::Runtime::InteropServices;
using namespace Newtonsoft::Json;
namespace ra = rawaccel;
namespace fs = std::filesystem;
const wchar_t* IA_SETTINGS_NAME = L"settings.txt";
const wchar_t* IA_PROFILE_EXT = L".profile";
enum IA_MODES_ENUM { IA_QL, IA_NAT, IA_LOG };
constexpr std::array<std::string_view, 3> IA_MODES = {
"QuakeLive", "Natural", "Logarithmic"
};
// trim from start (in place)
static inline void ltrim(std::string& s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) {
return !std::isspace(ch);
}));
}
// trim from end (in place)
static inline void rtrim(std::string& s) {
s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) {
return !std::isspace(ch);
}).base(), s.end());
}
// trim from both ends (in place)
static inline void trim(std::string& s) {
ltrim(s);
rtrim(s);
}
bool yes() {
for (;;) {
wchar_t c = _getwch();
if (c == 'y') return true;
else if (c == 'n') return false;
}
}
using ia_settings_t = std::vector<std::pair<std::string, double>>;
ia_settings_t parse_ia_settings(const fs::path fp) {
ia_settings_t kv_pairs;
std::ifstream ifs(fp);
std::string line;
while (std::getline(ifs, line)) {
if (line.empty()) continue;
auto delim_pos = line.find('=');
if (delim_pos == std::string::npos) continue;
std::string key(line.substr(0, delim_pos));
trim(key);
auto val_pos = line.find_first_not_of(" \t", delim_pos + 1);
if (val_pos == std::string::npos) continue;
double val = 0;
auto [p, ec] = std::from_chars(&line[val_pos], &line[0] + line.size(), val);
if (ec == std::errc()) {
kv_pairs.emplace_back(key, val);
}
else if (key == "AccelMode") {
std::string mode_val = line.substr(val_pos);
rtrim(mode_val);
auto it = std::find(IA_MODES.begin(), IA_MODES.end(), mode_val);
if (it != IA_MODES.end()) {
val = static_cast<double>(std::distance(IA_MODES.begin(), it));
kv_pairs.emplace_back(key, val);
}
}
}
return kv_pairs;
}
auto make_extractor(const ia_settings_t& ia_settings) {
return [&](auto... keys) -> std::optional<double> {
auto it = std::find_if(ia_settings.begin(), ia_settings.end(), [=](auto&& p) {
return ((p.first == keys) || ...);
});
if (it == ia_settings.end()) return std::nullopt;
return it->second;
};
}
ra::accel_args convert_natural(const ia_settings_t& ia_settings) {
auto get = make_extractor(ia_settings);
double accel = get("Acceleration").value_or(0);
double cap = get("SensitivityCap").value_or(0);
double sens = get("Sensitivity").value_or(1);
double prescale = get("Pre-ScaleX").value_or(1);
ra::accel_args args;
args.limit = 1 + std::abs(cap - sens);
args.accel = accel * prescale / sens;
return args;
}
ra::accel_args convert_quake(const ia_settings_t& ia_settings, bool legacy) {
auto get = make_extractor(ia_settings);
double power = get("Power").value_or(2);
double accel = get("Acceleration").value_or(0);
double cap = get("SensitivityCap").value_or(0);
double sens = get("Sensitivity").value_or(1);
double prescale = get("Pre-ScaleX").value_or(1);
double offset = get("Offset").value_or(0);
ra::accel_args args;
args.accel = accel * prescale / sens;
args.exponent = power;
args.legacy_offset = legacy;
args.offset = offset;
if (legacy || cap <= 1) {
args.scale_cap = cap;
}
else {
double b = (cap - 1) / power;
double e = 1 / (power - 1);
args.gain_cap = offset + (1 / accel) * std::pow(b, e);
}
return args;
}
bool try_convert(const ia_settings_t& ia_settings) {
auto get = make_extractor(ia_settings);
ra::settings ra_settings;
ra_settings.degrees_rotation = get("Angle", "AngleAdjustment").value_or(0);
ra_settings.sens = {
get("Post-ScaleX").value_or(1),
get("Post-ScaleY").value_or(1)
};
double mode = get("AccelMode").value_or(IA_QL);
switch (static_cast<IA_MODES_ENUM>(mode)) {
case IA_QL: {
std::cout << "We recommend trying out our new cap and offset styles.\n"
"Use new cap and offset? (y|n)\n";
ra_settings.modes.x = ra::accel_mode::classic;
ra_settings.argsv.x = convert_quake(ia_settings, !yes());
break;
}
case IA_NAT: {
std::cout << "Raw Accel offers a new mode that you might like more than Natural.\n"
"Wanna try it out now? (y|n)\n";
ra_settings.modes.x = yes() ? ra::accel_mode::naturalgain : ra::accel_mode::natural;
ra_settings.argsv.x = convert_natural(ia_settings);
break;
}
case IA_LOG: {
std::cout << "Logarithmic accel mode is not supported.\n";
return true;
}
default: return false;
}
DriverSettings^ new_settings = Marshal::PtrToStructure<DriverSettings^>((IntPtr)&ra_settings);
auto errors = DriverInterop::GetSettingsErrors(new_settings);
if (!errors->Empty()) {
Console::WriteLine("Bad settings: " + errors->x->ToArray()[0]);
return false;
}
Console::Write("Sending to driver... ");
DriverInterop::Write(new_settings);
Console::WriteLine("done");
Console::Write("Generating settings.json... ");
auto json = JsonConvert::SerializeObject(new_settings, Formatting::Indented);
System::IO::File::WriteAllText("settings.json", json);
Console::WriteLine("done");
return true;
}
int main()
{
std::optional<fs::path> opt_path;
if (fs::exists(IA_SETTINGS_NAME)) {
opt_path = IA_SETTINGS_NAME;
}
else {
for (auto&& entry : fs::directory_iterator(".")) {
if (fs::is_regular_file(entry) &&
entry.path().extension() == IA_PROFILE_EXT) {
opt_path = entry;
break;
}
}
}
if (opt_path) {
std::cout << "Found " << opt_path->filename() <<
"\n\nConvert and send settings generated from " <<
opt_path->filename() << "? (y|n)\n";
if (!yes()) return 0;
try {
if (!try_convert(parse_ia_settings(opt_path.value())))
std::cout << "Unable to convert settings.\n";
}
catch (DriverNotInstalledException^) {
Console::WriteLine("\nDriver is not installed.");
}
catch (Exception^ e) {
Console::WriteLine("\nError: " + e->ToString());
}
catch (const std::exception& e) {
std::cout << "Error: " << e.what() << '\n';
}
}
else {
std::cout << "Drop your InterAccel settings/profile into this directory.\n"
"Then run this program to generate the equivalent Raw Accel settings.\n";
}
std::cout << "Press any key to close this window . . .\n";
_getwch();
}
|