-
Notifications
You must be signed in to change notification settings - Fork 49
/
lautoc.c
1312 lines (986 loc) · 36.3 KB
/
lautoc.c
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
#include "lautoc.h"
void luaA_open(lua_State* L) {
lua_pushinteger(L, 0); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_index");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_ids");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_names");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_sizes");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_push");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_to");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_sizes");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_values");
lua_newtable(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "functions");
lua_newuserdata(L, LUAA_RETURN_STACK_SIZE); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_ret_stk");
lua_newuserdata(L, LUAA_ARGUMENT_STACK_SIZE); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_arg_stk");
lua_pushinteger(L, 0); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_ret_ptr");
lua_pushinteger(L, 0); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_arg_ptr");
// compiler does weird macro expansion with "bool" so no magic macro for you
luaA_conversion_type(L, luaA_type_add(L,"bool",sizeof(bool)), luaA_push_bool, luaA_to_bool);
luaA_conversion_type(L, luaA_type_add(L,"_Bool",sizeof(bool)), luaA_push_bool, luaA_to_bool);
luaA_conversion(L, char, luaA_push_char, luaA_to_char);
luaA_conversion(L, signed char, luaA_push_signed_char, luaA_to_signed_char);
luaA_conversion(L, unsigned char, luaA_push_unsigned_char, luaA_to_unsigned_char);
luaA_conversion(L, short, luaA_push_short, luaA_to_short);
luaA_conversion(L, unsigned short, luaA_push_unsigned_short, luaA_to_unsigned_short);
luaA_conversion(L, int, luaA_push_int, luaA_to_int);
luaA_conversion(L, unsigned int, luaA_push_unsigned_int, luaA_to_unsigned_int);
luaA_conversion(L, long, luaA_push_long, luaA_to_long);
luaA_conversion(L, unsigned long, luaA_push_unsigned_long, luaA_to_unsigned_long);
luaA_conversion(L, long long, luaA_push_long_long, luaA_to_long_long);
luaA_conversion(L, unsigned long long, luaA_push_unsigned_long_long, luaA_to_unsigned_long_long);
luaA_conversion(L, float, luaA_push_float, luaA_to_float);
luaA_conversion(L, double, luaA_push_double, luaA_to_double);
luaA_conversion(L, long double, luaA_push_long_double, luaA_to_long_double);
luaA_conversion_push_type(L, luaA_type_add(L,"const bool",sizeof(bool)), luaA_push_bool);
luaA_conversion_push_type(L, luaA_type_add(L,"const _Bool",sizeof(bool)), luaA_push_bool);
luaA_conversion_push(L, const char, luaA_push_char);
luaA_conversion_push(L, const signed char, luaA_push_signed_char);
luaA_conversion_push(L, const unsigned char, luaA_push_unsigned_char);
luaA_conversion_push(L, const short, luaA_push_short);
luaA_conversion_push(L, const unsigned short, luaA_push_unsigned_short);
luaA_conversion_push(L, const int, luaA_push_int);
luaA_conversion_push(L, const unsigned int, luaA_push_unsigned_int);
luaA_conversion_push(L, const long, luaA_push_long);
luaA_conversion_push(L, const unsigned long, luaA_push_unsigned_long);
luaA_conversion_push(L, const long long, luaA_push_long_long);
luaA_conversion_push(L, const unsigned long long, luaA_push_unsigned_long_long);
luaA_conversion_push(L, const float, luaA_push_float);
luaA_conversion_push(L, const double, luaA_push_double);
luaA_conversion_push(L, const long double, luaA_push_long_double);
luaA_conversion(L, char*, luaA_push_char_ptr, luaA_to_char_ptr);
luaA_conversion(L, const char*, luaA_push_const_char_ptr, luaA_to_const_char_ptr);
luaA_conversion(L, void*, luaA_push_void_ptr, luaA_to_void_ptr);
luaA_conversion_push(L, void, luaA_push_void);
}
void luaA_close(lua_State* L) {
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_index");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_ids");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_names");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_sizes");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_push");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_to");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_sizes");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_values");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "functions");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_ret_stk");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_arg_stk");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_ret_ptr");
lua_pushnil(L); lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "call_arg_ptr");
}
/*
** Types
*/
luaA_Type luaA_type_add(lua_State* L, const char* type, size_t size) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_ids");
lua_getfield(L, -1, type);
if (lua_isnumber(L, -1)) {
luaA_Type id = lua_tointeger(L, -1);
lua_pop(L, 2);
return id;
} else {
lua_pop(L, 2);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_index");
luaA_Type id = lua_tointeger(L, -1);
lua_pop(L, 1);
id++;
lua_pushinteger(L, id);
lua_setfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_index");
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_ids");
lua_pushinteger(L, id);
lua_setfield(L, -2, type);
lua_pop(L, 1);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_names");
lua_pushinteger(L, id);
lua_pushstring(L, type);
lua_settable(L, -3);
lua_pop(L, 1);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_sizes");
lua_pushinteger(L, id);
lua_pushinteger(L, size);
lua_settable(L, -3);
lua_pop(L, 1);
return id;
}
}
luaA_Type luaA_type_find(lua_State* L, const char* type) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_ids");
lua_getfield(L, -1, type);
luaA_Type id = lua_isnil(L, -1) ? LUAA_INVALID_TYPE : lua_tointeger(L, -1);
lua_pop(L, 2);
return id;
}
const char* luaA_typename(lua_State* L, luaA_Type id) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_names");
lua_pushinteger(L, id);
lua_gettable(L, -2);
const char* type = lua_isnil(L, -1) ? "LUAA_INVALID_TYPE" : lua_tostring(L, -1);
lua_pop(L, 2);
return type;
}
size_t luaA_typesize(lua_State* L, luaA_Type id) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "type_sizes");
lua_pushinteger(L, id);
lua_gettable(L, -2);
size_t size = lua_isnil(L, -1) ? -1 : lua_tointeger(L, -1);
lua_pop(L, 2);
return size;
}
/*
** Stack
*/
int luaA_push_type(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_push");
lua_pushinteger(L, type_id);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
luaA_Pushfunc func = lua_touserdata(L, -1);
lua_pop(L, 2);
return func(L, type_id, c_in);
}
lua_pop(L, 2);
if (luaA_struct_registered_type(L, type_id)) {
return luaA_struct_push_type(L, type_id, c_in);
}
if (luaA_enum_registered_type(L, type_id)) {
return luaA_enum_push_type(L, type_id, c_in);
}
lua_pushfstring(L, "luaA_push: conversion to Lua object from type '%s' not registered!", luaA_typename(L, type_id));
lua_error(L);
return 0;
}
void luaA_to_type(lua_State* L, luaA_Type type_id, void* c_out, int index) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_to");
lua_pushinteger(L, type_id);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
luaA_Tofunc func = lua_touserdata(L, -1);
lua_pop(L, 2);
func(L, type_id, c_out, index);
return;
}
lua_pop(L, 2);
if (luaA_struct_registered_type(L, type_id)) {
luaA_struct_to_type(L, type_id, c_out, index);
return;
}
if (luaA_enum_registered_type(L, type_id)) {
luaA_enum_to_type(L, type_id, c_out, index);
return;
}
lua_pushfstring(L, "luaA_to: conversion from Lua object to type '%s' not registered!", luaA_typename(L, type_id));
lua_error(L);
}
void luaA_conversion_type(lua_State* L, luaA_Type type_id, luaA_Pushfunc push_func, luaA_Tofunc to_func) {
luaA_conversion_push_type(L, type_id, push_func);
luaA_conversion_to_type(L, type_id, to_func);
}
void luaA_conversion_push_type(lua_State* L, luaA_Type type_id, luaA_Pushfunc func) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_push");
lua_pushinteger(L, type_id);
lua_pushlightuserdata(L, func);
lua_settable(L, -3);
lua_pop(L, 1);
}
void luaA_conversion_to_type(lua_State* L, luaA_Type type_id, luaA_Tofunc func) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_to");
lua_pushinteger(L, type_id);
lua_pushlightuserdata(L, func);
lua_settable(L, -3);
lua_pop(L, 1);
}
int luaA_push_bool(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushboolean(L, *(bool*)c_in);
return 1;
}
void luaA_to_bool(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(bool*)c_out = lua_toboolean(L, index);
}
int luaA_push_char(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(char*)c_in);
return 1;
}
void luaA_to_char(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(char*)c_out = lua_tointeger(L, index);
}
int luaA_push_signed_char(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(signed char*)c_in);
return 1;
}
void luaA_to_signed_char(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(signed char*)c_out = lua_tointeger(L, index);
}
int luaA_push_unsigned_char(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(unsigned char*)c_in);
return 1;
}
void luaA_to_unsigned_char(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(unsigned char*)c_out = lua_tointeger(L, index);
}
int luaA_push_short(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(short*)c_in);
return 1;
}
void luaA_to_short(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(short*)c_out = lua_tointeger(L, index);
}
int luaA_push_unsigned_short(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(unsigned short*)c_in);
return 1;
}
void luaA_to_unsigned_short(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(unsigned short*)c_out = lua_tointeger(L, index);
}
int luaA_push_int(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(int*)c_in);
return 1;
}
void luaA_to_int(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(int*)c_out = lua_tointeger(L, index);
}
int luaA_push_unsigned_int(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(unsigned int*)c_in);
return 1;
}
void luaA_to_unsigned_int(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(unsigned int*)c_out = lua_tointeger(L, index);
}
int luaA_push_long(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(long*)c_in);
return 1;
}
void luaA_to_long(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(long*)c_out = lua_tointeger(L, index);
}
int luaA_push_unsigned_long(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(unsigned long*)c_in);
return 1;
}
void luaA_to_unsigned_long(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(unsigned long*)c_out = lua_tointeger(L, index);
}
int luaA_push_long_long(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(long long*)c_in);
return 1;
}
void luaA_to_long_long(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(long long*)c_out = lua_tointeger(L, index);
}
int luaA_push_unsigned_long_long(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushinteger(L, *(unsigned long long*)c_in);
return 1;
}
void luaA_to_unsigned_long_long(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(unsigned long long*)c_out = lua_tointeger(L, index);
}
int luaA_push_float(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushnumber(L, *(float*)c_in);
return 1;
}
void luaA_to_float(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(float*)c_out = lua_tonumber(L, index);
}
int luaA_push_double(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushnumber(L, *(double*)c_in);
return 1;
}
void luaA_to_double(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(double*)c_out = lua_tonumber(L, index);
}
int luaA_push_long_double(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushnumber(L, *(long double*)c_in);
return 1;
}
void luaA_to_long_double(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(long double*)c_out = lua_tonumber(L, index);
}
int luaA_push_char_ptr(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushstring(L, *(char**)c_in);
return 1;
}
void luaA_to_char_ptr(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(char**)c_out = (char*)lua_tostring(L, index);
}
int luaA_push_const_char_ptr(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushstring(L, *(const char**)c_in);
return 1;
}
void luaA_to_const_char_ptr(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(const char**)c_out = lua_tostring(L, index);
}
int luaA_push_void_ptr(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushlightuserdata(L, *(void**)c_in);
return 1;
}
void luaA_to_void_ptr(lua_State* L, luaA_Type type_id, void* c_out, int index) {
*(void**)c_out = (void*)lua_touserdata(L, index);
}
int luaA_push_void(lua_State* L, luaA_Type type_id, const void* c_in) {
lua_pushnil(L);
return 1;
}
bool luaA_conversion_registered_type(lua_State* L, luaA_Type type_id) {
return (luaA_conversion_push_registered_type(L, type_id)
&& luaA_conversion_to_registered_type(L, type_id));
}
bool luaA_conversion_push_registered_type(lua_State* L, luaA_Type type_id) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_push");
lua_pushinteger(L, type_id);
lua_gettable(L, -2);
bool reg = !lua_isnil(L, -1);
lua_pop(L, 2);
return reg;
}
bool luaA_conversion_to_registered_type(lua_State* L, luaA_Type type_id) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "stack_to");
lua_pushinteger(L, type_id);
lua_gettable(L, -2);
bool reg = !lua_isnil(L, -1);
lua_pop(L, 2);
return reg;
}
/*
** Structs
*/
int luaA_struct_push_member_offset_type(lua_State* L, luaA_Type type, size_t offset, const void* c_in) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushinteger(L, offset);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type stype = lua_tointeger(L, -1);
lua_pop(L, 4);
return luaA_push_type(L, stype, c_in + offset);
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_push_member: Member offset '%d' not registered for struct '%s'!", offset, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_push_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
int luaA_struct_push_member_name_type(lua_State* L, luaA_Type type, const char* member, const void* c_in) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, member);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type stype = lua_tointeger(L, -1);
lua_pop(L, 1);
lua_getfield(L, -1, "offset");
size_t offset = lua_tointeger(L, -1);
lua_pop(L, 4);
return luaA_push_type(L, stype, c_in + offset);
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_push_member: Member name '%s' not registered for struct '%s'!", member, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_push_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
void luaA_struct_to_member_offset_type(lua_State* L, luaA_Type type, size_t offset, void* c_out, int index) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushinteger(L, offset);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type stype = lua_tointeger(L, -1);
lua_pop(L, 4);
luaA_to_type(L, stype, c_out + offset, index);
return;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_to_member: Member offset '%d' not registered for struct '%s'!", offset, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_to_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
}
void luaA_struct_to_member_name_type(lua_State* L, luaA_Type type, const char* member, void* c_out, int index) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushstring(L, member);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type stype = lua_tointeger(L, -1);
lua_pop(L, 1);
lua_getfield(L, -1, "offset");
size_t offset = lua_tointeger(L, -1);
lua_pop(L, 4);
luaA_to_type(L, stype, c_out + offset, index);
return;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_to_member: Member name '%s' not registered for struct '%s'!", member, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_to_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
}
bool luaA_struct_has_member_offset_type(lua_State* L, luaA_Type type, size_t offset) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushinteger(L, offset);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pop(L, 3);
return true;
}
lua_pop(L, 3);
return false;
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_has_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return false;
}
bool luaA_struct_has_member_name_type(lua_State* L, luaA_Type type, const char* member) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushstring(L, member);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pop(L, 3);
return true;
}
lua_pop(L, 3);
return false;
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_has_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return false;
}
luaA_Type luaA_struct_typeof_member_offset_type(lua_State* L, luaA_Type type, size_t offset) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushinteger(L, offset);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type stype = lua_tointeger(L, -1);
lua_pop(L, 4);
return stype;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_typeof_member: Member offset '%d' not registered for struct '%s'!", offset, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_typeof_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
luaA_Type luaA_struct_typeof_member_name_type(lua_State* L, luaA_Type type, const char* member) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_pushstring(L, member);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "type");
luaA_Type type = lua_tointeger(L, -1);
lua_pop(L, 4);
return type;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_struct_typeof_member: Member name '%s' not registered for struct '%s'!", member, luaA_typename(L, type));
lua_error(L);
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_typeof_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
void luaA_struct_type(lua_State* L, luaA_Type type) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_newtable(L);
lua_settable(L, -3);
lua_pop(L, 1);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_newtable(L);
lua_settable(L, -3);
lua_pop(L, 1);
}
void luaA_struct_member_type(lua_State* L, luaA_Type type, const char* member, luaA_Type mtype, size_t offset) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_newtable(L);
lua_pushinteger(L, mtype); lua_setfield(L, -2, "type");
lua_pushinteger(L, offset); lua_setfield(L, -2, "offset");
lua_pushstring(L, member); lua_setfield(L, -2, "name");
lua_setfield(L, -2, member);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs_offset");
lua_pushinteger(L, type);
lua_gettable(L, -2);
lua_pushinteger(L, offset);
lua_getfield(L, -4, member);
lua_settable(L, -3);
lua_pop(L, 4);
return;
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
}
bool luaA_struct_registered_type(lua_State* L, luaA_Type type) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
bool reg = !lua_isnil(L, -1);
lua_pop(L, 2);
return reg;
}
int luaA_struct_push_type(lua_State* L, luaA_Type type, const void* c_in) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_remove(L, -2);
lua_newtable(L);
lua_pushnil(L);
while (lua_next(L, -3)) {
if (lua_type(L, -2) == LUA_TSTRING) {
lua_getfield(L, -1, "name");
const char* name = lua_tostring(L, -1);
lua_pop(L, 1);
int num = luaA_struct_push_member_name_type(L, type, name, c_in);
if (num > 1) {
lua_pop(L, 5);
lua_pushfstring(L, "luaA_struct_push: Conversion pushed %d values to stack,"
" don't know how to include in struct!", num);
lua_error(L);
}
lua_remove(L, -2);
lua_pushvalue(L, -2);
lua_insert(L, -2);
lua_settable(L, -4);
} else {
lua_pop(L, 1);
}
}
lua_remove(L, -2);
return 1;
}
lua_pop(L, 2);
lua_pushfstring(L, "lua_struct_push: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
void luaA_struct_to_type(lua_State* L, luaA_Type type, void* c_out, int index) {
lua_pushnil(L);
while (lua_next(L, index-1)) {
if (lua_type(L, -2) == LUA_TSTRING) {
luaA_struct_to_member_name_type(L, type, lua_tostring(L, -2), c_out, -1);
}
lua_pop(L, 1);
}
}
const char* luaA_struct_next_member_name_type(lua_State* L, luaA_Type type, const char* member) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "structs");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if(!lua_isnil(L,-1)) {
if(!member) {
lua_pushnil(L);
} else {
lua_pushstring(L,member);
}
if(!lua_next(L,-2)) {
lua_pop(L,2);
return LUAA_INVALID_MEMBER_NAME;
}
const char* result = lua_tostring(L,-2);
lua_pop(L,4);
return result;
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_struct_next_member: Struct '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return NULL;
}
/*
** Enums
*/
int luaA_enum_push_type(lua_State *L, luaA_Type type, const void* value) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_values");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_sizes");
lua_pushinteger(L, type);
lua_gettable(L, -2);
size_t size = lua_tointeger(L, -1);
lua_pop(L, 2);
lua_Integer lvalue =0;
memcpy(&lvalue, value, size);
lua_pushinteger(L, lvalue);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "name");
lua_remove(L, -2);
lua_remove(L, -2);
lua_remove(L, -2);
return 1;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_enum_push: Enum '%s' value %d not registered!", luaA_typename(L, type), lvalue);
lua_error(L);
return 0;
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_enum_push: Enum '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return 0;
}
void luaA_enum_to_type(lua_State* L, luaA_Type type, void* c_out, int index) {
const char* name = lua_tostring(L, index);
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_sizes");
lua_pushinteger(L, type);
lua_gettable(L, -2);
size_t size = lua_tointeger(L, -1);
lua_pop(L, 2);
lua_pushstring(L, name);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, "value");
lua_Integer value = lua_tointeger(L, -1);
lua_pop(L, 4);
memcpy(c_out, &value, size);
return;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_enum_to: Enum '%s' field '%s' not registered!", luaA_typename(L, type), name);
lua_error(L);
return;
}
lua_pop(L, 3);
lua_pushfstring(L, "luaA_enum_to: Enum '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return;
}
bool luaA_enum_has_value_type(lua_State* L, luaA_Type type, const void* value) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_values");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums_sizes");
lua_pushinteger(L, type);
lua_gettable(L, -2);
size_t size = lua_tointeger(L, -1);
lua_pop(L, 2);
lua_Integer lvalue = 0;
memcpy(&lvalue, value, size);
lua_pushinteger(L, lvalue);
lua_gettable(L, -2);
if (lua_isnil(L, -1)) {
lua_pop(L, 3);
return false;
} else {
lua_pop(L, 3);
return true;
}
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_enum_has_value: Enum '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return false;
}
bool luaA_enum_has_name_type(lua_State* L, luaA_Type type, const char* name) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums");
lua_pushinteger(L, type);
lua_gettable(L, -2);
if (!lua_isnil(L, -1)) {
lua_getfield(L, -1, name);
if (lua_isnil(L, -1)) {
lua_pop(L, 3);
return false;
} else {
lua_pop(L, 3);
return true;
}
}
lua_pop(L, 2);
lua_pushfstring(L, "luaA_enum_has_name: Enum '%s' not registered!", luaA_typename(L, type));
lua_error(L);
return false;
}
void luaA_enum_type(lua_State *L, luaA_Type type, size_t size) {
lua_getfield(L, LUA_REGISTRYINDEX, LUAA_REGISTRYPREFIX "enums");
lua_pushinteger(L, type);
lua_newtable(L);
lua_settable(L, -3);
lua_pop(L, 1);