1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-07-01 21:06:58 +04:00
|
|
|
** $Id: ltm.h,v 1.37 2002/06/25 19:17:22 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltm_h
|
|
|
|
#define ltm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
2002-07-01 21:06:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Important: garbage collection uses two extra bits of `Table.flags'
|
|
|
|
** (after TM_MODE), so the maximum number of `fast tag methods' is six
|
|
|
|
** (at least while `flags' is a byte).
|
|
|
|
*/
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
2000-10-05 17:00:17 +04:00
|
|
|
* grep "ORDER TM"
|
1997-09-16 23:25:59 +04:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_INDEX,
|
2002-05-28 00:35:40 +04:00
|
|
|
TM_NEWINDEX,
|
2001-12-05 23:15:18 +03:00
|
|
|
TM_GC,
|
2002-06-13 17:39:55 +04:00
|
|
|
TM_EQ,
|
2002-06-25 23:17:22 +04:00
|
|
|
TM_MODE, /* last tag method with `fast' access */
|
2002-06-25 00:18:38 +04:00
|
|
|
TM_GETTABLE,
|
|
|
|
TM_SETTABLE,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
|
|
|
TM_DIV,
|
|
|
|
TM_POW,
|
|
|
|
TM_UNM,
|
|
|
|
TM_LT,
|
2002-06-12 18:56:22 +04:00
|
|
|
TM_LE,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_CONCAT,
|
2001-12-05 23:15:18 +03:00
|
|
|
TM_CALL,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_N /* number of elements in the enum */
|
|
|
|
} TMS;
|
|
|
|
|
|
|
|
|
2001-01-24 19:20:54 +03:00
|
|
|
|
2001-12-05 23:15:18 +03:00
|
|
|
#define fasttm(l,et,e) \
|
2002-05-20 23:51:06 +04:00
|
|
|
(((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, G(l)->tmname[e]))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2001-12-05 23:15:18 +03:00
|
|
|
const TObject *luaT_gettm (Table *events, TMS event, TString *ename);
|
|
|
|
const TObject *luaT_gettmbyobj (lua_State *L, const TObject *o, TMS event);
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaT_init (lua_State *L);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2001-12-05 23:15:18 +03:00
|
|
|
extern const char *const luaT_typenames[];
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|