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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
|
using grapher.Models.Calculations;
using grapher.Models.Devices;
using grapher.Models.Mouse;
using grapher.Models.Options;
using grapher.Models.Options.Cap;
using grapher.Models.Options.Directionality;
using grapher.Models.Options.LUT;
using grapher.Models.Serialized;
using System;
using System.Windows.Forms;
using System.Windows.Forms.DataVisualization.Charting;
namespace grapher.Models
{
public static class AccelGUIFactory
{
#region Methods
public static AccelGUI Construct(
RawAcceleration form,
Chart accelerationChart,
Chart accelerationChartY,
Chart velocityChart,
Chart velocityChartY,
Chart gainChart,
Chart gainChartY,
ComboBox accelTypeDropX,
ComboBox accelTypeDropY,
ComboBox lutApplyDropdownX,
ComboBox lutApplyDropdownY,
ComboBox capTypeDropdownXClassic,
ComboBox capTypeDropdownYClassic,
ComboBox capTypeDropdownXPower,
ComboBox capTypeDropdownYPower,
Button writeButton,
ButtonBase toggleButton,
ToolStripMenuItem showVelocityGainToolStripMenuItem,
ToolStripMenuItem showLastMouseMoveMenuItem,
ToolStripMenuItem streamingModeToolStripMenuItem,
ToolStripMenuItem autoWriteMenuItem,
ToolStripMenuItem deviceMenuItem,
ToolStripMenuItem scaleMenuItem,
ToolStripTextBox dpiTextBox,
ToolStripTextBox pollRateTextBox,
Panel directionalityPanel,
TextBox sensitivityBoxX,
TextBox sensitivityBoxY,
TextBox rotationBox,
TextBox inCapBoxXClassic,
TextBox inCapBoxYClassic,
TextBox outCapBoxXClassic,
TextBox outCapBoxYClassic,
TextBox inCapBoxXPower,
TextBox inCapBoxYPower,
TextBox outCapBoxXPower,
TextBox outCapBoxYPower,
TextBox inputJumpBoxX,
TextBox inputJumpBoxY,
TextBox outputJumpBoxX,
TextBox outputJumpBoxY,
TextBox inputOffsetBoxX,
TextBox inputOffsetBoxY,
TextBox outputOffsetBoxX,
TextBox outputOffsetBoxY,
TextBox accelerationBoxX,
TextBox accelerationBoxY,
TextBox decayRateBoxX,
TextBox decayRateBoxY,
TextBox growthRateBoxX,
TextBox growthRateBoxY,
TextBox smoothBoxX,
TextBox smoothBoxY,
TextBox scaleBoxX,
TextBox scaleBoxY,
TextBox limitBoxX,
TextBox limitBoxY,
TextBox powerClassicBoxX,
TextBox powerClassicBoxY,
TextBox expBoxX,
TextBox expBoxY,
TextBox midpointBoxX,
TextBox midpointBoxY,
TextBox domainBoxX,
TextBox domainBoxY,
TextBox rangeBoxX,
TextBox rangeBoxY,
TextBox lpNormBox,
CheckBox sensXYLock,
CheckBox byComponentXYLock,
CheckBox fakeBox,
CheckBox wholeCheckBox,
CheckBox byComponentCheckBox,
CheckBox gainSwitchX,
CheckBox gainSwitchY,
RichTextBox xLutActiveValuesBox,
RichTextBox yLutActiveValuesBox,
RichTextBox xLutPointsBox,
RichTextBox yLutPointsBox,
Label lockXYLabel,
Label sensitivityLabel,
Label yxRatioLabel,
Label rotationLabel,
Label inCapLabelXClassic,
Label inCapLabelYClassic,
Label outCapLabelXClassic,
Label outCapLabelYClassic,
Label capTypeLabelXClassic,
Label capTypeLabelYClassic,
Label inCapLabelXPower,
Label inCapLabelYPower,
Label outCapLabelXPower,
Label outCapLabelYPower,
Label capTypeLabelXPower,
Label capTypeLabelYPower,
Label inputJumpLabelX,
Label inputJumpLabelY,
Label outputJumpLabelX,
Label outputJumpLabelY,
Label inputOffsetLabelX,
Label inputOffsetLabelY,
Label outputOffsetLabelX,
Label outputOffsetLabelY,
Label constantOneLabelX,
Label constantOneLabelY,
Label decayRateLabelX,
Label decayRateLabelY,
Label growthRateLabelX,
Label growthRateLabelY,
Label smoothLabelX,
Label smoothLabelY,
Label scaleLabelX,
Label scaleLabelY,
Label limitLabelX,
Label limitLabelY,
Label powerClassicLabelX,
Label powerClassicLabelY,
Label expLabelX,
Label expLabelY,
Label lutTextLabelX,
Label lutTextLabelY,
Label constantThreeLabelX,
Label constantThreeLabelY,
Label activeValueTitleX,
Label activeValueTitleY,
Label sensitivityActiveLabel,
Label yxRatioActiveLabel,
Label rotationActiveLabel,
Label inCapActiveXLabelClassic,
Label inCapActiveYLabelClassic,
Label outCapActiveXLabelClassic,
Label outCapActiveYLabelClassic,
Label capTypeActiveXLabelClassic,
Label capTypeActiveYLabelClassic,
Label inCapActiveXLabelPower,
Label inCapActiveYLabelPower,
Label outCapActiveXLabelPower,
Label outCapActiveYLabelPower,
Label capTypeActiveXLabelPower,
Label capTypeActiveYLabelPower,
Label inputJumpActiveLabelX,
Label inputJumpActiveLabelY,
Label outputJumpActiveLabelX,
Label outputJumpActiveLabelY,
Label inputOffsetActiveLabelX,
Label inputOffsetActiveLabelY,
Label outputOffsetActiveLabelX,
Label outputOffsetActiveLabelY,
Label accelerationActiveLabelX,
Label accelerationActiveLabelY,
Label decayRateActiveLabelX,
Label decayRateActiveLabelY,
Label growthRateActiveLabelX,
Label growthRateActiveLabelY,
Label smoothActiveLabelX,
Label smoothActiveLabelY,
Label scaleActiveLabelX,
Label scaleActiveLabelY,
Label limitActiveLabelX,
Label limitActiveLabelY,
Label powerClassicActiveLabelX,
Label powerClassicActiveLabelY,
Label expActiveLabelX,
Label expActiveLabelY,
Label midpointActiveLabelX,
Label midpointActiveLabelY,
Label accelTypeActiveLabelX,
Label accelTypeActiveLabelY,
Label gainSwitchActiveLabelX,
Label gainSwitchActiveLabelY,
Label optionSetXTitle,
Label optionSetYTitle,
Label mouseLabel,
Label directionalityLabel,
Label directionalityX,
Label directionalityY,
Label direcionalityActiveValueTitle,
Label lpNormLabel,
Label lpNormActiveLabel,
Label domainLabel,
Label domainActiveValueX,
Label domainActiveValueY,
Label rangeLabel,
Label rangeActiveValueX,
Label rangeActiveValueY,
Label lutApplyLabelX,
Label lutApplyLabelY,
Label lutApplyActiveValueX,
Label lutApplyActiveValueY)
{
fakeBox.Checked = false;
fakeBox.Hide();
var accelCalculator = new AccelCalculator(
new Field(dpiTextBox.TextBox, form, Constants.DefaultDPI, 1),
new Field(pollRateTextBox.TextBox, form, Constants.DefaultPollRate, 1));
var accelCharts = new AccelCharts(
form,
new ChartXY(accelerationChart, accelerationChartY, Constants.SensitivityChartTitle),
new ChartXY(velocityChart, velocityChartY, Constants.VelocityChartTitle),
new ChartXY(gainChart, gainChartY, Constants.GainChartTitle),
showVelocityGainToolStripMenuItem,
showLastMouseMoveMenuItem,
streamingModeToolStripMenuItem,
writeButton,
accelCalculator);
var sensitivity = new Option(
sensitivityBoxX,
form,
1,
sensitivityLabel,
0,
new ActiveValueLabel(sensitivityActiveLabel, activeValueTitleX),
"Sens Multiplier");
var yxRatio = new LockableOption(
new Option(
sensitivityBoxY,
form,
1,
yxRatioLabel,
0,
new ActiveValueLabel(yxRatioActiveLabel, activeValueTitleX),
"Y/X Ratio"),
sensXYLock,
1);
var rotation = new Option(
rotationBox,
form,
0,
rotationLabel,
0,
new ActiveValueLabel(rotationActiveLabel, activeValueTitleX),
"Rotation");
var optionSetYLeft = activeValueTitleX.Left + activeValueTitleX.Width;
var directionalityLeft = directionalityPanel.Left;
var inputJumpX = new Option(
inputJumpBoxX,
form,
0,
inputJumpLabelX,
0,
new ActiveValueLabel(inputJumpActiveLabelX, activeValueTitleX),
"Jump");
var inputJumpY = new Option(
inputJumpBoxY,
form,
0,
inputJumpLabelY,
optionSetYLeft,
new ActiveValueLabel(inputJumpActiveLabelY, activeValueTitleY),
"Jump");
var outputJumpX = new Option(
outputJumpBoxX,
form,
0,
outputJumpLabelX,
0,
new ActiveValueLabel(outputJumpActiveLabelX, activeValueTitleX),
"Jump");
var outputJumpY = new Option(
outputJumpBoxY,
form,
0,
outputJumpLabelY,
optionSetYLeft,
new ActiveValueLabel(outputJumpActiveLabelY, activeValueTitleY),
"Jump");
var inputOffsetX = new Option(
inputOffsetBoxX,
form,
0,
inputOffsetLabelX,
0,
new ActiveValueLabel(inputOffsetActiveLabelX, activeValueTitleX),
"Offset");
var inputOffsetY = new Option(
inputOffsetBoxY,
form,
0,
inputOffsetLabelY,
optionSetYLeft,
new ActiveValueLabel(inputOffsetActiveLabelY, activeValueTitleY),
"Offset");
var outputOffsetX = new Option(
outputOffsetBoxX,
form,
0,
outputOffsetLabelX,
0,
new ActiveValueLabel(outputOffsetActiveLabelX, activeValueTitleX),
"Offset");
var outputOffsetY = new Option(
outputOffsetBoxY,
form,
0,
outputOffsetLabelY,
optionSetYLeft,
new ActiveValueLabel(outputOffsetActiveLabelY, activeValueTitleY),
"Offset");
var accelerationX = new Option(
new Field(accelerationBoxX, form, 0),
constantOneLabelX,
new ActiveValueLabel(accelerationActiveLabelX, activeValueTitleX),
0);
var accelerationY = new Option(
new Field(accelerationBoxY, form, 0),
constantOneLabelY,
new ActiveValueLabel(accelerationActiveLabelY, activeValueTitleY),
optionSetYLeft);
var decayRateX = new Option(
new Field(decayRateBoxX, form, 0),
decayRateLabelX,
new ActiveValueLabel(decayRateActiveLabelX, activeValueTitleX),
0);
var decayRateY = new Option(
new Field(decayRateBoxY, form, 0),
decayRateLabelY,
new ActiveValueLabel(decayRateActiveLabelY, activeValueTitleY),
optionSetYLeft);
var growthRateX = new Option(
new Field(growthRateBoxX, form, 0),
growthRateLabelX,
new ActiveValueLabel(growthRateActiveLabelX, activeValueTitleX),
0);
var growthRateY = new Option(
new Field(growthRateBoxY, form, 0),
growthRateLabelY,
new ActiveValueLabel(growthRateActiveLabelY, activeValueTitleY),
optionSetYLeft);
var smoothX = new Option(
new Field(smoothBoxX, form, 0),
smoothLabelX,
new ActiveValueLabel(smoothActiveLabelX, activeValueTitleX),
0);
var smoothY = new Option(
new Field(smoothBoxY, form, 0),
smoothLabelY,
new ActiveValueLabel(smoothActiveLabelY, activeValueTitleY),
optionSetYLeft);
var scaleX = new Option(
new Field(scaleBoxX, form, 0),
scaleLabelX,
new ActiveValueLabel(scaleActiveLabelX, activeValueTitleX),
0);
var scaleY = new Option(
new Field(scaleBoxY, form, 0),
scaleLabelY,
new ActiveValueLabel(scaleActiveLabelY, activeValueTitleY),
optionSetYLeft);
var limitX = new Option(
new Field(limitBoxX, form, 2),
limitLabelX,
new ActiveValueLabel(limitActiveLabelX, activeValueTitleX),
0);
var limitY = new Option(
new Field(limitBoxY, form, 2),
limitLabelY,
new ActiveValueLabel(limitActiveLabelY, activeValueTitleY),
optionSetYLeft);
var powerClassicX = new Option(
new Field(powerClassicBoxX, form, 2),
powerClassicLabelX,
new ActiveValueLabel(powerClassicActiveLabelX, activeValueTitleX),
0);
var powerClassicY = new Option(
new Field(powerClassicBoxY, form, 2),
powerClassicLabelY,
new ActiveValueLabel(powerClassicActiveLabelY, activeValueTitleY),
optionSetYLeft);
var exponentX = new Option(
new Field(expBoxX, form, 2),
expLabelX,
new ActiveValueLabel(expActiveLabelX, activeValueTitleX),
0);
var exponentY = new Option(
new Field(expBoxY, form, 2),
expLabelY,
new ActiveValueLabel(expActiveLabelY, activeValueTitleY),
optionSetYLeft);
var midpointX = new Option(
new Field(midpointBoxX, form, 0),
constantThreeLabelX,
new ActiveValueLabel(midpointActiveLabelX, activeValueTitleX),
0);
var midpointY = new Option(
new Field(midpointBoxY, form, 0),
constantThreeLabelY,
new ActiveValueLabel(midpointActiveLabelY, activeValueTitleY),
optionSetYLeft);
var inCapXClassic = new Option(
inCapBoxXClassic,
form,
0,
inCapLabelXClassic,
0,
new ActiveValueLabel(inCapActiveXLabelClassic, activeValueTitleX),
"Cap: Input");
var inCapYClassic = new Option(
inCapBoxYClassic,
form,
0,
inCapLabelYClassic,
optionSetYLeft,
new ActiveValueLabel(inCapActiveYLabelClassic, activeValueTitleY),
"Cap");
var outCapXClassic = new Option(
outCapBoxXClassic,
form,
0,
outCapLabelXClassic,
0,
new ActiveValueLabel(outCapActiveXLabelClassic, activeValueTitleX),
"Cap: Input");
var outCapYClassic = new Option(
outCapBoxYClassic,
form,
0,
outCapLabelYClassic,
optionSetYLeft,
new ActiveValueLabel(outCapActiveYLabelClassic, activeValueTitleY),
"Cap");
var capTypeXClassic = new CapTypeOptions(
capTypeLabelXClassic,
capTypeDropdownXClassic,
new ActiveValueLabel(capTypeActiveXLabelClassic, activeValueTitleX),
0);
var capTypeYClassic = new CapTypeOptions(
capTypeLabelYClassic,
capTypeDropdownYClassic,
new ActiveValueLabel(capTypeActiveYLabelClassic, activeValueTitleY),
optionSetYLeft);
var classicCapOptionsX = new CapOptions(
capTypeXClassic,
inCapXClassic,
outCapXClassic,
accelerationX);
var classicCapOptionsY = new CapOptions(
capTypeYClassic,
inCapYClassic,
outCapYClassic,
accelerationY);
var inCapXPower = new Option(
inCapBoxXPower,
form,
0,
inCapLabelXPower,
0,
new ActiveValueLabel(inCapActiveXLabelPower, activeValueTitleX),
"Cap: Input");
var inCapYPower = new Option(
inCapBoxYPower,
form,
0,
inCapLabelYPower,
optionSetYLeft,
new ActiveValueLabel(inCapActiveYLabelPower, activeValueTitleY),
"Cap");
var outCapXPower = new Option(
outCapBoxXPower,
form,
0,
outCapLabelXPower,
0,
new ActiveValueLabel(outCapActiveXLabelPower, activeValueTitleX),
"Cap: Input");
var outCapYPower = new Option(
outCapBoxYPower,
form,
0,
outCapLabelYPower,
optionSetYLeft,
new ActiveValueLabel(outCapActiveYLabelPower, activeValueTitleY),
"Cap");
var capTypeXPower = new CapTypeOptions(
capTypeLabelXPower,
capTypeDropdownXPower,
new ActiveValueLabel(capTypeActiveXLabelPower, activeValueTitleX),
0);
var capTypeYPower = new CapTypeOptions(
capTypeLabelYPower,
capTypeDropdownYPower,
new ActiveValueLabel(capTypeActiveYLabelPower, activeValueTitleY),
optionSetYLeft);
var lpNorm = new Option(
new Field(lpNormBox, form, 2),
lpNormLabel,
new ActiveValueLabel(lpNormActiveLabel, direcionalityActiveValueTitle),
directionalityLeft);
var domain = new OptionXY(
domainBoxX,
domainBoxY,
fakeBox,
form,
1,
domainLabel,
new ActiveValueLabelXY(
new ActiveValueLabel(domainActiveValueX, direcionalityActiveValueTitle),
new ActiveValueLabel(domainActiveValueY, direcionalityActiveValueTitle)),
false);
var range = new OptionXY(
rangeBoxX,
rangeBoxY,
fakeBox,
form,
1,
rangeLabel,
new ActiveValueLabelXY(
new ActiveValueLabel(rangeActiveValueX, direcionalityActiveValueTitle),
new ActiveValueLabel(rangeActiveValueY, direcionalityActiveValueTitle)),
false);
var lutTextX = new TextOption(lutTextLabelX);
var lutTextY = new TextOption(lutTextLabelY);
var gainSwitchOptionX = new CheckBoxOption(
gainSwitchX,
new ActiveValueLabel(gainSwitchActiveLabelX, activeValueTitleX));
var gainSwitchOptionY = new CheckBoxOption(
gainSwitchY,
new ActiveValueLabel(gainSwitchActiveLabelY, activeValueTitleY));
var powerCapOptionsX = new CapOptions(
capTypeXPower,
inCapXPower,
outCapXPower,
scaleX,
outputOffsetX,
gainSwitchOptionX);
var powerCapOptionsY = new CapOptions(
capTypeYPower,
inCapYPower,
outCapYPower,
scaleY,
outputOffsetY,
gainSwitchOptionY);
var accelerationOptionsX = new AccelTypeOptions(
accelTypeDropX,
gainSwitchOptionX,
classicCapOptionsX,
powerCapOptionsX,
outputJumpX,
outputOffsetX,
decayRateX,
growthRateX,
smoothX,
inputJumpX,
inputOffsetX,
limitX,
powerClassicX,
exponentX,
midpointX,
lutTextX,
new LUTPanelOptions(xLutPointsBox, xLutActiveValuesBox),
new LutApplyOptions(
lutApplyLabelX,
lutApplyDropdownX,
new ActiveValueLabel(lutApplyActiveValueX, activeValueTitleX)),
writeButton,
new ActiveValueLabel(accelTypeActiveLabelX, activeValueTitleX));
var accelerationOptionsY = new AccelTypeOptions(
accelTypeDropY,
gainSwitchOptionY,
classicCapOptionsY,
powerCapOptionsY,
outputJumpY,
outputOffsetY,
decayRateY,
growthRateY,
smoothY,
inputJumpY,
inputOffsetY,
limitY,
powerClassicY,
exponentY,
midpointY,
lutTextY,
new LUTPanelOptions(yLutPointsBox, yLutActiveValuesBox),
new LutApplyOptions(
lutApplyLabelY,
lutApplyDropdownY,
new ActiveValueLabel(lutApplyActiveValueY, activeValueTitleY)),
writeButton,
new ActiveValueLabel(accelTypeActiveLabelY, activeValueTitleY));
var optionsSetX = new AccelOptionSet(
optionSetXTitle,
activeValueTitleX,
rotationBox.Top + rotationBox.Height + Constants.OptionVerticalSeperation,
accelerationOptionsX);
var optionsSetY = new AccelOptionSet(
optionSetYTitle,
activeValueTitleY,
rotationBox.Top + rotationBox.Height + Constants.OptionVerticalSeperation,
accelerationOptionsY);
var directionalOptions = new DirectionalityOptions(
directionalityPanel,
directionalityLabel,
directionalityX,
directionalityY,
direcionalityActiveValueTitle,
lpNorm,
domain,
range,
wholeCheckBox,
byComponentCheckBox,
Constants.DirectionalityVerticalOffset);
var applyOptions = new ApplyOptions(
byComponentXYLock,
optionsSetX,
optionsSetY,
directionalOptions,
sensitivity,
yxRatio,
rotation,
lockXYLabel,
accelCharts);
var settings = new SettingsManager(
accelCalculator.DPI,
accelCalculator.PollRate,
autoWriteMenuItem,
showLastMouseMoveMenuItem,
showVelocityGainToolStripMenuItem,
streamingModeToolStripMenuItem);
var mouseWatcher = new MouseWatcher(form, mouseLabel, accelCharts, settings);
return new AccelGUI(
form,
accelCalculator,
accelCharts,
settings,
applyOptions,
writeButton,
toggleButton,
mouseWatcher,
scaleMenuItem,
deviceMenuItem);
}
#endregion Methods
}
}
|