-
Notifications
You must be signed in to change notification settings - Fork 234
/
tolua.c
2745 lines (2294 loc) · 67.6 KB
/
tolua.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
/*
The MIT License (MIT)
Copyright (c) 2015-2016 topameng([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <string.h>
#if !defined __APPLE__
#include <malloc.h>
#endif
#include <stdbool.h>
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#include "tolua.h"
#ifdef _WIN32
#include <windows.h>
#else
#include <time.h>
#include <sys/time.h>
#endif
int toluaflags = FLAG_INDEX_ERROR;
static int tag = 0;
static int gettag = 0;
static int settag = 0;
static int vptr = 1;
/*---------------------------tolua extend functions--------------------------------*/
LUALIB_API void* tolua_tag()
{
return &tag;
}
LUALIB_API void tolua_newudata(lua_State *L, int val)
{
int* pointer = (int*)lua_newuserdata(L, sizeof(int));
lua_pushvalue(L, TOLUA_NOPEER);
lua_setfenv(L, -2);
*pointer = val;
}
LUALIB_API int tolua_rawnetobj(lua_State *L, int index)
{
int* udata = (int*)lua_touserdata(L, index);
if (udata != NULL)
{
return *udata;
}
else if (lua_istable(L, index))
{
lua_pushvalue(L, index);
lua_pushlightuserdata(L, &vptr);
lua_rawget(L, -2);
if (lua_isuserdata(L, -1))
{
lua_replace(L, index);
udata = (int*)lua_touserdata(L, index);
if (udata != NULL)
{
return *udata;
}
}
else
{
lua_pop(L, 1);
}
}
return -1;
}
LUALIB_API char* tolua_tocbuffer(const char *csBuffer, int sz)
{
char* buffer = (char*)malloc(sz+1);
memcpy(buffer, csBuffer, sz);
buffer[sz] = '\0';
return buffer;
}
LUALIB_API void tolua_freebuffer(void* buffer)
{
free(buffer);
}
LUALIB_API void tolua_getvec2(lua_State *L, int pos, float* x, float* y)
{
lua_getref(L, LUA_RIDX_UNPACKVEC2);
lua_pushvalue(L, pos);
lua_call(L, 1, 2);
*x = (float)lua_tonumber(L, -2);
*y = (float)lua_tonumber(L, -1);
lua_pop(L, 2);
}
LUALIB_API void tolua_getvec3(lua_State *L, int pos, float* x, float* y, float* z)
{
lua_getref(L, LUA_RIDX_UNPACKVEC3);
lua_pushvalue(L, pos);
lua_call(L, 1, 3);
*x = (float)lua_tonumber(L, -3);
*y = (float)lua_tonumber(L, -2);
*z = (float)lua_tonumber(L, -1);
lua_pop(L, 3);
}
LUALIB_API void tolua_getvec4(lua_State *L, int pos, float* x, float* y, float* z, float* w)
{
lua_getref(L, LUA_RIDX_UNPACKVEC4);
lua_pushvalue(L, pos);
lua_call(L, 1, 4);
*x = (float)lua_tonumber(L, -4);
*y = (float)lua_tonumber(L, -3);
*z = (float)lua_tonumber(L, -2);
*w = (float)lua_tonumber(L, -1);
lua_pop(L, 4);
}
LUALIB_API void tolua_getquat(lua_State *L, int pos, float* x, float* y, float* z, float* w)
{
lua_getref(L, LUA_RIDX_UNPACKQUAT);
lua_pushvalue(L, pos);
lua_call(L, 1, 4);
*x = (float)lua_tonumber(L, -4);
*y = (float)lua_tonumber(L, -3);
*z = (float)lua_tonumber(L, -2);
*w = (float)lua_tonumber(L, -1);
lua_pop(L, 4);
}
LUALIB_API void tolua_getclr(lua_State *L, int pos, float* r, float* g, float* b, float* a)
{
lua_getref(L, LUA_RIDX_UNPACKCLR);
lua_pushvalue(L, pos);
lua_call(L, 1, 4);
*r = (float)lua_tonumber(L, -4);
*g = (float)lua_tonumber(L, -3);
*b = (float)lua_tonumber(L, -2);
*a = (float)lua_tonumber(L, -1);
lua_pop(L, 4);
}
LUALIB_API int tolua_getlayermask(lua_State *L, int pos)
{
if (lua_isnumber(L, pos))
{
return (int)lua_tointeger(L, pos);
}
lua_getref(L, LUA_RIDX_UNPACKLAYERMASK);
lua_pushvalue(L, pos);
lua_call(L, 1, 1);
int mask = (int)lua_tointeger(L, -1);
lua_pop(L, 1);
return mask;
}
LUALIB_API void tolua_pushvec2(lua_State *L, float x, float y)
{
lua_getref(L, LUA_RIDX_PACKVEC2);
lua_pushnumber(L, x);
lua_pushnumber(L, y);
lua_call(L, 2, 1);
}
LUALIB_API void tolua_pushvec3(lua_State *L, float x, float y, float z)
{
lua_getref(L, LUA_RIDX_PACKVEC3);
lua_pushnumber(L, x);
lua_pushnumber(L, y);
lua_pushnumber(L, z);
lua_call(L, 3, 1);
}
LUALIB_API void tolua_pushvec4(lua_State *L, float x, float y, float z, float w)
{
lua_getref(L, LUA_RIDX_PACKVEC4);
lua_pushnumber(L, x);
lua_pushnumber(L, y);
lua_pushnumber(L, z);
lua_pushnumber(L, w);
lua_call(L, 4, 1);
}
LUALIB_API void tolua_pushquat(lua_State *L, float x, float y, float z, float w)
{
lua_getref(L, LUA_RIDX_PACKQUAT);
lua_pushnumber(L, x);
lua_pushnumber(L, y);
lua_pushnumber(L, z);
lua_pushnumber(L, w);
lua_call(L, 4, 1);
}
LUALIB_API void tolua_pushclr(lua_State *L, float r, float g, float b, float a)
{
lua_getref(L, LUA_RIDX_PACKCLR);
lua_pushnumber(L, r);
lua_pushnumber(L, g);
lua_pushnumber(L, b);
lua_pushnumber(L, a);
lua_call(L, 4, 1);
}
LUALIB_API void tolua_pushlayermask(lua_State *L, int mask)
{
lua_getref(L, LUA_RIDX_PACKLAYERMASK);
lua_pushnumber(L, mask);
lua_call(L, 1, 1);
}
LUA_API const char* tolua_tolstring(lua_State *L, int index, int* len)
{
size_t sz;
const char *ret = lua_tolstring(L, index, &sz);
*len = (int)sz;
return ret;
}
LUA_API void tolua_pushlstring(lua_State *L, const char *s, int l)
{
lua_pushlstring(L, s, (size_t)l);
}
LUA_API void* tolua_newuserdata(lua_State *L, int sz)
{
return lua_newuserdata(L, (size_t)sz);
}
LUA_API int tolua_objlen(lua_State *L, int idx)
{
size_t len = lua_objlen(L, idx);
return (int)len;
}
LUA_API bool tolua_toboolean(lua_State *L, int idx)
{
int value = lua_toboolean(L, idx);
return value == 0 ? false : true;
}
LUA_API int32_t tolua_tointeger(lua_State *L, int idx)
{
return (int32_t)lua_tointeger(L, idx);
}
LUALIB_API int tolua_loadbuffer(lua_State *L, const char *buff, int sz, const char *name)
{
return luaL_loadbuffer(L, buff, (size_t)sz, name);
}
static int _lua_getfield(lua_State *L)
{
const char *name = lua_tostring(L, 2);
lua_getfield(L, 1, name);
return 1;
}
LUA_API int tolua_getfield(lua_State *L, int idx, const char *field)
{
idx = abs_index(L, idx);
lua_pushcfunction(L, _lua_getfield);
lua_pushvalue(L, idx);
lua_pushstring(L, field);
return lua_pcall(L, 2, 1, 0);
}
static int _lua_setfield(lua_State *L)
{
const char *name = lua_tostring(L, 2);
lua_setfield(L, 1, name);
return 0;
}
LUA_API int tolua_setfield(lua_State *L, int idx, const char *key)
{
int top = lua_gettop(L);
idx = abs_index(L, idx);
lua_pushcfunction(L, _lua_setfield);
lua_pushvalue(L, idx);
lua_pushstring(L, key);
lua_pushvalue(L, top);
lua_remove(L, top);
return lua_pcall(L, 3, -1, 0);
}
static int _lua_gettable(lua_State *L)
{
lua_gettable(L, 1);
return 1;
}
LUA_API int tolua_gettable(lua_State *L, int idx)
{
int top = lua_gettop(L);
idx = abs_index(L, idx);
lua_pushcfunction(L, _lua_gettable);
lua_pushvalue(L, idx);
lua_pushvalue(L, top);
lua_remove(L, top);
return lua_pcall(L, 2, -1, 0);
}
static int _lua_settable(lua_State *L)
{
lua_settable(L, 1);
return 0;
}
LUA_API int tolua_settable(lua_State *L, int idx)
{
int top = lua_gettop(L);
idx = abs_index(L, idx);
lua_pushcfunction(L, _lua_settable);
lua_pushvalue(L, idx);
lua_pushvalue(L, top - 1);
lua_pushvalue(L, top);
lua_remove(L, top);
lua_remove(L, top - 1);
return lua_pcall(L, 3, -1, 0);
}
static int tolua_closure(lua_State *L)
{
lua_CFunction fn = (lua_CFunction)lua_tocfunction(L, lua_upvalueindex(2));
int r = fn(L);
if (lua_toboolean(L, lua_upvalueindex(1)))
{
lua_pushboolean(L, 0);
lua_replace(L, lua_upvalueindex(1));
return lua_error(L);
}
return r;
}
//hack for luac, 避免luac error破坏包裹c#函数的异常块(luajit采用的是类似c++异常)
LUA_API int tolua_pushcfunction(lua_State *L, lua_CFunction fn)
{
lua_pushboolean(L, 0);
lua_pushcfunction(L, fn);
lua_pushcclosure(L, tolua_closure, 2);
return 0;
}
static int tolua_pusherror(lua_State *L, const char *fmt, ...)
{
va_list argp;
va_start(argp, fmt);
luaL_where(L, 1);
lua_pushvfstring(L, fmt, argp);
va_end(argp);
lua_concat(L, 2);
return 1;
}
LUALIB_API int tolua_argerror(lua_State *L, int narg, const char *extramsg)
{
lua_Debug ar;
if (!lua_getstack(L, 0, &ar)) /* no stack frame? */
{
return tolua_pusherror(L, "bad argument #%d (%s)", narg, extramsg);
}
lua_getinfo(L, "n", &ar);
if (strcmp(ar.namewhat, "method") == 0)
{
narg--; /* do not count `self' */
if (narg == 0) /* error is in the self argument itself? */
{
return tolua_pusherror(L, "calling " LUA_QS " on bad self (%s)", ar.name, extramsg);
}
}
if (ar.name == NULL)
{
ar.name = "?";
}
return tolua_pusherror(L, "bad argument #%d to " LUA_QS " (%s)", narg, ar.name, extramsg);
}
LUALIB_API int tolua_error(lua_State *L, const char *msg)
{
lua_pushboolean(L, 1);
lua_replace(L, lua_upvalueindex(1));
lua_pushstring(L, msg);
return 1;
}
LUALIB_API int tolua_getn(lua_State *L, int i)
{
return tolua_objlen(L, i);
}
LUALIB_API int tolua_strlen(const char *str)
{
if (str == NULL)
{
return 0;
}
int len = (int)strlen(str);
return len;
}
static bool _preload(lua_State *L)
{
lua_settop(L, 2);
lua_getmetatable(L, 1);
lua_pushstring(L, ".name"); //stack: t key mt ".name"
lua_rawget(L, -2); //stack: t key mt space
if (!lua_isnil(L, -1)) //stack: t key mt space
{
lua_getref(L, LUA_RIDX_PRELOAD); //stack: t key mt space preload
lua_pushvalue(L, -2); //stack: t key mt space preload space
lua_pushstring(L, "."); //stack: t key mt space preload space.
lua_pushvalue(L, 2); //stack: t key mt space preload space.key
lua_concat(L, 3); //stack: t key mt space preload key1
lua_pushvalue(L, -1); //stack: t key mt space preload key1 key1
lua_rawget(L, -3); //stack: t key mt space preload key1 value
if (!lua_isnil(L, -1))
{
lua_pop(L, 1); //stack: t key mt space preload key1
lua_getref(L, LUA_RIDX_REQUIRE); //stack: t key mt space preload key1 require
lua_pushvalue(L, -2);
lua_call(L, 1, 1);
return true;
}
}
lua_settop(L, 2);
return false;
}
static int class_index_event(lua_State *L)
{
int t = lua_type(L, 1);
if (t == LUA_TUSERDATA)
{
lua_getfenv(L,1);
if (!lua_rawequal(L, -1, TOLUA_NOPEER)) // stack: t k env
{
while (lua_istable(L, -1)) // stack: t k v mt
{
lua_pushvalue(L, 2);
lua_rawget(L, -2);
if (!lua_isnil(L, -1))
{
return 1;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &gettag);
lua_rawget(L, -2); //stack: obj key env tget
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: obj key env tget key
lua_rawget(L, -2); //stack: obj key env tget func
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_call(L, 1, 1);
return 1;
}
lua_pop(L, 1);
}
lua_pop(L, 1);
if (lua_getmetatable(L, -1) == 0) // stack: t k v mt mt
{
lua_pushnil(L);
}
lua_remove(L, -2); // stack: t k v mt
}
};
lua_settop(L,2);
lua_pushvalue(L, 1); // stack: obj key obj
while (lua_getmetatable(L, -1) != 0)
{
lua_remove(L, -2); // stack: obj key mt
if (lua_isnumber(L,2)) // check if key is a numeric value
{
lua_pushstring(L,".geti");
lua_rawget(L,-2); // stack: obj key mt func
if (lua_isfunction(L,-1))
{
lua_pushvalue(L,1);
lua_pushvalue(L,2);
lua_call(L,2,1);
return 1;
}
}
else
{
lua_pushvalue(L, 2); // stack: obj key mt key
lua_rawget(L, -2); // stack: obj key mt value
if (!lua_isnil(L, -1))
{
return 1;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &gettag);
lua_rawget(L, -2); //stack: obj key mt tget
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: obj key mt tget key
lua_rawget(L, -2); //stack: obj key mt tget value
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_call(L, 1, 1);
return 1;
}
}
}
lua_settop(L, 3);
}
lua_settop(L, 2);
int *udata = (int*)lua_touserdata(L, 1);
if (*udata == LUA_NULL_USERDATA)
{
return luaL_error(L, "attemp to index %s on a nil value", lua_tostring(L, 2));
}
if (toluaflags & FLAG_INDEX_ERROR)
{
return luaL_error(L, "field or property %s does not exist", lua_tostring(L, 2));
}
}
else if(t == LUA_TTABLE)
{
lua_pushvalue(L,1); //stack: obj key obj
while (lua_getmetatable(L, -1) != 0) //stack: obj key obj mt
{
lua_remove(L, -2); // stack: obj key mt
lua_pushvalue(L, 2); // stack: obj key mt key
lua_rawget(L, -2); // stack: obj key mt value
if (!lua_isnil(L, -1))
{
if (lua_isfunction(L, -1)) //cache static function
{
lua_pushvalue(L, 2); // stack: obj key mt value key
lua_pushvalue(L, -2); // stack: obj key mt value key value
lua_rawset(L, 1);
}
return 1;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &gettag);
lua_rawget(L, -2); //stack: obj key mt tget
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: obj key mt tget key
lua_rawget(L, -2); //stack: obj key mt tget value
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_call(L, 1, 1);
return 1;
}
}
lua_settop(L, 3);
}
if (_preload(L))
{
return 1;
}
if (toluaflags & FLAG_INDEX_ERROR)
{
return luaL_error(L, "field or property %s does not exist", lua_tostring(L, 2));
}
}
lua_pushnil(L);
return 1;
}
static void storeatubox (lua_State *L, int lo)
{
lua_getfenv(L, lo); // stack: t, k, v, _env
if (lua_rawequal(L, -1, TOLUA_NOPEER))
{
lua_pop(L, 1);
return;
//lua_newtable(L); // stack: t, k, v, t
//lua_pushvalue(L, -1); // stack: t, k, v, t, t
//lua_setfenv(L, lo); // stack: t, k, v, t
};
lua_insert(L, -3);
lua_settable(L, -3);
lua_pop(L, 1);
}
static int class_newindex_event(lua_State *L)
{
int t = lua_type(L, 1);
if (t == LUA_TUSERDATA)
{
bool useEnv = false;
lua_getfenv(L, 1);
if (!lua_rawequal(L, -1, TOLUA_NOPEER))
{
useEnv = true;
while (lua_istable(L, -1)) // stack: t k v mt
{
lua_pushvalue(L, 2); // stack: t k v mt k
lua_rawget(L, -2); // stack: t k v mt value
if (!lua_isnil(L, -1))
{
lua_pop(L, 1);
lua_insert(L, -3);
lua_rawset(L, -3);
return 0;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &settag); // stack: t k v mt tset
lua_rawget(L, -2);
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); // stack: t k v mt tset k
lua_rawget(L, -2);
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_pushvalue(L, 3);
lua_call(L, 2, 0);
return 0;
}
lua_pop(L, 1); // stack: t k v mt tset
}
lua_pop(L, 1); // stack: t k v mt
if (lua_getmetatable(L, -1) == 0) // stack: t k v mt mt
{
lua_pushnil(L);
}
lua_remove(L, -2); // stack: t k v mt
}
}
lua_settop(L, 3);
lua_getmetatable(L,1);
while (lua_istable(L, -1)) // stack: t k v mt
{
if (lua_isnumber(L, 2))
{
lua_pushstring(L,".seti");
lua_rawget(L,-2); // stack: obj key mt func
if (lua_isfunction(L,-1))
{
lua_pushvalue(L,1);
lua_pushvalue(L,2);
lua_pushvalue(L,3);
lua_call(L,3,0);
}
return 0;
}
else
{
lua_pushlightuserdata(L, &settag);
lua_rawget(L, -2); // stack: t k v mt tset
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2);
lua_rawget(L, -2); // stack: t k v mt tset func
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_pushvalue(L, 3);
lua_call(L, 2, 0);
return 0;
}
lua_pop(L, 1); // stack: t k v mt tset
}
lua_pop(L, 1); // stack: t k v mt
if (lua_getmetatable(L, -1) == 0) // stack: t k v mt mt
{
lua_pushnil(L);
}
lua_remove(L, -2); // stack: t k v mt
}
}
lua_settop(L, 3); // stack: t k v
int* udata = (int*)lua_touserdata(L, 1);
if (*udata == LUA_NULL_USERDATA)
{
return luaL_error(L, "attemp to index %s on a nil value", lua_tostring(L, 2));
}
if (useEnv)
{
lua_getfenv(L, 1); // stack: t, k, v, _env
lua_insert(L, -3);
lua_settable(L, -3);
lua_pop(L, 1);
return 0;
}
}
else if (t == LUA_TTABLE)
{
lua_getmetatable(L, 1); // stack: t k v mt
while (lua_istable(L, -1)) // stack: t k v mt
{
lua_pushlightuserdata(L, &settag); // stack: t k v mt tset
lua_rawget(L, -2);
if (lua_istable(L,-1))
{
lua_pushvalue(L,2); // stack: t k v mt tset k
lua_rawget(L,-2);
if (lua_isfunction(L,-1))
{
lua_pushvalue(L,1);
lua_pushvalue(L,3);
lua_call(L,2,0);
return 0;
}
lua_pop(L, 1); // stack: t k v mt tset
}
lua_pop(L, 1); // stack: t k v mt
if (lua_getmetatable(L, -1) == 0) // stack: t k v mt mt
{
lua_pushnil(L);
}
lua_remove(L, -2); // stack: t k v mt
}
}
lua_settop(L, 3);
return luaL_error(L, "field or property %s does not exist", lua_tostring(L, 2));
}
static int enum_index_event (lua_State *L)
{
lua_getmetatable(L, 1); //stack: t, k, mt
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: t, k, mt, k
lua_rawget(L, -2); //stack: t, k, mt, v
if (!lua_isnil(L, -1))
{
return 1;
}
lua_pop(L, 1); //stack: t, k, mt
lua_pushlightuserdata(L, &gettag);
lua_rawget(L, -2); //stack: t, k, mt, tget
if (lua_istable(L,-1))
{
lua_pushvalue(L,2); //stack: t k mt tget k
lua_rawget(L,-2); //stack: t k mt tget v
if (lua_isfunction(L,-1))
{
lua_call(L, 0, 1);
lua_pushvalue(L,2);
lua_pushvalue(L,-2);
lua_rawset(L, 3);
return 1;
}
lua_pop(L, 1);
}
}
lua_settop(L, 2);
lua_pushnil(L);
return 1;
}
static int enum_newindex_event(lua_State *L)
{
luaL_error(L, "the left-hand side of an assignment must be a variable, a property or an indexer");
return 1;
}
static int static_index_event(lua_State *L)
{
lua_pushvalue(L, 2); //stack: t key key
lua_rawget(L, 1); //stack: t key value
if (!lua_isnil(L, -1))
{
return 1;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &gettag); //stack: t key tag
lua_rawget(L, 1); //stack: t key tget
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: obj key tget key
lua_rawget(L, -2); //stack: obj key tget func
if (lua_isfunction(L, -1))
{
lua_call(L, 0, 1);
return 1;
}
}
lua_settop(L, 2);
if (_preload(L))
{
return 1;
}
if (toluaflags & FLAG_INDEX_ERROR)
{
luaL_error(L, "field or property %s does not exist", lua_tostring(L, 2));
}
return 1;
}
static int static_newindex_event(lua_State *L)
{
lua_pushlightuserdata(L, &settag); //stack: t k v tag
lua_rawget(L, 1); //stack: t k v tset
if (lua_istable(L,-1))
{
lua_pushvalue(L, 2); //stack: t k v tset k
lua_rawget(L, -2); //stack: t k v tset func
if (lua_isfunction(L, -1))
{
lua_pushvalue(L,1);
lua_pushvalue(L,3);
lua_call(L,2,0);
return 0;
}
}
lua_settop(L, 3);
luaL_error(L, "field or property %s does not exist", lua_tostring(L, 2));
return 1;
}
static int vptr_index_event(lua_State *L)
{
lua_pushlightuserdata(L, &vptr);
lua_rawget(L, 1); // stack: t key u
lua_replace(L, 1); // stack: u key
lua_pushvalue(L, 1); // stack: u key u
while (lua_getmetatable(L, -1) != 0)
{
lua_remove(L, -2); // stack: u key mt
lua_pushvalue(L, 2); // stack: u key mt key
lua_rawget(L, -2); // stack: u key mt value
if (!lua_isnil(L, -1))
{
return 1;
}
lua_pop(L, 1);
lua_pushlightuserdata(L, &gettag);
lua_rawget(L, -2); //stack: u key mt tget
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2); //stack: obj key mt tget key
lua_rawget(L, -2); //stack: obj key mt tget value
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 1);
lua_call(L, 1, 1);
return 1;
}
}
lua_settop(L, 3);
}
lua_settop(L, 2);
lua_pushnil(L);
return 1;
}
static int vptr_newindex_event(lua_State *L)
{
lua_pushlightuserdata(L, &vptr);
lua_rawget(L, 1); // stack: t key v u
lua_getmetatable(L, -1);
while (lua_istable(L, -1)) // stack: u k v mt
{
lua_pushlightuserdata(L, &settag);
lua_rawget(L, -2); // stack: u k v mt tset
if (lua_istable(L, -1))
{
lua_pushvalue(L, 2);
lua_rawget(L, -2); // stack: u k v mt tset func
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, 4);
lua_pushvalue(L, 3);
lua_call(L, 2, 0);