5 Copyright (c) 2007-2009 Mauro Iazzi
7 Permission is hereby granted, free of charge, to any person
8 obtaining a copy of this software and associated documentation
9 files (the "Software"), to deal in the Software without
10 restriction, including without limitation the rights to use,
11 copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the
13 Software is furnished to do so, subject to the following
16 The above copyright notice and this permission notice shall be
17 included in all copies or substantial portions of the Software.
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
21 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26 OTHER DEALINGS IN THE SOFTWARE.
30 local base_types
= (...) or {}
32 local number_type
= function(d
) return {
34 return 'lua_tonumber(L, '..tostring(j
)..')', 1
36 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
37 return 'lua_pushnumber(L, '..tostring(j
)..')', 1
39 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
40 return 'lqtL_isnumber(L, '..tostring(j
)..')', 1
45 local integer_type
= function(d
) return {
47 return 'lua_tointeger(L, '..tostring(j
)..')', 1
49 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
50 return 'lua_pushinteger(L, '..tostring(j
)..')', 1
52 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
53 return 'lqtL_isinteger(L, '..tostring(j
)..')', 1
58 local bool_type
= function(d
) return {
60 return 'lua_toboolean(L, '..tostring(j
)..')', 1
62 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
63 return 'lua_pushboolean(L, '..tostring(j
)..')', 1
65 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
66 return 'lqtL_isboolean(L, '..tostring(j
)..')', 1
72 base_types
['char const*'] = {
74 return 'lua_tostring(L, '..tostring(j
)..')', 1
76 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
77 return 'lua_pushstring(L, '..tostring(j
)..')', 1
80 return 'lqtL_isstring(L, '..tostring(j
)..')', 1
84 base_types
['char'] = integer_type(3)
85 base_types
['unsigned char'] = integer_type(3)
86 base_types
['int'] = integer_type(1)
87 base_types
['unsigned'] = integer_type(1)
88 base_types
['unsigned int'] = integer_type(1)
89 base_types
['short'] = integer_type(2)
90 base_types
['short int'] = integer_type(2)
91 base_types
['unsigned short'] = integer_type(2)
92 base_types
['unsigned short int'] = integer_type(2)
93 base_types
['short unsigned int'] = integer_type(2)
94 base_types
['long'] = integer_type(0)
95 base_types
['unsigned long'] = integer_type(0)
96 base_types
['long int'] = integer_type(0)
97 base_types
['unsigned long int'] = integer_type(0)
98 base_types
['long unsigned int'] = integer_type(0)
99 base_types
['long long'] = integer_type(0)
100 base_types
['unsigned long long'] = integer_type(0)
101 base_types
['long long int'] = integer_type(0)
102 base_types
['unsigned long long int'] = integer_type(0)
103 base_types
['float'] = number_type(1)
104 base_types
['double'] = number_type(0)
105 base_types
['double const&'] = number_type(1)
106 base_types
['bool'] = bool_type()
109 base_types
['bool*'] = {
111 return 'lqtL_toboolref(L, '..j
..')', 1
113 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
114 return 'lua_pushboolean(L, *'..tostring(j
)..')', 1
116 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
117 return 'lqtL_isboolean(L, '..tostring(j
)..')', 1
119 onstack
= 'boolean,',
121 base_types
['int&'] = {
123 return '*lqtL_tointref(L, '..j
..')', 1
125 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
126 return 'lua_pushinteger(L, '..tostring(j
)..')', 1
128 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
129 return 'lqtL_isinteger(L, '..tostring(j
)..')', 1
131 onstack
= 'integer,',
133 base_types
['char**'] = {
135 return 'lqtL_toarguments(L, '..tostring(j
)..')', 1
137 push
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
138 return 'lqtL_pusharguments(L, '..tostring(j
)..')', 1
140 test
= function(j
) -- must handle arguments (e.g. in virtual callbacks) and return values
141 return 'lua_istable(L, '..tostring(j
)..')', 1
146 base_types
['std::string const&'] = {
148 return 'std::string(lua_tostring(L, '..i
..'), lua_objlen(L, '..i
..'))', 1
151 return 'lua_pushlstring(L, '..i
..'.c_str(), '..i
..'.size())', 1
154 return 'lua_isstring(L, '..i
..')', 1
158 base_types
['std::string'] = base_types
['std::string const&']