1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2002-08-07 01:06:56 +08:00
|
|
|
** $Id: ltm.c,v 1.99 2002/08/05 14:09:06 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lobject.h"
|
1997-11-20 01:29:23 +08:00
|
|
|
#include "lstate.h"
|
2001-01-26 00:45:36 +08:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "ltm.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-12-06 04:15:18 +08:00
|
|
|
const char *const luaT_typenames[] = {
|
2002-04-06 02:54:31 +08:00
|
|
|
"nil", "number", "string", "boolean", "table",
|
2002-07-18 00:25:13 +08:00
|
|
|
"function", "userdata", "userdata"
|
1997-09-17 03:25:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
void luaT_init (lua_State *L) {
|
2001-12-06 04:15:18 +08:00
|
|
|
static const char *const luaT_eventname[] = { /* ORDER TM */
|
2002-06-25 04:18:38 +08:00
|
|
|
"__index", "__newindex",
|
2002-08-07 01:06:56 +08:00
|
|
|
"__gc", "__eq",
|
2002-06-25 04:18:38 +08:00
|
|
|
"__gettable", "__settable",
|
2002-03-19 04:24:14 +08:00
|
|
|
"__add", "__sub", "__mul", "__div",
|
2002-06-12 22:56:22 +08:00
|
|
|
"__pow", "__unm", "__lt", "__le",
|
|
|
|
"__concat", "__call"
|
2001-01-26 00:45:36 +08:00
|
|
|
};
|
|
|
|
int i;
|
2001-12-06 04:15:18 +08:00
|
|
|
for (i=0; i<TM_N; i++) {
|
|
|
|
G(L)->tmname[i] = luaS_new(L, luaT_eventname[i]);
|
2002-04-30 21:01:48 +08:00
|
|
|
luaS_fix(G(L)->tmname[i]); /* never collect these names */
|
2001-01-26 00:45:36 +08:00
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-12-11 06:10:30 +08:00
|
|
|
/*
|
|
|
|
** function to be used with macro "fasttm": optimized for absence of
|
|
|
|
** tag methods
|
|
|
|
*/
|
2001-12-06 04:15:18 +08:00
|
|
|
const TObject *luaT_gettm (Table *events, TMS event, TString *ename) {
|
|
|
|
const TObject *tm = luaH_getstr(events, ename);
|
2002-08-07 01:06:56 +08:00
|
|
|
lua_assert(event <= TM_EQ);
|
2002-08-05 22:50:39 +08:00
|
|
|
if (ttisnil(tm)) { /* no tag method? */
|
2002-05-21 03:51:06 +08:00
|
|
|
events->flags |= (1u<<event); /* cache this fact */
|
2001-12-06 04:15:18 +08:00
|
|
|
return NULL;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
2001-12-06 04:15:18 +08:00
|
|
|
else return tm;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-12-06 04:15:18 +08:00
|
|
|
const TObject *luaT_gettmbyobj (lua_State *L, const TObject *o, TMS event) {
|
2001-12-11 06:10:30 +08:00
|
|
|
TString *ename = G(L)->tmname[event];
|
2001-12-06 04:15:18 +08:00
|
|
|
switch (ttype(o)) {
|
2001-01-26 00:45:36 +08:00
|
|
|
case LUA_TTABLE:
|
2002-01-31 01:26:44 +08:00
|
|
|
return luaH_getstr(hvalue(o)->metatable, ename);
|
2001-12-06 04:15:18 +08:00
|
|
|
case LUA_TUSERDATA:
|
2002-01-31 01:26:44 +08:00
|
|
|
return luaH_getstr(uvalue(o)->uv.metatable, ename);
|
2000-10-05 21:00:17 +08:00
|
|
|
default:
|
2001-12-11 06:10:30 +08:00
|
|
|
return &luaO_nilobject;
|
2000-10-05 21:00:17 +08:00
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|