Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/core/Executor.cc @ 957

Last change on this file since 957 was 957, checked in by landauf, 16 years ago
  • added set and tset functions to the ConfigValueContainer to (temporary) set a config-value to a new value
  • ConfigValueContainer uses now the functions of MultiTypeMath to convert and assign values
  • added some errorhandling to the CommandExecutor in case there are not enough parameters when executing the command
  • added updateConfigValues function to Identifier
  • added addTime and removeTime functions to the Timer
  • some changes in Executor to allow adding description and default-values when using the ConsoleCommand macro
File size: 6.7 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Fabian 'x3n' Landau
23 *   Co-authors:
24 *      ...
25 *
26 *   Inspiration: Executor by Benjamin Grauer
27 */
28
29#include "Executor.h"
30#include "Language.h"
31
32namespace orxonox
33{
34    Executor::Executor(Functor* functor, const std::string& name, AccessLevel::Level level)
35    {
36        this->functor_ = functor;
37        this->name_ = name;
38        this->accessLevel_ = level;
39
40        this->bAddedDescription_ = false;
41        this->bAddedDescriptionReturnvalue_ = false;
42
43        this->bAddedDescriptionParam_[0] = false;
44        this->bAddedDescriptionParam_[1] = false;
45        this->bAddedDescriptionParam_[2] = false;
46        this->bAddedDescriptionParam_[3] = false;
47        this->bAddedDescriptionParam_[4] = false;
48
49        this->bAddedDefaultValue_[0] = false;
50        this->bAddedDefaultValue_[1] = false;
51        this->bAddedDefaultValue_[2] = false;
52        this->bAddedDefaultValue_[3] = false;
53        this->bAddedDefaultValue_[4] = false;
54    }
55
56    Executor::~Executor()
57    {
58        delete this->functor_;
59    }
60
61    bool Executor::parse(const std::string& params, const std::string& delimiter) const
62    {
63        EXECUTOR_PARSE(normal);
64    }
65
66    Executor& Executor::setDescription(const std::string& description)
67    {
68        if (!this->bAddedDescription_)
69        {
70            this->description_ = std::string("ExecutorDescription::" + this->name_ + "::function");
71            AddLanguageEntry(this->description_, description);
72            this->bAddedDescription_ = true;
73        }
74        return (*this);
75    }
76
77    const std::string& Executor::getDescription() const
78    {
79        return GetLocalisation(this->description_);
80    }
81
82    Executor& Executor::setDescriptionParam(int param, const std::string& description)
83    {
84        if (param >= 0 && param < MAX_FUNCTOR_ARGUMENTS)
85        {
86            if (!this->bAddedDescriptionParam_[param])
87            {
88                std::string paramnumber;
89                if (!Convert::ToString(&paramnumber, param))
90                    return (*this);
91
92                this->descriptionParam_[param] = std::string("ExecutorDescription::" + this->name_ + "::param" + paramnumber);
93                AddLanguageEntry(this->descriptionParam_[param], description);
94                this->bAddedDescriptionParam_[param] = true;
95            }
96        }
97        return (*this);
98    }
99
100    const std::string& Executor::getDescriptionParam(int param) const
101    {
102        if (param >= 0 && param < MAX_FUNCTOR_ARGUMENTS)
103            return GetLocalisation(this->descriptionParam_[param]);
104
105        return this->descriptionParam_[0];
106    }
107
108    Executor& Executor::setDescriptionReturnvalue(const std::string& description)
109    {
110        if (!this->bAddedDescriptionReturnvalue_)
111        {
112            this->descriptionReturnvalue_ = std::string("ExecutorDescription::" + this->name_ + "::returnvalue");
113            AddLanguageEntry(this->descriptionReturnvalue_, description);
114            this->bAddedDescriptionReturnvalue_ = true;
115        }
116        return (*this);
117    }
118
119    const std::string& Executor::getDescriptionReturnvalue(int param) const
120    {
121        return GetLocalisation(this->descriptionReturnvalue_);
122    }
123
124    Executor& Executor::setDefaultValues(const MultiTypeMath& param1)
125    {
126        this->defaultValue_[0] = param1;
127        this->bAddedDefaultValue_[0] = true;
128
129        return (*this);
130    }
131
132    Executor& Executor::setDefaultValues(const MultiTypeMath& param1, const MultiTypeMath& param2)
133    {
134        this->defaultValue_[0] = param1;
135        this->bAddedDefaultValue_[0] = true;
136        this->defaultValue_[1] = param2;
137        this->bAddedDefaultValue_[1] = true;
138
139        return (*this);
140    }
141
142    Executor& Executor::setDefaultValues(const MultiTypeMath& param1, const MultiTypeMath& param2, const MultiTypeMath& param3)
143    {
144        this->defaultValue_[0] = param1;
145        this->bAddedDefaultValue_[0] = true;
146        this->defaultValue_[1] = param2;
147        this->bAddedDefaultValue_[1] = true;
148        this->defaultValue_[2] = param3;
149        this->bAddedDefaultValue_[2] = true;
150
151        return (*this);
152    }
153
154    Executor& Executor::setDefaultValues(const MultiTypeMath& param1, const MultiTypeMath& param2, const MultiTypeMath& param3, const MultiTypeMath& param4)
155    {
156        this->defaultValue_[0] = param1;
157        this->bAddedDefaultValue_[0] = true;
158        this->defaultValue_[1] = param2;
159        this->bAddedDefaultValue_[1] = true;
160        this->defaultValue_[2] = param3;
161        this->bAddedDefaultValue_[2] = true;
162        this->defaultValue_[3] = param4;
163        this->bAddedDefaultValue_[3] = true;
164
165        return (*this);
166    }
167
168    Executor& Executor::setDefaultValues(const MultiTypeMath& param1, const MultiTypeMath& param2, const MultiTypeMath& param3, const MultiTypeMath& param4, const MultiTypeMath& param5)
169    {
170        this->defaultValue_[0] = param1;
171        this->bAddedDefaultValue_[0] = true;
172        this->defaultValue_[1] = param2;
173        this->bAddedDefaultValue_[1] = true;
174        this->defaultValue_[2] = param3;
175        this->bAddedDefaultValue_[2] = true;
176        this->defaultValue_[3] = param4;
177        this->bAddedDefaultValue_[3] = true;
178        this->defaultValue_[4] = param5;
179        this->bAddedDefaultValue_[4] = true;
180
181        return (*this);
182    }
183
184    Executor& Executor::setDefaultValue(unsigned int index, const MultiTypeMath& param)
185    {
186        if (index >= 0 && index < MAX_FUNCTOR_ARGUMENTS)
187        {
188            this->defaultValue_[index] = param;
189            this->bAddedDefaultValue_[index] = true;
190        }
191        return (*this);
192    }
193
194    bool Executor::allDefaultValuesSet() const
195    {
196        for (unsigned int i = 0; i < this->functor_->getParamCount(); i++)
197            if (!this->bAddedDefaultValue_[i])
198                return false;
199
200        return true;
201    }
202}
Note: See TracBrowser for help on using the repository browser.