[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> |
---|
[1959] | 42 | extern "C" { |
---|
[2710] | 43 | #include <lua.h> |
---|
[1959] | 44 | } |
---|
| 45 | |
---|
[2710] | 46 | // tolua_begin |
---|
| 47 | namespace orxonox |
---|
| 48 | { |
---|
[1959] | 49 | class _CoreExport LuaBind |
---|
| 50 | { |
---|
[2710] | 51 | |
---|
| 52 | // tolua_end |
---|
[1959] | 53 | struct LoadS { |
---|
| 54 | const char *s; |
---|
| 55 | size_t size; |
---|
| 56 | }; |
---|
| 57 | |
---|
| 58 | public: |
---|
[2662] | 59 | LuaBind(); |
---|
| 60 | inline ~LuaBind() { assert(singletonRef_s); LuaBind::singletonRef_s = NULL; }; |
---|
[1959] | 61 | |
---|
[2662] | 62 | inline static LuaBind& getInstance() { assert(singletonRef_s); return *LuaBind::singletonRef_s; } // tolua_export |
---|
| 63 | |
---|
[3196] | 64 | void loadFile(const std::string& filename, bool luaTags); |
---|
| 65 | void loadString(const std::string& code); |
---|
[1959] | 66 | //void init(lua_State *state_); |
---|
| 67 | //void xmlToLua(); |
---|
| 68 | void run(); |
---|
[3196] | 69 | void luaPrint(const std::string& str); // tolua_export |
---|
[1959] | 70 | |
---|
| 71 | #if LUA_VERSION_NUM != 501 |
---|
| 72 | static const char * lua_Chunkreader(lua_State *L, void *data, size_t *size); |
---|
| 73 | #endif |
---|
| 74 | |
---|
| 75 | inline lua_State* getLuaState() { return luaState_; }; |
---|
[3196] | 76 | inline const std::string& getLuaOutput() { return output_; }; |
---|
[1959] | 77 | //inline std::string* getFileString() { return &fileString_; }; |
---|
| 78 | inline void clearLuaOutput() { output_ = ""; } |
---|
| 79 | |
---|
| 80 | std::string replaceLuaTags(const std::string& text); // tolua_export |
---|
| 81 | |
---|
[2026] | 82 | inline void setIncludePath(const std::string& includepath) |
---|
| 83 | { this->includePath_ = includepath; } |
---|
| 84 | |
---|
[1959] | 85 | private: |
---|
[2662] | 86 | static LuaBind* singletonRef_s; |
---|
[1959] | 87 | |
---|
| 88 | std::string luaSource_; |
---|
| 89 | std::string output_; |
---|
| 90 | lua_State* luaState_; |
---|
| 91 | bool isRunning_; |
---|
[2026] | 92 | std::string includePath_; |
---|
[1959] | 93 | |
---|
| 94 | }; // tolua_export |
---|
| 95 | } // tolua_export |
---|
| 96 | #endif /* _LuaBind_H__ */ |
---|