[1959] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Benjamin Knecht |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file |
---|
| 31 | @brief Representation of an interface to lua |
---|
| 32 | @author Benjamin Knecht <beni_at_orxonox.net> |
---|
| 33 | */ |
---|
| 34 | |
---|
| 35 | #ifndef _LuaBind_H__ |
---|
| 36 | #define _LuaBind_H__ |
---|
| 37 | |
---|
| 38 | #include "CorePrereqs.h" |
---|
| 39 | |
---|
[3196] | 40 | #include <cassert> |
---|
| 41 | #include <string> |
---|
[3370] | 42 | #include <vector> |
---|
[1959] | 43 | extern "C" { |
---|
[2710] | 44 | #include <lua.h> |
---|
[1959] | 45 | } |
---|
| 46 | |
---|
[3370] | 47 | #include "util/Singleton.h" |
---|
| 48 | |
---|
[2710] | 49 | // tolua_begin |
---|
| 50 | namespace orxonox |
---|
| 51 | { |
---|
[3370] | 52 | class _CoreExport LuaBind : public Singleton<LuaBind> |
---|
[1959] | 53 | { |
---|
[3370] | 54 | // tolua_end |
---|
| 55 | friend class Singleton<LuaBind>; |
---|
[2710] | 56 | |
---|
[1959] | 57 | struct LoadS { |
---|
| 58 | const char *s; |
---|
| 59 | size_t size; |
---|
| 60 | }; |
---|
| 61 | |
---|
| 62 | public: |
---|
[2662] | 63 | LuaBind(); |
---|
[3370] | 64 | ~LuaBind(); |
---|
[1959] | 65 | |
---|
[3370] | 66 | static LuaBind& getInstance() { return Singleton<LuaBind>::getInstance(); } // tolua_export |
---|
[2662] | 67 | |
---|
[3196] | 68 | void loadFile(const std::string& filename, bool luaTags); |
---|
| 69 | void loadString(const std::string& code); |
---|
[1959] | 70 | //void init(lua_State *state_); |
---|
| 71 | //void xmlToLua(); |
---|
| 72 | void run(); |
---|
[3196] | 73 | void luaPrint(const std::string& str); // tolua_export |
---|
[1959] | 74 | |
---|
| 75 | #if LUA_VERSION_NUM != 501 |
---|
| 76 | static const char * lua_Chunkreader(lua_State *L, void *data, size_t *size); |
---|
| 77 | #endif |
---|
| 78 | |
---|
| 79 | inline lua_State* getLuaState() { return luaState_; }; |
---|
[3196] | 80 | inline const std::string& getLuaOutput() { return output_; }; |
---|
[1959] | 81 | //inline std::string* getFileString() { return &fileString_; }; |
---|
| 82 | inline void clearLuaOutput() { output_ = ""; } |
---|
| 83 | |
---|
| 84 | std::string replaceLuaTags(const std::string& text); // tolua_export |
---|
| 85 | |
---|
[2026] | 86 | inline void setIncludePath(const std::string& includepath) |
---|
| 87 | { this->includePath_ = includepath; } |
---|
| 88 | |
---|
[3370] | 89 | void addToluaInterface(int (*function)(lua_State*), const std::string& name); |
---|
| 90 | void openToluaInterfaces(lua_State* state); |
---|
| 91 | void closeToluaInterfaces(lua_State* state); |
---|
| 92 | |
---|
[1959] | 93 | private: |
---|
[3370] | 94 | static LuaBind* singletonPtr_s; |
---|
[1959] | 95 | |
---|
| 96 | std::string luaSource_; |
---|
| 97 | std::string output_; |
---|
| 98 | lua_State* luaState_; |
---|
| 99 | bool isRunning_; |
---|
[2026] | 100 | std::string includePath_; |
---|
[3370] | 101 | std::vector<std::pair<std::string, int (*)(lua_State *L)> > toluaInterfaces_; |
---|
[1959] | 102 | |
---|
| 103 | }; // tolua_export |
---|
| 104 | } // tolua_export |
---|
| 105 | #endif /* _LuaBind_H__ */ |
---|