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
|
#pragma once
#include "options/options.hpp"
#include "api/plugin-api.hpp"
#include "export.hpp"
namespace axis_opts_impl {
using namespace options;
struct OTR_SPLINE_EXPORT axis_opts final
{
enum max_clamp
{
r180 = 180,
r90 = 90,
r60 = 60,
r45 = 45,
r30 = 30,
r25 = 25,
r20 = 20,
r15 = 15,
r10 = 10,
t100 = 100,
t30 = 30,
t20 = 20,
t15 = 15,
t10 = 10,
o_r180 = -180,
o_r90 = -90,
o_t75 = -75,
x1000 = 1000,
};
// note, these two bundles can be the same value with no issues
bundle b_settings_window = make_bundle("opentrack-ui");
bundle b_mapping_window = make_bundle("opentrack-mappings");
value<double> zero;
value<int> src;
value<bool> invert, altp;
value<max_clamp> clamp_x_, clamp_y_;
double max_clamp_x() const { return std::fabs(clamp_x_.to<double>()); }
double max_clamp_y() const { return std::fabs(clamp_y_.to<double>()); }
axis_opts(QString pfx, Axis idx);
QString const& prefix() const;
Axis axis() const;
private:
static inline QString n(QString const& pfx, QString const& name);
QString prefix_;
Axis axis_;
};
} // ns axis_opts_impl
using axis_opts = axis_opts_impl::axis_opts;
|