2013-05-25 00:51:02 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cpp_api/s_item.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "cpp_api/s_internal.h"
|
2013-05-25 00:51:02 +02:00
|
|
|
#include "common/c_converter.h"
|
|
|
|
#include "common/c_content.h"
|
|
|
|
#include "lua_api/l_item.h"
|
2013-10-26 11:25:28 +02:00
|
|
|
#include "lua_api/l_inventory.h"
|
2013-05-25 00:51:02 +02:00
|
|
|
#include "server.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "log.h"
|
|
|
|
#include "util/pointedthing.h"
|
2013-10-26 11:25:28 +02:00
|
|
|
#include "inventory.h"
|
|
|
|
#include "inventorymanager.h"
|
2013-05-25 00:51:02 +02:00
|
|
|
|
|
|
|
bool ScriptApiItem::item_OnDrop(ItemStack &item,
|
|
|
|
ServerActiveObject *dropper, v3f pos)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
|
|
|
// Push callback function on stack
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!getItemCallback(item.name.c_str(), "on_drop"))
|
2013-05-25 00:51:02 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Call function
|
|
|
|
LuaItemStack::create(L, item);
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, dropper);
|
2013-05-25 00:51:02 +02:00
|
|
|
pushFloatPos(L, pos);
|
2014-04-15 19:30:46 +02:00
|
|
|
if (lua_pcall(L, 3, 1, m_errorhandler))
|
2013-11-05 18:06:15 +01:00
|
|
|
scriptError();
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!lua_isnil(L, -1)) {
|
2014-03-15 22:20:52 +01:00
|
|
|
try {
|
|
|
|
item = read_item(L,-1, getServer());
|
|
|
|
} catch (LuaError &e) {
|
|
|
|
throw LuaError(std::string(e.what()) + ". item=" + item.name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 19:30:46 +02:00
|
|
|
lua_pop(L, 1); // Pop item
|
2013-05-25 00:51:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptApiItem::item_OnPlace(ItemStack &item,
|
|
|
|
ServerActiveObject *placer, const PointedThing &pointed)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
|
|
|
// Push callback function on stack
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!getItemCallback(item.name.c_str(), "on_place"))
|
2013-05-25 00:51:02 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Call function
|
|
|
|
LuaItemStack::create(L, item);
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, placer);
|
2013-05-25 00:51:02 +02:00
|
|
|
pushPointedThing(pointed);
|
2014-04-15 19:30:46 +02:00
|
|
|
if (lua_pcall(L, 3, 1, m_errorhandler))
|
2013-11-05 18:06:15 +01:00
|
|
|
scriptError();
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!lua_isnil(L, -1)) {
|
2014-03-15 22:20:52 +01:00
|
|
|
try {
|
|
|
|
item = read_item(L,-1, getServer());
|
|
|
|
} catch (LuaError &e) {
|
|
|
|
throw LuaError(std::string(e.what()) + ". item=" + item.name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 19:30:46 +02:00
|
|
|
lua_pop(L, 1); // Pop item
|
2013-05-25 00:51:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptApiItem::item_OnUse(ItemStack &item,
|
|
|
|
ServerActiveObject *user, const PointedThing &pointed)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
|
|
|
// Push callback function on stack
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!getItemCallback(item.name.c_str(), "on_use"))
|
2013-05-25 00:51:02 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Call function
|
|
|
|
LuaItemStack::create(L, item);
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, user);
|
2013-05-25 00:51:02 +02:00
|
|
|
pushPointedThing(pointed);
|
2014-04-15 19:30:46 +02:00
|
|
|
if (lua_pcall(L, 3, 1, m_errorhandler))
|
2013-11-05 18:06:15 +01:00
|
|
|
scriptError();
|
2014-03-15 22:20:52 +01:00
|
|
|
if(!lua_isnil(L, -1)) {
|
|
|
|
try {
|
|
|
|
item = read_item(L,-1, getServer());
|
|
|
|
} catch (LuaError &e) {
|
|
|
|
throw LuaError(std::string(e.what()) + ". item=" + item.name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 19:30:46 +02:00
|
|
|
lua_pop(L, 1); // Pop item
|
2013-10-26 11:25:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptApiItem::item_OnCraft(ItemStack &item, ServerActiveObject *user,
|
|
|
|
const InventoryList *old_craft_grid, const InventoryLocation &craft_inv)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
lua_getglobal(L, "core");
|
2013-10-26 11:25:28 +02:00
|
|
|
lua_getfield(L, -1, "on_craft");
|
|
|
|
LuaItemStack::create(L, item);
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, user);
|
2013-10-26 11:25:28 +02:00
|
|
|
|
2014-04-15 19:30:46 +02:00
|
|
|
// Push inventory list
|
2013-10-26 11:25:28 +02:00
|
|
|
std::vector<ItemStack> items;
|
2014-04-15 19:30:46 +02:00
|
|
|
for (u32 i = 0; i < old_craft_grid->getSize(); i++) {
|
2013-10-26 11:25:28 +02:00
|
|
|
items.push_back(old_craft_grid->getItem(i));
|
2014-04-15 19:30:46 +02:00
|
|
|
}
|
2013-10-26 11:25:28 +02:00
|
|
|
push_items(L, items);
|
|
|
|
|
|
|
|
InvRef::create(L, craft_inv);
|
2014-04-15 19:30:46 +02:00
|
|
|
if (lua_pcall(L, 4, 1, m_errorhandler))
|
2013-11-05 18:06:15 +01:00
|
|
|
scriptError();
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!lua_isnil(L, -1)) {
|
2014-03-15 22:20:52 +01:00
|
|
|
try {
|
|
|
|
item = read_item(L,-1, getServer());
|
|
|
|
} catch (LuaError &e) {
|
|
|
|
throw LuaError(std::string(e.what()) + ". item=" + item.name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 19:30:46 +02:00
|
|
|
lua_pop(L, 1); // Pop item
|
2013-10-26 11:25:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptApiItem::item_CraftPredict(ItemStack &item, ServerActiveObject *user,
|
|
|
|
const InventoryList *old_craft_grid, const InventoryLocation &craft_inv)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
lua_getglobal(L, "core");
|
2013-10-26 11:25:28 +02:00
|
|
|
lua_getfield(L, -1, "craft_predict");
|
|
|
|
LuaItemStack::create(L, item);
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, user);
|
2013-11-05 18:06:15 +01:00
|
|
|
|
2013-10-26 11:25:28 +02:00
|
|
|
//Push inventory list
|
|
|
|
std::vector<ItemStack> items;
|
2014-04-15 19:30:46 +02:00
|
|
|
for (u32 i = 0; i < old_craft_grid->getSize(); i++) {
|
2013-10-26 11:25:28 +02:00
|
|
|
items.push_back(old_craft_grid->getItem(i));
|
2014-04-15 19:30:46 +02:00
|
|
|
}
|
2013-10-26 11:25:28 +02:00
|
|
|
push_items(L, items);
|
|
|
|
|
|
|
|
InvRef::create(L, craft_inv);
|
2014-04-15 19:30:46 +02:00
|
|
|
if (lua_pcall(L, 4, 1, m_errorhandler))
|
2013-11-05 18:06:15 +01:00
|
|
|
scriptError();
|
2014-04-15 19:30:46 +02:00
|
|
|
if (!lua_isnil(L, -1)) {
|
2014-03-15 22:20:52 +01:00
|
|
|
try {
|
|
|
|
item = read_item(L,-1, getServer());
|
|
|
|
} catch (LuaError &e) {
|
|
|
|
throw LuaError(std::string(e.what()) + ". item=" + item.name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 19:30:46 +02:00
|
|
|
lua_pop(L, 1); // Pop item
|
2013-05-25 00:51:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Retrieves core.registered_items[name][callbackname]
|
2013-05-25 00:51:02 +02:00
|
|
|
// If that is nil or on error, return false and stack is unchanged
|
|
|
|
// If that is a function, returns true and pushes the
|
|
|
|
// function onto the stack
|
2014-04-28 03:02:48 +02:00
|
|
|
// If core.registered_items[name] doesn't exist, core.nodedef_default
|
2013-05-25 00:51:02 +02:00
|
|
|
// is tried instead so unknown items can still be manipulated to some degree
|
|
|
|
bool ScriptApiItem::getItemCallback(const char *name, const char *callbackname)
|
|
|
|
{
|
|
|
|
lua_State* L = getStack();
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_items");
|
2014-04-28 03:02:48 +02:00
|
|
|
lua_remove(L, -2); // Remove core
|
2013-05-25 00:51:02 +02:00
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
lua_getfield(L, -1, name);
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_remove(L, -2); // Remove registered_items
|
2013-05-25 00:51:02 +02:00
|
|
|
// Should be a table
|
|
|
|
if(lua_type(L, -1) != LUA_TTABLE)
|
|
|
|
{
|
|
|
|
// Report error and clean up
|
2013-11-05 18:06:15 +01:00
|
|
|
errorstream << "Item \"" << name << "\" not defined" << std::endl;
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Try core.nodedef_default instead
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "nodedef_default");
|
|
|
|
lua_remove(L, -2);
|
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
}
|
|
|
|
lua_getfield(L, -1, callbackname);
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_remove(L, -2); // Remove item def
|
2013-05-25 00:51:02 +02:00
|
|
|
// Should be a function or nil
|
2013-11-05 18:06:15 +01:00
|
|
|
if (lua_type(L, -1) == LUA_TFUNCTION) {
|
2013-05-25 00:51:02 +02:00
|
|
|
return true;
|
2013-11-05 18:06:15 +01:00
|
|
|
} else if (!lua_isnil(L, -1)) {
|
|
|
|
errorstream << "Item \"" << name << "\" callback \""
|
|
|
|
<< callbackname << "\" is not a function" << std::endl;
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_pop(L, 1);
|
|
|
|
return false;
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptApiItem::pushPointedThing(const PointedThing& pointed)
|
|
|
|
{
|
|
|
|
lua_State* L = getStack();
|
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
if(pointed.type == POINTEDTHING_NODE)
|
|
|
|
{
|
|
|
|
lua_pushstring(L, "node");
|
|
|
|
lua_setfield(L, -2, "type");
|
|
|
|
push_v3s16(L, pointed.node_undersurface);
|
|
|
|
lua_setfield(L, -2, "under");
|
|
|
|
push_v3s16(L, pointed.node_abovesurface);
|
|
|
|
lua_setfield(L, -2, "above");
|
|
|
|
}
|
|
|
|
else if(pointed.type == POINTEDTHING_OBJECT)
|
|
|
|
{
|
|
|
|
lua_pushstring(L, "object");
|
|
|
|
lua_setfield(L, -2, "type");
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGet(L, pointed.object_id);
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_setfield(L, -2, "ref");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lua_pushstring(L, "nothing");
|
|
|
|
lua_setfield(L, -2, "type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|