-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointerMovementSettings.cs
More file actions
229 lines (193 loc) · 7.28 KB
/
Copy pathPointerMovementSettings.cs
File metadata and controls
229 lines (193 loc) · 7.28 KB
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
using System.Text.Json;
using System.Text.Json.Nodes;
using SwitchifyPc.Core.Storage;
namespace SwitchifyPc.Core.Settings;
public enum PointerMovementSizeKey
{
Small,
Medium,
Large
}
public sealed record PointerMovementSettings(double ScalePercent);
public static class PointerMovementSettingsModel
{
public const double PointerMovementScaleMin = 5;
public const double PointerMovementScaleMax = 225;
public const double PointerMovementScaleStep = 5;
public const int BaseMoveDelta = 128;
private const double DisplayPercentageMin = 1;
private const double DisplayPercentageMax = 50;
private const double DisplayPercentageStep = 0.5;
public static readonly PointerMovementSettings Default = new(100);
public static readonly IReadOnlyDictionary<PointerMovementSizeKey, double> BasePercentages =
new Dictionary<PointerMovementSizeKey, double>
{
[PointerMovementSizeKey.Small] = 4.5,
[PointerMovementSizeKey.Medium] = 12,
[PointerMovementSizeKey.Large] = 26
};
public static PointerMovementSettings Normalize(JsonNode? value)
{
if (value is not JsonObject candidate)
{
return Default;
}
if (candidate.TryGetPropertyValue("scalePercent", out JsonNode? scalePercent))
{
return new PointerMovementSettings(NormalizeScale(scalePercent));
}
if (candidate.TryGetPropertyValue("percentages", out JsonNode? percentages) && percentages is JsonObject percentageObject)
{
return new PointerMovementSettings(NormalizeScale(ScaleFromPercentages(percentageObject)));
}
if (candidate.TryGetPropertyValue("multipliers", out JsonNode? multipliers) && multipliers is JsonObject multiplierObject)
{
return new PointerMovementSettings(NormalizeScale(ScaleFromLegacyMultipliers(multiplierObject)));
}
return Default;
}
public static PointerMovementSettings Normalize(object? value)
{
return Normalize(JsonSerializer.SerializeToNode(value));
}
public static double ScalePercentFor(PointerMovementSettings settings)
{
return Normalize(settings).ScalePercent;
}
public static double PercentageFor(PointerMovementSettings settings, PointerMovementSizeKey size)
{
double scale = ScalePercentFor(settings) / 100;
return NormalizeDisplayPercentage(BasePercentages[size] * scale);
}
public static double FractionFor(PointerMovementSettings settings, PointerMovementSizeKey size)
{
return PercentageFor(settings, size) / 100;
}
public static JsonObject ToJsonObject(PointerMovementSettings settings)
{
PointerMovementSettings normalized = Normalize(settings);
return new JsonObject
{
["scalePercent"] = normalized.ScalePercent
};
}
private static double NormalizeScale(JsonNode? value)
{
return TryGetFiniteNumber(value, out double number)
? Clamp(RoundToStep(number, PointerMovementScaleStep), PointerMovementScaleMin, PointerMovementScaleMax)
: Default.ScalePercent;
}
public static PointerMovementSettings Normalize(PointerMovementSettings settings)
{
return new PointerMovementSettings(Clamp(RoundToStep(settings.ScalePercent, PointerMovementScaleStep), PointerMovementScaleMin, PointerMovementScaleMax));
}
private static double ScaleFromPercentages(JsonObject value)
{
List<double> scales = [];
foreach (PointerMovementSizeKey size in Enum.GetValues<PointerMovementSizeKey>())
{
if (value.TryGetPropertyValue(JsonKey(size), out JsonNode? percentage) && TryGetFiniteNumber(percentage, out double number))
{
scales.Add((NormalizeDisplayPercentage(number) / BasePercentages[size]) * 100);
}
}
return scales.Count == 0 ? Default.ScalePercent : scales.Average();
}
private static double ScaleFromLegacyMultipliers(JsonObject value)
{
List<double> scales = [];
foreach (PointerMovementSizeKey size in Enum.GetValues<PointerMovementSizeKey>())
{
if (value.TryGetPropertyValue(JsonKey(size), out JsonNode? multiplier) && TryGetFiniteNumber(multiplier, out double number))
{
scales.Add(number);
}
}
return scales.Count == 0 ? Default.ScalePercent : scales.Average();
}
private static double NormalizeDisplayPercentage(double value)
{
return Clamp(RoundToStep(value, DisplayPercentageStep), DisplayPercentageMin, DisplayPercentageMax);
}
private static bool TryGetFiniteNumber(JsonNode? value, out double number)
{
number = 0;
if (value is null)
{
return false;
}
try
{
number = value.GetValue<double>();
return double.IsFinite(number);
}
catch (InvalidOperationException)
{
return false;
}
catch (FormatException)
{
return false;
}
}
private static string JsonKey(PointerMovementSizeKey size)
{
return size switch
{
PointerMovementSizeKey.Small => "small",
PointerMovementSizeKey.Medium => "medium",
PointerMovementSizeKey.Large => "large",
_ => throw new ArgumentOutOfRangeException(nameof(size), size, null)
};
}
private static double RoundToStep(double value, double step)
{
return Math.Round(value / step, MidpointRounding.AwayFromZero) * step;
}
private static double Clamp(double value, double min, double max)
{
return Math.Min(max, Math.Max(min, value));
}
}
public interface IPointerMovementSettingsStore
{
PointerMovementSettings Load();
PointerMovementSettings Save(PointerMovementSettings settings);
}
public sealed class JsonPointerMovementSettingsStore : IPointerMovementSettingsStore
{
private readonly string filePath;
private readonly Action<string> warn;
public JsonPointerMovementSettingsStore(string filePath, Action<string>? warn = null)
{
this.filePath = filePath;
this.warn = warn ?? Console.WriteLine;
}
public PointerMovementSettings Load()
{
try
{
return PointerMovementSettingsModel.Normalize(JsonNode.Parse(File.ReadAllText(filePath)));
}
catch (Exception error) when (error is FileNotFoundException or DirectoryNotFoundException)
{
return PointerMovementSettingsModel.Default;
}
catch
{
warn("Switchify pointer movement settings could not be loaded. Defaults will be used.");
return PointerMovementSettingsModel.Default;
}
}
public PointerMovementSettings Save(PointerMovementSettings settings)
{
PointerMovementSettings normalized = PointerMovementSettingsModel.Normalize(settings);
string content = JsonSerializer.Serialize(PointerMovementSettingsModel.ToJsonObject(normalized), JsonOptions) + "\n";
JsonFileStore.WriteJsonFileAtomicSync(filePath, content);
return normalized;
}
private static readonly JsonSerializerOptions JsonOptions = new()
{
WriteIndented = true
};
}