Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/consolecommands3/src/libraries/core/command/Executor.cc @ 7228

Last change on this file since 7228 was 7228, checked in by landauf, 14 years ago

re-implemented CommandExecutor and CommandEvaluation. parameter evaluation is currently not implemented, will come soon.

  • Property svn:eol-style set to native
File size: 8.7 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 *   Inspiration: Executor by Benjamin Grauer
28 */
29
30#include "Executor.h"
31
32#include <algorithm>
33
34#include "util/Convert.h"
35#include "util/Debug.h"
36#include "util/StringUtils.h"
37#include "util/SubString.h"
38#include "CommandExecutor.h"
39
40namespace orxonox
41{
42    Executor::Executor(const FunctorPtr& functor, const std::string& name)
43    {
44        this->functor_ = functor;
45        this->name_ = name;
46    }
47
48    Executor::~Executor()
49    {
50    }
51
52    MultiType Executor::parse(const std::string& params, int* error, const std::string& delimiter, bool bPrintError) const
53    {
54        if (error)
55            *error = CommandExecutor::Success;
56
57        unsigned int paramCount = this->functor_->getParamCount();
58
59        if (paramCount == 0)
60        {
61            COUT(5) << "Calling Executor " << this->name_ << " through parser without parameters." << std::endl;
62            return (*this->functor_)();
63        }
64        else if (paramCount == 1)
65        {
66            const std::string& temp = getStripped(params);
67            if (!temp.empty())
68            {
69                COUT(5) << "Calling Executor " << this->name_ << " through parser with one parameter, using whole string: " << params << std::endl;
70                return (*this->functor_)(params);
71            }
72            else if (!this->defaultValue_[0].null())
73            {
74                COUT(5) << "Calling Executor " << this->name_ << " through parser with one parameter, using default value: " << this->defaultValue_[0] << std::endl;
75                return (*this->functor_)(this->defaultValue_[0]);
76            }
77            else
78            {
79                if (bPrintError)
80                    COUT(2) << "Warning: Can't call executor " << this->name_ << " through parser: Not enough parameters or default values given (input: " << temp << ")." << std::endl;
81                if (error)
82                    *error = CommandExecutor::Incomplete;
83                return MT_Type::Null;
84            }
85        }
86        else
87        {
88            SubString tokens(params, delimiter, SubString::WhiteSpaces, false, '\\', true, '"', true, '(', ')', true, '\0');
89
90            for (unsigned int i = tokens.size(); i < this->functor_->getParamCount(); i++)
91            {
92                if (this->defaultValue_[i].null())
93                {
94                    if (bPrintError)
95                        COUT(2) << "Warning: Can't call executor " << this->name_ << " through parser: Not enough parameters or default values given (input: " << params << ")." << std::endl;
96                    if (error)
97                        *error = CommandExecutor::Incomplete;
98                    return MT_Type::Null;
99                }
100            }
101
102            MultiType param[MAX_FUNCTOR_ARGUMENTS];
103            COUT(5) << "Calling Executor " << this->name_ << " through parser with " << paramCount << " parameters, using " << tokens.size() << " tokens (";
104            for (unsigned int i = 0; i < tokens.size() && i < MAX_FUNCTOR_ARGUMENTS; i++)
105            {
106                param[i] = tokens[i];
107                if (i != 0)
108                {
109                    COUT(5) << ", ";
110                }
111                COUT(5) << tokens[i];
112            }
113            COUT(5) << ") and " << std::max((int)paramCount - (int)tokens.size(), 0) << " default values (";
114            for (unsigned int i = tokens.size(); i < paramCount; i++)
115            {
116                param[i] = this->defaultValue_[i];
117                if (i != 0)
118                {
119                    COUT(5) << ", ";
120                }
121                COUT(5) << this->defaultValue_[i];
122            }
123            COUT(5) << ")." << std::endl;
124
125            if ((tokens.size() > paramCount) && (this->functor_->getTypenameParam(paramCount - 1) == "string"))
126                param[paramCount - 1] = tokens.subSet(paramCount - 1).join();
127
128            switch(paramCount)
129            {
130                case 2:
131                    return (*this->functor_)(param[0], param[1]);
132                case 3:
133                    return (*this->functor_)(param[0], param[1], param[2]);
134                case 4:
135                    return (*this->functor_)(param[0], param[1], param[2], param[3]);
136                case 5:
137                    return (*this->functor_)(param[0], param[1], param[2], param[3], param[4]);
138            }
139        }
140
141        return MT_Type::Null;
142    }
143
144    bool Executor::evaluate(const std::string& params, MultiType param[5], const std::string& delimiter) const
145    {
146        unsigned int paramCount = this->functor_->getParamCount();
147
148        if (paramCount == 1)
149        {
150            // only one param: check if there are params given, otherwise try to use default values
151            if (!getStripped(params).empty())
152            {
153                param[0] = params;
154                this->functor_->evaluateParam(0, param[0]);
155                return true;
156            }
157            else if (!this->defaultValue_[0].null())
158            {
159                param[0] = this->defaultValue_[0];
160                this->functor_->evaluateParam(0, param[0]);
161                return true;
162            }
163            return false;
164        }
165        else
166        {
167            // more than one param
168            SubString tokens(params, delimiter, SubString::WhiteSpaces, false, '\\', true, '"', true, '(', ')', true, '\0');
169
170            // if there are not enough params given, check if there are default values
171            for (unsigned int i = tokens.size(); i < this->functor_->getParamCount(); i++)
172                if (this->defaultValue_[i].null())
173                    return false;
174
175            // assign all given arguments to the multitypes
176            for (unsigned int i = 0; i < std::min(tokens.size(), MAX_FUNCTOR_ARGUMENTS); i++)
177                param[i] = tokens[i];
178
179            // fill the remaining multitypes with default values
180            for (unsigned int i = tokens.size(); i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
181                param[i] = this->defaultValue_[i];
182
183            // evaluate the param types through the functor
184            for (unsigned int i = 0; i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
185                this->functor_->evaluateParam(i, param[i]);
186
187            return true;
188        }
189    }
190
191    void Executor::setDefaultValues(const MultiType& param1)
192    {
193        this->defaultValue_[0] = param1;
194    }
195
196    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2)
197    {
198        this->defaultValue_[0] = param1;
199        this->defaultValue_[1] = param2;
200    }
201
202    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3)
203    {
204        this->defaultValue_[0] = param1;
205        this->defaultValue_[1] = param2;
206        this->defaultValue_[2] = param3;
207    }
208
209    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3, const MultiType& param4)
210    {
211        this->defaultValue_[0] = param1;
212        this->defaultValue_[1] = param2;
213        this->defaultValue_[2] = param3;
214        this->defaultValue_[3] = param4;
215    }
216
217    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3, const MultiType& param4, const MultiType& param5)
218    {
219        this->defaultValue_[0] = param1;
220        this->defaultValue_[1] = param2;
221        this->defaultValue_[2] = param3;
222        this->defaultValue_[3] = param4;
223        this->defaultValue_[4] = param5;
224    }
225
226    void Executor::setDefaultValue(unsigned int index, const MultiType& param)
227    {
228        if (index < MAX_FUNCTOR_ARGUMENTS)
229            this->defaultValue_[index] = param;
230    }
231
232    bool Executor::allDefaultValuesSet() const
233    {
234        for (unsigned int i = 0; i < this->functor_->getParamCount(); i++)
235            if (this->defaultValue_[i].null())
236                return false;
237
238        return true;
239    }
240}
Note: See TracBrowser for help on using the repository browser.