debbcd09b521a35aef166799dd14667441db188d
[oweals/minetest.git] / src / script / lua_api / l_base.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 L_BASE_H_
21 #define L_BASE_H_
22
23 #include "common/c_types.h"
24 #include "common/c_internal.h"
25
26 extern "C" {
27 #include <lua.h>
28 #include <lauxlib.h>
29 }
30
31 class ScriptApiBase;
32 class Server;
33 class Environment;
34 class GUIEngine;
35
36 class ModApiBase {
37
38 protected:
39         static ScriptApiBase*   getScriptApiBase(lua_State *L);
40         static Server*          getServer(lua_State *L);
41         static Environment*     getEnv(lua_State *L);
42         static GUIEngine*       getGuiEngine(lua_State *L);
43
44         // Get an arbitrary subclass of ScriptApiBase
45         // by using dynamic_cast<> on getScriptApiBase()
46         template<typename T>
47         static T* getScriptApi(lua_State *L) {
48                 ScriptApiBase *scriptIface = getScriptApiBase(L);
49                 T *scriptIfaceDowncast = dynamic_cast<T*>(scriptIface);
50                 if (!scriptIfaceDowncast) {
51                         throw LuaError("Requested unavailable ScriptApi - core engine bug!");
52                 }
53                 return scriptIfaceDowncast;
54         }
55
56         static bool registerFunction(lua_State *L,
57                         const char* name,
58                         lua_CFunction fct,
59                         int top
60                         );
61 };
62
63 #endif /* L_BASE_H_ */