]> git.lizzy.rs Git - minetest.git/blob - src/script/common/c_types.h
7df869432553df24781e7e0476451c114a24ccc8
[minetest.git] / src / script / common / c_types.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 #ifndef C_TYPES_H_
21 #define C_TYPES_H_
22
23 extern "C" {
24 #include "lua.h"
25 }
26
27 #include <iostream>
28
29 struct EnumString
30 {
31         int num;
32         const char *str;
33 };
34
35 class StackUnroller
36 {
37 private:
38         lua_State *m_lua;
39         int m_original_top;
40 public:
41         StackUnroller(lua_State *L):
42                 m_lua(L),
43                 m_original_top(-1)
44         {
45                 m_original_top = lua_gettop(m_lua); // store stack height
46         }
47         ~StackUnroller()
48         {
49                 lua_settop(m_lua, m_original_top); // restore stack height
50         }
51 };
52
53 class ModNameStorer
54 {
55 private:
56         lua_State *L;
57 public:
58         ModNameStorer(lua_State *L_, const std::string modname):
59                 L(L_)
60         {
61                 // Store current modname in registry
62                 lua_pushstring(L, modname.c_str());
63                 lua_setfield(L, LUA_REGISTRYINDEX, "minetest_current_modname");
64         }
65         ~ModNameStorer()
66         {
67                 // Clear current modname in registry
68                 lua_pushnil(L);
69                 lua_setfield(L, LUA_REGISTRYINDEX, "minetest_current_modname");
70         }
71 };
72
73 class LuaError : public std::exception
74 {
75 public:
76         LuaError(lua_State *L, const std::string &s);
77
78         virtual ~LuaError() throw()
79         {}
80         virtual const char * what() const throw()
81         {
82                 return m_s.c_str();
83         }
84         std::string m_s;
85 };
86
87
88 extern EnumString es_ItemType[];
89
90 #endif /* C_TYPES_H_ */