Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

createFunctor() now returns a SharedPtr instead of a pointer. Adapted code that uses createFunctor() accordingly.

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