]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_modchannels.h
Add ItemStack:get_description() to get tooltip (#8847)
[dragonfireclient.git] / src / script / lua_api / l_modchannels.h
1 /*
2 Minetest
3 Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
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 "config.h"
24
25 class ModChannel;
26
27 class ModApiChannels : public ModApiBase
28 {
29 private:
30         // mod_channel_join(name)
31         static int l_mod_channel_join(lua_State *L);
32
33 public:
34         static void Initialize(lua_State *L, int top);
35 };
36
37 class ModChannelRef : public ModApiBase
38 {
39 public:
40         ModChannelRef(const std::string &modchannel);
41         ~ModChannelRef() = default;
42
43         static void Register(lua_State *L);
44         static void create(lua_State *L, const std::string &channel);
45
46         // leave()
47         static int l_leave(lua_State *L);
48
49         // send(message)
50         static int l_send_all(lua_State *L);
51
52         // is_writeable()
53         static int l_is_writeable(lua_State *L);
54
55 private:
56         // garbage collector
57         static int gc_object(lua_State *L);
58
59         static ModChannelRef *checkobject(lua_State *L, int narg);
60         static ModChannel *getobject(lua_State *L, ModChannelRef *ref);
61
62         std::string m_modchannel_name;
63
64         static const char className[];
65         static const luaL_Reg methods[];
66 };