Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/core/LuaBind.h @ 2510

Last change on this file since 2510 was 2510, checked in by rgrieder, 15 years ago

Merged revisions 2279-2401 of the buildsystem branch to buildsystem2.

  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/buildsystem/src/core/Script.hmergedeligible
    /code/branches/questsystem2/src/core/LuaBind.hmergedeligible
    /code/branches/buildsystem/src/core/LuaBind.h1874-2276,​2278-2400
    /code/branches/ceguilua/src/core/LuaBind.h1802-1808
    /code/branches/core3/src/core/LuaBind.h1572-1739
    /code/branches/gcc43/src/core/LuaBind.h1580
    /code/branches/gui/src/core/LuaBind.h1635-1723
    /code/branches/input/src/core/LuaBind.h1629-1636
    /code/branches/objecthierarchy/src/core/LuaBind.h1911-2085,​2100,​2110-2169
    /code/branches/pickups/src/core/LuaBind.h1926-2086
    /code/branches/questsystem/src/core/LuaBind.h1894-2088
    /code/branches/script_trigger/src/core/LuaBind.h1295-1953,​1955
    /code/branches/weapon/src/core/LuaBind.h1925-2094
File size: 2.5 KB
Line 
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
40extern "C" {
41#include <lua.h>
42}
43
44#include <list>
45#include <string>
46
47// tolua_begin
48namespace orxonox
49{
50  class _CoreExport LuaBind
51  {
52
53// tolua_end
54    struct LoadS {
55      const char *s;
56      size_t size;
57    };
58
59    public:
60      inline static LuaBind* getInstance() { if (!LuaBind::singletonRef) LuaBind::singletonRef = new LuaBind(); return LuaBind::singletonRef; } // tolua_export
61      inline ~LuaBind() { LuaBind::singletonRef = NULL; };
62
63    void loadFile(std::string filename, bool luaTags);
64    void loadString(std::string code);
65    //void init(lua_State *state_);
66    //void xmlToLua();
67    void run();
68    void luaPrint(std::string str); // tolua_export
69
70#if LUA_VERSION_NUM != 501
71    static const char * lua_Chunkreader(lua_State *L, void *data, size_t *size);
72#endif
73
74    inline lua_State* getLuaState() { return luaState_; };
75    inline std::string getLuaOutput() { return output_; };
76    //inline std::string* getFileString() { return &fileString_; };
77    inline void clearLuaOutput() { output_ = ""; }
78
79    std::string replaceLuaTags(const std::string& text); // tolua_export
80
81    inline void setIncludePath(const std::string& includepath)
82        { this->includePath_ = includepath; }
83
84    private:
85      LuaBind();
86      static LuaBind* singletonRef;
87
88      std::string luaSource_;
89      std::string output_;
90      lua_State* luaState_;
91      bool isRunning_;
92      std::string includePath_;
93
94  }; // tolua_export
95} // tolua_export
96#endif /* _LuaBind_H__ */
Note: See TracBrowser for help on using the repository browser.