1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2003-12-10 04:13:36 -08:00
|
|
|
** $Id: ltm.h,v 1.42 2003/12/01 18:22:56 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltm_h
|
|
|
|
#define ltm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
2002-07-01 10:06:58 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
2000-10-05 06:00:17 -07:00
|
|
|
* grep "ORDER TM"
|
1997-09-16 12:25:59 -07:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_INDEX,
|
2002-05-27 13:35:40 -07:00
|
|
|
TM_NEWINDEX,
|
2001-12-05 12:15:18 -08:00
|
|
|
TM_GC,
|
2002-11-14 04:01:35 -08:00
|
|
|
TM_MODE,
|
2002-08-06 10:06:56 -07:00
|
|
|
TM_EQ, /* last tag method with `fast' access */
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
|
|
|
TM_DIV,
|
|
|
|
TM_POW,
|
|
|
|
TM_UNM,
|
|
|
|
TM_LT,
|
2002-06-12 07:56:22 -07:00
|
|
|
TM_LE,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_CONCAT,
|
2001-12-05 12:15:18 -08:00
|
|
|
TM_CALL,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_N /* number of elements in the enum */
|
|
|
|
} TMS;
|
|
|
|
|
|
|
|
|
2001-01-24 08:20:54 -08:00
|
|
|
|
2003-12-01 10:22:56 -08:00
|
|
|
#define gfasttm(g,et,e) ((et) == NULL ? NULL : \
|
|
|
|
((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
|
2002-11-14 04:01:35 -08:00
|
|
|
|
|
|
|
#define fasttm(l,et,e) gfasttm(G(l), et, e)
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2003-12-10 04:13:36 -08:00
|
|
|
const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
|
|
|
|
const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event);
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaT_init (lua_State *L);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2001-12-05 12:15:18 -08:00
|
|
|
extern const char *const luaT_typenames[];
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|