summaryrefslogtreecommitdiff
path: root/src/SSVOpenHexagon/Global/Config.cpp
blob: 1b5ddc90ec0e8c05f43e232b4a56483ea91566b3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
// Copyright (c) 2013-2020 Vittorio Romeo
// License: Academic Free License ("AFL") v. 3.0
// AFL License page: https://opensource.org/licenses/AFL-3.0

#include "SSVOpenHexagon/Global/Config.hpp"

#include "SSVOpenHexagon/Global/UtilsJson.hpp"
#include "SSVOpenHexagon/Utils/Concat.hpp"
#include "SSVOpenHexagon/Utils/String.hpp"
#include "SSVOpenHexagon/Utils/Casts.hpp"
#include "SSVOpenHexagon/Core/Joystick.hpp"

#include "SSVOpenHexagon/SSVUtilsJson/SSVUtilsJson.hpp"
#include "SSVOpenHexagon/SSVUtilsJson/LinkedValue/LinkedValue.hpp"

#include <SSVStart/Utils/Input.hpp>
#include <SSVStart/Input/Input.hpp>
#include <SSVStart/GameSystem/GameWindow.hpp>

#include <fstream>
#include <iostream>
#include <string>
#include <vector>

[[nodiscard]] static const std::vector<std::string>&
defaultServerLevelWhitelist()
{
    static const std::vector<std::string> result{
        // Vittorio Romeo - Cube
        "ohvrvanilla_vittorio_romeo_cube_1_apeirogon_m_0.35",
        "ohvrvanilla_vittorio_romeo_cube_1_apeirogon_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_apeirogon_m_1.6",
        "ohvrvanilla_vittorio_romeo_cube_1_commando_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_commando_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_commando_m_1.5",
        "ohvrvanilla_vittorio_romeo_cube_1_euclideanpc_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_euclideanpc_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_euclideanpc_m_1.8",
        "ohvrvanilla_vittorio_romeo_cube_1_flatteringshape_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_flatteringshape_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_flatteringshape_m_3",
        "ohvrvanilla_vittorio_romeo_cube_1_flatteringshape_m_4",
        "ohvrvanilla_vittorio_romeo_cube_1_goldenratio_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_goldenratio_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_goldenratio_m_2",
        "ohvrvanilla_vittorio_romeo_cube_1_labyrinth_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_labyrinth_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_labyrinth_m_1.5",
        "ohvrvanilla_vittorio_romeo_cube_1_pi_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_pi_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_pi_m_1.8",
        "ohvrvanilla_vittorio_romeo_cube_1_pointless_m_0.5",
        "ohvrvanilla_vittorio_romeo_cube_1_pointless_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_pointless_m_3",
        "ohvrvanilla_vittorio_romeo_cube_1_pointless_m_5",
        "ohvrvanilla_vittorio_romeo_cube_1_seconddimension_m_0.6",
        "ohvrvanilla_vittorio_romeo_cube_1_seconddimension_m_1",
        "ohvrvanilla_vittorio_romeo_cube_1_seconddimension_m_1.8",
        "ohvrvanilla_vittorio_romeo_cube_1_seconddimension_m_2.2",

        // Vittorio Romeo - Orthoplex
        "ohvrvanilla_vittorio_romeo_orthoplex_1_bipolarity_m_0.5",
        "ohvrvanilla_vittorio_romeo_orthoplex_1_bipolarity_m_1",
        "ohvrvanilla_vittorio_romeo_orthoplex_1_bipolarity_m_1.8",

        // Vittorio Romeo - Hypercube
        "ohvrvanilla_vittorio_romeo_hypercube_1_acceleradiant_m_0.85",
        "ohvrvanilla_vittorio_romeo_hypercube_1_acceleradiant_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_acceleradiant_m_1.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_acceleradiant_m_2.4",
        "ohvrvanilla_vittorio_romeo_hypercube_1_centrifugal_m_0.6",
        "ohvrvanilla_vittorio_romeo_hypercube_1_centrifugal_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_centrifugal_m_1.6",
        "ohvrvanilla_vittorio_romeo_hypercube_1_disc-o_m_0.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_disc-o_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_disc-o_m_2",
        "ohvrvanilla_vittorio_romeo_hypercube_1_disc-o_m_2.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_g-force_m_0.6",
        "ohvrvanilla_vittorio_romeo_hypercube_1_g-force_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_g-force_m_1.6",
        "ohvrvanilla_vittorio_romeo_hypercube_1_g-force_m_2.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_incongruence_m_0.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_incongruence_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_incongruence_m_1.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_massacre_m_0.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_massacre_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_massacre_m_1.6",
        "ohvrvanilla_vittorio_romeo_hypercube_1_polyhedrug_m_0.75",
        "ohvrvanilla_vittorio_romeo_hypercube_1_polyhedrug_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_polyhedrug_m_1.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_reppaws_m_0.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_reppaws_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_reppaws_m_1.8",
        "ohvrvanilla_vittorio_romeo_hypercube_1_slither_m_0.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_slither_m_1",
        "ohvrvanilla_vittorio_romeo_hypercube_1_slither_m_1.5",
        "ohvrvanilla_vittorio_romeo_hypercube_1_slither_m_2",

        // Vipre - Vanity [Steam Workshop]
        "vanitylevels_Vipre_Vanity_10006_haunted_m_1",
        "vanitylevels_Vipre_Vanity_10006_haunted_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_mantra_m_1",
        "vanitylevels_Vipre_Vanity_10006_menace_m_1",
        "vanitylevels_Vipre_Vanity_10006_menace_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_narcotics_m_1",
        "vanitylevels_Vipre_Vanity_10006_narcotics_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_rocketscience_m_1",
        "vanitylevels_Vipre_Vanity_10006_rocketscience_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_singlepulseremixv2remix_m_1",
        "vanitylevels_Vipre_Vanity_10006_squarepractice_m_1",
        "vanitylevels_Vipre_Vanity_10006_squarepractice_m_1.003",
        "vanitylevels_Vipre_Vanity_10006_squarepractice_m_1.005",
        "vanitylevels_Vipre_Vanity_10006_technology_m_1",
        "vanitylevels_Vipre_Vanity_10006_technology_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_troglodyte_m_1",
        "vanitylevels_Vipre_Vanity_10006_troglodyte_m_1.001",
        "vanitylevels_Vipre_Vanity_10006_troglodyte_m_1.002",

        // clang-format off
        // Morxemplum - Rotationality Remastered [Steam Workshop]
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_dragonMayhem_m_1",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_dragonMayhem_m_2",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_dragonMayhem_m_3",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_dragonMayhem_m_5",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_dragonMayhem_m_6.66",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_skyFasion_m_1",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_skyFasion_m_2",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_skyFasion_m_3",
        "rotationality_SkyMidnight_Rotationality_(Remastered)_2_skyFasion_m_5",
        // clang-format on

        // Syyrion - Travel [Steam Workshop]
        "1D2B-E31E-EC19_Syyrion_Travel_13103_ti84_m_0.8",
        "1D2B-E31E-EC19_Syyrion_Travel_13103_ti84_m_1",
        "1D2B-E31E-EC19_Syyrion_Travel_13103_ti84_m_1.2",
        "1D2B-E31E-EC19_Syyrion_Travel_13103_ti84_m_1.4",
        "1D2B-E31E-EC19_Syyrion_Travel_13103_spl_m_1" //
    };

    return result;
}

using uint = unsigned int;
using ushort = unsigned short;

using trig = ssvs::Input::Trigger;

using k = ssvs::KKey;
using m = ssvs::MBtn;
using cmb = ssvs::Input::Combo;

using kil = std::initializer_list<ssvs::KKey>;
using mil = std::initializer_list<ssvs::MBtn>;
using cil = std::initializer_list<cmb>;

#define X_LINKEDVALUES_BINDS_JOYSTICK                    \
    X(joystickSelect, uint, "j_select", 1)               \
    X(joystickExit, uint, "j_exit", 2)                   \
    X(joystickFocus, uint, "j_focus", 4)                 \
    X(joystickSwap, uint, "j_swap", 5)                   \
    X(joystickForceRestart, uint, "j_force_restart", 3)  \
    X(joystickRestart, uint, "j_restart", 0)             \
    X(joystickReplay, uint, "j_replay", 6)               \
    X(joystickScreenshot, uint, "j_screenshot", 7)       \
    X(joystickNextPack, uint, "j_next", 11)              \
    X(joystickPreviousPack, uint, "j_previous", 10)      \
    X(joystickAddToFavorites, uint, "j_add_favorite", 8) \
    X(joystickFavoritesMenu, uint, "j_favorite_menu", 9)

#define X_LINKEDVALUES_BINDS_TRIGGERS                                      \
    X(triggerRotateCCW, trig, "t_rotate_ccw",                              \
        cil{cmb{{k::A}}, cmb{{k::Left}}, cmb{kil{}, mil{m::Left}}})        \
    X(triggerRotateCW, trig, "t_rotate_cw",                                \
        cil{cmb{{k::D}}, cmb{{k::Right}}, cmb{kil{}, mil{m::Right}}})      \
    X(triggerFocus, trig, "t_focus",                                       \
        cil{cmb{{k::LShift}}, cmb{kil{}, mil{m::XButton1}}})               \
    X(triggerSelect, trig, "t_select",                                     \
        cil{cmb{{k::Space}}, cmb{kil{}, mil{m::Middle}}})                  \
    X(triggerExit, trig, "t_exit",                                         \
        cil{cmb{{k::T}}, cmb{kil{}, mil{m::XButton2}}})                    \
    X(triggerForceRestart, trig, "t_force_restart",                        \
        cil{cmb{{k::Up}}, cmb{{k::R}}})                                    \
    X(triggerRestart, trig, "t_restart",                                   \
        cil{cmb{{k::Space}}, cmb{{k::Enter}}, cmb{kil{}, mil{m::Middle}}}) \
    X(triggerReplay, trig, "t_replay", cil{cmb{{k::Y}}})                   \
    X(triggerScreenshot, trig, "t_screenshot", cil{cmb{{k::F12}}})         \
    X(triggerSwap, trig, "t_swap",                                         \
        cil{cmb{{k::Space}}, cmb{kil{}, mil{m::Middle}}})                  \
    X(triggerUp, trig, "t_up", cil{cmb{{k::W}}})                           \
    X(triggerDown, trig, "t_down", cil{cmb{{k::S}}})                       \
    X(triggerNextPack, trig, "t_next", cil{cmb{{k::PageDown}}})            \
    X(triggerPreviousPack, trig, "t_previous", cil{cmb{{k::PageUp}}})      \
    X(triggerLuaConsole, trig, "t_lua_console", cil{cmb{{k::F1}}})         \
    X(triggerPause, trig, "t_pause", cil{cmb{{k::F2}}})

#define X_LINKEDVALUES_BINDS      \
    X_LINKEDVALUES_BINDS_JOYSTICK \
    X_LINKEDVALUES_BINDS_TRIGGERS

#define X_LINKEDVALUES                                                     \
    X(official, bool, "official", true)                                    \
    X(noRotation, bool, "no_rotation", false)                              \
    X(noBackground, bool, "no_background", false)                          \
    X(noSound, bool, "no_sound", false)                                    \
    X(noMusic, bool, "no_music", false)                                    \
    X(blackAndWhite, bool, "black_and_white", false)                       \
    X(pulseEnabled, bool, "pulse_enabled", true)                           \
    X(_3DEnabled, bool, "3D_enabled", true)                                \
    X(_3DMultiplier, float, "3D_multiplier", 1.f)                          \
    X(_3DMaxDepth, uint, "3D_max_depth", 100)                              \
    X(invincible, bool, "invincible", false)                               \
    X(autoRestart, bool, "auto_restart", false)                            \
    X(soundVolume, float, "sound_volume", 100.f)                           \
    X(musicVolume, float, "music_volume", 100.f)                           \
    X(flashEnabled, bool, "flash_enabled", true)                           \
    X(zoomFactor, float, "zoom_factor", 1.27f)                             \
    X(pixelMultiplier, int, "pixel_multiplier", 1)                         \
    X(playerSpeed, float, "player_speed", 9.45f)                           \
    X(playerFocusSpeed, float, "player_focus_speed", 4.625f)               \
    X(playerSize, float, "player_size", 7.3f)                              \
    X(limitFPS, bool, "limit_fps", true)                                   \
    X(vsync, bool, "vsync", false)                                         \
    X(autoZoomFactor, bool, "auto_zoom_factor", true)                      \
    X(fullscreen, bool, "fullscreen", false)                               \
    X(windowedAutoResolution, bool, "windowed_auto_resolution", false)     \
    X(fullscreenAutoResolution, bool, "fullscreen_auto_resolution", false) \
    X(fullscreenWidth, uint, "fullscreen_width", 1920)                     \
    X(fullscreenHeight, uint, "fullscreen_height", 1080)                   \
    X(windowedWidth, uint, "windowed_width", 800)                          \
    X(windowedHeight, uint, "windowed_height", 600)                        \
    X(showMessages, bool, "show_messages", true)                           \
    X(debug, bool, "debug", false)                                         \
    X(beatPulse, bool, "beatpulse_enabled", true)                          \
    X(showTrackedVariables, bool, "show_tracked_variables", true)          \
    X(musicSpeedDMSync, bool, "music_speed_dm_sync", true)                 \
    X(maxFPS, uint, "max_fps", 200)                                        \
    X(antialiasingLevel, uint, "antialiasing_level", 4)                    \
    X(showFPS, bool, "show_fps", false)                                    \
    X(musicSpeedMult, float, "music_speed_mult", 1.0f)                     \
    X(drawTextOutlines, bool, "draw_text_outlines", true)                  \
    X(darkenUnevenBackgroundChunk, bool, "darken_uneven_background_chunk", \
        true)                                                              \
    X(rotateToStart, bool, "rotate_to_start", false)                       \
    X(joystickDeadzone, float, "joystick_deadzone", 5.0f)                  \
    X(textPadding, float, "text_padding", 8.0f)                            \
    X(textScaling, float, "text_scaling", 1.0f)                            \
    X(timescale, float, "timescale", 1.0f)                                 \
    X(showKeyIcons, bool, "show_key_icons", false)                         \
    X(keyIconsScale, float, "key_icons_scale", 0.75f)                      \
    X(firstTimePlaying, bool, "first_time_playing", true)                  \
    X(showLevelInfo, bool, "show_level_info", false)                       \
    X(showTimer, bool, "show_timer", true)                                 \
    X(showStatusText, bool, "show_status_text", true)                      \
    X(serverIp, std::string, "server_ip", "139.162.199.162")               \
    X(serverPort, ushort, "server_port", 50505)                            \
    X(serverControlPort, ushort, "server_control_port", 50506)             \
    X(serverLevelWhitelist, std::vector<std::string>,                      \
        "server_level_whitelist", defaultServerLevelWhitelist())           \
    X(saveLastLoginUsername, bool, "save_last_login_username", true)       \
    X(lastLoginUsername, std::string, "last_login_username", "")           \
    X(showLoginAtStartup, bool, "show_login_at_startup", false)            \
    X(cameraShakeMultiplier, float, "camera_shake_multiplier", 1.f)        \
    X(angleTiltIntensity, float, "angle_tilt_intensity", 1.f)              \
    X(showPlayerTrail, bool, "show_player_trail", true)                    \
    X(playerTrailAlpha, uint, "player_trail_alpha", 35)                    \
    X(playerTrailScale, float, "player_trail_scale", 0.9f)                 \
    X(playerTrailDecay, float, "player_trail_decay", 3.0f)                 \
    X(playerTrailHasSwapColor, bool, "player_trail_has_swap_color", true)  \
    X(showSwapParticles, bool, "show_swap_particles", true)                \
    X(playSwapReadySound, bool, "play_swap_ready_sound", true)             \
    X(showSwapBlinkingEffect, bool, "show_swap_blinking_effect", true)     \
    X_LINKEDVALUES_BINDS

namespace hg::Config {

[[nodiscard]] static ssvuj::Obj& root() noexcept
{
    static ssvuj::Obj res = []
    {
        if(ssvufs::Path{"config.json"}.isFile())
        {
            ssvu::lo("hg::Config::root()")
                << "User-defined `config.json` file found\n";

            return ssvuj::getFromFile("config.json");
        }

        ssvu::lo("hg::Config::root()")
            << "No suitable config file found, using defaults\n";

        return ssvuj::Obj{};
    }();

    return res;
}


#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wbraced-scalar-init"

#define X(name, type, key, ...)                                               \
    [[nodiscard]] static auto& name() noexcept                                \
    {                                                                         \
        static auto res = ::ssvuj::LinkedValue<type>(key, type{__VA_ARGS__}); \
        return res;                                                           \
    }
X_LINKEDVALUES
#undef X

#pragma GCC diagnostic pop

static void fixupMissingTriggers()
{
    const auto doIt = [](ssvs::Input::Trigger& trig)
    {
        auto& combos = trig.getCombos();

        if(!combos.empty())
        {
            return;
        }

        combos.resize(4);

        for(ssvs::Input::Combo& c : combos)
        {
            c.clearBind(); // mark as unbound
        }
    };

#define X(name, type, key, ...) doIt(name());
    X_LINKEDVALUES_BINDS_TRIGGERS
#undef X
}

static void syncAllFromObj()
{
#define X(name, type, key, ...) name().syncFrom(root());
    X_LINKEDVALUES
#undef X

    fixupMissingTriggers();
}

static void syncAllToObj()
{
#define X(name, type, key, ...) name().syncTo(root());
    X_LINKEDVALUES
#undef X
}

static void resetAllFromDefault()
{
#define X(name, type, key, ...) name().resetToDefault();
    X_LINKEDVALUES
#undef X
}

static void resetBindsFromDefault()
{
#define X(name, type, key, ...) name().resetToDefault();
    X_LINKEDVALUES_BINDS
#undef X
}

#undef X_LINKEDVALUES
#undef X_LINKEDVALUES_BINDS
#undef X_LINKEDVALUES_BINDS_TRIGGERS
#undef X_LINKEDVALUES_BINDS_JOYSTICK

float sizeX{1500}, sizeY{1500};
constexpr float defaultSpawnDistance{1600};
std::string uneligibilityReason;

static void applyAutoWindowedResolution()
{
    auto d(sf::VideoMode::getDesktopMode());
    windowedWidth() = d.width;
    windowedHeight() = d.height;
}

static void applyAutoFullscreenResolution()
{
    auto d(sf::VideoMode::getDesktopMode());
    fullscreenWidth() = d.width;
    fullscreenHeight() = d.height;
}

void loadConfig(const std::vector<std::string>& mOverridesIds)
{
    ssvu::lo("::loadConfig") << "loading config\n";

    if(ssvufs::Path{"ConfigOverrides/"}.isFolder())
    {
        for(const ssvufs::Path& p :
            ssvufs::getScan<ssvufs::Mode::Single, ssvufs::Type::File,
                ssvufs::Pick::ByExt>("ConfigOverrides/", ".json"))
        {
            if(ssvu::contains(mOverridesIds, p.getFileNameNoExtensions()))
            {
                ssvu::lo("::loadConfig")
                    << "applying config override '"
                    << p.getFileNameNoExtensions() << "'\n";

                const auto overrideRoot(ssvuj::getFromFile(p));
                for(auto itr(std::begin(overrideRoot));
                    itr != std::end(overrideRoot); ++itr)
                {
                    root()[ssvuj::getKey(itr)] = *itr;
                }
            }
        }
    }

    syncAllFromObj();
}

void reapplyResolution()
{
    ssvu::lo("::reapplyResolution") << "reapplying resolution\n";

    if(getWindowedAutoResolution())
    {
        applyAutoWindowedResolution();
    }

    if(getFullscreenAutoResolution())
    {
        applyAutoFullscreenResolution();
    }

    recalculateSizes();
}

void resetConfigToDefaults()
{
    ssvu::lo("::resetConfigToDefaults") << "resetting configs\n";

    resetAllFromDefault();
    reapplyResolution();
}

void resetBindsToDefaults()
{
    ssvu::lo("::resetBindsToDefaults") << "resetting binds to defaults\n";

    resetBindsFromDefault();
}

void saveConfig()
{
    ssvu::lo("::saveConfig") << "saving config\n";
    syncAllToObj();
    ssvuj::writeToFile(root(), "config.json");
}

bool isEligibleForScore()
{
    if(!getOfficial())
    {
        uneligibilityReason = "official mode off";
        return false;
    }

    if(getSpawnDistance() != defaultSpawnDistance)
    {
        uneligibilityReason = "spawn distance modified";
        return false;
    }

    if(getDebug())
    {
        uneligibilityReason = "debug mode on";
        return false;
    }

    if(!getAutoZoomFactor())
    {
        uneligibilityReason = "modified zoom factor";
        return false;
    }

    if(getPlayerSpeed() != playerSpeed().getDefault())
    {
        uneligibilityReason = "player speed modified";
        return false;
    }

    if(getPlayerFocusSpeed() != playerFocusSpeed().getDefault())
    {
        uneligibilityReason = "player focus speed modified";
        return false;
    }

    if(getPlayerSize() != playerSize().getDefault())
    {
        uneligibilityReason = "player size modified";
        return false;
    }

    if(getInvincible())
    {
        uneligibilityReason = "invincibility on";
        return false;
    }

    if(getNoRotation())
    {
        uneligibilityReason = "rotation off";
        return false;
    }

    return true;
}

void recalculateSizes()
{
    sizeX = sizeY = std::max(getWidth(), getHeight()) * 1.3f;

    if(!getAutoZoomFactor())
    {
        return;
    }

    const float factorX(1024.f / ssvu::toFloat(getWidth()));
    const float factorY(768.f / ssvu::toFloat(getHeight()));
    zoomFactor() = std::max(factorX, factorY);
}

void setFullscreen(ssvs::GameWindow& mWindow, bool mFullscreen)
{
    fullscreen() = mFullscreen;

    const sf::Vector2u res{getWidth(), getHeight()};
    mWindow.getRenderWindow().setSize(res);
    mWindow.setSize(res.x, res.y);
    mWindow.setFullscreen(getFullscreen());

    recalculateSizes();
}

void setCurrentResolution(unsigned int mWidth, unsigned int mHeight)
{
    if(getFullscreen())
    {
        fullscreenAutoResolution() = false;
        fullscreenWidth() = mWidth;
        fullscreenHeight() = mHeight;
    }
    else
    {
        windowedAutoResolution() = false;
        windowedWidth() = mWidth;
        windowedHeight() = mHeight;
    }

    recalculateSizes();
}

void setCurrentResolutionAuto(ssvs::GameWindow& mWindow)
{
    if(fullscreen())
    {
        fullscreenAutoResolution() = true;
        applyAutoFullscreenResolution();
    }
    else
    {
        windowedAutoResolution() = true;
        applyAutoWindowedResolution();
    }

    setFullscreen(mWindow, getFullscreen());
}

void setVsync(ssvs::GameWindow& mWindow, bool mValue)
{
    vsync() = mValue;
    mWindow.setVsync(vsync());
}

void setLimitFPS(ssvs::GameWindow& mWindow, bool mValue)
{
    limitFPS() = mValue;
    mWindow.setFPSLimited(mValue);
}

void setMaxFPS(ssvs::GameWindow& mWindow, unsigned int mValue)
{
    maxFPS() = mValue;
    mWindow.setMaxFPS(mValue);
}

void setAntialiasingLevel(ssvs::GameWindow& mWindow, unsigned int mValue)
{
    if(mValue != antialiasingLevel())
    {
        antialiasingLevel() = mValue;
        mWindow.setAntialiasingLevel(mValue);
    }
}

void setOfficial(bool mOfficial)
{
    official() = mOfficial;
}

void setDebug(bool mDebug)
{
    debug() = mDebug;
}

void setNoRotation(bool mNoRotation)
{
    noRotation() = mNoRotation;
}

void setNoBackground(bool mNoBackground)
{
    noBackground() = mNoBackground;
}

void setBlackAndWhite(bool mBlackAndWhite)
{
    blackAndWhite() = mBlackAndWhite;
}

void setNoSound(bool mNoSound)
{
    noSound() = mNoSound;
}

void setNoMusic(bool mNoMusic)
{
    noMusic() = mNoMusic;
}

void setPulse(bool mPulse)
{
    pulseEnabled() = mPulse;
}

void set3D(bool m3D)
{
    _3DEnabled() = m3D;
}

void setInvincible(bool mInvincible)
{
    invincible() = mInvincible;
}

void setAutoRestart(bool mAutoRestart)
{
    autoRestart() = mAutoRestart;
}

void setSoundVolume(float mVolume)
{
    soundVolume() = mVolume;
}

void setMusicVolume(float mVolume)
{
    musicVolume() = mVolume;
}

void setFlash(bool mFlash)
{
    flashEnabled() = mFlash;
}

void setMusicSpeedDMSync(bool mValue)
{
    musicSpeedDMSync() = mValue;
}

void setShowFPS(bool mValue)
{
    showFPS() = mValue;
}

void setMusicSpeedMult(float mValue)
{
    musicSpeedMult() = mValue;
}

void setDrawTextOutlines(bool mX)
{
    drawTextOutlines() = mX;
}

void setDarkenUnevenBackgroundChunk(bool mX)
{
    darkenUnevenBackgroundChunk() = mX;
}

void setRotateToStart(bool mX)
{
    rotateToStart() = mX;
}

void setJoystickDeadzone(float mX)
{
    joystickDeadzone() = mX;
}

void setTextPadding(float mX)
{
    textPadding() = mX;
}

void setTextScaling(float mX)
{
    textScaling() = mX;
}

void setTimescale(float mX)
{
    timescale() = mX;
}

void setShowKeyIcons(bool mX)
{
    showKeyIcons() = mX;
}

void setKeyIconsScale(float mX)
{
    keyIconsScale() = mX;
}

void setFirstTimePlaying(bool mX)
{
    firstTimePlaying() = mX;
}

void setShowLevelInfo(bool mX)
{
    showLevelInfo() = mX;
}

void setShowTimer(bool mX)
{
    showTimer() = mX;
}

void setShowStatusText(bool mX)
{
    showStatusText() = mX;
}

void setServerIp(const std::string& mX)
{
    serverIp() = mX;
}

void setServerPort(unsigned short mX)
{
    serverPort() = mX;
}

void setServerControlPort(unsigned short mX)
{
    serverControlPort() = mX;
}

void setServerLevelWhitelist(const std::vector<std::string>& levelValidators)
{
    serverLevelWhitelist() = levelValidators;
}

void setSaveLastLoginUsername(bool mX)
{
    saveLastLoginUsername() = mX;
}

void setLastLoginUsername(const std::string& mX)
{
    lastLoginUsername() = mX;
}

void setShowLoginAtStartup(bool mX)
{
    showLoginAtStartup() = mX;
}

void setCameraShakeMultiplier(float x)
{
    cameraShakeMultiplier() = x;
}

void setAngleTiltIntensity(float x)
{
    angleTiltIntensity() = x;
}

void setShowPlayerTrail(bool x)
{
    showPlayerTrail() = x;
}

void setPlayerTrailAlpha(unsigned int x)
{
    playerTrailAlpha() = x;
}

void setPlayerTrailScale(float x)
{
    playerTrailScale() = x;
}

void setPlayerTrailDecay(float x)
{
    playerTrailDecay() = x;
}

void setPlayerTrailHasSwapColor(bool x)
{
    playerTrailHasSwapColor() = x;
}

void setShowSwapParticles(bool x)
{
    showSwapParticles() = x;
}

void setPlaySwapReadySound(bool x)
{
    playSwapReadySound() = x;
}

void setShowSwapBlinkingEffect(bool x)
{
    showSwapBlinkingEffect() = x;
}

[[nodiscard]] bool getOfficial()
{
    return official();
}

[[nodiscard]] const std::string& getUneligibilityReason()
{
    return uneligibilityReason;
}

[[nodiscard]] float getSizeX()
{
    return sizeX;
}

[[nodiscard]] float getSizeY()
{
    return sizeY;
}

[[nodiscard]] float getSpawnDistance()
{
    return defaultSpawnDistance;
}

[[nodiscard]] float getZoomFactor()
{
    return zoomFactor();
}

[[nodiscard]] int getPixelMultiplier()
{
    return pixelMultiplier();
}

[[nodiscard]] float getPlayerSpeed()
{
    return getOfficial() ? playerSpeed().getDefault() : playerSpeed();
}

[[nodiscard]] float getPlayerFocusSpeed()
{
    return getOfficial() ? playerFocusSpeed().getDefault() : playerFocusSpeed();
}

[[nodiscard]] float getPlayerSize()
{
    return getOfficial() ? playerSize().getDefault() : playerSize();
}

[[nodiscard]] bool getNoRotation()
{
    return getOfficial() ? noRotation().getDefault() : noRotation();
}

[[nodiscard]] bool getNoBackground()
{
    return getOfficial() ? noBackground().getDefault() : noBackground();
}

[[nodiscard]] bool getBlackAndWhite()
{
    return getOfficial() ? blackAndWhite().getDefault() : blackAndWhite();
}

[[nodiscard]] bool getNoSound()
{
    return noSound();
}

[[nodiscard]] bool getNoMusic()
{
    return noMusic();
}

[[nodiscard]] float getSoundVolume()
{
    return soundVolume();
}

[[nodiscard]] float getMusicVolume()
{
    return musicVolume();
}

[[nodiscard]] bool getLimitFPS()
{
    return limitFPS();
}

[[nodiscard]] bool getVsync()
{
    return vsync();
}

[[nodiscard]] bool getAutoZoomFactor()
{
    return getOfficial() ? autoZoomFactor().getDefault() : autoZoomFactor();
}

[[nodiscard]] bool getFullscreen()
{
    return fullscreen();
}

[[nodiscard]] bool getWindowedAutoResolution()
{
    return windowedAutoResolution();
}

[[nodiscard]] bool getFullscreenAutoResolution()
{
    return fullscreenAutoResolution();
}

[[nodiscard]] unsigned int getFullscreenWidth()
{
    return fullscreenWidth();
}

[[nodiscard]] unsigned int getFullscreenHeight()
{
    return fullscreenHeight();
}

[[nodiscard]] unsigned int getWindowedWidth()
{
    return windowedWidth();
}

[[nodiscard]] unsigned int getWindowedHeight()
{
    return windowedHeight();
}

[[nodiscard]] unsigned int getWidth()
{
    return getFullscreen() ? getFullscreenWidth() : getWindowedWidth();
}

[[nodiscard]] unsigned int getHeight()
{
    return getFullscreen() ? getFullscreenHeight() : getWindowedHeight();
}

[[nodiscard]] bool getShowMessages()
{
    return showMessages();
}

[[nodiscard]] bool getDebug()
{
    return getOfficial() ? debug().getDefault() : debug();
}

[[nodiscard]] bool getPulse()
{
    return getOfficial() ? pulseEnabled().getDefault() : pulseEnabled();
}

[[nodiscard]] bool getBeatPulse()
{
    return getOfficial() ? beatPulse().getDefault() : beatPulse();
}

[[nodiscard]] bool getInvincible()
{
    return getOfficial() ? invincible().getDefault() : invincible();
}

[[nodiscard]] bool get3D()
{
    return _3DEnabled();
}

[[nodiscard]] float get3DMultiplier()
{
    return _3DMultiplier();
}

[[nodiscard]] unsigned int get3DMaxDepth()
{
    return _3DMaxDepth();
}

[[nodiscard]] bool getAutoRestart()
{
    return autoRestart();
}

[[nodiscard]] bool getFlash()
{
    return flashEnabled();
}

[[nodiscard]] bool getShowTrackedVariables()
{
    return showTrackedVariables();
}

[[nodiscard]] bool getMusicSpeedDMSync()
{
    return musicSpeedDMSync();
}

[[nodiscard]] unsigned int getMaxFPS()
{
    return maxFPS();
}

[[nodiscard]] unsigned int getAntialiasingLevel()
{
    return antialiasingLevel();
}

[[nodiscard]] bool getShowFPS()
{
    return showFPS();
}

[[nodiscard]] float getMusicSpeedMult()
{
    return musicSpeedMult();
}

[[nodiscard]] bool getDrawTextOutlines()
{
    return drawTextOutlines();
}

[[nodiscard]] bool getDarkenUnevenBackgroundChunk()
{
    return darkenUnevenBackgroundChunk();
}

[[nodiscard]] bool getRotateToStart()
{
    return rotateToStart();
}

[[nodiscard]] float getJoystickDeadzone()
{
    return joystickDeadzone();
}

[[nodiscard]] float getTextPadding()
{
    return textPadding();
}

[[nodiscard]] float getTextScaling()
{
    return textScaling();
}

[[nodiscard]] float getTimescale()
{
    return getOfficial() ? timescale().getDefault() : timescale();
}

[[nodiscard]] bool getShowKeyIcons()
{
    return showKeyIcons();
}

[[nodiscard]] float getKeyIconsScale()
{
    return keyIconsScale();
}

[[nodiscard]] bool getFirstTimePlaying()
{
    return firstTimePlaying();
}

[[nodiscard]] bool getShowLevelInfo()
{
    return showLevelInfo();
}

[[nodiscard]] bool getShowTimer()
{
    return getOfficial() ? showTimer().getDefault() : showTimer();
}

[[nodiscard]] bool getShowStatusText()
{
    return getOfficial() ? showStatusText().getDefault() : showStatusText();
}

[[nodiscard]] const std::string& getServerIp()
{
    return serverIp();
}

[[nodiscard]] unsigned short getServerPort()
{
    return serverPort();
}

[[nodiscard]] unsigned short getServerControlPort()
{
    return serverControlPort();
}

[[nodiscard]] const std::vector<std::string> getServerLevelWhitelist()
{
    return serverLevelWhitelist();
}

[[nodiscard]] bool getSaveLastLoginUsername()
{
    return saveLastLoginUsername();
}

[[nodiscard]] const std::string& getLastLoginUsername()
{
    return lastLoginUsername();
}

[[nodiscard]] bool getShowLoginAtStartup()
{
    return showLoginAtStartup();
}

[[nodiscard]] float getCameraShakeMultiplier()
{
    return cameraShakeMultiplier();
}

[[nodiscard]] float getAngleTiltIntensity()
{
    return angleTiltIntensity();
}

[[nodiscard]] bool getShowPlayerTrail()
{
    return showPlayerTrail();
}

[[nodiscard]] unsigned int getPlayerTrailAlpha()
{
    return playerTrailAlpha();
}

[[nodiscard]] float getPlayerTrailScale()
{
    return playerTrailScale();
}

[[nodiscard]] float getPlayerTrailDecay()
{
    return playerTrailDecay();
}

[[nodiscard]] bool getPlayerTrailHasSwapColor()
{
    return playerTrailHasSwapColor();
}

[[nodiscard]] bool getShowSwapParticles()
{
    return showSwapParticles();
}

[[nodiscard]] bool getPlaySwapReadySound()
{
    return playSwapReadySound();
}

[[nodiscard]] bool getShowSwapBlinkingEffect()
{
    return showSwapBlinkingEffect();
}

//***********************************************************
//
// KEYBOARD/MOUSE BINDS
//
//***********************************************************

//**************************************************
// Game start check

inline constexpr int maxBinds{4};

void resizeTrigger(ssvs::Input::Trigger& trig) noexcept
{
    std::vector<ssvs::Input::Combo>& combos{trig.getCombos()};

    // Remove empty slots to agglomerate all binds
    // close to each other
    auto it{combos.begin()};
    while(it != combos.end())
    {
        if(it->isUnbound())
        {
            combos.erase(it);
            continue;
        }
        ++it;
    }
    // if the config has more binds than are supported
    while(combos.size() > maxBinds)
    {
        combos.pop_back();
    }
    // if the config has less binds fill the
    // spots with unbound combos
    while(combos.size() < maxBinds)
    {
        combos.emplace_back(ssvs::Input::Combo({ssvs::KKey::Unknown}));
    }
}

void keyboardBindsSanityCheck()
{
    resizeTrigger(triggerRotateCCW());
    resizeTrigger(triggerRotateCW());
    resizeTrigger(triggerFocus());
    resizeTrigger(triggerSelect());
    resizeTrigger(triggerExit());
    resizeTrigger(triggerForceRestart());
    resizeTrigger(triggerRestart());
    resizeTrigger(triggerReplay());
    resizeTrigger(triggerScreenshot());
    resizeTrigger(triggerSwap());
    resizeTrigger(triggerUp());
    resizeTrigger(triggerDown());
}

//**************************************************
// Get trigger names

std::string bindToHumanReadableName(std::string s)
{
    if(s.starts_with('k'))
    {
        return s.substr(1);
    }

    if(s == "bLeft")
    {
        return "LMB";
    }

    if(s == "bRight")
    {
        return "RMB";
    }

    if(s == "bMiddle")
    {
        return "MMB";
    }

    return s;
}


const std::array<TriggerGetter, toSizeT(Tid::TriggersCount)> triggerGetters{
    []() -> ssvs::Input::Trigger& { return triggerRotateCCW(); },
    []() -> ssvs::Input::Trigger& { return triggerRotateCW(); },
    []() -> ssvs::Input::Trigger& { return triggerFocus(); },
    []() -> ssvs::Input::Trigger& { return triggerSelect(); },
    []() -> ssvs::Input::Trigger& { return triggerExit(); },
    []() -> ssvs::Input::Trigger& { return triggerForceRestart(); },
    []() -> ssvs::Input::Trigger& { return triggerRestart(); },
    []() -> ssvs::Input::Trigger& { return triggerReplay(); },
    []() -> ssvs::Input::Trigger& { return triggerScreenshot(); },
    []() -> ssvs::Input::Trigger& { return triggerSwap(); },
    []() -> ssvs::Input::Trigger& { return triggerUp(); },
    []() -> ssvs::Input::Trigger& { return triggerDown(); },
    []() -> ssvs::Input::Trigger& { return triggerNextPack(); },
    []() -> ssvs::Input::Trigger& { return triggerPreviousPack(); },
    []() -> ssvs::Input::Trigger& { return triggerLuaConsole(); },
    []() -> ssvs::Input::Trigger& { return triggerPause(); }};

[[nodiscard]] std::string getKeyboardBindNames(const Tid bindID)
{
    int j;
    std::string bindNames;

    const auto combos = triggerGetters.at(toSizeT(bindID))().getCombos();

    for(const auto& c : combos)
    {
        if(c.isUnbound())
        {
            break;
        }

        const auto keyBind{c.getKeys()};
        for(j = 0; j <= ssvs::KKey::KeyCount; ++j)
        {
            if(!keyBind[j])
            {
                continue;
            }

            if(!bindNames.empty())
            {
                bindNames += ", ";
            }

            // names are shifted compared to the Key enum
            bindNames +=
                bindToHumanReadableName(ssvs::getKKeyName(ssvs::KKey(j - 1)));
            break;
        }

        const auto btnBinds{c.getBtns()};
        for(j = 0; j <= ssvs::MBtn::ButtonCount; ++j)
        {
            if(!btnBinds[j])
            {
                continue;
            }

            if(!bindNames.empty())
            {
                bindNames += ", ";
            }

            // same as with keys
            bindNames +=
                bindToHumanReadableName(ssvs::getMBtnName(ssvs::MBtn(j - 1)));
            break;
        }
    }

    Utils::uppercasify(bindNames);
    return bindNames;
}

//**************************************************
// Add new key binds

void rebindTrigger(
    ssvs::Input::Trigger& trig, const int key, const int btn, int index)
{
    // if both slots are taken replace the first one
    if(index >= maxBinds)
    {
        index = 0;
        trig.getCombos().at(index).clearBind();
    }

    if(key > -1)
    {
        trig.getCombos().at(index).addKey(ssvs::KKey(key));
    }
    else
    {
        trig.getCombos().at(index).addBtn(ssvs::MBtn(btn));
    }
}

//**************************************************
// Unbind key

void clearTriggerBind(ssvs::Input::Trigger& trig, const int index)
{
    trig.getCombos().at(index).clearBind();
}

//***********************************************************
//
// JOYSTICK BINDS
//
//***********************************************************

//**********************************************
// Get binds names

const std::array<JoystickTriggerGetter,
    toSizeT(Joystick::Jid::JoystickBindsCount)>
    joystickTriggerGetters{//
        []() -> unsigned int { return joystickSelect(); },
        []() -> unsigned int { return joystickExit(); },
        []() -> unsigned int { return joystickFocus(); },
        []() -> unsigned int { return joystickSwap(); },
        []() -> unsigned int { return joystickForceRestart(); },
        []() -> unsigned int { return joystickRestart(); },
        []() -> unsigned int { return joystickReplay(); },
        []() -> unsigned int { return joystickScreenshot(); },
        []() -> unsigned int { return joystickNextPack(); },
        []() -> unsigned int { return joystickPreviousPack(); },
        []() -> unsigned int { return joystickAddToFavorites(); },
        []() -> unsigned int { return joystickFavoritesMenu(); }};

const std::string getJoystickBindNames(const Joystick::Jid bindID)
{
    static constexpr std::array<std::array<std::string_view, 2>, 12>
        buttonsNames{{{"A", "SQUARE"}, {"B", "CROSS"}, {"X", "CIRCLE"},
            {"Y", "TRIANGLE"}, {"LB", "L1"}, {"RB", "R1"}, {"BACK", "L2"},
            {"START", "R2"}, {"LEFT STICK", "SELECT"}, {"RIGHT STICK", "START"},
            {"LT", "LEFT STICK"}, {"RT", "RIGHT STICK"}}};

    std::string bindName;
    const unsigned int value{joystickTriggerGetters[toSizeT(bindID)]()};

    if(value == 33)
    {
        bindName = "";
    }
    else
    {
        constexpr unsigned int msVendorId{0x045E};
        constexpr unsigned int sonyVendorId{0x54C};
        const unsigned int vendorId{
            sf::Joystick::isConnected(0)
                ? sf::Joystick::getIdentification(0).vendorId
                : 0};

        switch(vendorId)
        {
            case msVendorId:
                bindName = value >= 12 ? "" : buttonsNames[value][0];
                break;
            case sonyVendorId:
                bindName = value >= 12 ? "" : buttonsNames[value][1];
                break;
            default: bindName = ssvu::toStr(value); break;
        }
    }

    return bindName;
}

//**********************************************
// Get bind

void loadAllJoystickBinds()
{
    for(std::size_t i{0u}; i < Config::joystickTriggerGetters.size(); ++i)
    {
        Joystick::setJoystickBind(Config::joystickTriggerGetters[i](), i);
    }
}

//**********************************************
// Set bind

const std::array<JoystickTriggerSetter,
    toSizeT(Joystick::Jid::JoystickBindsCount)>
    joystickTriggerSetters{//
        [](const unsigned int btn) { joystickSelect() = btn; },
        [](const unsigned int btn) { joystickExit() = btn; },
        [](const unsigned int btn) { joystickFocus() = btn; },
        [](const unsigned int btn) { joystickSwap() = btn; },
        [](const unsigned int btn) { joystickForceRestart() = btn; },
        [](const unsigned int btn) { joystickRestart() = btn; },
        [](const unsigned int btn) { joystickReplay() = btn; },
        [](const unsigned int btn) { joystickScreenshot() = btn; },
        [](const unsigned int btn) { joystickNextPack() = btn; },
        [](const unsigned int btn) { joystickPreviousPack() = btn; },
        [](const unsigned int btn) { joystickAddToFavorites() = btn; },
        [](const unsigned int btn) { joystickFavoritesMenu() = btn; }};

[[nodiscard]] ssvs::Input::Trigger& getTrigger(const Tid tid)
{
    return triggerGetters[toSizeT(tid)]();
}

} // namespace hg::Config