summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-12-06 18:07:13 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-01-02 02:59:14 +0200
commit6be5441176a14137b92f03d9d519234ebee28f6c (patch)
treebb281360731cc26ad38abc4183308f9f4f041767 /src
parentd5ba7ebaf0683560cc93b650c5b9499fbcdacff7 (diff)
downloadminetest-6be5441176a14137b92f03d9d519234ebee28f6c.tar.gz
minetest-6be5441176a14137b92f03d9d519234ebee28f6c.tar.bz2
minetest-6be5441176a14137b92f03d9d519234ebee28f6c.zip
Working implementation of experimental:luafurnace
Diffstat (limited to 'src')
-rw-r--r--src/scriptapi.cpp59
1 files changed, 54 insertions, 5 deletions
diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp
index 2efb8203d..c6a44c914 100644
--- a/src/scriptapi.cpp
+++ b/src/scriptapi.cpp
@@ -609,7 +609,7 @@ static void push_stack_item(lua_State *L, InventoryItem *item0)
else if(std::string("MaterialItem") == item0->getName()){
MaterialItem *item = (MaterialItem*)item0;
lua_newtable(L);
- lua_pushstring(L, "NodeItem");
+ lua_pushstring(L, "node");
lua_setfield(L, -2, "type");
lua_pushstring(L, item->getNodeName().c_str());
lua_setfield(L, -2, "name");
@@ -617,7 +617,7 @@ static void push_stack_item(lua_State *L, InventoryItem *item0)
else if(std::string("CraftItem") == item0->getName()){
CraftItem *item = (CraftItem*)item0;
lua_newtable(L);
- lua_pushstring(L, "CraftItem");
+ lua_pushstring(L, "craft");
lua_setfield(L, -2, "type");
lua_pushstring(L, item->getSubName().c_str());
lua_setfield(L, -2, "name");
@@ -625,7 +625,7 @@ static void push_stack_item(lua_State *L, InventoryItem *item0)
else if(std::string("ToolItem") == item0->getName()){
ToolItem *item = (ToolItem*)item0;
lua_newtable(L);
- lua_pushstring(L, "ToolItem");
+ lua_pushstring(L, "tool");
lua_setfield(L, -2, "type");
lua_pushstring(L, item->getToolName().c_str());
lua_setfield(L, -2, "name");
@@ -1093,7 +1093,7 @@ private:
{
InvRef *ref = checkobject(L, 1);
const char *listname = luaL_checkstring(L, 2);
- int i = luaL_checknumber(L, 3);
+ int i = luaL_checknumber(L, 3) - 1;
InventoryItem *item = getitem(L, ref, listname, i);
if(!item){
ItemStack::create(L, NULL);
@@ -1108,7 +1108,7 @@ private:
{
InvRef *ref = checkobject(L, 1);
const char *listname = luaL_checkstring(L, 2);
- int i = luaL_checknumber(L, 3);
+ int i = luaL_checknumber(L, 3) - 1;
ItemStack *stack = ItemStack::checkobject(L, 4);
InventoryList *list = getlist(L, ref, listname);
if(!list){
@@ -1151,6 +1151,53 @@ private:
return 0;
}
+ // autoinsert_stack(self, listname, stack)
+ static int l_autoinsert_stack(lua_State *L)
+ {
+ InvRef *ref = checkobject(L, 1);
+ const char *listname = luaL_checkstring(L, 2);
+ ItemStack *stack = ItemStack::checkobject(L, 3);
+ InventoryList *list = getlist(L, ref, listname);
+ if(!list){
+ lua_pushboolean(L, false);
+ return 1;
+ }
+ InventoryItem *item = stack->getItemCopy();
+ if(list->roomForItem(item)){
+ delete list->addItem(item);
+ lua_pushboolean(L, true);
+ reportInventoryChange(L, ref);
+ } else {
+ delete item;
+ lua_pushboolean(L, false);
+ }
+ return 1;
+ }
+
+ // autoinsert_stackstring(self, listname, stackstring)
+ static int l_autoinsert_stackstring(lua_State *L)
+ {
+ InvRef *ref = checkobject(L, 1);
+ const char *listname = luaL_checkstring(L, 2);
+ const char *stackstring = luaL_checkstring(L, 3);
+ InventoryList *list = getlist(L, ref, listname);
+ if(!list){
+ lua_pushboolean(L, false);
+ return 1;
+ }
+ InventoryItem *item = InventoryItem::deSerialize(stackstring,
+ get_server(L));
+ if(list->roomForItem(item)){
+ delete list->addItem(item);
+ lua_pushboolean(L, true);
+ reportInventoryChange(L, ref);
+ } else {
+ delete item;
+ lua_pushboolean(L, false);
+ }
+ return 1;
+ }
+
public:
InvRef(const InventoryLocation &loc):
m_loc(loc)
@@ -1219,6 +1266,8 @@ const luaL_reg InvRef::methods[] = {
method(InvRef, set_stack),
method(InvRef, get_list),
method(InvRef, set_list),
+ method(InvRef, autoinsert_stack),
+ method(InvRef, autoinsert_stackstring),
{0,0}
};