Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

re-implemented parameter evaluation in CommandEvaluation and simplified parse() and evaluateParams() in Executor.

  • Property svn:eol-style set to native
File size: 6.0 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& arguments, int* error, const std::string& delimiter, bool bPrintError) const
53    {
54        return this->parse(SubString(arguments, delimiter, SubString::WhiteSpaces, false, '\\', true, '"', true, '(', ')', true, '\0'), error, delimiter, bPrintError);
55    }
56
57    MultiType Executor::parse(const SubString& arguments, int* error, const std::string& delimiter, bool bPrintError) const
58    {
59        MultiType param[MAX_FUNCTOR_ARGUMENTS];
60        unsigned int paramCount = this->evaluateParams(arguments, param, error, delimiter);
61
62        if (error && *error)
63        {
64            if (bPrintError)
65                COUT(2) << "Warning: Can't call executor " << this->name_ << " through parser: Not enough parameters or default values given (input: " << arguments.join() << ")." << std::endl;
66            return MT_Type::Null;
67        }
68
69        switch (paramCount)
70        {
71            case 0:  return (*this->functor_)();
72            case 1:  return (*this->functor_)(param[0]);
73            case 2:  return (*this->functor_)(param[0], param[1]);
74            case 3:  return (*this->functor_)(param[0], param[1], param[2]);
75            case 4:  return (*this->functor_)(param[0], param[1], param[2], param[3]);
76            case 5:
77            default: return (*this->functor_)(param[0], param[1], param[2], param[3], param[4]);
78        }
79    }
80
81    int Executor::evaluateParams(const SubString& arguments, MultiType param[MAX_FUNCTOR_ARGUMENTS], int* error, const std::string& delimiter) const
82    {
83        unsigned int paramCount = this->functor_->getParamCount();
84        unsigned int argumentCount = arguments.size();
85
86        // if there are not enough params given, check if there are default values
87        for (unsigned int i = argumentCount; i < paramCount; i++)
88        {
89            if (this->defaultValue_[i].null())
90            {
91                if (error)
92                    *error = CommandExecutor::Incomplete;
93                return 0;
94            }
95        }
96
97        // assign all given arguments to the multitypes
98        for (unsigned int i = 0; i < std::min(argumentCount, MAX_FUNCTOR_ARGUMENTS); i++)
99            param[i] = arguments[i];
100
101        // fill the remaining multitypes with default values
102        for (unsigned int i = argumentCount; i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
103            param[i] = this->defaultValue_[i];
104
105        // assign the remaining arguments all to the last parameter if it is a string
106        if ((paramCount <= MAX_FUNCTOR_ARGUMENTS) &&(argumentCount > paramCount) && (paramCount == 1 || this->functor_->getTypenameParam(paramCount - 1) == "string"))
107            param[paramCount - 1] = arguments.subSet(paramCount - 1).join(delimiter);
108
109        // evaluate the param types through the functor
110        for (unsigned int i = 0; i < std::min(paramCount, MAX_FUNCTOR_ARGUMENTS); i++)
111            this->functor_->evaluateParam(i, param[i]);
112
113        if (error)
114            *error = CommandExecutor::Success;
115        return paramCount;
116    }
117
118    void Executor::setDefaultValues(const MultiType& param1)
119    {
120        this->defaultValue_[0] = param1;
121    }
122
123    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2)
124    {
125        this->defaultValue_[0] = param1;
126        this->defaultValue_[1] = param2;
127    }
128
129    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3)
130    {
131        this->defaultValue_[0] = param1;
132        this->defaultValue_[1] = param2;
133        this->defaultValue_[2] = param3;
134    }
135
136    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3, const MultiType& param4)
137    {
138        this->defaultValue_[0] = param1;
139        this->defaultValue_[1] = param2;
140        this->defaultValue_[2] = param3;
141        this->defaultValue_[3] = param4;
142    }
143
144    void Executor::setDefaultValues(const MultiType& param1, const MultiType& param2, const MultiType& param3, const MultiType& param4, const MultiType& param5)
145    {
146        this->defaultValue_[0] = param1;
147        this->defaultValue_[1] = param2;
148        this->defaultValue_[2] = param3;
149        this->defaultValue_[3] = param4;
150        this->defaultValue_[4] = param5;
151    }
152
153    void Executor::setDefaultValue(unsigned int index, const MultiType& param)
154    {
155        if (index < MAX_FUNCTOR_ARGUMENTS)
156            this->defaultValue_[index] = param;
157    }
158
159    bool Executor::allDefaultValuesSet() const
160    {
161        for (unsigned int i = 0; i < this->functor_->getParamCount(); i++)
162            if (this->defaultValue_[i].null())
163                return false;
164
165        return true;
166    }
167}
Note: See TracBrowser for help on using the repository browser.