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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
|
using grapher.Layouts;
using grapher.Models.Options;
using grapher.Models.Options.Cap;
using grapher.Models.Options.LUT;
using System;
using System.Windows.Forms;
namespace grapher
{
public class AccelTypeOptions : OptionBase
{
#region Fields
public static readonly LayoutBase Linear = new LinearLayout();
public static readonly LayoutBase Classic = new ClassicLayout();
public static readonly LayoutBase Jump = new JumpLayout();
public static readonly LayoutBase Natural = new NaturalLayout();
public static readonly LayoutBase Motivity = new MotivityLayout();
public static readonly LayoutBase Power = new PowerLayout();
public static readonly LayoutBase LUT = new LUTLayout();
public static readonly LayoutBase Off = new OffLayout();
#endregion Fields
#region Constructors
public AccelTypeOptions(
ComboBox accelDropdown,
CheckBoxOption gainSwitch,
CapOptions classicCap,
CapOptions powerCap,
Option outputJump,
Option outputOffset,
Option decayRate,
Option growthRate,
Option smooth,
Option inputJump,
Option inputOffset,
Option limit,
Option powerClassic,
Option exponent,
Option midpoint,
TextOption lutText,
LUTPanelOptions lutPanelOptions,
LutApplyOptions lutApplyOptions,
Button writeButton,
ActiveValueLabel accelTypeActiveValue)
{
AccelDropdown = accelDropdown;
AccelDropdown.Items.Clear();
AccelDropdown.Items.AddRange(
new LayoutBase[]
{
Linear,
Classic,
Jump,
Natural,
Motivity,
Power,
LUT,
Off
});
AccelDropdown.SelectedIndexChanged += new System.EventHandler(OnIndexChanged);
GainSwitch = gainSwitch;
DecayRate = decayRate;
GrowthRate = growthRate;
Smooth = smooth;
ClassicCap = classicCap;
PowerCap = powerCap;
InputJump = inputJump;
InputOffset = inputOffset;
Limit = limit;
PowerClassic = powerClassic;
Exponent = exponent;
OutputJump = outputJump;
OutputOffset = outputOffset;
Midpoint = midpoint;
WriteButton = writeButton;
AccelTypeActiveValue = accelTypeActiveValue;
LutText = lutText;
LutPanel = lutPanelOptions;
LutApply = lutApplyOptions;
AccelTypeActiveValue.Left = AccelDropdown.Left + AccelDropdown.Width;
AccelTypeActiveValue.Height = AccelDropdown.Height;
GainSwitch.Left = DecayRate.Field.Left;
LutPanel.Left = AccelDropdown.Left;
LutPanel.Width = AccelDropdown.Width + AccelTypeActiveValue.Width;
LutText.SetText(TextOption.LUTLayoutExpandedText, TextOption.LUTLayoutShortenedText);
AccelerationType = Off;
Layout();
ShowingDefault = true;
}
#endregion Constructors
#region Properties
public AccelCharts AccelCharts { get; }
public Button WriteButton { get; }
public ComboBox AccelDropdown { get; }
public ActiveValueLabel AccelTypeActiveValue { get; }
public Option DecayRate { get; }
public Option GrowthRate { get; }
public Option Smooth { get; }
public CapOptions ClassicCap { get; }
public CapOptions PowerCap { get; }
public Option InputJump { get; }
public Option OutputJump { get; }
public Option InputOffset { get; }
public Option OutputOffset { get; }
public Option Limit { get; }
/// <summary>
/// This is the option for the power parameter for Classic style,
/// and has nothing to do with the Power style.
/// </summary>
public Option PowerClassic { get; }
public Option Exponent { get; }
public Option Midpoint { get; }
public TextOption LutText { get; }
public CheckBoxOption GainSwitch { get; }
public LUTPanelOptions LutPanel { get; }
public LutApplyOptions LutApply { get; }
public LayoutBase AccelerationType
{
get
{
return AccelDropdown.SelectedItem as LayoutBase;
}
private set
{
AccelDropdown.SelectedItem = value;
}
}
public override int Top
{
get
{
return AccelDropdown.Top;
}
set
{
AccelDropdown.Top = value;
AccelTypeActiveValue.Top = value;
Layout(value + AccelDropdown.Height + Constants.OptionVerticalSeperation);
}
}
public override int Height
{
get
{
return AccelDropdown.Height;
}
}
public override int Left
{
get
{
return AccelDropdown.Left;
}
set
{
AccelDropdown.Left = value;
LutText.Left = value;
LutPanel.Left = value;
LutApply.Left = value;
}
}
public override int Width
{
get
{
return AccelDropdown.Width;
}
set
{
AccelDropdown.Width = value;
LutText.Width = value;
LutPanel.Width = AccelTypeActiveValue.CenteringLabel.Right - AccelDropdown.Left;
LutApply.Width = value;
}
}
public override bool Visible
{
get
{
return AccelDropdown.Visible;
}
}
private bool ShowingDefault { get; set; }
#endregion Properties
#region Methods
public override void Hide()
{
AccelDropdown.Hide();
AccelTypeActiveValue.Hide();
GainSwitch.Hide();
DecayRate.Hide();
GrowthRate.Hide();
Smooth.Hide();
ClassicCap.Hide();
PowerCap.Hide();
OutputOffset.Hide();
InputOffset.Hide();
InputJump.Hide();
OutputJump.Hide();
Limit.Hide();
PowerClassic.Hide();
Exponent.Hide();
Midpoint.Hide();
LutText.Hide();
LutPanel.Hide();
LutApply.Hide();
}
public void Show()
{
AccelDropdown.Show();
AccelTypeActiveValue.Show();
Layout(AccelDropdown.Bottom + Constants.OptionVerticalSeperation);
}
public override void Show(string name)
{
Show();
}
public void SetActiveValues(ref AccelArgs args)
{
AccelerationType = AccelTypeFromSettings(ref args);
AccelTypeActiveValue.SetValue(AccelerationType.ActiveName);
GainSwitch.SetActiveValue(args.gain);
ClassicCap.SetActiveValues(
args.acceleration,
args.cap.x,
args.cap.y,
args.capMode);
PowerCap.SetActiveValues(
args.scale,
args.cap.x,
args.cap.y,
args.capMode);
InputJump.SetActiveValue(args.cap.x);
OutputJump.SetActiveValue(args.cap.y);
OutputOffset.SetActiveValue(args.outputOffset);
InputOffset.SetActiveValue(args.inputOffset);
DecayRate.SetActiveValue(args.decayRate);
GrowthRate.SetActiveValue(args.growthRate);
Smooth.SetActiveValue(args.smooth);
Limit.SetActiveValue((args.mode == AccelMode.motivity) ? args.motivity : args.limit);
PowerClassic.SetActiveValue(args.exponentClassic);
Exponent.SetActiveValue(args.exponentPower);
Midpoint.SetActiveValue(args.midpoint);
LutPanel.SetActiveValues(args.data, args.length, args.mode);
LutApply.SetActiveValue(args.gain);
}
public void ShowFull()
{
if (ShowingDefault)
{
AccelDropdown.Text = Constants.AccelDropDownDefaultFullText;
}
Left = DecayRate.Left + Constants.DropDownLeftSeparation;
Width = DecayRate.Width - Constants.DropDownLeftSeparation;
LutText.Expand();
HandleLUTOptionsOnResize();
}
public void ShowShortened()
{
if (ShowingDefault)
{
AccelDropdown.Text = Constants.AccelDropDownDefaultShortText;
}
Left = DecayRate.Field.Left;
Width = DecayRate.Field.Width;
LutText.Shorten();
}
public void SetArgs(ref AccelArgs args)
{
args.mode = AccelerationType.Mode;
args.gain = LutPanel.Visible ?
LutApply.ApplyType == LutApplyOptions.LutApplyType.Velocity :
GainSwitch.CheckBox.Checked;
if (DecayRate.Visible) args.decayRate = DecayRate.Field.Data;
if (GrowthRate.Visible) args.growthRate = GrowthRate.Field.Data;
if (Smooth.Visible) args.smooth = Smooth.Field.Data;
if (ClassicCap.Visible)
{
args.acceleration = ClassicCap.Slope.Field.Data;
args.cap.x = ClassicCap.In.Field.Data;
args.cap.y = ClassicCap.Out.Field.Data;
args.capMode = ClassicCap.CapTypeOptions.GetSelectedCapMode();
}
if (PowerCap.Visible)
{
args.scale = PowerCap.Slope.Field.Data;
args.cap.x = PowerCap.In.Field.Data;
args.cap.y = PowerCap.Out.Field.Data;
args.capMode = PowerCap.CapTypeOptions.GetSelectedCapMode();
}
if (InputJump.Visible) args.cap.x = InputJump.Field.Data;
if (OutputJump.Visible) args.cap.y = OutputJump.Field.Data;
if (Limit.Visible)
{
if (args.mode == AccelMode.motivity)
{
args.motivity = Limit.Field.Data;
}
else
{
args.limit = Limit.Field.Data;
}
}
if (PowerClassic.Visible) args.exponentClassic = PowerClassic.Field.Data;
if (Exponent.Visible) args.exponentPower = Exponent.Field.Data;
if (InputOffset.Visible) args.inputOffset = InputOffset.Field.Data;
if (OutputOffset.Visible) args.outputOffset = OutputOffset.Field.Data;
if (Midpoint.Visible) args.midpoint = Midpoint.Field.Data;
if (LutPanel.Visible)
{
(var points, var length) = LutPanel.GetPoints();
args.length = length * 2;
for (int i = 0; i < length; i++)
{
ref var p = ref points[i];
var data_idx = i * 2;
args.data[data_idx] = p.x;
args.data[data_idx + 1] = p.y;
}
}
}
public override void AlignActiveValues()
{
AccelTypeActiveValue.Align();
GainSwitch.AlignActiveValues();
DecayRate.AlignActiveValues();
GrowthRate.AlignActiveValues();
Smooth.AlignActiveValues();
ClassicCap.AlignActiveValues();
PowerCap.AlignActiveValues();
OutputOffset.AlignActiveValues();
InputOffset.AlignActiveValues();
OutputJump.AlignActiveValues();
InputJump.AlignActiveValues();
Limit.AlignActiveValues();
PowerClassic.AlignActiveValues();
Exponent.AlignActiveValues();
Midpoint.AlignActiveValues();
LutApply.AlignActiveValues();
}
public void HandleLUTOptionsOnResize()
{
LutText.Left = AccelDropdown.Left;
LutPanel.Left = GainSwitch.Left - 100;
LutPanel.Width = DecayRate.ActiveValueLabel.CenteringLabel.Right - LutPanel.Left;
LutApply.Left = LutPanel.Left;
LutApply.Width = AccelDropdown.Right - LutPanel.Left;
}
private void OnIndexChanged(object sender, EventArgs e)
{
Layout(Beneath);
ShowingDefault = false;
}
private void Layout(int top = -1)
{
if (top < 0)
{
top = GainSwitch.Top;
}
AccelerationType.Layout(
GainSwitch,
ClassicCap,
PowerCap,
DecayRate,
GrowthRate,
Smooth,
InputJump,
InputOffset,
Limit,
PowerClassic,
Exponent,
OutputJump,
OutputOffset,
Midpoint,
LutText,
LutPanel,
LutApply,
top);
}
private LayoutBase AccelTypeFromSettings(ref AccelArgs args)
{
switch (args.mode)
{
case AccelMode.classic: return (args.exponentClassic == 2) ? Linear : Classic;
case AccelMode.jump: return Jump;
case AccelMode.natural: return Natural;
case AccelMode.motivity: return Motivity;
case AccelMode.power: return Power;
case AccelMode.lut: return LUT;
default: return Off;
}
}
#endregion Methods
}
}
|