forked from slages/love-imgui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrap_imgui_codegen.cpp
6927 lines (5779 loc) · 217 KB
/
wrap_imgui_codegen.cpp
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
// This is an automatically generated file!!
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
#include "wrap_imgui_codegen.h"
#include "imgui.h"
#include "imgui_stdlib.h"
#include <array>
#include <optional>
#include <string>
#include <vector>
#include <sstream>
#include <locale>
extern ImTextureID luax_checkTextureID(lua_State* L, int narg); // define in your application
namespace {
long g_currentFrameNumber = 0;
// Helpers {{{
bool luax_optboolean(lua_State* L, int narg, bool d)
{
if(lua_isnoneornil(L, narg)) {
return d;
}
return lua_toboolean(L, narg);
}
bool luax_checkboolean(lua_State* L, int narg)
{
return lua_toboolean(L, narg);
}
float luax_optfloat(lua_State* L, int narg, float d)
{
if(lua_isnoneornil(L, narg)) {
return d;
}
return static_cast<float>(lua_tonumber(L, narg));
}
float luax_checkfloat(lua_State* L, int narg)
{
return static_cast<float>(luaL_checknumber(L, narg));
}
void* luax_checklightuserdata(lua_State* L, int narg)
{
if(!lua_islightuserdata(L, narg)) {
luaL_error(L, "Invalid lightuserdata passed as parameter %d", narg);
return nullptr;
}
return lua_touserdata(L, narg);
}
void* luax_optlightuserdata(lua_State* L, int narg, void* d)
{
if(lua_isnoneornil(L, narg)) {
return d;
}
return luax_checklightuserdata(L, narg);
}
const char* luax_formatargs(lua_State* L, int startarg)
{
int endarg = lua_gettop(L);
lua_getglobal(L, "string"); // 1
lua_getfield(L, -1, "format"); // 2
lua_remove(L, -2); // 1, remove string
for (int i = startarg; i <= endarg; ++i) {
lua_pushvalue(L, i);
} // 1 + args
// out = string.format(...)
lua_call(L, endarg - startarg + 1, 1); // 1
const char* out = luaL_checkstring(L, -1); // 1
lua_pop(L, 1); // 0
return out;
}
template<typename T, typename U>
T luax_checkenum(U fromString, lua_State* L, int narg)
{
const char* s = luaL_checkstring(L, narg);
std::optional<T> opt = fromString(s);
if(!opt) {
luaL_error(L, "Invalid enum as argument %d, received \"%s\"", narg, s);
}
return *opt;
}
template<typename T, typename U>
T luax_optenum(U fromString, lua_State* L, int narg, T d)
{
if(!lua_isstring(L, narg)) {
return d;
}
const char* s = lua_tostring(L, narg);
std::optional<T> opt = fromString(s);
if(!opt) {
return d;
}
return *opt;
}
template<typename T, typename U>
T luax_checkflags(U fromString, lua_State* L, int narg)
{
T out{};
if (lua_isnumber(L, narg)) {
// variant A: raw number
out = static_cast<T>(lua_tointeger(L, narg));
} else if (lua_isstring(L, narg)) {
// variant B: string, split by '|'
const char* s = lua_tostring(L, narg);
std::vector<std::string> tokens;
std::string token;
std::istringstream tokenStream(s);
while (std::getline(tokenStream, token, '|')) {
std::optional<T> opt = fromString(token.c_str());
if (!opt) {
luaL_error(L, "Unrecognized value in flags parameter %d: %s", narg, token.c_str());
}
out = out | *opt;
}
} else if (lua_istable(L, narg)) {
// Variant C: table, both [enum] = true, and "enum" are supported
lua_pushvalue(L, narg); // t
lua_pushnil(L); // t, k(nil)
while (lua_next(L, -2)) {// t, k, v
lua_pushvalue(L, -2); // t, k, v, k
if (lua_isstring(L, -1)) {
const char* flagString = lua_tostring(L, -1);
std::optional<T> opt = fromString(flagString);
if (!opt) {
luaL_error(L, "Unrecognized enum in flags parameter %d: %s.", narg);
}
bool enabled = lua_toboolean(L, -2);
if (enabled) {
out = out | *opt;
}
} else if (lua_isnumber(L, -1)) {
const char* flagString = lua_tostring(L, -2);
std::optional<T> opt = fromString(flagString);
if (!opt) {
luaL_error(L, "Unrecognized enum in flags parameter %d: %s.", narg);
}
out = out | *opt;
}
lua_pop(L, 2); // t, k
}
lua_pop(L, 1); // clean
} else {
luaL_error(L, "Unrecognized flag parameter %d: must be int, string, or table", narg);
}
return out;
}
template<typename T, typename U>
T luax_optflags(U fromString, lua_State* L, int narg, T d)
{
if (lua_isnoneornil(L, narg)) {
return d;
}
return luax_checkflags<T, U>(fromString, L, narg);
}
std::vector<const char*> luax_checkstringvector(lua_State* L, int narg)
{
if(!lua_istable(L, narg)) {
luaL_error(L, "Invalid table passed as parameter %d", narg);
}
std::vector<const char*> out;
int idx = 1;
lua_rawgeti(L, narg, idx);
while (!lua_isnil(L, -1)) {
out.emplace_back(luaL_checkstring(L, -1));
lua_pop(L, 1);
idx++;
lua_rawgeti(L, narg, idx);
}
return out;
}
std::vector<float> luax_checkfloatvector(lua_State* L, int narg)
{
if(!lua_istable(L, narg)) {
luaL_error(L, "Invalid table passed as parameter %d", narg);
}
std::vector<float> out;
int idx = 1;
lua_rawgeti(L, narg, idx);
while (!lua_isnil(L, -1)) {
out.emplace_back(static_cast<float>(luaL_checknumber(L, -1)));
lua_pop(L, 1);
idx++;
lua_rawgeti(L, narg, idx);
}
return out;
}
// End Helpers }}}
// Enums {{{
std::optional<ImGuiWindowFlags_> getImGuiWindowFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiWindowFlags_None; }
if (strcmp(in, "DockNodeHost") == 0) { return ImGuiWindowFlags_DockNodeHost; }
if (strcmp(in, "NavFlattened") == 0) { return ImGuiWindowFlags_NavFlattened; }
if (strcmp(in, "ChildMenu") == 0) { return ImGuiWindowFlags_ChildMenu; }
if (strcmp(in, "Modal") == 0) { return ImGuiWindowFlags_Modal; }
if (strcmp(in, "NoResize") == 0) { return ImGuiWindowFlags_NoResize; }
if (strcmp(in, "AlwaysVerticalScrollbar") == 0) { return ImGuiWindowFlags_AlwaysVerticalScrollbar; }
if (strcmp(in, "MenuBar") == 0) { return ImGuiWindowFlags_MenuBar; }
if (strcmp(in, "Popup") == 0) { return ImGuiWindowFlags_Popup; }
if (strcmp(in, "HorizontalScrollbar") == 0) { return ImGuiWindowFlags_HorizontalScrollbar; }
if (strcmp(in, "NoNavFocus") == 0) { return ImGuiWindowFlags_NoNavFocus; }
if (strcmp(in, "ChildWindow") == 0) { return ImGuiWindowFlags_ChildWindow; }
if (strcmp(in, "NoTitleBar") == 0) { return ImGuiWindowFlags_NoTitleBar; }
if (strcmp(in, "NoInputs") == 0) { return ImGuiWindowFlags_NoInputs; }
if (strcmp(in, "NoCollapse") == 0) { return ImGuiWindowFlags_NoCollapse; }
if (strcmp(in, "NoBackground") == 0) { return ImGuiWindowFlags_NoBackground; }
if (strcmp(in, "NoDecoration") == 0) { return ImGuiWindowFlags_NoDecoration; }
if (strcmp(in, "AlwaysAutoResize") == 0) { return ImGuiWindowFlags_AlwaysAutoResize; }
if (strcmp(in, "AlwaysHorizontalScrollbar") == 0) { return ImGuiWindowFlags_AlwaysHorizontalScrollbar; }
if (strcmp(in, "NoBringToFrontOnFocus") == 0) { return ImGuiWindowFlags_NoBringToFrontOnFocus; }
if (strcmp(in, "NoMove") == 0) { return ImGuiWindowFlags_NoMove; }
if (strcmp(in, "NoDocking") == 0) { return ImGuiWindowFlags_NoDocking; }
if (strcmp(in, "UnsavedDocument") == 0) { return ImGuiWindowFlags_UnsavedDocument; }
if (strcmp(in, "AlwaysUseWindowPadding") == 0) { return ImGuiWindowFlags_AlwaysUseWindowPadding; }
if (strcmp(in, "Tooltip") == 0) { return ImGuiWindowFlags_Tooltip; }
if (strcmp(in, "NoSavedSettings") == 0) { return ImGuiWindowFlags_NoSavedSettings; }
if (strcmp(in, "NoNavInputs") == 0) { return ImGuiWindowFlags_NoNavInputs; }
if (strcmp(in, "NoScrollWithMouse") == 0) { return ImGuiWindowFlags_NoScrollWithMouse; }
if (strcmp(in, "NoNav") == 0) { return ImGuiWindowFlags_NoNav; }
if (strcmp(in, "NoFocusOnAppearing") == 0) { return ImGuiWindowFlags_NoFocusOnAppearing; }
if (strcmp(in, "NoScrollbar") == 0) { return ImGuiWindowFlags_NoScrollbar; }
if (strcmp(in, "NoMouseInputs") == 0) { return ImGuiWindowFlags_NoMouseInputs; }
return std::nullopt;
}
// skipping getStringFromImGuiWindowFlags() converting flags TODO
std::optional<ImGuiInputTextFlags_> getImGuiInputTextFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiInputTextFlags_None; }
if (strcmp(in, "AlwaysInsertMode") == 0) { return ImGuiInputTextFlags_AlwaysInsertMode; }
if (strcmp(in, "NoHorizontalScroll") == 0) { return ImGuiInputTextFlags_NoHorizontalScroll; }
if (strcmp(in, "NoMarkEdited") == 0) { return ImGuiInputTextFlags_NoMarkEdited; }
if (strcmp(in, "CallbackHistory") == 0) { return ImGuiInputTextFlags_CallbackHistory; }
if (strcmp(in, "CallbackAlways") == 0) { return ImGuiInputTextFlags_CallbackAlways; }
if (strcmp(in, "ReadOnly") == 0) { return ImGuiInputTextFlags_ReadOnly; }
if (strcmp(in, "CallbackResize") == 0) { return ImGuiInputTextFlags_CallbackResize; }
if (strcmp(in, "CallbackCompletion") == 0) { return ImGuiInputTextFlags_CallbackCompletion; }
if (strcmp(in, "AutoSelectAll") == 0) { return ImGuiInputTextFlags_AutoSelectAll; }
if (strcmp(in, "CallbackCharFilter") == 0) { return ImGuiInputTextFlags_CallbackCharFilter; }
if (strcmp(in, "CharsUppercase") == 0) { return ImGuiInputTextFlags_CharsUppercase; }
if (strcmp(in, "CharsHexadecimal") == 0) { return ImGuiInputTextFlags_CharsHexadecimal; }
if (strcmp(in, "Multiline") == 0) { return ImGuiInputTextFlags_Multiline; }
if (strcmp(in, "CallbackEdit") == 0) { return ImGuiInputTextFlags_CallbackEdit; }
if (strcmp(in, "CharsScientific") == 0) { return ImGuiInputTextFlags_CharsScientific; }
if (strcmp(in, "CharsDecimal") == 0) { return ImGuiInputTextFlags_CharsDecimal; }
if (strcmp(in, "CharsNoBlank") == 0) { return ImGuiInputTextFlags_CharsNoBlank; }
if (strcmp(in, "Password") == 0) { return ImGuiInputTextFlags_Password; }
if (strcmp(in, "CtrlEnterForNewLine") == 0) { return ImGuiInputTextFlags_CtrlEnterForNewLine; }
if (strcmp(in, "AllowTabInput") == 0) { return ImGuiInputTextFlags_AllowTabInput; }
if (strcmp(in, "NoUndoRedo") == 0) { return ImGuiInputTextFlags_NoUndoRedo; }
if (strcmp(in, "EnterReturnsTrue") == 0) { return ImGuiInputTextFlags_EnterReturnsTrue; }
return std::nullopt;
}
const char* getStringFromImGuiInputTextFlags(ImGuiInputTextFlags in)
{
switch (in) {
case 0: return "None";
case 1 << 13: return "AlwaysInsertMode";
case 1 << 12: return "NoHorizontalScroll";
case 1 << 21: return "NoMarkEdited";
case 1 << 7: return "CallbackHistory";
case 1 << 8: return "CallbackAlways";
case 1 << 14: return "ReadOnly";
case 1 << 18: return "CallbackResize";
case 1 << 6: return "CallbackCompletion";
case 1 << 4: return "AutoSelectAll";
case 1 << 9: return "CallbackCharFilter";
case 1 << 2: return "CharsUppercase";
case 1 << 1: return "CharsHexadecimal";
case 1 << 20: return "Multiline";
case 1 << 19: return "CallbackEdit";
case 1 << 17: return "CharsScientific";
case 1 << 0: return "CharsDecimal";
case 1 << 3: return "CharsNoBlank";
case 1 << 15: return "Password";
case 1 << 11: return "CtrlEnterForNewLine";
case 1 << 10: return "AllowTabInput";
case 1 << 16: return "NoUndoRedo";
case 1 << 5: return "EnterReturnsTrue";
}
return "";
}
std::optional<ImGuiTreeNodeFlags_> getImGuiTreeNodeFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTreeNodeFlags_None; }
if (strcmp(in, "OpenOnArrow") == 0) { return ImGuiTreeNodeFlags_OpenOnArrow; }
if (strcmp(in, "SpanFullWidth") == 0) { return ImGuiTreeNodeFlags_SpanFullWidth; }
if (strcmp(in, "SpanAvailWidth") == 0) { return ImGuiTreeNodeFlags_SpanAvailWidth; }
if (strcmp(in, "NavLeftJumpsBackHere") == 0) { return ImGuiTreeNodeFlags_NavLeftJumpsBackHere; }
if (strcmp(in, "DefaultOpen") == 0) { return ImGuiTreeNodeFlags_DefaultOpen; }
if (strcmp(in, "FramePadding") == 0) { return ImGuiTreeNodeFlags_FramePadding; }
if (strcmp(in, "Selected") == 0) { return ImGuiTreeNodeFlags_Selected; }
if (strcmp(in, "OpenOnDoubleClick") == 0) { return ImGuiTreeNodeFlags_OpenOnDoubleClick; }
if (strcmp(in, "AllowItemOverlap") == 0) { return ImGuiTreeNodeFlags_AllowItemOverlap; }
if (strcmp(in, "Framed") == 0) { return ImGuiTreeNodeFlags_Framed; }
if (strcmp(in, "CollapsingHeader") == 0) { return ImGuiTreeNodeFlags_CollapsingHeader; }
if (strcmp(in, "NoAutoOpenOnLog") == 0) { return ImGuiTreeNodeFlags_NoAutoOpenOnLog; }
if (strcmp(in, "Bullet") == 0) { return ImGuiTreeNodeFlags_Bullet; }
if (strcmp(in, "NoTreePushOnOpen") == 0) { return ImGuiTreeNodeFlags_NoTreePushOnOpen; }
if (strcmp(in, "Leaf") == 0) { return ImGuiTreeNodeFlags_Leaf; }
return std::nullopt;
}
// skipping getStringFromImGuiTreeNodeFlags() converting flags TODO
std::optional<ImGuiPopupFlags_> getImGuiPopupFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiPopupFlags_None; }
if (strcmp(in, "MouseButtonRight") == 0) { return ImGuiPopupFlags_MouseButtonRight; }
if (strcmp(in, "NoOpenOverItems") == 0) { return ImGuiPopupFlags_NoOpenOverItems; }
if (strcmp(in, "AnyPopupId") == 0) { return ImGuiPopupFlags_AnyPopupId; }
if (strcmp(in, "MouseButtonDefault_") == 0) { return ImGuiPopupFlags_MouseButtonDefault_; }
if (strcmp(in, "MouseButtonMiddle") == 0) { return ImGuiPopupFlags_MouseButtonMiddle; }
if (strcmp(in, "MouseButtonLeft") == 0) { return ImGuiPopupFlags_MouseButtonLeft; }
if (strcmp(in, "NoOpenOverExistingPopup") == 0) { return ImGuiPopupFlags_NoOpenOverExistingPopup; }
if (strcmp(in, "MouseButtonMask_") == 0) { return ImGuiPopupFlags_MouseButtonMask_; }
if (strcmp(in, "AnyPopup") == 0) { return ImGuiPopupFlags_AnyPopup; }
if (strcmp(in, "AnyPopupLevel") == 0) { return ImGuiPopupFlags_AnyPopupLevel; }
return std::nullopt;
}
// skipping getStringFromImGuiPopupFlags() converting flags TODO
std::optional<ImGuiSelectableFlags_> getImGuiSelectableFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiSelectableFlags_None; }
if (strcmp(in, "AllowItemOverlap") == 0) { return ImGuiSelectableFlags_AllowItemOverlap; }
if (strcmp(in, "DontClosePopups") == 0) { return ImGuiSelectableFlags_DontClosePopups; }
if (strcmp(in, "SpanAllColumns") == 0) { return ImGuiSelectableFlags_SpanAllColumns; }
if (strcmp(in, "AllowDoubleClick") == 0) { return ImGuiSelectableFlags_AllowDoubleClick; }
if (strcmp(in, "Disabled") == 0) { return ImGuiSelectableFlags_Disabled; }
return std::nullopt;
}
// skipping getStringFromImGuiSelectableFlags() converting flags TODO
std::optional<ImGuiComboFlags_> getImGuiComboFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiComboFlags_None; }
if (strcmp(in, "HeightRegular") == 0) { return ImGuiComboFlags_HeightRegular; }
if (strcmp(in, "HeightSmall") == 0) { return ImGuiComboFlags_HeightSmall; }
if (strcmp(in, "NoArrowButton") == 0) { return ImGuiComboFlags_NoArrowButton; }
if (strcmp(in, "HeightMask_") == 0) { return ImGuiComboFlags_HeightMask_; }
if (strcmp(in, "HeightLargest") == 0) { return ImGuiComboFlags_HeightLargest; }
if (strcmp(in, "NoPreview") == 0) { return ImGuiComboFlags_NoPreview; }
if (strcmp(in, "HeightLarge") == 0) { return ImGuiComboFlags_HeightLarge; }
if (strcmp(in, "PopupAlignLeft") == 0) { return ImGuiComboFlags_PopupAlignLeft; }
return std::nullopt;
}
// skipping getStringFromImGuiComboFlags() converting flags TODO
std::optional<ImGuiTabBarFlags_> getImGuiTabBarFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTabBarFlags_None; }
if (strcmp(in, "NoTooltip") == 0) { return ImGuiTabBarFlags_NoTooltip; }
if (strcmp(in, "TabListPopupButton") == 0) { return ImGuiTabBarFlags_TabListPopupButton; }
if (strcmp(in, "FittingPolicyResizeDown") == 0) { return ImGuiTabBarFlags_FittingPolicyResizeDown; }
if (strcmp(in, "NoTabListScrollingButtons") == 0) { return ImGuiTabBarFlags_NoTabListScrollingButtons; }
if (strcmp(in, "Reorderable") == 0) { return ImGuiTabBarFlags_Reorderable; }
if (strcmp(in, "FittingPolicyMask_") == 0) { return ImGuiTabBarFlags_FittingPolicyMask_; }
if (strcmp(in, "AutoSelectNewTabs") == 0) { return ImGuiTabBarFlags_AutoSelectNewTabs; }
if (strcmp(in, "FittingPolicyDefault_") == 0) { return ImGuiTabBarFlags_FittingPolicyDefault_; }
if (strcmp(in, "NoCloseWithMiddleMouseButton") == 0) { return ImGuiTabBarFlags_NoCloseWithMiddleMouseButton; }
if (strcmp(in, "FittingPolicyScroll") == 0) { return ImGuiTabBarFlags_FittingPolicyScroll; }
return std::nullopt;
}
// skipping getStringFromImGuiTabBarFlags() converting flags TODO
std::optional<ImGuiTabItemFlags_> getImGuiTabItemFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTabItemFlags_None; }
if (strcmp(in, "NoTooltip") == 0) { return ImGuiTabItemFlags_NoTooltip; }
if (strcmp(in, "NoPushId") == 0) { return ImGuiTabItemFlags_NoPushId; }
if (strcmp(in, "Trailing") == 0) { return ImGuiTabItemFlags_Trailing; }
if (strcmp(in, "Leading") == 0) { return ImGuiTabItemFlags_Leading; }
if (strcmp(in, "NoReorder") == 0) { return ImGuiTabItemFlags_NoReorder; }
if (strcmp(in, "SetSelected") == 0) { return ImGuiTabItemFlags_SetSelected; }
if (strcmp(in, "NoCloseWithMiddleMouseButton") == 0) { return ImGuiTabItemFlags_NoCloseWithMiddleMouseButton; }
if (strcmp(in, "UnsavedDocument") == 0) { return ImGuiTabItemFlags_UnsavedDocument; }
return std::nullopt;
}
// skipping getStringFromImGuiTabItemFlags() converting flags TODO
std::optional<ImGuiTableFlags_> getImGuiTableFlagsFromString(const char* in)
{
if (strcmp(in, "NoClip") == 0) { return ImGuiTableFlags_NoClip; }
if (strcmp(in, "SizingFixedSame") == 0) { return ImGuiTableFlags_SizingFixedSame; }
if (strcmp(in, "BordersOuterV") == 0) { return ImGuiTableFlags_BordersOuterV; }
if (strcmp(in, "Borders") == 0) { return ImGuiTableFlags_Borders; }
if (strcmp(in, "BordersInnerV") == 0) { return ImGuiTableFlags_BordersInnerV; }
if (strcmp(in, "SizingStretchProp") == 0) { return ImGuiTableFlags_SizingStretchProp; }
if (strcmp(in, "SortMulti") == 0) { return ImGuiTableFlags_SortMulti; }
if (strcmp(in, "NoPadInnerX") == 0) { return ImGuiTableFlags_NoPadInnerX; }
if (strcmp(in, "ScrollY") == 0) { return ImGuiTableFlags_ScrollY; }
if (strcmp(in, "BordersInnerH") == 0) { return ImGuiTableFlags_BordersInnerH; }
if (strcmp(in, "NoPadOuterX") == 0) { return ImGuiTableFlags_NoPadOuterX; }
if (strcmp(in, "BordersH") == 0) { return ImGuiTableFlags_BordersH; }
if (strcmp(in, "NoHostExtendX") == 0) { return ImGuiTableFlags_NoHostExtendX; }
if (strcmp(in, "NoBordersInBodyUntilResize") == 0) { return ImGuiTableFlags_NoBordersInBodyUntilResize; }
if (strcmp(in, "SortTristate") == 0) { return ImGuiTableFlags_SortTristate; }
if (strcmp(in, "PreciseWidths") == 0) { return ImGuiTableFlags_PreciseWidths; }
if (strcmp(in, "None") == 0) { return ImGuiTableFlags_None; }
if (strcmp(in, "NoBordersInBody") == 0) { return ImGuiTableFlags_NoBordersInBody; }
if (strcmp(in, "ContextMenuInBody") == 0) { return ImGuiTableFlags_ContextMenuInBody; }
if (strcmp(in, "Sortable") == 0) { return ImGuiTableFlags_Sortable; }
if (strcmp(in, "BordersInner") == 0) { return ImGuiTableFlags_BordersInner; }
if (strcmp(in, "SizingMask_") == 0) { return ImGuiTableFlags_SizingMask_; }
if (strcmp(in, "NoSavedSettings") == 0) { return ImGuiTableFlags_NoSavedSettings; }
if (strcmp(in, "Resizable") == 0) { return ImGuiTableFlags_Resizable; }
if (strcmp(in, "BordersOuter") == 0) { return ImGuiTableFlags_BordersOuter; }
if (strcmp(in, "SizingStretchSame") == 0) { return ImGuiTableFlags_SizingStretchSame; }
if (strcmp(in, "NoHostExtendY") == 0) { return ImGuiTableFlags_NoHostExtendY; }
if (strcmp(in, "BordersV") == 0) { return ImGuiTableFlags_BordersV; }
if (strcmp(in, "Reorderable") == 0) { return ImGuiTableFlags_Reorderable; }
if (strcmp(in, "SizingFixedFit") == 0) { return ImGuiTableFlags_SizingFixedFit; }
if (strcmp(in, "BordersOuterH") == 0) { return ImGuiTableFlags_BordersOuterH; }
if (strcmp(in, "NoKeepColumnsVisible") == 0) { return ImGuiTableFlags_NoKeepColumnsVisible; }
if (strcmp(in, "ScrollX") == 0) { return ImGuiTableFlags_ScrollX; }
if (strcmp(in, "RowBg") == 0) { return ImGuiTableFlags_RowBg; }
if (strcmp(in, "Hideable") == 0) { return ImGuiTableFlags_Hideable; }
if (strcmp(in, "PadOuterX") == 0) { return ImGuiTableFlags_PadOuterX; }
return std::nullopt;
}
// skipping getStringFromImGuiTableFlags() converting flags TODO
std::optional<ImGuiTableColumnFlags_> getImGuiTableColumnFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTableColumnFlags_None; }
if (strcmp(in, "NoSort") == 0) { return ImGuiTableColumnFlags_NoSort; }
if (strcmp(in, "IndentMask_") == 0) { return ImGuiTableColumnFlags_IndentMask_; }
if (strcmp(in, "NoResize") == 0) { return ImGuiTableColumnFlags_NoResize; }
if (strcmp(in, "IndentEnable") == 0) { return ImGuiTableColumnFlags_IndentEnable; }
if (strcmp(in, "NoSortDescending") == 0) { return ImGuiTableColumnFlags_NoSortDescending; }
if (strcmp(in, "IndentDisable") == 0) { return ImGuiTableColumnFlags_IndentDisable; }
if (strcmp(in, "PreferSortDescending") == 0) { return ImGuiTableColumnFlags_PreferSortDescending; }
if (strcmp(in, "WidthMask_") == 0) { return ImGuiTableColumnFlags_WidthMask_; }
if (strcmp(in, "NoHide") == 0) { return ImGuiTableColumnFlags_NoHide; }
if (strcmp(in, "NoDirectResize_") == 0) { return ImGuiTableColumnFlags_NoDirectResize_; }
if (strcmp(in, "StatusMask_") == 0) { return ImGuiTableColumnFlags_StatusMask_; }
if (strcmp(in, "DefaultSort") == 0) { return ImGuiTableColumnFlags_DefaultSort; }
if (strcmp(in, "IsHovered") == 0) { return ImGuiTableColumnFlags_IsHovered; }
if (strcmp(in, "NoSortAscending") == 0) { return ImGuiTableColumnFlags_NoSortAscending; }
if (strcmp(in, "IsVisible") == 0) { return ImGuiTableColumnFlags_IsVisible; }
if (strcmp(in, "NoReorder") == 0) { return ImGuiTableColumnFlags_NoReorder; }
if (strcmp(in, "NoHeaderWidth") == 0) { return ImGuiTableColumnFlags_NoHeaderWidth; }
if (strcmp(in, "IsEnabled") == 0) { return ImGuiTableColumnFlags_IsEnabled; }
if (strcmp(in, "DefaultHide") == 0) { return ImGuiTableColumnFlags_DefaultHide; }
if (strcmp(in, "WidthFixed") == 0) { return ImGuiTableColumnFlags_WidthFixed; }
if (strcmp(in, "WidthStretch") == 0) { return ImGuiTableColumnFlags_WidthStretch; }
if (strcmp(in, "NoClip") == 0) { return ImGuiTableColumnFlags_NoClip; }
if (strcmp(in, "IsSorted") == 0) { return ImGuiTableColumnFlags_IsSorted; }
if (strcmp(in, "PreferSortAscending") == 0) { return ImGuiTableColumnFlags_PreferSortAscending; }
return std::nullopt;
}
// skipping getStringFromImGuiTableColumnFlags() converting flags TODO
std::optional<ImGuiTableRowFlags_> getImGuiTableRowFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTableRowFlags_None; }
if (strcmp(in, "Headers") == 0) { return ImGuiTableRowFlags_Headers; }
return std::nullopt;
}
// skipping getStringFromImGuiTableRowFlags() converting flags TODO
std::optional<ImGuiTableBgTarget_> getImGuiTableBgTargetFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiTableBgTarget_None; }
if (strcmp(in, "CellBg") == 0) { return ImGuiTableBgTarget_CellBg; }
if (strcmp(in, "RowBg1") == 0) { return ImGuiTableBgTarget_RowBg1; }
if (strcmp(in, "RowBg0") == 0) { return ImGuiTableBgTarget_RowBg0; }
return std::nullopt;
}
const char* getStringFromImGuiTableBgTarget(ImGuiTableBgTarget in)
{
switch (in) {
case 0: return "None";
case 3: return "CellBg";
case 2: return "RowBg1";
case 1: return "RowBg0";
}
return "";
}
std::optional<ImGuiFocusedFlags_> getImGuiFocusedFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiFocusedFlags_None; }
if (strcmp(in, "RootWindow") == 0) { return ImGuiFocusedFlags_RootWindow; }
if (strcmp(in, "AnyWindow") == 0) { return ImGuiFocusedFlags_AnyWindow; }
if (strcmp(in, "ChildWindows") == 0) { return ImGuiFocusedFlags_ChildWindows; }
if (strcmp(in, "RootAndChildWindows") == 0) { return ImGuiFocusedFlags_RootAndChildWindows; }
return std::nullopt;
}
// skipping getStringFromImGuiFocusedFlags() converting flags TODO
std::optional<ImGuiHoveredFlags_> getImGuiHoveredFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiHoveredFlags_None; }
if (strcmp(in, "RootAndChildWindows") == 0) { return ImGuiHoveredFlags_RootAndChildWindows; }
if (strcmp(in, "AllowWhenDisabled") == 0) { return ImGuiHoveredFlags_AllowWhenDisabled; }
if (strcmp(in, "RootWindow") == 0) { return ImGuiHoveredFlags_RootWindow; }
if (strcmp(in, "AnyWindow") == 0) { return ImGuiHoveredFlags_AnyWindow; }
if (strcmp(in, "RectOnly") == 0) { return ImGuiHoveredFlags_RectOnly; }
if (strcmp(in, "AllowWhenBlockedByPopup") == 0) { return ImGuiHoveredFlags_AllowWhenBlockedByPopup; }
if (strcmp(in, "AllowWhenOverlapped") == 0) { return ImGuiHoveredFlags_AllowWhenOverlapped; }
if (strcmp(in, "ChildWindows") == 0) { return ImGuiHoveredFlags_ChildWindows; }
if (strcmp(in, "AllowWhenBlockedByActiveItem") == 0) { return ImGuiHoveredFlags_AllowWhenBlockedByActiveItem; }
return std::nullopt;
}
// skipping getStringFromImGuiHoveredFlags() converting flags TODO
std::optional<ImGuiDockNodeFlags_> getImGuiDockNodeFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiDockNodeFlags_None; }
if (strcmp(in, "NoSplit") == 0) { return ImGuiDockNodeFlags_NoSplit; }
if (strcmp(in, "AutoHideTabBar") == 0) { return ImGuiDockNodeFlags_AutoHideTabBar; }
if (strcmp(in, "KeepAliveOnly") == 0) { return ImGuiDockNodeFlags_KeepAliveOnly; }
if (strcmp(in, "NoResize") == 0) { return ImGuiDockNodeFlags_NoResize; }
if (strcmp(in, "PassthruCentralNode") == 0) { return ImGuiDockNodeFlags_PassthruCentralNode; }
if (strcmp(in, "NoDockingInCentralNode") == 0) { return ImGuiDockNodeFlags_NoDockingInCentralNode; }
return std::nullopt;
}
// skipping getStringFromImGuiDockNodeFlags() converting flags TODO
std::optional<ImGuiDragDropFlags_> getImGuiDragDropFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiDragDropFlags_None; }
if (strcmp(in, "SourceExtern") == 0) { return ImGuiDragDropFlags_SourceExtern; }
if (strcmp(in, "SourceAutoExpirePayload") == 0) { return ImGuiDragDropFlags_SourceAutoExpirePayload; }
if (strcmp(in, "AcceptPeekOnly") == 0) { return ImGuiDragDropFlags_AcceptPeekOnly; }
if (strcmp(in, "SourceAllowNullID") == 0) { return ImGuiDragDropFlags_SourceAllowNullID; }
if (strcmp(in, "SourceNoDisableHover") == 0) { return ImGuiDragDropFlags_SourceNoDisableHover; }
if (strcmp(in, "SourceNoHoldToOpenOthers") == 0) { return ImGuiDragDropFlags_SourceNoHoldToOpenOthers; }
if (strcmp(in, "AcceptBeforeDelivery") == 0) { return ImGuiDragDropFlags_AcceptBeforeDelivery; }
if (strcmp(in, "AcceptNoDrawDefaultRect") == 0) { return ImGuiDragDropFlags_AcceptNoDrawDefaultRect; }
if (strcmp(in, "SourceNoPreviewTooltip") == 0) { return ImGuiDragDropFlags_SourceNoPreviewTooltip; }
if (strcmp(in, "AcceptNoPreviewTooltip") == 0) { return ImGuiDragDropFlags_AcceptNoPreviewTooltip; }
return std::nullopt;
}
// skipping getStringFromImGuiDragDropFlags() converting flags TODO
std::optional<ImGuiDataType_> getImGuiDataTypeFromString(const char* in)
{
if (strcmp(in, "U8") == 0) { return ImGuiDataType_U8; }
if (strcmp(in, "U32") == 0) { return ImGuiDataType_U32; }
if (strcmp(in, "Double") == 0) { return ImGuiDataType_Double; }
if (strcmp(in, "S8") == 0) { return ImGuiDataType_S8; }
if (strcmp(in, "U64") == 0) { return ImGuiDataType_U64; }
if (strcmp(in, "S64") == 0) { return ImGuiDataType_S64; }
if (strcmp(in, "S32") == 0) { return ImGuiDataType_S32; }
if (strcmp(in, "Float") == 0) { return ImGuiDataType_Float; }
if (strcmp(in, "S16") == 0) { return ImGuiDataType_S16; }
if (strcmp(in, "U16") == 0) { return ImGuiDataType_U16; }
return std::nullopt;
}
const char* getStringFromImGuiDataType(ImGuiDataType in)
{
switch (in) {
case 1: return "U8";
case 5: return "U32";
case 9: return "Double";
case 0: return "S8";
case 7: return "U64";
case 6: return "S64";
case 4: return "S32";
case 8: return "Float";
case 2: return "S16";
case 3: return "U16";
}
return "";
}
std::optional<ImGuiDir_> getImGuiDirFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiDir_None; }
if (strcmp(in, "Left") == 0) { return ImGuiDir_Left; }
if (strcmp(in, "Right") == 0) { return ImGuiDir_Right; }
if (strcmp(in, "Up") == 0) { return ImGuiDir_Up; }
if (strcmp(in, "Down") == 0) { return ImGuiDir_Down; }
return std::nullopt;
}
const char* getStringFromImGuiDir(ImGuiDir in)
{
switch (in) {
case -1: return "None";
case 0: return "Left";
case 1: return "Right";
case 2: return "Up";
case 3: return "Down";
}
return "";
}
std::optional<ImGuiSortDirection_> getImGuiSortDirectionFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiSortDirection_None; }
if (strcmp(in, "Descending") == 0) { return ImGuiSortDirection_Descending; }
if (strcmp(in, "Ascending") == 0) { return ImGuiSortDirection_Ascending; }
return std::nullopt;
}
const char* getStringFromImGuiSortDirection(ImGuiSortDirection in)
{
switch (in) {
case 0: return "None";
case 2: return "Descending";
case 1: return "Ascending";
}
return "";
}
std::optional<ImGuiKey_> getImGuiKeyFromString(const char* in)
{
if (strcmp(in, "Tab") == 0) { return ImGuiKey_Tab; }
if (strcmp(in, "Space") == 0) { return ImGuiKey_Space; }
if (strcmp(in, "PageUp") == 0) { return ImGuiKey_PageUp; }
if (strcmp(in, "Z") == 0) { return ImGuiKey_Z; }
if (strcmp(in, "Delete") == 0) { return ImGuiKey_Delete; }
if (strcmp(in, "LeftArrow") == 0) { return ImGuiKey_LeftArrow; }
if (strcmp(in, "RightArrow") == 0) { return ImGuiKey_RightArrow; }
if (strcmp(in, "Insert") == 0) { return ImGuiKey_Insert; }
if (strcmp(in, "Home") == 0) { return ImGuiKey_Home; }
if (strcmp(in, "DownArrow") == 0) { return ImGuiKey_DownArrow; }
if (strcmp(in, "Escape") == 0) { return ImGuiKey_Escape; }
if (strcmp(in, "UpArrow") == 0) { return ImGuiKey_UpArrow; }
if (strcmp(in, "A") == 0) { return ImGuiKey_A; }
if (strcmp(in, "V") == 0) { return ImGuiKey_V; }
if (strcmp(in, "C") == 0) { return ImGuiKey_C; }
if (strcmp(in, "X") == 0) { return ImGuiKey_X; }
if (strcmp(in, "Enter") == 0) { return ImGuiKey_Enter; }
if (strcmp(in, "Backspace") == 0) { return ImGuiKey_Backspace; }
if (strcmp(in, "Y") == 0) { return ImGuiKey_Y; }
if (strcmp(in, "KeyPadEnter") == 0) { return ImGuiKey_KeyPadEnter; }
if (strcmp(in, "End") == 0) { return ImGuiKey_End; }
if (strcmp(in, "PageDown") == 0) { return ImGuiKey_PageDown; }
return std::nullopt;
}
const char* getStringFromImGuiKey(ImGuiKey in)
{
switch (in) {
case 0: return "Tab";
case 12: return "Space";
case 5: return "PageUp";
case 21: return "Z";
case 10: return "Delete";
case 1: return "LeftArrow";
case 2: return "RightArrow";
case 9: return "Insert";
case 7: return "Home";
case 4: return "DownArrow";
case 14: return "Escape";
case 3: return "UpArrow";
case 16: return "A";
case 18: return "V";
case 17: return "C";
case 19: return "X";
case 13: return "Enter";
case 11: return "Backspace";
case 20: return "Y";
case 15: return "KeyPadEnter";
case 8: return "End";
case 6: return "PageDown";
}
return "";
}
std::optional<ImGuiKeyModFlags_> getImGuiKeyModFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiKeyModFlags_None; }
if (strcmp(in, "Shift") == 0) { return ImGuiKeyModFlags_Shift; }
if (strcmp(in, "Super") == 0) { return ImGuiKeyModFlags_Super; }
if (strcmp(in, "Ctrl") == 0) { return ImGuiKeyModFlags_Ctrl; }
if (strcmp(in, "Alt") == 0) { return ImGuiKeyModFlags_Alt; }
return std::nullopt;
}
// skipping getStringFromImGuiKeyModFlags() converting flags TODO
std::optional<ImGuiNavInput_> getImGuiNavInputFromString(const char* in)
{
if (strcmp(in, "Menu") == 0) { return ImGuiNavInput_Menu; }
if (strcmp(in, "TweakSlow") == 0) { return ImGuiNavInput_TweakSlow; }
if (strcmp(in, "DpadRight") == 0) { return ImGuiNavInput_DpadRight; }
if (strcmp(in, "LStickDown") == 0) { return ImGuiNavInput_LStickDown; }
if (strcmp(in, "TweakFast") == 0) { return ImGuiNavInput_TweakFast; }
if (strcmp(in, "Cancel") == 0) { return ImGuiNavInput_Cancel; }
if (strcmp(in, "DpadDown") == 0) { return ImGuiNavInput_DpadDown; }
if (strcmp(in, "FocusPrev") == 0) { return ImGuiNavInput_FocusPrev; }
if (strcmp(in, "DpadUp") == 0) { return ImGuiNavInput_DpadUp; }
if (strcmp(in, "LStickUp") == 0) { return ImGuiNavInput_LStickUp; }
if (strcmp(in, "KeyMenu_") == 0) { return ImGuiNavInput_KeyMenu_; }
if (strcmp(in, "LStickRight") == 0) { return ImGuiNavInput_LStickRight; }
if (strcmp(in, "DpadLeft") == 0) { return ImGuiNavInput_DpadLeft; }
if (strcmp(in, "InternalStart_") == 0) { return ImGuiNavInput_InternalStart_; }
if (strcmp(in, "KeyLeft_") == 0) { return ImGuiNavInput_KeyLeft_; }
if (strcmp(in, "KeyUp_") == 0) { return ImGuiNavInput_KeyUp_; }
if (strcmp(in, "KeyRight_") == 0) { return ImGuiNavInput_KeyRight_; }
if (strcmp(in, "Activate") == 0) { return ImGuiNavInput_Activate; }
if (strcmp(in, "KeyDown_") == 0) { return ImGuiNavInput_KeyDown_; }
if (strcmp(in, "FocusNext") == 0) { return ImGuiNavInput_FocusNext; }
if (strcmp(in, "Input") == 0) { return ImGuiNavInput_Input; }
if (strcmp(in, "LStickLeft") == 0) { return ImGuiNavInput_LStickLeft; }
return std::nullopt;
}
const char* getStringFromImGuiNavInput(ImGuiNavInput in)
{
switch (in) {
case 3: return "Menu";
case 14: return "TweakSlow";
case 5: return "DpadRight";
case 11: return "LStickDown";
case 15: return "TweakFast";
case 1: return "Cancel";
case 7: return "DpadDown";
case 12: return "FocusPrev";
case 6: return "DpadUp";
case 10: return "LStickUp";
case 16: return "KeyMenu_";
case 9: return "LStickRight";
case 4: return "DpadLeft";
// skipping // case ImGuiNavInput_KeyMenu_: return "InternalStart_";
case 17: return "KeyLeft_";
case 19: return "KeyUp_";
case 18: return "KeyRight_";
case 0: return "Activate";
case 20: return "KeyDown_";
case 13: return "FocusNext";
case 2: return "Input";
case 8: return "LStickLeft";
}
return "";
}
std::optional<ImGuiConfigFlags_> getImGuiConfigFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiConfigFlags_None; }
if (strcmp(in, "NavNoCaptureKeyboard") == 0) { return ImGuiConfigFlags_NavNoCaptureKeyboard; }
if (strcmp(in, "NavEnableGamepad") == 0) { return ImGuiConfigFlags_NavEnableGamepad; }
if (strcmp(in, "IsSRGB") == 0) { return ImGuiConfigFlags_IsSRGB; }
if (strcmp(in, "NavEnableKeyboard") == 0) { return ImGuiConfigFlags_NavEnableKeyboard; }
if (strcmp(in, "NavEnableSetMousePos") == 0) { return ImGuiConfigFlags_NavEnableSetMousePos; }
if (strcmp(in, "DpiEnableScaleFonts") == 0) { return ImGuiConfigFlags_DpiEnableScaleFonts; }
if (strcmp(in, "DpiEnableScaleViewports") == 0) { return ImGuiConfigFlags_DpiEnableScaleViewports; }
if (strcmp(in, "DockingEnable") == 0) { return ImGuiConfigFlags_DockingEnable; }
if (strcmp(in, "IsTouchScreen") == 0) { return ImGuiConfigFlags_IsTouchScreen; }
if (strcmp(in, "NoMouse") == 0) { return ImGuiConfigFlags_NoMouse; }
if (strcmp(in, "NoMouseCursorChange") == 0) { return ImGuiConfigFlags_NoMouseCursorChange; }
if (strcmp(in, "ViewportsEnable") == 0) { return ImGuiConfigFlags_ViewportsEnable; }
return std::nullopt;
}
// skipping getStringFromImGuiConfigFlags() converting flags TODO
std::optional<ImGuiBackendFlags_> getImGuiBackendFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiBackendFlags_None; }
if (strcmp(in, "HasGamepad") == 0) { return ImGuiBackendFlags_HasGamepad; }
if (strcmp(in, "HasMouseCursors") == 0) { return ImGuiBackendFlags_HasMouseCursors; }
if (strcmp(in, "RendererHasViewports") == 0) { return ImGuiBackendFlags_RendererHasViewports; }
if (strcmp(in, "HasMouseHoveredViewport") == 0) { return ImGuiBackendFlags_HasMouseHoveredViewport; }
if (strcmp(in, "RendererHasVtxOffset") == 0) { return ImGuiBackendFlags_RendererHasVtxOffset; }
if (strcmp(in, "PlatformHasViewports") == 0) { return ImGuiBackendFlags_PlatformHasViewports; }
if (strcmp(in, "HasSetMousePos") == 0) { return ImGuiBackendFlags_HasSetMousePos; }
return std::nullopt;
}
// skipping getStringFromImGuiBackendFlags() converting flags TODO
std::optional<ImGuiCol_> getImGuiColFromString(const char* in)
{
if (strcmp(in, "ScrollbarGrab") == 0) { return ImGuiCol_ScrollbarGrab; }
if (strcmp(in, "TabActive") == 0) { return ImGuiCol_TabActive; }
if (strcmp(in, "TabHovered") == 0) { return ImGuiCol_TabHovered; }
if (strcmp(in, "FrameBgActive") == 0) { return ImGuiCol_FrameBgActive; }
if (strcmp(in, "ButtonHovered") == 0) { return ImGuiCol_ButtonHovered; }
if (strcmp(in, "ChildBg") == 0) { return ImGuiCol_ChildBg; }
if (strcmp(in, "PlotHistogram") == 0) { return ImGuiCol_PlotHistogram; }
if (strcmp(in, "SliderGrabActive") == 0) { return ImGuiCol_SliderGrabActive; }
if (strcmp(in, "ResizeGripActive") == 0) { return ImGuiCol_ResizeGripActive; }
if (strcmp(in, "ModalWindowDimBg") == 0) { return ImGuiCol_ModalWindowDimBg; }
if (strcmp(in, "FrameBg") == 0) { return ImGuiCol_FrameBg; }
if (strcmp(in, "TextDisabled") == 0) { return ImGuiCol_TextDisabled; }
if (strcmp(in, "ResizeGripHovered") == 0) { return ImGuiCol_ResizeGripHovered; }
if (strcmp(in, "PlotHistogramHovered") == 0) { return ImGuiCol_PlotHistogramHovered; }
if (strcmp(in, "PlotLines") == 0) { return ImGuiCol_PlotLines; }
if (strcmp(in, "SliderGrab") == 0) { return ImGuiCol_SliderGrab; }
if (strcmp(in, "ButtonActive") == 0) { return ImGuiCol_ButtonActive; }
if (strcmp(in, "TextSelectedBg") == 0) { return ImGuiCol_TextSelectedBg; }
if (strcmp(in, "TabUnfocused") == 0) { return ImGuiCol_TabUnfocused; }
if (strcmp(in, "TableRowBg") == 0) { return ImGuiCol_TableRowBg; }
if (strcmp(in, "TitleBgCollapsed") == 0) { return ImGuiCol_TitleBgCollapsed; }
if (strcmp(in, "TitleBg") == 0) { return ImGuiCol_TitleBg; }
if (strcmp(in, "NavWindowingHighlight") == 0) { return ImGuiCol_NavWindowingHighlight; }
if (strcmp(in, "NavHighlight") == 0) { return ImGuiCol_NavHighlight; }
if (strcmp(in, "SeparatorHovered") == 0) { return ImGuiCol_SeparatorHovered; }
if (strcmp(in, "DragDropTarget") == 0) { return ImGuiCol_DragDropTarget; }
if (strcmp(in, "TableRowBgAlt") == 0) { return ImGuiCol_TableRowBgAlt; }
if (strcmp(in, "ResizeGrip") == 0) { return ImGuiCol_ResizeGrip; }
if (strcmp(in, "TableBorderLight") == 0) { return ImGuiCol_TableBorderLight; }
if (strcmp(in, "SeparatorActive") == 0) { return ImGuiCol_SeparatorActive; }
if (strcmp(in, "TableBorderStrong") == 0) { return ImGuiCol_TableBorderStrong; }
if (strcmp(in, "Border") == 0) { return ImGuiCol_Border; }
if (strcmp(in, "TableHeaderBg") == 0) { return ImGuiCol_TableHeaderBg; }
if (strcmp(in, "PlotLinesHovered") == 0) { return ImGuiCol_PlotLinesHovered; }
if (strcmp(in, "Separator") == 0) { return ImGuiCol_Separator; }
if (strcmp(in, "FrameBgHovered") == 0) { return ImGuiCol_FrameBgHovered; }
if (strcmp(in, "DockingEmptyBg") == 0) { return ImGuiCol_DockingEmptyBg; }
if (strcmp(in, "DockingPreview") == 0) { return ImGuiCol_DockingPreview; }
if (strcmp(in, "TabUnfocusedActive") == 0) { return ImGuiCol_TabUnfocusedActive; }
if (strcmp(in, "Tab") == 0) { return ImGuiCol_Tab; }
if (strcmp(in, "CheckMark") == 0) { return ImGuiCol_CheckMark; }
if (strcmp(in, "ScrollbarGrabHovered") == 0) { return ImGuiCol_ScrollbarGrabHovered; }
if (strcmp(in, "HeaderHovered") == 0) { return ImGuiCol_HeaderHovered; }
if (strcmp(in, "HeaderActive") == 0) { return ImGuiCol_HeaderActive; }
if (strcmp(in, "Button") == 0) { return ImGuiCol_Button; }
if (strcmp(in, "ScrollbarGrabActive") == 0) { return ImGuiCol_ScrollbarGrabActive; }
if (strcmp(in, "NavWindowingDimBg") == 0) { return ImGuiCol_NavWindowingDimBg; }
if (strcmp(in, "PopupBg") == 0) { return ImGuiCol_PopupBg; }
if (strcmp(in, "WindowBg") == 0) { return ImGuiCol_WindowBg; }
if (strcmp(in, "MenuBarBg") == 0) { return ImGuiCol_MenuBarBg; }
if (strcmp(in, "TitleBgActive") == 0) { return ImGuiCol_TitleBgActive; }
if (strcmp(in, "Header") == 0) { return ImGuiCol_Header; }
if (strcmp(in, "BorderShadow") == 0) { return ImGuiCol_BorderShadow; }
if (strcmp(in, "ScrollbarBg") == 0) { return ImGuiCol_ScrollbarBg; }
if (strcmp(in, "Text") == 0) { return ImGuiCol_Text; }
return std::nullopt;
}
const char* getStringFromImGuiCol(ImGuiCol in)
{
switch (in) {
case 15: return "ScrollbarGrab";
case 35: return "TabActive";
case 34: return "TabHovered";
case 9: return "FrameBgActive";
case 22: return "ButtonHovered";
case 3: return "ChildBg";
case 42: return "PlotHistogram";
case 20: return "SliderGrabActive";
case 32: return "ResizeGripActive";
case 54: return "ModalWindowDimBg";
case 7: return "FrameBg";
case 1: return "TextDisabled";
case 31: return "ResizeGripHovered";
case 43: return "PlotHistogramHovered";
case 40: return "PlotLines";
case 19: return "SliderGrab";
case 23: return "ButtonActive";
case 49: return "TextSelectedBg";
case 36: return "TabUnfocused";
case 47: return "TableRowBg";
case 12: return "TitleBgCollapsed";
case 10: return "TitleBg";
case 52: return "NavWindowingHighlight";
case 51: return "NavHighlight";
case 28: return "SeparatorHovered";
case 50: return "DragDropTarget";
case 48: return "TableRowBgAlt";
case 30: return "ResizeGrip";
case 46: return "TableBorderLight";
case 29: return "SeparatorActive";
case 45: return "TableBorderStrong";
case 5: return "Border";
case 44: return "TableHeaderBg";
case 41: return "PlotLinesHovered";
case 27: return "Separator";
case 8: return "FrameBgHovered";
case 39: return "DockingEmptyBg";
case 38: return "DockingPreview";
case 37: return "TabUnfocusedActive";
case 33: return "Tab";
case 18: return "CheckMark";
case 16: return "ScrollbarGrabHovered";
case 25: return "HeaderHovered";
case 26: return "HeaderActive";
case 21: return "Button";
case 17: return "ScrollbarGrabActive";
case 53: return "NavWindowingDimBg";
case 4: return "PopupBg";
case 2: return "WindowBg";
case 13: return "MenuBarBg";
case 11: return "TitleBgActive";
case 24: return "Header";
case 6: return "BorderShadow";
case 14: return "ScrollbarBg";
case 0: return "Text";
}
return "";
}
std::optional<ImGuiStyleVar_> getImGuiStyleVarFromString(const char* in)
{
if (strcmp(in, "FrameBorderSize") == 0) { return ImGuiStyleVar_FrameBorderSize; }
if (strcmp(in, "FrameRounding") == 0) { return ImGuiStyleVar_FrameRounding; }
if (strcmp(in, "FramePadding") == 0) { return ImGuiStyleVar_FramePadding; }
if (strcmp(in, "ChildBorderSize") == 0) { return ImGuiStyleVar_ChildBorderSize; }
if (strcmp(in, "Alpha") == 0) { return ImGuiStyleVar_Alpha; }
if (strcmp(in, "IndentSpacing") == 0) { return ImGuiStyleVar_IndentSpacing; }
if (strcmp(in, "PopupBorderSize") == 0) { return ImGuiStyleVar_PopupBorderSize; }
if (strcmp(in, "WindowTitleAlign") == 0) { return ImGuiStyleVar_WindowTitleAlign; }
if (strcmp(in, "SelectableTextAlign") == 0) { return ImGuiStyleVar_SelectableTextAlign; }
if (strcmp(in, "ChildRounding") == 0) { return ImGuiStyleVar_ChildRounding; }
if (strcmp(in, "GrabRounding") == 0) { return ImGuiStyleVar_GrabRounding; }
if (strcmp(in, "WindowBorderSize") == 0) { return ImGuiStyleVar_WindowBorderSize; }
if (strcmp(in, "WindowMinSize") == 0) { return ImGuiStyleVar_WindowMinSize; }
if (strcmp(in, "ScrollbarSize") == 0) { return ImGuiStyleVar_ScrollbarSize; }
if (strcmp(in, "ButtonTextAlign") == 0) { return ImGuiStyleVar_ButtonTextAlign; }
if (strcmp(in, "TabRounding") == 0) { return ImGuiStyleVar_TabRounding; }
if (strcmp(in, "GrabMinSize") == 0) { return ImGuiStyleVar_GrabMinSize; }
if (strcmp(in, "WindowPadding") == 0) { return ImGuiStyleVar_WindowPadding; }
if (strcmp(in, "ItemInnerSpacing") == 0) { return ImGuiStyleVar_ItemInnerSpacing; }
if (strcmp(in, "ScrollbarRounding") == 0) { return ImGuiStyleVar_ScrollbarRounding; }
if (strcmp(in, "CellPadding") == 0) { return ImGuiStyleVar_CellPadding; }
if (strcmp(in, "PopupRounding") == 0) { return ImGuiStyleVar_PopupRounding; }
if (strcmp(in, "ItemSpacing") == 0) { return ImGuiStyleVar_ItemSpacing; }
if (strcmp(in, "WindowRounding") == 0) { return ImGuiStyleVar_WindowRounding; }
return std::nullopt;
}
const char* getStringFromImGuiStyleVar(ImGuiStyleVar in)
{
switch (in) {
case 12: return "FrameBorderSize";
case 11: return "FrameRounding";
case 10: return "FramePadding";
case 7: return "ChildBorderSize";
case 0: return "Alpha";
case 15: return "IndentSpacing";
case 9: return "PopupBorderSize";
case 5: return "WindowTitleAlign";
case 23: return "SelectableTextAlign";
case 6: return "ChildRounding";
case 20: return "GrabRounding";
case 3: return "WindowBorderSize";
case 4: return "WindowMinSize";
case 17: return "ScrollbarSize";
case 22: return "ButtonTextAlign";
case 21: return "TabRounding";
case 19: return "GrabMinSize";
case 1: return "WindowPadding";
case 14: return "ItemInnerSpacing";
case 18: return "ScrollbarRounding";
case 16: return "CellPadding";
case 8: return "PopupRounding";
case 13: return "ItemSpacing";
case 2: return "WindowRounding";
}
return "";
}
std::optional<ImGuiButtonFlags_> getImGuiButtonFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiButtonFlags_None; }
if (strcmp(in, "MouseButtonDefault_") == 0) { return ImGuiButtonFlags_MouseButtonDefault_; }
if (strcmp(in, "MouseButtonRight") == 0) { return ImGuiButtonFlags_MouseButtonRight; }
if (strcmp(in, "MouseButtonLeft") == 0) { return ImGuiButtonFlags_MouseButtonLeft; }
if (strcmp(in, "MouseButtonMask_") == 0) { return ImGuiButtonFlags_MouseButtonMask_; }
if (strcmp(in, "MouseButtonMiddle") == 0) { return ImGuiButtonFlags_MouseButtonMiddle; }
return std::nullopt;
}
// skipping getStringFromImGuiButtonFlags() converting flags TODO
std::optional<ImGuiColorEditFlags_> getImGuiColorEditFlagsFromString(const char* in)
{
if (strcmp(in, "None") == 0) { return ImGuiColorEditFlags_None; }
if (strcmp(in, "NoTooltip") == 0) { return ImGuiColorEditFlags_NoTooltip; }
if (strcmp(in, "_OptionsDefault") == 0) { return ImGuiColorEditFlags__OptionsDefault; }
if (strcmp(in, "NoDragDrop") == 0) { return ImGuiColorEditFlags_NoDragDrop; }
if (strcmp(in, "_DataTypeMask") == 0) { return ImGuiColorEditFlags__DataTypeMask; }
if (strcmp(in, "_InputMask") == 0) { return ImGuiColorEditFlags__InputMask; }
if (strcmp(in, "NoLabel") == 0) { return ImGuiColorEditFlags_NoLabel; }
if (strcmp(in, "_PickerMask") == 0) { return ImGuiColorEditFlags__PickerMask; }
if (strcmp(in, "_DisplayMask") == 0) { return ImGuiColorEditFlags__DisplayMask; }
if (strcmp(in, "AlphaPreviewHalf") == 0) { return ImGuiColorEditFlags_AlphaPreviewHalf; }
if (strcmp(in, "NoOptions") == 0) { return ImGuiColorEditFlags_NoOptions; }
if (strcmp(in, "NoAlpha") == 0) { return ImGuiColorEditFlags_NoAlpha; }
if (strcmp(in, "NoPicker") == 0) { return ImGuiColorEditFlags_NoPicker; }
if (strcmp(in, "DisplayHSV") == 0) { return ImGuiColorEditFlags_DisplayHSV; }
if (strcmp(in, "HDR") == 0) { return ImGuiColorEditFlags_HDR; }
if (strcmp(in, "Float") == 0) { return ImGuiColorEditFlags_Float; }
if (strcmp(in, "NoSidePreview") == 0) { return ImGuiColorEditFlags_NoSidePreview; }
if (strcmp(in, "AlphaPreview") == 0) { return ImGuiColorEditFlags_AlphaPreview; }
if (strcmp(in, "PickerHueWheel") == 0) { return ImGuiColorEditFlags_PickerHueWheel; }
if (strcmp(in, "AlphaBar") == 0) { return ImGuiColorEditFlags_AlphaBar; }
if (strcmp(in, "NoInputs") == 0) { return ImGuiColorEditFlags_NoInputs; }
if (strcmp(in, "Uint8") == 0) { return ImGuiColorEditFlags_Uint8; }