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