forked from Nik-Potokar/XIVSlothCombo
-
Notifications
You must be signed in to change notification settings - Fork 37
/
UserConfig.cs
3627 lines (2919 loc) · 164 KB
/
UserConfig.cs
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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using Dalamud.Game.ClientState.Objects.SubKinds;
using Dalamud.Interface;
using Dalamud.Interface.Colors;
using Dalamud.Utility;
using ImGuiNET;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using ECommons;
using XIVSlothComboX.Combos;
using XIVSlothComboX.Combos.PvE;
using XIVSlothComboX.Combos.PvP;
using XIVSlothComboX.Core;
using XIVSlothComboX.CustomComboNS.Functions;
using XIVSlothComboX.Services;
using XIVSlothComboX.Data;
using XIVSlothComboX.Extensions;
namespace XIVSlothComboX.Window.Functions
{
public static class UserConfig
{
/// <summary> Draws a slider that lets the user set a given value for their feature. </summary>
/// <param name="minValue"> The absolute minimum value you'll let the user pick. </param>
/// <param name="maxValue"> The absolute maximum value you'll let the user pick. </param>
/// <param name="config"> The config ID. </param>
/// <param name="sliderDescription"> Description of the slider. Appends to the right of the slider. </param>
/// <param name="itemWidth"> How long the slider should be. </param>
/// <param name="sliderIncrement"> How much you want the user to increment the slider by. Uses SliderIncrements as a preset. </param>
/// <param name="hasAdditionalChoice">True if this config can trigger additional configs depending on value.</param>
/// <param name="additonalChoiceCondition">What the condition is to convey to the user what triggers it.</param>
public static void DrawSliderInt
(
int minValue,
int maxValue,
string config,
string sliderDescription,
float itemWidth = 150,
uint sliderIncrement = SliderIncrements.Ones,
bool hasAdditionalChoice = false,
string additonalChoiceCondition = "")
{
ImGui.Indent();
int output = PluginConfiguration.GetCustomIntValue(config, minValue);
if (output < minValue)
{
output = minValue;
PluginConfiguration.SetCustomIntValue(config, output);
Service.Configuration.Save();
}
sliderDescription = sliderDescription.Replace("%", "%%");
float contentRegionMin = ImGui.GetItemRectMax().Y - ImGui.GetItemRectMin().Y;
float wrapPos = ImGui.GetContentRegionMax().X - 35f;
InfoBox box = new()
{
Color = Colors.White,
BorderThickness = 1f,
CurveRadius = 3f,
AutoResize = true,
HasMaxWidth = true,
IsSubBox = true,
ContentsAction = () =>
{
bool inputChanged = false;
Vector2 currentPos = ImGui.GetCursorPos();
ImGui.SetCursorPosX(currentPos.X + itemWidth);
ImGui.PushTextWrapPos(wrapPos);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudWhite);
ImGui.Text($"{sliderDescription}");
Vector2 height = ImGui.GetItemRectSize();
float lines = height.Y / ImGui.GetFontSize();
Vector2 textLength = ImGui.CalcTextSize(sliderDescription);
string newLines = "";
for (int i = 1; i < lines; i++)
{
if (i % 2 == 0)
{
newLines += "\n";
}
else
{
newLines += "\n\n";
}
}
if (hasAdditionalChoice)
{
ImGui.SameLine();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.Dummy(new Vector2(5, 0));
ImGui.SameLine();
ImGui.TextWrapped($"{FontAwesomeIcon.Search.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted
(
$"This setting has additional options depending on its value.{(string.IsNullOrEmpty(additonalChoiceCondition) ? "" : $"\nCondition: {additonalChoiceCondition}")}"
);
ImGui.EndTooltip();
}
}
ImGui.PopStyleColor();
ImGui.PopTextWrapPos();
ImGui.SameLine();
ImGui.SetCursorPosX(currentPos.X);
ImGui.PushItemWidth(itemWidth);
inputChanged |= ImGui.SliderInt($"{newLines}###{config}", ref output, minValue, maxValue);
if (inputChanged)
{
if (output % sliderIncrement != 0)
{
output = output.RoundOff(sliderIncrement);
if (output < minValue) output = minValue;
if (output > maxValue) output = maxValue;
}
PluginConfiguration.SetCustomIntValue(config, output);
Service.Configuration.Save();
}
}
};
box.Draw();
ImGui.Spacing();
ImGui.Unindent();
}
/// <summary> Draws a slider that lets the user set a given value for their feature. </summary>
/// <param name="minValue"> The absolute minimum value you'll let the user pick. </param>
/// <param name="maxValue"> The absolute maximum value you'll let the user pick. </param>
/// <param name="config"> The config ID. </param>
/// <param name="sliderDescription"> Description of the slider. Appends to the right of the slider. </param>
/// <param name="itemWidth"> How long the slider should be. </param>
/// <param name="hasAdditionalChoice"></param>
/// <param name="additonalChoiceCondition"></param>
public static void DrawSliderFloat
(
float minValue,
float maxValue,
string config,
string sliderDescription,
float itemWidth = 150,
float defaultMinValue = 0f,
bool hasAdditionalChoice = false,
string additonalChoiceCondition = "")
{
float output = PluginConfiguration.GetCustomFloatValue(config, defaultMinValue);
if (output < minValue)
{
output = minValue;
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
sliderDescription = sliderDescription.Replace("%", "%%");
float contentRegionMin = ImGui.GetItemRectMax().Y - ImGui.GetItemRectMin().Y;
float wrapPos = ImGui.GetContentRegionMax().X - 35f;
InfoBox box = new()
{
Color = Colors.White,
BorderThickness = 1f,
CurveRadius = 3f,
AutoResize = true,
HasMaxWidth = true,
IsSubBox = true,
ContentsAction = () =>
{
bool inputChanged = false;
Vector2 currentPos = ImGui.GetCursorPos();
ImGui.SetCursorPosX(currentPos.X + itemWidth);
ImGui.PushTextWrapPos(wrapPos);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudWhite);
ImGui.Text($"{sliderDescription}");
Vector2 height = ImGui.GetItemRectSize();
float lines = (height.Y / ImGui.GetFontSize());
Vector2 textLength = ImGui.CalcTextSize(sliderDescription);
string newLines = "";
for (int i = 1; i < lines; i++)
{
if (i % 2 == 0)
{
newLines += "\n";
}
else
{
newLines += "\n\n";
}
}
if (hasAdditionalChoice)
{
ImGui.SameLine();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.Dummy(new Vector2(5, 0));
ImGui.SameLine();
ImGui.TextWrapped($"{FontAwesomeIcon.Search.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted
(
$"This setting has additional options depending on its value.{(string.IsNullOrEmpty(additonalChoiceCondition) ? "" : $"\nCondition: {additonalChoiceCondition}")}"
);
ImGui.EndTooltip();
}
}
ImGui.PopStyleColor();
ImGui.PopTextWrapPos();
ImGui.SameLine();
ImGui.SetCursorPosX(currentPos.X);
ImGui.PushItemWidth(itemWidth);
inputChanged |= ImGui.SliderFloat($"{newLines}###{config}", ref output, minValue, maxValue);
if (inputChanged)
{
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
}
};
box.Draw();
ImGui.Spacing();
}
/// <summary> Draws a slider that lets the user set a given value for their feature. </summary>
/// <param name="minValue"> The absolute minimum value you'll let the user pick. </param>
/// <param name="maxValue"> The absolute maximum value you'll let the user pick. </param>
/// <param name="config"> The config ID. </param>
/// <param name="sliderDescription"> Description of the slider. Appends to the right of the slider. </param>
/// <param name="itemWidth"> How long the slider should be. </param>
/// <param name="hasAdditionalChoice"></param>
/// <param name="additonalChoiceCondition"></param>
public static void DrawDragFloat
(
float speed,
float minValue,
float maxValue,
string config,
string sliderDescription,
float itemWidth = 150,
float defaultMinValue = 0f,
bool hasAdditionalChoice = false,
string additonalChoiceCondition = "")
{
float output = PluginConfiguration.GetCustomFloatValue(config, defaultMinValue);
if (output < minValue)
{
output = minValue;
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
sliderDescription = sliderDescription.Replace("%", "%%");
float contentRegionMin = ImGui.GetItemRectMax().Y - ImGui.GetItemRectMin().Y;
float wrapPos = ImGui.GetContentRegionMax().X - 35f;
InfoBox box = new()
{
Color = Colors.White,
BorderThickness = 1f,
CurveRadius = 3f,
AutoResize = true,
HasMaxWidth = true,
IsSubBox = true,
ContentsAction = () =>
{
bool inputChanged = false;
Vector2 currentPos = ImGui.GetCursorPos();
ImGui.SetCursorPosX(currentPos.X + itemWidth);
ImGui.PushTextWrapPos(wrapPos);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudWhite);
ImGui.Text($"{sliderDescription}");
Vector2 height = ImGui.GetItemRectSize();
float lines = (height.Y / ImGui.GetFontSize());
Vector2 textLength = ImGui.CalcTextSize(sliderDescription);
string newLines = "";
for (int i = 1; i < lines; i++)
{
if (i % 2 == 0)
{
newLines += "\n";
}
else
{
newLines += "\n\n";
}
}
if (hasAdditionalChoice)
{
ImGui.SameLine();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.Dummy(new Vector2(5, 0));
ImGui.SameLine();
ImGui.TextWrapped($"{FontAwesomeIcon.Search.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted
(
$"This setting has additional options depending on its value.{(string.IsNullOrEmpty(additonalChoiceCondition) ? "" : $"\nCondition: {additonalChoiceCondition}")}"
);
ImGui.EndTooltip();
}
}
ImGui.PopStyleColor();
ImGui.PopTextWrapPos();
ImGui.SameLine();
ImGui.SetCursorPosX(currentPos.X);
ImGui.PushItemWidth(itemWidth);
inputChanged |= ImGui.DragFloat($"{newLines}###{config}", ref output, speed, minValue, maxValue);
if (inputChanged)
{
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
}
};
box.Draw();
ImGui.Spacing();
}
public static void DrawDragInt
(
int minValue,
int maxValue,
string config,
string sliderDescription,
float itemWidth = 150,
bool hasAdditionalChoice = false,
string additonalChoiceCondition = "")
{
int output = PluginConfiguration.GetCustomIntValue(config, 0);
if (output < minValue)
{
output = minValue;
PluginConfiguration.SetCustomIntValue(config, output);
Service.Configuration.Save();
}
sliderDescription = sliderDescription.Replace("%", "%%");
float contentRegionMin = ImGui.GetItemRectMax().Y - ImGui.GetItemRectMin().Y;
float wrapPos = ImGui.GetContentRegionMax().X - 35f;
InfoBox box = new()
{
Color = Colors.White,
BorderThickness = 1f,
CurveRadius = 3f,
AutoResize = true,
HasMaxWidth = true,
IsSubBox = true,
ContentsAction = () =>
{
bool inputChanged = false;
Vector2 currentPos = ImGui.GetCursorPos();
ImGui.SetCursorPosX(currentPos.X + itemWidth);
ImGui.PushTextWrapPos(wrapPos);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudWhite);
ImGui.Text($"{sliderDescription}");
Vector2 height = ImGui.GetItemRectSize();
float lines = (height.Y / ImGui.GetFontSize());
Vector2 textLength = ImGui.CalcTextSize(sliderDescription);
string newLines = "";
for (int i = 1; i < lines; i++)
{
if (i % 2 == 0)
{
newLines += "\n";
}
else
{
newLines += "\n\n";
}
}
if (hasAdditionalChoice)
{
ImGui.SameLine();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.Dummy(new Vector2(5, 0));
ImGui.SameLine();
ImGui.TextWrapped($"{FontAwesomeIcon.Search.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted
(
$"This setting has additional options depending on its value.{(string.IsNullOrEmpty(additonalChoiceCondition) ? "" : $"\nCondition: {additonalChoiceCondition}")}"
);
ImGui.EndTooltip();
}
}
ImGui.PopStyleColor();
ImGui.PopTextWrapPos();
ImGui.SameLine();
ImGui.SetCursorPosX(currentPos.X);
ImGui.PushItemWidth(itemWidth);
inputChanged |= ImGui.DragInt($"{newLines}###{config}", ref output, 1, minValue, maxValue);
if (inputChanged)
{
PluginConfiguration.SetCustomIntValue(config, output);
Service.Configuration.Save();
}
}
};
box.Draw();
ImGui.Spacing();
}
/// <summary> Draws a slider that lets the user set a given value for their feature. </summary>
/// <param name="minValue"> The absolute minimum value you'll let the user pick. </param>
/// <param name="maxValue"> The absolute maximum value you'll let the user pick. </param>
/// <param name="config"> The config ID. </param>
/// <param name="sliderDescription"> Description of the slider. Appends to the right of the slider. </param>
/// <param name="itemWidth"> How long the slider should be. </param>
/// <param name="hasAdditionalChoice"></param>
/// <param name="additonalChoiceCondition"></param>
/// <param name="digits"></param>
public static void DrawRoundedSliderFloat
(
float minValue,
float maxValue,
string config,
string sliderDescription,
float itemWidth = 150,
bool hasAdditionalChoice = false,
string additonalChoiceCondition = "",
int digits = 1)
{
float output = PluginConfiguration.GetCustomFloatValue(config, minValue);
if (output < minValue)
{
output = minValue;
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
sliderDescription = sliderDescription.Replace("%", "%%");
float contentRegionMin = ImGui.GetItemRectMax().Y - ImGui.GetItemRectMin().Y;
float wrapPos = ImGui.GetContentRegionMax().X - 35f;
InfoBox box = new()
{
Color = Colors.White,
BorderThickness = 1f,
CurveRadius = 3f,
AutoResize = true,
HasMaxWidth = true,
IsSubBox = true,
ContentsAction = () =>
{
bool inputChanged = false;
Vector2 currentPos = ImGui.GetCursorPos();
ImGui.SetCursorPosX(currentPos.X + itemWidth);
ImGui.PushTextWrapPos(wrapPos);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudWhite);
ImGui.Text($"{sliderDescription}");
Vector2 height = ImGui.GetItemRectSize();
float lines = (height.Y / ImGui.GetFontSize());
Vector2 textLength = ImGui.CalcTextSize(sliderDescription);
string newLines = "";
for (int i = 1; i < lines; i++)
{
if (i % 2 == 0)
{
newLines += "\n";
}
else
{
newLines += "\n\n";
}
}
if (hasAdditionalChoice)
{
ImGui.SameLine();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.Dummy(new Vector2(5, 0));
ImGui.SameLine();
ImGui.TextWrapped($"{FontAwesomeIcon.Search.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted
(
$"This setting has additional options depending on its value.{(string.IsNullOrEmpty(additonalChoiceCondition) ? "" : $"\nCondition: {additonalChoiceCondition}")}"
);
ImGui.EndTooltip();
}
}
ImGui.PopStyleColor();
ImGui.PopTextWrapPos();
ImGui.SameLine();
ImGui.SetCursorPosX(currentPos.X);
ImGui.PushItemWidth(itemWidth);
inputChanged |= ImGui.SliderFloat($"{newLines}###{config}", ref output, minValue, maxValue, $"%.{digits}f");
if (inputChanged)
{
PluginConfiguration.SetCustomFloatValue(config, output);
Service.Configuration.Save();
}
}
};
box.Draw();
ImGui.Spacing();
}
/// <summary> Draws a checkbox intended to be linked to other checkboxes sharing the same config value. </summary>
/// <param name="config"> The config ID. </param>
/// <param name="checkBoxName"> The name of the feature. </param>
/// <param name="checkboxDescription"> The description of the feature. </param>
/// <param name="outputValue"> If the user ticks this box, this is the value the config will be set to. </param>
/// <param name="itemWidth"></param>
/// <param name="descriptionColor"></param>
public static void DrawRadioButton
(
string config,
string checkBoxName,
string checkboxDescription,
int outputValue,
float itemWidth = 150,
Vector4 descriptionColor = new Vector4())
{
ImGui.Indent();
if (descriptionColor == new Vector4())
descriptionColor = ImGuiColors.DalamudYellow;
int output = PluginConfiguration.GetCustomIntValue(config, outputValue);
ImGui.PushItemWidth(itemWidth);
ImGui.SameLine();
ImGui.Dummy(new Vector2(21, 0));
ImGui.SameLine();
bool enabled = output == outputValue;
if (ImGui.RadioButton($"{checkBoxName}###{config}{outputValue}", enabled))
{
PluginConfiguration.SetCustomIntValue(config, outputValue);
Service.Configuration.Save();
}
if (!StringExtensions.IsNullOrEmpty(checkboxDescription))
{
ImGui.PushStyleColor(ImGuiCol.Text, descriptionColor);
ImGui.TextWrapped(checkboxDescription);
ImGui.PopStyleColor();
}
ImGui.Unindent();
ImGui.Spacing();
}
public static void DrawCustom(CustomTimeline customTimeline, List<CustomTimeline> customTimelineList)
{
ImGui.PushID(customTimeline.Name);
ImGui.Indent();
ImGui.SameLine();
if (ImGui.Button("加载"))
{
foreach (var tCustomTimeline in customTimelineList)
{
// if (tCustomTimeline != customTimeline)
{
tCustomTimeline.Enable = false;
}
}
customTimeline.Enable = true;
Service.Configuration.Save();
CustomComboFunctions.LoadCustomTime(customTimeline);
}
ImGui.SameLine();
ImGui.SetCursorPosX(60);
if (ImGui.Button("停用"))
{
customTimeline.Enable = false;
Service.Configuration.Save();
CustomComboFunctions.ResetCustomTime();
}
{
ImGui.SameLine();
ImGui.SetCursorPosX(110);
ImGui.PushItemWidth(300);
Vector4 descriptionColor = ImGuiColors.DalamudRed;
if (customTimeline.Enable)
{
ImGui.TextColored(descriptionColor, customTimeline.Name);
}
else
{
ImGui.Text(customTimeline.Name);
}
}
ImGui.Unindent();
ImGui.Spacing();
ImGui.PopID();
}
/// <summary> Draws a checkbox in a horizontal configuration intended to be linked to other checkboxes sharing the same config value. </summary>
/// <param name="config"> The config ID. </param>
/// <param name="checkBoxName"> The name of the feature. </param>
/// <param name="checkboxDescription"> The description of the feature. </param>
/// <param name="outputValue"> If the user ticks this box, this is the value the config will be set to. </param>
/// <param name="itemWidth"></param>
/// <param name="descriptionColor"></param>
public static void DrawHorizontalRadioButton
(
string config,
string checkBoxName,
string checkboxDescription,
int outputValue,
float itemWidth = 150,
Vector4 descriptionColor = new Vector4())
{
ImGui.Indent();
if (descriptionColor == new Vector4()) descriptionColor = ImGuiColors.DalamudYellow;
int output = PluginConfiguration.GetCustomIntValue(config);
ImGui.PushItemWidth(itemWidth);
ImGui.SameLine();
ImGui.Dummy(new Vector2(21, 0));
ImGui.SameLine();
bool enabled = output == outputValue;
ImGui.PushStyleColor(ImGuiCol.Text, descriptionColor);
if (ImGui.RadioButton($"{checkBoxName}###{config}{outputValue}", enabled))
{
PluginConfiguration.SetCustomIntValue(config, outputValue);
Service.Configuration.Save();
}
if (!StringExtensions.IsNullOrEmpty(checkboxDescription) && ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted(checkboxDescription);
ImGui.EndTooltip();
}
ImGui.PopStyleColor();
ImGui.Unindent();
}
/// <summary>A true or false configuration. Similar to presets except can be used as part of a condition on another config.</summary>
/// <param name="config">The config ID.</param>
/// <param name="checkBoxName">The name of the feature.</param>
/// <param name="checkboxDescription">The description of the feature</param>
/// <param name="itemWidth"></param>
/// <param name="isConditionalChoice"></param>
public static void DrawAdditionalBoolChoice
(
string config,
string checkBoxName,
string checkboxDescription,
float itemWidth = 150,
bool isConditionalChoice = false)
{
bool output = PluginConfiguration.GetCustomBoolValue(config);
ImGui.PushItemWidth(itemWidth);
if (!isConditionalChoice)
ImGui.Indent();
else
{
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
ImGui.PushFont(UiBuilder.IconFont);
ImGui.AlignTextToFramePadding();
ImGui.TextWrapped($"{FontAwesomeIcon.Plus.ToIconString()}");
ImGui.PopFont();
ImGui.PopStyleColor();
ImGui.SameLine();
ImGui.Dummy(new Vector2(3));
ImGui.SameLine();
if (isConditionalChoice) ImGui.Indent(); //Align checkbox after the + symbol
}
if (ImGui.Checkbox($"{checkBoxName}###{config}", ref output))
{
PluginConfiguration.SetCustomBoolValue(config, output);
Service.Configuration.Save();
}
if (!StringExtensions.IsNullOrEmpty(checkboxDescription))
{
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudGrey);
ImGui.TextWrapped(checkboxDescription);
ImGui.PopStyleColor();
}
//if (!isConditionalChoice)
ImGui.Unindent();
ImGui.Spacing();
}
/// <summary> Draws multi choice checkboxes in a horizontal configuration. </summary>
/// <param name="config"> The config ID. </param>
/// <param name="checkBoxName"> The name of the feature. </param>
/// <param name="checkboxDescription"> The description of the feature. </param>
/// <param name="totalChoices"> The total number of options for the feature </param>
/// /// <param name="choice"> If the user ticks this box, this is the value the config will be set to. </param>
/// <param name="itemWidth"></param>
/// <param name="descriptionColor"></param>
public static void DrawHorizontalMultiChoice
(
string config,
string checkBoxName,
string checkboxDescription,
int totalChoices,
int choice,
float itemWidth = 150,
Vector4 descriptionColor = new Vector4())
{
ImGui.Indent();
if (descriptionColor == new Vector4())
descriptionColor = ImGuiColors.DalamudWhite;
ImGui.PushItemWidth(itemWidth);
ImGui.SameLine();
ImGui.Dummy(new Vector2(21, 0));
ImGui.SameLine();
bool[]? values = PluginConfiguration.GetCustomBoolArrayValue(config);
if (ImGui.GetColumnsCount() == totalChoices)
{
ImGui.NextColumn();
}
else
{
ImGui.Columns(totalChoices, null, false);
}
//If new saved options or amount of choices changed, resize and save
if (values.Length == 0 || values.Length != totalChoices)
{
Array.Resize(ref values, totalChoices);
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.PushStyleColor(ImGuiCol.Text, descriptionColor);
if (ImGui.Checkbox($"{checkBoxName}###{config}{choice}", ref values[choice]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
if (!StringExtensions.IsNullOrEmpty(checkboxDescription) && ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted(checkboxDescription);
ImGui.EndTooltip();
}
if (ImGui.GetColumnIndex() == totalChoices - 1)
ImGui.Columns(1);
ImGui.PopStyleColor();
ImGui.Unindent();
}
public static void DrawGridMultiChoice
(
string config,
byte columns,
string[,] nameAndDesc,
float itemWidth = 150,
Vector4 descriptionColor = new Vector4())
{
int totalChoices = nameAndDesc.GetLength(0);
if (totalChoices > 0)
{
ImGui.Indent();
if (descriptionColor == new Vector4()) descriptionColor = ImGuiColors.DalamudWhite;
//ImGui.PushItemWidth(itemWidth);
//ImGui.SameLine();
//ImGui.Dummy(new Vector2(21, 0));
//ImGui.SameLine();
bool[]? values = PluginConfiguration.GetCustomBoolArrayValue(config);
//If new saved options or amount of choices changed, resize and save
if (values.Length == 0 || values.Length != totalChoices)
{
Array.Resize(ref values, totalChoices);
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.BeginTable($"Grid###{config}", columns);
ImGui.TableNextRow();
//Convert the 2D array of names and descriptions into radio buttons
for (int idx = 0; idx < totalChoices; idx++)
{
ImGui.TableNextColumn();
string checkBoxName = nameAndDesc[idx, 0];
string checkboxDescription = nameAndDesc[idx, 1];
ImGui.PushStyleColor(ImGuiCol.Text, descriptionColor);
if (ImGui.Checkbox($"{checkBoxName}###{config}{idx}", ref values[idx]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
if (!StringExtensions.IsNullOrEmpty(checkboxDescription) && ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
ImGui.TextUnformatted(checkboxDescription);
ImGui.EndTooltip();
}
ImGui.PopStyleColor();
if (((idx + 1) % columns) == 0)
ImGui.TableNextRow();
}
ImGui.EndTable();
ImGui.Unindent();
}
}
public static void DrawPvPStatusMultiChoice(string config)
{
bool[]? values = PluginConfiguration.GetCustomBoolArrayValue(config);
ImGui.Columns(7, $"{config}", false);
if (values.Length == 0) Array.Resize(ref values, 7);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.ParsedPink);
if (ImGui.Checkbox($"[眩晕]###{config}0", ref values[0]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[冻结]###{config}1", ref values[1]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[渐渐睡眠]###{config}2", ref values[2]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[睡眠]###{config}3", ref values[3]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[止步]###{config}4", ref values[4]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[加重]###{config}5", ref values[5]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
if (ImGui.Checkbox($"[沉默]###{config}6", ref values[6]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.Columns(1);
ImGui.PopStyleColor();
ImGui.Spacing();
}
public static void DrawRoleGridMultiChoice(string config)
{
bool[]? values = PluginConfiguration.GetCustomBoolArrayValue(config);
ImGui.Columns(5, $"{config}", false);
if (values.Length == 0) Array.Resize(ref values, 5);
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.TankBlue);
if (ImGui.Checkbox($"Tanks###{config}0", ref values[0]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
ImGui.PopStyleColor();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.HealerGreen);
if (ImGui.Checkbox($"Healers###{config}1", ref values[1]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
ImGui.PopStyleColor();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DPSRed);
if (ImGui.Checkbox($"Melee###{config}2", ref values[2]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
ImGui.PopStyleColor();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudYellow);
if (ImGui.Checkbox($"Ranged###{config}3", ref values[3]))
{
PluginConfiguration.SetCustomBoolArrayValue(config, values);
Service.Configuration.Save();
}
ImGui.NextColumn();
ImGui.PopStyleColor();
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.ParsedPurple);
if (ImGui.Checkbox($"Casters###{config}4", ref values[4]))