]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/common/c_types.h
Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenu
[dragonfireclient.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 LuaError : public std::exception
54 {
55 public:
56         LuaError(lua_State *L, const std::string &s);
57
58         virtual ~LuaError() throw()
59         {}
60         virtual const char * what() const throw()
61         {
62                 return m_s.c_str();
63         }
64         std::string m_s;
65 };
66
67
68 extern EnumString es_ItemType[];
69
70 #endif /* C_TYPES_H_ */