1993-07-28 17:18:00 +04:00
|
|
|
/*
|
|
|
|
** inout.c
|
|
|
|
** Provide function to realise the input/output function and debugger
|
|
|
|
** facilities.
|
1994-11-02 23:29:39 +03:00
|
|
|
** Also provides some predefined lua functions.
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
|
|
|
|
1996-03-19 19:50:24 +03:00
|
|
|
char *rcs_inout="$Id: inout.c,v 2.34 1996/03/15 13:13:13 roberto Exp roberto $";
|
1993-12-17 21:41:19 +03:00
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
1996-02-13 20:30:39 +03:00
|
|
|
#include "lex.h"
|
1993-07-28 17:18:00 +04:00
|
|
|
#include "opcode.h"
|
|
|
|
#include "inout.h"
|
|
|
|
#include "table.h"
|
1994-07-20 01:27:18 +04:00
|
|
|
#include "tree.h"
|
1994-08-18 02:22:44 +04:00
|
|
|
#include "lua.h"
|
1996-03-15 16:13:13 +03:00
|
|
|
#include "mem.h"
|
1995-05-16 21:23:58 +04:00
|
|
|
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
/* Exported variables */
|
1994-12-21 00:20:36 +03:00
|
|
|
Word lua_linenumber;
|
1995-10-17 14:58:41 +03:00
|
|
|
char *lua_parsedfile;
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1994-11-22 00:41:09 +03:00
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
static FILE *fp;
|
|
|
|
static char *st;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to get the next character from the input file
|
|
|
|
*/
|
|
|
|
static int fileinput (void)
|
|
|
|
{
|
1994-10-17 22:04:19 +03:00
|
|
|
return fgetc (fp);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to get the next character from the input string
|
|
|
|
*/
|
|
|
|
static int stringinput (void)
|
|
|
|
{
|
1994-10-17 22:04:19 +03:00
|
|
|
return *st++;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to open a file to be input unit.
|
1996-03-15 16:13:13 +03:00
|
|
|
** Return the file.
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
1996-03-15 16:13:13 +03:00
|
|
|
FILE *lua_openfile (char *fn)
|
1993-07-28 17:18:00 +04:00
|
|
|
{
|
|
|
|
lua_setinput (fileinput);
|
1995-10-23 16:54:11 +03:00
|
|
|
if (fn == NULL)
|
|
|
|
{
|
|
|
|
fp = stdin;
|
|
|
|
fn = "(stdin)";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fp = fopen (fn, "r");
|
1994-11-04 01:34:29 +03:00
|
|
|
if (fp == NULL)
|
1996-03-15 16:13:13 +03:00
|
|
|
return NULL;
|
1995-10-17 14:58:41 +03:00
|
|
|
lua_linenumber = 1;
|
1996-02-27 00:00:27 +03:00
|
|
|
lua_parsedfile = luaI_createfixedstring(fn)->str;
|
1996-03-15 16:13:13 +03:00
|
|
|
return fp;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to close an opened file
|
|
|
|
*/
|
|
|
|
void lua_closefile (void)
|
|
|
|
{
|
1995-10-23 16:54:11 +03:00
|
|
|
if (fp != NULL && fp != stdin)
|
1993-07-28 17:18:00 +04:00
|
|
|
{
|
|
|
|
fclose (fp);
|
|
|
|
fp = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to open a string to be input unit
|
|
|
|
*/
|
1995-10-17 14:58:41 +03:00
|
|
|
void lua_openstring (char *s)
|
1993-07-28 17:18:00 +04:00
|
|
|
{
|
|
|
|
lua_setinput (stringinput);
|
|
|
|
st = s;
|
1995-10-17 14:58:41 +03:00
|
|
|
lua_linenumber = 1;
|
1996-02-27 00:00:27 +03:00
|
|
|
lua_parsedfile = luaI_createfixedstring("(string)")->str;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1993-12-17 21:41:19 +03:00
|
|
|
/*
|
|
|
|
** Function to close an opened string
|
|
|
|
*/
|
|
|
|
void lua_closestring (void)
|
|
|
|
{
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1994-11-02 23:29:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Internal function: do a string
|
|
|
|
*/
|
|
|
|
void lua_internaldostring (void)
|
|
|
|
{
|
|
|
|
lua_Object obj = lua_getparam (1);
|
|
|
|
if (lua_isstring(obj) && !lua_dostring(lua_getstring(obj)))
|
|
|
|
lua_pushnumber(1);
|
|
|
|
else
|
|
|
|
lua_pushnil();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Internal function: do a file
|
|
|
|
*/
|
|
|
|
void lua_internaldofile (void)
|
|
|
|
{
|
|
|
|
lua_Object obj = lua_getparam (1);
|
1996-01-26 19:52:47 +03:00
|
|
|
char *fname = NULL;
|
|
|
|
if (lua_isstring(obj))
|
|
|
|
fname = lua_getstring(obj);
|
|
|
|
else if (obj != LUA_NOOBJECT)
|
|
|
|
lua_error("invalid argument to function `dofile'");
|
|
|
|
/* else fname = NULL */
|
|
|
|
if (!lua_dofile(fname))
|
1994-11-02 23:29:39 +03:00
|
|
|
lua_pushnumber(1);
|
|
|
|
else
|
|
|
|
lua_pushnil();
|
|
|
|
}
|
|
|
|
|
1996-01-22 20:40:00 +03:00
|
|
|
|
|
|
|
static char *tostring (lua_Object obj)
|
1994-11-02 23:29:39 +03:00
|
|
|
{
|
1996-03-15 16:13:13 +03:00
|
|
|
char *buff = luaI_buffer(20);
|
1996-01-22 20:40:00 +03:00
|
|
|
if (lua_isstring(obj))
|
|
|
|
return lua_getstring(obj);
|
|
|
|
if (lua_isnumber(obj))
|
|
|
|
sprintf(buff, "%g", lua_getnumber(obj));
|
|
|
|
else if (lua_isfunction(obj))
|
|
|
|
sprintf(buff, "function: %p", (luaI_Address(obj))->value.tf);
|
|
|
|
else if (lua_iscfunction(obj))
|
|
|
|
sprintf(buff, "cfunction: %p", lua_getcfunction(obj));
|
|
|
|
else if (lua_isuserdata(obj))
|
|
|
|
sprintf(buff, "userdata: %p", lua_getuserdata(obj));
|
|
|
|
else if (lua_istable(obj))
|
|
|
|
sprintf(buff, "table: %p", avalue(luaI_Address(obj)));
|
|
|
|
else if (lua_isnil(obj))
|
|
|
|
sprintf(buff, "nil");
|
|
|
|
else buff[0] = 0;
|
|
|
|
return buff;
|
1994-11-02 23:29:39 +03:00
|
|
|
}
|
1994-11-04 01:34:29 +03:00
|
|
|
|
1996-01-22 20:40:00 +03:00
|
|
|
void luaI_tostring (void)
|
|
|
|
{
|
|
|
|
lua_pushstring(tostring(lua_getparam(1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void luaI_print (void)
|
|
|
|
{
|
|
|
|
int i = 1;
|
|
|
|
lua_Object obj;
|
|
|
|
while ((obj = lua_getparam(i++)) != LUA_NOOBJECT)
|
|
|
|
printf("%s\n", tostring(obj));
|
|
|
|
}
|
1994-11-04 01:34:29 +03:00
|
|
|
|
1994-11-02 23:29:39 +03:00
|
|
|
/*
|
|
|
|
** Internal function: return an object type.
|
|
|
|
*/
|
1994-11-04 01:34:29 +03:00
|
|
|
void luaI_type (void)
|
1994-11-02 23:29:39 +03:00
|
|
|
{
|
1994-11-07 19:34:44 +03:00
|
|
|
lua_Object o = lua_getparam(1);
|
1995-03-17 23:42:20 +03:00
|
|
|
int t;
|
1994-12-16 18:55:04 +03:00
|
|
|
if (o == LUA_NOOBJECT)
|
1994-11-04 01:34:29 +03:00
|
|
|
lua_error("no parameter to function 'type'");
|
1995-03-17 23:42:20 +03:00
|
|
|
t = lua_type(o);
|
|
|
|
switch (t)
|
1994-11-02 23:29:39 +03:00
|
|
|
{
|
|
|
|
case LUA_T_NIL :
|
1994-12-13 18:54:21 +03:00
|
|
|
lua_pushliteral("nil");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
case LUA_T_NUMBER :
|
1994-12-13 18:54:21 +03:00
|
|
|
lua_pushliteral("number");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
case LUA_T_STRING :
|
1994-12-13 18:54:21 +03:00
|
|
|
lua_pushliteral("string");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
case LUA_T_ARRAY :
|
1994-12-13 18:54:21 +03:00
|
|
|
lua_pushliteral("table");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
case LUA_T_FUNCTION :
|
|
|
|
case LUA_T_CFUNCTION :
|
1995-10-09 16:06:20 +03:00
|
|
|
lua_pushliteral("function");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
default :
|
1994-12-13 18:54:21 +03:00
|
|
|
lua_pushliteral("userdata");
|
1994-11-02 23:29:39 +03:00
|
|
|
break;
|
|
|
|
}
|
1995-03-17 23:42:20 +03:00
|
|
|
lua_pushnumber(t);
|
1994-11-02 23:29:39 +03:00
|
|
|
}
|
|
|
|
|
1994-11-04 01:34:29 +03:00
|
|
|
/*
|
|
|
|
** Internal function: convert an object to a number
|
|
|
|
*/
|
|
|
|
void lua_obj2number (void)
|
|
|
|
{
|
|
|
|
lua_Object o = lua_getparam(1);
|
|
|
|
if (lua_isnumber(o))
|
|
|
|
lua_pushobject(o);
|
|
|
|
else if (lua_isstring(o))
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
float f;
|
|
|
|
if (sscanf(lua_getstring(o),"%f %c",&f,&c) == 1)
|
|
|
|
lua_pushnumber(f);
|
|
|
|
else
|
|
|
|
lua_pushnil();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lua_pushnil();
|
|
|
|
}
|
|
|
|
|
1994-11-08 23:06:15 +03:00
|
|
|
|
|
|
|
void luaI_error (void)
|
|
|
|
{
|
|
|
|
char *s = lua_getstring(lua_getparam(1));
|
|
|
|
if (s == NULL) s = "(no message)";
|
1995-05-02 22:43:03 +04:00
|
|
|
lua_error(s);
|
1994-11-08 23:06:15 +03:00
|
|
|
}
|
|
|
|
|
1996-01-26 17:05:28 +03:00
|
|
|
void luaI_assert (void)
|
|
|
|
{
|
|
|
|
lua_Object p = lua_getparam(1);
|
|
|
|
if (p == LUA_NOOBJECT || lua_isnil(p))
|
|
|
|
lua_error("assertion failed!");
|
|
|
|
}
|
|
|
|
|
|
|
|
void luaI_setglobal (void)
|
|
|
|
{
|
|
|
|
lua_Object name = lua_getparam(1);
|
|
|
|
lua_Object value = lua_getparam(2);
|
|
|
|
if (!lua_isstring(name))
|
|
|
|
lua_error("incorrect argument to function `setglobal'");
|
|
|
|
lua_pushobject(value);
|
|
|
|
lua_storeglobal(lua_getstring(name));
|
|
|
|
lua_pushobject(value); /* return given value */
|
|
|
|
}
|
|
|
|
|
|
|
|
void luaI_getglobal (void)
|
|
|
|
{
|
|
|
|
lua_Object name = lua_getparam(1);
|
|
|
|
if (!lua_isstring(name))
|
|
|
|
lua_error("incorrect argument to function `getglobal'");
|
|
|
|
lua_pushobject(lua_getglobal(lua_getstring(name)));
|
|
|
|
}
|