1 | /* tolua |
---|
2 | ** Support code for Lua bindings. |
---|
3 | ** Written by Waldemar Celes |
---|
4 | ** TeCGraf/PUC-Rio |
---|
5 | ** Apr 2003 |
---|
6 | ** $Id: $ |
---|
7 | */ |
---|
8 | |
---|
9 | /* This code is free software; you can redistribute it and/or modify it. |
---|
10 | ** The software provided hereunder is on an "as is" basis, and |
---|
11 | ** the author has no obligation to provide maintenance, support, updates, |
---|
12 | ** enhancements, or modifications. |
---|
13 | */ |
---|
14 | |
---|
15 | |
---|
16 | #ifndef TOLUA_H |
---|
17 | #define TOLUA_H |
---|
18 | |
---|
19 | #ifndef TOLUA_API |
---|
20 | #define TOLUA_API extern |
---|
21 | #endif |
---|
22 | |
---|
23 | #define TOLUA_VERSION "tolua++-1.0.92" |
---|
24 | |
---|
25 | #ifdef __cplusplus |
---|
26 | extern "C" { |
---|
27 | #endif |
---|
28 | |
---|
29 | #define tolua_pushcppstring(x,y) tolua_pushstring(x,y.c_str()) |
---|
30 | #define tolua_iscppstring tolua_isstring |
---|
31 | |
---|
32 | #define tolua_iscppstringarray tolua_isstringarray |
---|
33 | #define tolua_pushfieldcppstring(L,lo,idx,s) tolua_pushfieldstring(L, lo, idx, s.c_str()) |
---|
34 | |
---|
35 | #define TEMPLATE_BIND(p) |
---|
36 | #define TOLUA_TEMPLATE_BIND(p) |
---|
37 | #define TOLUA_PROTECTED_DESTRUCTOR |
---|
38 | #define TOLUA_PROPERTY_TYPE(p) |
---|
39 | |
---|
40 | typedef int lua_Object; |
---|
41 | |
---|
42 | #include "lua.h" |
---|
43 | #include "lauxlib.h" |
---|
44 | |
---|
45 | struct tolua_Error |
---|
46 | { |
---|
47 | int index; |
---|
48 | int array; |
---|
49 | const char* type; |
---|
50 | }; |
---|
51 | typedef struct tolua_Error tolua_Error; |
---|
52 | |
---|
53 | #define TOLUA_NOPEER LUA_REGISTRYINDEX /* for lua 5.1 */ |
---|
54 | |
---|
55 | TOLUA_API const char* tolua_typename (lua_State* L, int lo); |
---|
56 | TOLUA_API void tolua_error (lua_State* L, char* msg, tolua_Error* err); |
---|
57 | TOLUA_API int tolua_isnoobj (lua_State* L, int lo, tolua_Error* err); |
---|
58 | TOLUA_API int tolua_isvalue (lua_State* L, int lo, int def, tolua_Error* err); |
---|
59 | TOLUA_API int tolua_isboolean (lua_State* L, int lo, int def, tolua_Error* err); |
---|
60 | TOLUA_API int tolua_isnumber (lua_State* L, int lo, int def, tolua_Error* err); |
---|
61 | TOLUA_API int tolua_isstring (lua_State* L, int lo, int def, tolua_Error* err); |
---|
62 | TOLUA_API int tolua_istable (lua_State* L, int lo, int def, tolua_Error* err); |
---|
63 | TOLUA_API int tolua_isusertable (lua_State* L, int lo, const char* type, int def, tolua_Error* err); |
---|
64 | TOLUA_API int tolua_isuserdata (lua_State* L, int lo, int def, tolua_Error* err); |
---|
65 | TOLUA_API int tolua_isusertype (lua_State* L, int lo, const char* type, int def, tolua_Error* err); |
---|
66 | TOLUA_API int tolua_isvaluearray |
---|
67 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
68 | TOLUA_API int tolua_isbooleanarray |
---|
69 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
70 | TOLUA_API int tolua_isnumberarray |
---|
71 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
72 | TOLUA_API int tolua_isstringarray |
---|
73 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
74 | TOLUA_API int tolua_istablearray |
---|
75 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
76 | TOLUA_API int tolua_isuserdataarray |
---|
77 | (lua_State* L, int lo, int dim, int def, tolua_Error* err); |
---|
78 | TOLUA_API int tolua_isusertypearray |
---|
79 | (lua_State* L, int lo, const char* type, int dim, int def, tolua_Error* err); |
---|
80 | |
---|
81 | TOLUA_API void tolua_open (lua_State* L); |
---|
82 | |
---|
83 | TOLUA_API void* tolua_copy (lua_State* L, void* value, unsigned int size); |
---|
84 | TOLUA_API int tolua_register_gc (lua_State* L, int lo); |
---|
85 | TOLUA_API int tolua_default_collect (lua_State* tolua_S); |
---|
86 | |
---|
87 | TOLUA_API void tolua_usertype (lua_State* L, char* type); |
---|
88 | TOLUA_API void tolua_beginmodule (lua_State* L, char* name); |
---|
89 | TOLUA_API void tolua_endmodule (lua_State* L); |
---|
90 | TOLUA_API void tolua_module (lua_State* L, char* name, int hasvar); |
---|
91 | TOLUA_API void tolua_class (lua_State* L, char* name, char* base); |
---|
92 | TOLUA_API void tolua_cclass (lua_State* L, char* lname, char* name, char* base, lua_CFunction col); |
---|
93 | TOLUA_API void tolua_function (lua_State* L, char* name, lua_CFunction func); |
---|
94 | TOLUA_API void tolua_constant (lua_State* L, char* name, double value); |
---|
95 | TOLUA_API void tolua_variable (lua_State* L, char* name, lua_CFunction get, lua_CFunction set); |
---|
96 | TOLUA_API void tolua_array (lua_State* L,char* name, lua_CFunction get, lua_CFunction set); |
---|
97 | |
---|
98 | /* TOLUA_API void tolua_set_call_event(lua_State* L, lua_CFunction func, char* type); */ |
---|
99 | /* TOLUA_API void tolua_addbase(lua_State* L, char* name, char* base); */ |
---|
100 | |
---|
101 | TOLUA_API void tolua_pushvalue (lua_State* L, int lo); |
---|
102 | TOLUA_API void tolua_pushboolean (lua_State* L, int value); |
---|
103 | TOLUA_API void tolua_pushnumber (lua_State* L, double value); |
---|
104 | TOLUA_API void tolua_pushstring (lua_State* L, const char* value); |
---|
105 | TOLUA_API void tolua_pushuserdata (lua_State* L, void* value); |
---|
106 | TOLUA_API void tolua_pushusertype (lua_State* L, void* value, const char* type); |
---|
107 | TOLUA_API void tolua_pushusertype_and_takeownership(lua_State* L, void* value, const char* type); |
---|
108 | TOLUA_API void tolua_pushfieldvalue (lua_State* L, int lo, int index, int v); |
---|
109 | TOLUA_API void tolua_pushfieldboolean (lua_State* L, int lo, int index, int v); |
---|
110 | TOLUA_API void tolua_pushfieldnumber (lua_State* L, int lo, int index, double v); |
---|
111 | TOLUA_API void tolua_pushfieldstring (lua_State* L, int lo, int index, const char* v); |
---|
112 | TOLUA_API void tolua_pushfielduserdata (lua_State* L, int lo, int index, void* v); |
---|
113 | TOLUA_API void tolua_pushfieldusertype (lua_State* L, int lo, int index, void* v, const char* type); |
---|
114 | TOLUA_API void tolua_pushfieldusertype_and_takeownership (lua_State* L, int lo, int index, void* v, const char* type); |
---|
115 | |
---|
116 | TOLUA_API double tolua_tonumber (lua_State* L, int narg, double def); |
---|
117 | TOLUA_API const char* tolua_tostring (lua_State* L, int narg, const char* def); |
---|
118 | TOLUA_API void* tolua_touserdata (lua_State* L, int narg, void* def); |
---|
119 | TOLUA_API void* tolua_tousertype (lua_State* L, int narg, void* def); |
---|
120 | TOLUA_API int tolua_tovalue (lua_State* L, int narg, int def); |
---|
121 | TOLUA_API int tolua_toboolean (lua_State* L, int narg, int def); |
---|
122 | TOLUA_API double tolua_tofieldnumber (lua_State* L, int lo, int index, double def); |
---|
123 | TOLUA_API const char* tolua_tofieldstring (lua_State* L, int lo, int index, const char* def); |
---|
124 | TOLUA_API void* tolua_tofielduserdata (lua_State* L, int lo, int index, void* def); |
---|
125 | TOLUA_API void* tolua_tofieldusertype (lua_State* L, int lo, int index, void* def); |
---|
126 | TOLUA_API int tolua_tofieldvalue (lua_State* L, int lo, int index, int def); |
---|
127 | TOLUA_API int tolua_getfieldboolean (lua_State* L, int lo, int index, int def); |
---|
128 | |
---|
129 | TOLUA_API void tolua_dobuffer(lua_State* L, char* B, unsigned int size, const char* name); |
---|
130 | |
---|
131 | TOLUA_API int class_gc_event (lua_State* L); |
---|
132 | |
---|
133 | #ifdef __cplusplus |
---|
134 | static inline const char* tolua_tocppstring (lua_State* L, int narg, const char* def) { |
---|
135 | |
---|
136 | const char* s = tolua_tostring(L, narg, def); |
---|
137 | return s?s:""; |
---|
138 | }; |
---|
139 | |
---|
140 | static inline const char* tolua_tofieldcppstring (lua_State* L, int lo, int index, const char* def) { |
---|
141 | |
---|
142 | const char* s = tolua_tofieldstring(L, lo, index, def); |
---|
143 | return s?s:""; |
---|
144 | }; |
---|
145 | |
---|
146 | #else |
---|
147 | #define tolua_tocppstring tolua_tostring |
---|
148 | #define tolua_tofieldcppstring tolua_tofieldstring |
---|
149 | #endif |
---|
150 | |
---|
151 | TOLUA_API int tolua_fast_isa(lua_State *L, int mt_indexa, int mt_indexb, int super_index); |
---|
152 | |
---|
153 | #ifdef __cplusplus |
---|
154 | } |
---|
155 | #endif |
---|
156 | |
---|
157 | #endif |
---|