]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_metadata.h
Derive NodeMetaRef from MetaDataRef
[dragonfireclient.git] / src / script / lua_api / l_metadata.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 #ifndef L_METADATA_H_
20 #define L_METADATA_H_
21
22 #include "lua_api/l_base.h"
23 #include "irrlichttypes_bloated.h"
24
25 class Metadata;
26
27 /*
28         NodeMetaRef
29 */
30
31 class MetaDataRef : public ModApiBase {
32 public:
33         virtual ~MetaDataRef() {}
34 protected:
35         static MetaDataRef *checkobject(lua_State *L, int narg);
36
37         virtual void reportMetadataChange() {}
38         virtual Metadata* getmeta(bool auto_create) = 0;
39         virtual void clearMeta() = 0;
40
41         virtual void handleToTable(lua_State *L, Metadata *meta);
42         virtual bool handleFromTable(lua_State *L, int table, Metadata *meta);
43
44         // Exported functions
45
46         // get_string(self, name)
47         static int l_get_string(lua_State *L);
48
49         // set_string(self, name, var)
50         static int l_set_string(lua_State *L);
51
52         // get_int(self, name)
53         static int l_get_int(lua_State *L);
54
55         // set_int(self, name, var)
56         static int l_set_int(lua_State *L);
57
58         // get_float(self, name)
59         static int l_get_float(lua_State *L);
60
61         // set_float(self, name, var)
62         static int l_set_float(lua_State *L);
63
64         // to_table(self)
65         static int l_to_table(lua_State *L);
66
67         // from_table(self, table)
68         static int l_from_table(lua_State *L);
69 };
70
71 #endif /* L_NODEMETA_H_ */