]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_item.h
Add ItemStack:get_description() to get tooltip (#8847)
[dragonfireclient.git] / src / script / lua_api / l_item.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #pragma once
21
22 #include "lua_api/l_base.h"
23 #include "inventory.h"  // ItemStack
24
25 class LuaItemStack : public ModApiBase {
26 private:
27         ItemStack m_stack;
28
29         static const char className[];
30         static const luaL_Reg methods[];
31
32         // Exported functions
33
34         // garbage collector
35         static int gc_object(lua_State *L);
36
37         // is_empty(self) -> true/false
38         static int l_is_empty(lua_State *L);
39
40         // get_name(self) -> string
41         static int l_get_name(lua_State *L);
42
43         // set_name(self, name)
44         static int l_set_name(lua_State *L);
45
46         // get_count(self) -> number
47         static int l_get_count(lua_State *L);
48
49         // set_count(self, number)
50         static int l_set_count(lua_State *L);
51
52         // get_wear(self) -> number
53         static int l_get_wear(lua_State *L);
54
55         // set_wear(self, number)
56         static int l_set_wear(lua_State *L);
57
58         // get_meta(self) -> string
59         static int l_get_meta(lua_State *L);
60
61         // DEPRECATED
62         // get_metadata(self) -> string
63         static int l_get_metadata(lua_State *L);
64
65         // DEPRECATED
66         // set_metadata(self, string)
67         static int l_set_metadata(lua_State *L);
68
69         // get_description(self)
70         static int l_get_description(lua_State *L);
71
72         // clear(self) -> true
73         static int l_clear(lua_State *L);
74
75         // replace(self, itemstack or itemstring or table or nil) -> true
76         static int l_replace(lua_State *L);
77
78         // to_string(self) -> string
79         static int l_to_string(lua_State *L);
80
81         // to_table(self) -> table or nil
82         static int l_to_table(lua_State *L);
83
84         // get_stack_max(self) -> number
85         static int l_get_stack_max(lua_State *L);
86
87         // get_free_space(self) -> number
88         static int l_get_free_space(lua_State *L);
89
90         // is_known(self) -> true/false
91         // Checks if the item is defined.
92         static int l_is_known(lua_State *L);
93
94         // get_definition(self) -> table
95         // Returns the item definition table from core.registered_items,
96         // or a fallback one (name="unknown")
97         static int l_get_definition(lua_State *L);
98
99         // get_tool_capabilities(self) -> table
100         // Returns the effective tool digging properties.
101         // Returns those of the hand ("") if this item has none associated.
102         static int l_get_tool_capabilities(lua_State *L);
103
104         // add_wear(self, amount) -> true/false
105         // The range for "amount" is [0,65535]. Wear is only added if the item
106         // is a tool. Adding wear might destroy the item.
107         // Returns true if the item is (or was) a tool.
108         static int l_add_wear(lua_State *L);
109
110         // add_item(self, itemstack or itemstring or table or nil) -> itemstack
111         // Returns leftover item stack
112         static int l_add_item(lua_State *L);
113
114         // item_fits(self, itemstack or itemstring or table or nil) -> true/false, itemstack
115         // First return value is true iff the new item fits fully into the stack
116         // Second return value is the would-be-left-over item stack
117         static int l_item_fits(lua_State *L);
118
119         // take_item(self, takecount=1) -> itemstack
120         static int l_take_item(lua_State *L);
121
122         // peek_item(self, peekcount=1) -> itemstack
123         static int l_peek_item(lua_State *L);
124
125 public:
126         LuaItemStack(const ItemStack &item);
127         ~LuaItemStack() = default;
128
129         const ItemStack& getItem() const;
130         ItemStack& getItem();
131
132         // LuaItemStack(itemstack or itemstring or table or nil)
133         // Creates an LuaItemStack and leaves it on top of stack
134         static int create_object(lua_State *L);
135         // Not callable from Lua
136         static int create(lua_State *L, const ItemStack &item);
137         static LuaItemStack* checkobject(lua_State *L, int narg);
138         static void Register(lua_State *L);
139
140 };
141
142 class ModApiItemMod : public ModApiBase {
143 private:
144         static int l_register_item_raw(lua_State *L);
145         static int l_unregister_item_raw(lua_State *L);
146         static int l_register_alias_raw(lua_State *L);
147         static int l_get_content_id(lua_State *L);
148         static int l_get_name_from_content_id(lua_State *L);
149 public:
150         static void Initialize(lua_State *L, int top);
151 };