Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/resource/src/core/TclBind.cc @ 3361

Last change on this file since 3361 was 3360, checked in by landauf, 15 years ago
  • bugfix in TclBind: Tcl_Init was only called if the constructor of Tcl::interpreter was called with a library path. The initialization is now moved from cpptcl to TclBind.
  • added a new command: TclThreadManager source <file>. This creates a non-interactive tcl-interpreter which executes a file. This allows for example to run the telnet_server.tcl script without a thread compatible tcl library. Warning: experimental state. A script-exit terminates Orxonox.
  • Several small changes in TclThreadManager
  • Property svn:eol-style set to native
File size: 7.2 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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "TclBind.h"
30
31#include <exception>
32#include <string>
33#include <cpptcl/cpptcl.h>
34
35#include "SpecialConfig.h"
36#include "util/Debug.h"
37#include "util/StringUtils.h"
38#include "CommandExecutor.h"
39#include "ConsoleCommand.h"
40#include "Core.h"
41#include "TclThreadManager.h"
42
43namespace orxonox
44{
45    SetConsoleCommandShortcut(TclBind, tcl);
46    SetConsoleCommandShortcut(TclBind, bgerror);
47
48    TclBind* TclBind::singletonRef_s = 0;
49
50    TclBind::TclBind(const std::string& datapath)
51    {
52        assert(singletonRef_s == 0);
53        singletonRef_s = this;
54        this->interpreter_ = 0;
55        this->bSetTclDataPath_ = false;
56        this->setDataPath(datapath);
57    }
58
59    TclBind::~TclBind()
60    {
61        if (this->interpreter_)
62            delete this->interpreter_;
63        singletonRef_s = 0;
64    }
65
66    void TclBind::setDataPath(const std::string& datapath)
67    {
68        // String has POSIX slashes
69        this->tclDataPath_ = datapath + "tcl" + '/';
70        this->bSetTclDataPath_ = true;
71
72        this->initializeTclInterpreter();
73    }
74
75    void TclBind::initializeTclInterpreter()
76    {
77        if (this->bSetTclDataPath_ && !this->interpreter_)
78        {
79            this->interpreter_ = this->createTclInterpreter();
80
81            this->interpreter_->def("::orxonox::query", TclBind::tcl_query, Tcl::variadic());
82            this->interpreter_->def("::orxonox::crossquery", TclThreadManager::tcl_crossquery, Tcl::variadic());
83            this->interpreter_->def("execute", TclBind::tcl_execute, Tcl::variadic());
84            this->interpreter_->def("::orxonox::crossexecute", TclThreadManager::tcl_crossexecute, Tcl::variadic());
85
86            try
87            {
88                this->interpreter_->eval("proc query        {args}    { ::orxonox::query $args }");
89                this->interpreter_->eval("proc crossquery   {id args} { ::orxonox::crossquery 0 $id $args }");
90                this->interpreter_->eval("proc crossexecute {id args} { ::orxonox::crossquery 0 $id $args }");
91                this->interpreter_->eval("proc running      {}        { return 1 }");
92                this->interpreter_->eval("set id 0");
93                this->interpreter_->eval("rename exit ::tcl::exit; proc exit {} { execute exit }");
94            }
95            catch (Tcl::tcl_error const &e)
96            {   COUT(1) << "Tcl error while creating Tcl-interpreter: " << e.what() << std::endl;   }
97            catch (std::exception const &e)
98            {   COUT(1) << "Error while creating Tcl-interpreter: " << e.what() << std::endl;   }
99            catch (...)
100            {   COUT(1) << "Error while creating Tcl-interpreter." << std::endl;   }
101        }
102    }
103
104    Tcl::interpreter* TclBind::createTclInterpreter()
105    {
106        Tcl::interpreter* interpreter = new Tcl::interpreter();
107        std::string libpath = TclBind::getTclLibraryPath();
108
109        try
110        {
111            if (libpath != "")
112                interpreter->eval("set tcl_library \"" + libpath + "\"");
113
114            Tcl_Init(interpreter->get());
115
116            interpreter->eval("source \"" + TclBind::getInstance().tclDataPath_ + "/init.tcl\"");
117        }
118        catch (Tcl::tcl_error const &e)
119        {   COUT(1) << "Tcl error while creating Tcl-interpreter: " << e.what() << std::endl; COUT(1) << "Error: Tcl isn't properly initialized. Orxonox might possibly not work like that." << std::endl;   }
120        catch (std::exception const &e)
121        {   COUT(1) << "Error while creating Tcl-interpreter: " << e.what() << std::endl; COUT(1) << "Error: Tcl isn't properly initialized. Orxonox might possibly not work like that." << std::endl;   }
122        catch (...)
123        {   COUT(1) << "Error while creating Tcl-interpreter." << std::endl; COUT(1) << "Error: Tcl isn't properly initialized. Orxonox might possibly not work like that." << std::endl;   }
124
125        return interpreter;
126    }
127
128    std::string TclBind::getTclLibraryPath()
129    {
130#ifdef DEPENDENCY_PACKAGE_ENABLE
131        if (Core::isDevelopmentRun())
132            return (std::string(ORXONOX_DEP_LIB_PATH) + "/tcl");
133        else
134            return (Core::getRootPathString() + "lib/tcl");
135#else
136        return "";
137#endif
138    }
139
140    std::string TclBind::tcl_query(Tcl::object const &args)
141    {
142        COUT(4) << "Tcl_query: " << args.get() << std::endl;
143
144        std::string command = stripEnclosingBraces(args.get());
145
146        if (!CommandExecutor::execute(command, false))
147        {
148            COUT(1) << "Error: Can't execute command \"" << command << "\"!" << std::endl;
149        }
150
151        if (CommandExecutor::getLastEvaluation().hasReturnvalue())
152            return CommandExecutor::getLastEvaluation().getReturnvalue().getString();
153
154        return "";
155    }
156
157    void TclBind::tcl_execute(Tcl::object const &args)
158    {
159        COUT(4) << "Tcl_execute: " << args.get() << std::endl;
160        std::string command = stripEnclosingBraces(args.get());
161
162        if (!CommandExecutor::execute(command, false))
163        {
164            COUT(1) << "Error: Can't execute command \"" << command << "\"!" << std::endl;
165        }
166    }
167
168    std::string TclBind::tcl(const std::string& tclcode)
169    {
170        if (TclBind::getInstance().interpreter_)
171        {
172            try
173            {
174                std::string output = TclBind::getInstance().interpreter_->eval("uplevel #0 " + tclcode);
175                if (output != "")
176                {
177                    COUT(0) << "tcl> " << output << std::endl;
178                }
179                return output;
180            }
181            catch (Tcl::tcl_error const &e)
182            {   COUT(1) << "tcl> Error: " << e.what() << std::endl;   }
183            catch (std::exception const &e)
184            {   COUT(1) << "Error while executing Tcl: " << e.what() << std::endl;   }
185        }
186
187        return "";
188    }
189
190    void TclBind::bgerror(std::string error)
191    {
192        COUT(1) << "Tcl background error: " << stripEnclosingBraces(error) << std::endl;
193    }
194
195    bool TclBind::eval(const std::string& tclcode)
196    {
197        try
198        {
199            TclBind::getInstance().interpreter_->eval(tclcode);
200            return true;
201        }
202        catch (Tcl::tcl_error const &e)
203        {   COUT(1) << "Tcl error: " << e.what() << std::endl;   }
204        catch (std::exception const &e)
205        {   COUT(1) << "Error while executing Tcl: " << e.what() << std::endl;   }
206
207        return false;
208    }
209}
Note: See TracBrowser for help on using the repository browser.