1993-07-28 17:18:00 +04:00
|
|
|
/*
|
1999-09-29 16:56:22 +04:00
|
|
|
** $Id: lua.h,v 1.34 1999/08/16 20:52:00 roberto Exp roberto $
|
1997-11-27 21:25:14 +03:00
|
|
|
** Lua - An Extensible Extension Language
|
1997-04-03 22:26:08 +04:00
|
|
|
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
|
|
|
|
** e-mail: lua@tecgraf.puc-rio.br
|
1997-12-09 16:50:08 +03:00
|
|
|
** www: http://www.tecgraf.puc-rio.br/lua/
|
1998-06-07 01:05:52 +04:00
|
|
|
** See Copyright Notice at the end of this file
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef lua_h
|
|
|
|
#define lua_h
|
|
|
|
|
1999-09-29 16:56:22 +04:00
|
|
|
#define LUA_VERSION "Lua 3.x"
|
1999-02-09 18:59:22 +03:00
|
|
|
#define LUA_COPYRIGHT "Copyright (C) 1994-1999 TeCGraf, PUC-Rio"
|
1995-10-31 20:05:35 +03:00
|
|
|
#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo"
|
1995-10-06 17:11:10 +03:00
|
|
|
|
|
|
|
|
1994-12-16 18:56:45 +03:00
|
|
|
#define LUA_NOOBJECT 0
|
|
|
|
|
1999-08-11 21:00:59 +04:00
|
|
|
#define LUA_NOREF (-2)
|
|
|
|
#define LUA_REFNIL (-1)
|
|
|
|
|
1997-06-09 21:28:14 +04:00
|
|
|
#define LUA_ANYTAG (-1)
|
|
|
|
|
1998-06-03 00:37:04 +04:00
|
|
|
typedef struct lua_State lua_State;
|
|
|
|
extern lua_State *lua_state;
|
1997-11-04 18:27:53 +03:00
|
|
|
|
1998-12-15 17:59:43 +03:00
|
|
|
typedef void (*lua_CFunction) (void);
|
|
|
|
typedef unsigned int lua_Object;
|
|
|
|
|
1997-11-04 18:27:53 +03:00
|
|
|
void lua_open (void);
|
1997-12-01 23:31:25 +03:00
|
|
|
void lua_close (void);
|
1998-06-03 00:37:04 +04:00
|
|
|
lua_State *lua_setstate (lua_State *st);
|
1997-11-04 18:27:53 +03:00
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
lua_Object lua_settagmethod (int tag, const char *event);
|
|
|
|
/* In: new method */
|
|
|
|
lua_Object lua_gettagmethod (int tag, const char *event);
|
1997-02-26 20:38:41 +03:00
|
|
|
|
1997-04-03 02:52:42 +04:00
|
|
|
int lua_newtag (void);
|
1997-12-11 20:21:11 +03:00
|
|
|
int lua_copytagmethods (int tagto, int tagfrom);
|
1997-02-26 20:38:41 +03:00
|
|
|
void lua_settag (int tag); /* In: object */
|
1994-11-07 21:27:39 +03:00
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
void lua_error (const char *s);
|
|
|
|
int lua_dofile (const char *filename);
|
|
|
|
/* Out: returns */
|
|
|
|
int lua_dostring (const char *string);
|
|
|
|
/* Out: returns */
|
|
|
|
int lua_dobuffer (const char *buff, int size,
|
|
|
|
const char *name); /* Out: returns */
|
1997-02-26 20:38:41 +03:00
|
|
|
int lua_callfunction (lua_Object f);
|
|
|
|
/* In: parameters; Out: returns */
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1994-11-18 22:46:21 +03:00
|
|
|
void lua_beginblock (void);
|
|
|
|
void lua_endblock (void);
|
1994-11-17 19:41:42 +03:00
|
|
|
|
1997-03-19 22:41:10 +03:00
|
|
|
lua_Object lua_lua2C (int number);
|
|
|
|
#define lua_getparam(_) lua_lua2C(_)
|
|
|
|
#define lua_getresult(_) lua_lua2C(_)
|
1994-11-07 19:34:44 +03:00
|
|
|
|
1997-02-20 18:51:14 +03:00
|
|
|
int lua_isnil (lua_Object object);
|
|
|
|
int lua_istable (lua_Object object);
|
|
|
|
int lua_isuserdata (lua_Object object);
|
|
|
|
int lua_iscfunction (lua_Object object);
|
1996-03-20 01:28:37 +03:00
|
|
|
int lua_isnumber (lua_Object object);
|
|
|
|
int lua_isstring (lua_Object object);
|
|
|
|
int lua_isfunction (lua_Object object);
|
|
|
|
|
1997-11-26 21:53:45 +03:00
|
|
|
double lua_getnumber (lua_Object object);
|
1999-08-17 00:52:00 +04:00
|
|
|
const char *lua_getstring (lua_Object object);
|
1998-03-06 21:47:42 +03:00
|
|
|
long lua_strlen (lua_Object object);
|
1993-07-28 17:18:00 +04:00
|
|
|
lua_CFunction lua_getcfunction (lua_Object object);
|
1997-06-19 01:20:45 +04:00
|
|
|
void *lua_getuserdata (lua_Object object);
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1994-12-28 15:55:47 +03:00
|
|
|
void lua_pushnil (void);
|
1997-11-26 21:53:45 +03:00
|
|
|
void lua_pushnumber (double n);
|
1999-08-17 00:52:00 +04:00
|
|
|
void lua_pushlstring (const char *s, long len);
|
|
|
|
void lua_pushstring (const char *s);
|
1998-06-06 02:17:44 +04:00
|
|
|
void lua_pushcclosure (lua_CFunction fn, int n);
|
1997-06-09 21:28:14 +04:00
|
|
|
void lua_pushusertag (void *u, int tag);
|
1994-12-28 15:55:47 +03:00
|
|
|
void lua_pushobject (lua_Object object);
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1997-06-09 21:28:14 +04:00
|
|
|
lua_Object lua_pop (void);
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
lua_Object lua_getglobal (const char *name);
|
|
|
|
lua_Object lua_rawgetglobal (const char *name);
|
|
|
|
void lua_setglobal (const char *name); /* In: value */
|
|
|
|
void lua_rawsetglobal (const char *name); /* In: value */
|
1994-11-07 19:34:44 +03:00
|
|
|
|
1997-04-05 02:24:51 +04:00
|
|
|
void lua_settable (void); /* In: table, index, value */
|
|
|
|
void lua_rawsettable (void); /* In: table, index, value */
|
|
|
|
lua_Object lua_gettable (void); /* In: table, index */
|
|
|
|
lua_Object lua_rawgettable (void); /* In: table, index */
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1997-02-26 20:38:41 +03:00
|
|
|
int lua_tag (lua_Object object);
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
const char *lua_nextvar (const char *varname); /* Out: value */
|
1999-02-23 17:57:28 +03:00
|
|
|
int lua_next (lua_Object o, int i);
|
|
|
|
/* Out: ref, value */
|
1996-04-22 22:00:37 +04:00
|
|
|
|
1997-02-26 20:38:41 +03:00
|
|
|
int lua_ref (int lock); /* In: value */
|
1996-04-25 18:10:00 +04:00
|
|
|
lua_Object lua_getref (int ref);
|
|
|
|
void lua_unref (int ref);
|
1994-11-08 22:56:39 +03:00
|
|
|
|
1994-12-16 18:56:45 +03:00
|
|
|
lua_Object lua_createtable (void);
|
1994-11-18 22:46:21 +03:00
|
|
|
|
1997-05-26 18:42:51 +04:00
|
|
|
long lua_collectgarbage (long limit);
|
|
|
|
|
|
|
|
|
1997-03-17 20:02:29 +03:00
|
|
|
/* =============================================================== */
|
1999-01-26 18:38:01 +03:00
|
|
|
/* some useful macros/functions */
|
1994-11-02 23:30:53 +03:00
|
|
|
|
1997-06-09 21:28:14 +04:00
|
|
|
#define lua_call(name) lua_callfunction(lua_getglobal(name))
|
|
|
|
|
|
|
|
#define lua_pushref(ref) lua_pushobject(lua_getref(ref))
|
1997-06-07 00:54:40 +04:00
|
|
|
|
1996-04-22 22:00:37 +04:00
|
|
|
#define lua_refobject(o,l) (lua_pushobject(o), lua_ref(l))
|
1994-11-18 22:46:21 +03:00
|
|
|
|
1997-04-02 21:44:18 +04:00
|
|
|
#define lua_register(n,f) (lua_pushcfunction(f), lua_setglobal(n))
|
1994-11-07 19:34:44 +03:00
|
|
|
|
1997-02-20 18:51:14 +03:00
|
|
|
#define lua_pushuserdata(u) lua_pushusertag(u, 0)
|
|
|
|
|
1998-06-06 02:17:44 +04:00
|
|
|
#define lua_pushcfunction(f) lua_pushcclosure(f, 0)
|
1994-11-18 00:23:43 +03:00
|
|
|
|
1997-12-11 20:21:11 +03:00
|
|
|
#define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t))
|
1997-06-19 01:20:45 +04:00
|
|
|
|
1998-08-21 21:43:44 +04:00
|
|
|
lua_Object lua_seterrormethod (void); /* In: new method */
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/* ==========================================================================
|
1997-06-23 22:27:53 +04:00
|
|
|
** for compatibility with old versions. Avoid using these macros/functions
|
1998-01-02 20:46:32 +03:00
|
|
|
** If your program does need any of these, define LUA_COMPAT2_5
|
1997-06-19 01:20:45 +04:00
|
|
|
*/
|
|
|
|
|
1997-06-23 22:27:53 +04:00
|
|
|
|
1998-01-02 20:46:32 +03:00
|
|
|
#ifdef LUA_COMPAT2_5
|
1997-06-23 22:27:53 +04:00
|
|
|
|
1996-02-12 21:32:09 +03:00
|
|
|
|
1997-04-05 02:24:51 +04:00
|
|
|
lua_Object lua_setfallback (char *event, lua_CFunction fallback);
|
|
|
|
|
1997-04-15 20:52:20 +04:00
|
|
|
#define lua_storeglobal lua_setglobal
|
|
|
|
#define lua_type lua_tag
|
1997-02-26 20:38:41 +03:00
|
|
|
|
1996-04-22 22:00:37 +04:00
|
|
|
#define lua_lockobject(o) lua_refobject(o,1)
|
|
|
|
#define lua_lock() lua_ref(1)
|
|
|
|
#define lua_getlocked lua_getref
|
|
|
|
#define lua_pushlocked lua_pushref
|
|
|
|
#define lua_unlock lua_unref
|
|
|
|
|
1996-02-12 21:32:09 +03:00
|
|
|
#define lua_pushliteral(o) lua_pushstring(o)
|
1994-12-13 18:54:21 +03:00
|
|
|
|
1997-04-05 02:24:51 +04:00
|
|
|
#define lua_getindexed(o,n) (lua_pushobject(o), lua_pushnumber(n), lua_gettable())
|
1997-06-19 01:20:45 +04:00
|
|
|
#define lua_getfield(o,f) (lua_pushobject(o), lua_pushstring(f), lua_gettable())
|
1994-12-13 18:54:21 +03:00
|
|
|
|
1994-12-16 18:56:45 +03:00
|
|
|
#define lua_copystring(o) (strdup(lua_getstring(o)))
|
|
|
|
|
1997-04-05 02:24:51 +04:00
|
|
|
#define lua_getsubscript lua_gettable
|
1997-04-15 20:52:20 +04:00
|
|
|
#define lua_storesubscript lua_settable
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#endif
|
1997-06-19 01:20:45 +04:00
|
|
|
|
|
|
|
#endif
|
1998-06-07 01:05:52 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
1999-02-09 18:59:22 +03:00
|
|
|
* Copyright (c) 1994-1999 TeCGraf, PUC-Rio. All rights reserved.
|
1998-06-07 01:05:52 +04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without license
|
|
|
|
* or royalty fees, to use, copy, modify, and distribute this software and its
|
|
|
|
* documentation for any purpose, including commercial applications, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* - The above copyright notice and this permission notice shall appear in all
|
|
|
|
* copies or substantial portions of this software.
|
|
|
|
*
|
|
|
|
* - The origin of this software must not be misrepresented; you must not
|
|
|
|
* claim that you wrote the original software. If you use this software in a
|
|
|
|
* product, an acknowledgment in the product documentation would be greatly
|
|
|
|
* appreciated (but it is not required).
|
|
|
|
*
|
|
|
|
* - Altered source versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* The authors specifically disclaim any warranties, including, but not limited
|
|
|
|
* to, the implied warranties of merchantability and fitness for a particular
|
|
|
|
* purpose. The software provided hereunder is on an "as is" basis, and the
|
|
|
|
* authors have no obligation to provide maintenance, support, updates,
|
|
|
|
* enhancements, or modifications. In no event shall TeCGraf, PUC-Rio, or the
|
|
|
|
* authors be held liable to any party for direct, indirect, special,
|
|
|
|
* incidental, or consequential damages arising out of the use of this software
|
|
|
|
* and its documentation.
|
|
|
|
*
|
|
|
|
* The Lua language and this implementation have been entirely designed and
|
|
|
|
* written by Waldemar Celes Filho, Roberto Ierusalimschy and
|
|
|
|
* Luiz Henrique de Figueiredo at TeCGraf, PUC-Rio.
|
1999-02-26 00:07:26 +03:00
|
|
|
*
|
1998-06-07 01:05:52 +04:00
|
|
|
* This implementation contains no third-party code.
|
|
|
|
******************************************************************************/
|