]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_item.h
180975061317225a04929fcc97d271dbbc1b1265
[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         // __tostring metamethod
38         static int mt_tostring(lua_State *L);
39
40         // is_empty(self) -> true/false
41         static int l_is_empty(lua_State *L);
42
43         // get_name(self) -> string
44         static int l_get_name(lua_State *L);
45
46         // set_name(self, name)
47         static int l_set_name(lua_State *L);
48
49         // get_count(self) -> number
50         static int l_get_count(lua_State *L);
51
52         // set_count(self, number)
53         static int l_set_count(lua_State *L);
54
55         // get_wear(self) -> number
56         static int l_get_wear(lua_State *L);
57
58         // set_wear(self, number)
59         static int l_set_wear(lua_State *L);
60
61         // get_meta(self) -> string
62         static int l_get_meta(lua_State *L);
63
64         // DEPRECATED
65         // get_metadata(self) -> string
66         static int l_get_metadata(lua_State *L);
67
68         // DEPRECATED
69         // set_metadata(self, string)
70         static int l_set_metadata(lua_State *L);
71
72         // get_description(self)
73         static int l_get_description(lua_State *L);
74
75         // get_short_description(self)
76         static int l_get_short_description(lua_State *L);
77
78         // clear(self) -> true
79         static int l_clear(lua_State *L);
80
81         // replace(self, itemstack or itemstring or table or nil) -> true
82         static int l_replace(lua_State *L);
83
84         // to_string(self) -> string
85         static int l_to_string(lua_State *L);
86
87         // to_table(self) -> table or nil
88         static int l_to_table(lua_State *L);
89
90         // get_stack_max(self) -> number
91         static int l_get_stack_max(lua_State *L);
92
93         // get_free_space(self) -> number
94         static int l_get_free_space(lua_State *L);
95
96         // is_known(self) -> true/false
97         // Checks if the item is defined.
98         static int l_is_known(lua_State *L);
99
100         // get_definition(self) -> table
101         // Returns the item definition table from core.registered_items,
102         // or a fallback one (name="unknown")
103         static int l_get_definition(lua_State *L);
104
105         // get_tool_capabilities(self) -> table
106         // Returns the effective tool digging properties.
107         // Returns those of the hand ("") if this item has none associated.
108         static int l_get_tool_capabilities(lua_State *L);
109
110         // add_wear(self, amount) -> true/false
111         // The range for "amount" is [0,65535]. Wear is only added if the item
112         // is a tool. Adding wear might destroy the item.
113         // Returns true if the item is (or was) a tool.
114         static int l_add_wear(lua_State *L);
115
116         // add_item(self, itemstack or itemstring or table or nil) -> itemstack
117         // Returns leftover item stack
118         static int l_add_item(lua_State *L);
119
120         // item_fits(self, itemstack or itemstring or table or nil) -> true/false, itemstack
121         // First return value is true iff the new item fits fully into the stack
122         // Second return value is the would-be-left-over item stack
123         static int l_item_fits(lua_State *L);
124
125         // take_item(self, takecount=1) -> itemstack
126         static int l_take_item(lua_State *L);
127
128         // peek_item(self, peekcount=1) -> itemstack
129         static int l_peek_item(lua_State *L);
130
131 public:
132         LuaItemStack(const ItemStack &item);
133         ~LuaItemStack() = default;
134
135         const ItemStack& getItem() const;
136         ItemStack& getItem();
137
138         // LuaItemStack(itemstack or itemstring or table or nil)
139         // Creates an LuaItemStack and leaves it on top of stack
140         static int create_object(lua_State *L);
141         // Not callable from Lua
142         static int create(lua_State *L, const ItemStack &item);
143         static LuaItemStack* checkobject(lua_State *L, int narg);
144
145         static void *packIn(lua_State *L, int idx);
146         static void packOut(lua_State *L, void *ptr);
147
148         static void Register(lua_State *L);
149 };
150
151 class ModApiItemMod : public ModApiBase {
152 private:
153         static int l_register_item_raw(lua_State *L);
154         static int l_unregister_item_raw(lua_State *L);
155         static int l_register_alias_raw(lua_State *L);
156         static int l_get_content_id(lua_State *L);
157         static int l_get_name_from_content_id(lua_State *L);
158
159 public:
160         static void Initialize(lua_State *L, int top);
161         static void InitializeAsync(lua_State *L, int top);
162 };