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 | #ifndef _CommandExecutor_H__ |
---|
30 | #define _CommandExecutor_H__ |
---|
31 | |
---|
32 | #include "CorePrereqs.h" |
---|
33 | |
---|
34 | #include <string> |
---|
35 | #include <map> |
---|
36 | #include <list> |
---|
37 | |
---|
38 | #include "util/SubString.h" |
---|
39 | #include "util/MultiTypeMath.h" |
---|
40 | |
---|
41 | #define COMMAND_EXECUTOR_CURSOR "$" |
---|
42 | |
---|
43 | namespace orxonox |
---|
44 | { |
---|
45 | enum CommandState |
---|
46 | { |
---|
47 | CS_Uninitialized, |
---|
48 | CS_Empty, |
---|
49 | CS_FunctionClass_Or_Shortcut_Or_Keyword, |
---|
50 | CS_Shortcut_Params, |
---|
51 | CS_Shortcut_Finished, |
---|
52 | CS_Function, |
---|
53 | CS_Function_Params, |
---|
54 | CS_Function_Finished, |
---|
55 | CS_ConfigValueClass, |
---|
56 | CS_ConfigValue, |
---|
57 | CS_ConfigValueType, |
---|
58 | CS_ConfigValueFinished, |
---|
59 | CS_KeybindKey, |
---|
60 | CS_KeybindCommand, |
---|
61 | CS_KeybindFinished, |
---|
62 | CS_Error |
---|
63 | }; |
---|
64 | |
---|
65 | void exec(const std::string& filename); |
---|
66 | std::string echo(const std::string& text); |
---|
67 | |
---|
68 | void write(const std::string& filename, const std::string& text); |
---|
69 | void append(const std::string& filename, const std::string& text); |
---|
70 | std::string read(const std::string& filename); |
---|
71 | |
---|
72 | enum KeybindMode {}; // temporary |
---|
73 | |
---|
74 | /////////////////////// |
---|
75 | // CommandEvaluation // |
---|
76 | /////////////////////// |
---|
77 | class _CoreExport CommandEvaluation |
---|
78 | { |
---|
79 | friend class CommandExecutor; |
---|
80 | |
---|
81 | public: |
---|
82 | CommandEvaluation(); |
---|
83 | |
---|
84 | KeybindMode getKeybindMode(); |
---|
85 | bool isValid() const; |
---|
86 | |
---|
87 | inline void setAdditionalParameter(const std::string& param) |
---|
88 | { this->additionalParameter_ = param; this->bEvaluatedParams_ = false; } |
---|
89 | inline std::string getAdditionalParameter() const |
---|
90 | { return (this->additionalParameter_ != "") ? (" " + this->additionalParameter_) : ""; } |
---|
91 | |
---|
92 | void setEvaluatedParameter(unsigned int index, MultiTypeMath param); |
---|
93 | MultiTypeMath getEvaluatedParameter(unsigned int index) const; |
---|
94 | |
---|
95 | void evaluateParams(); |
---|
96 | |
---|
97 | MultiTypeMath getReturnvalue() const; |
---|
98 | |
---|
99 | private: |
---|
100 | std::string processedCommand_; |
---|
101 | SubString tokens_; |
---|
102 | std::string additionalParameter_; |
---|
103 | |
---|
104 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleFunctionClasses_; |
---|
105 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleShortcuts_; |
---|
106 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleFunctions_; |
---|
107 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleConfigValueClasses_; |
---|
108 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleConfigValues_; |
---|
109 | std::list<std::pair<const std::string*, const std::string*> > listOfPossibleKeys_; |
---|
110 | |
---|
111 | Identifier* functionclass_; |
---|
112 | Identifier* configvalueclass_; |
---|
113 | ExecutorStatic* shortcut_; |
---|
114 | ExecutorStatic* function_; |
---|
115 | ConfigValueContainer* configvalue_; |
---|
116 | ConfigValueContainer* key_; |
---|
117 | |
---|
118 | std::string errorMessage_; |
---|
119 | CommandState state_; |
---|
120 | |
---|
121 | bool bEvaluatedParams_; |
---|
122 | MultiTypeMath param_[5]; |
---|
123 | ExecutorStatic* evaluatedExecutor_; |
---|
124 | }; |
---|
125 | |
---|
126 | ///////////////////// |
---|
127 | // CommandExecutor // |
---|
128 | ///////////////////// |
---|
129 | class _CoreExport CommandExecutor |
---|
130 | { |
---|
131 | public: |
---|
132 | static bool execute(const std::string& command); |
---|
133 | static bool execute(const CommandEvaluation& evaluation); |
---|
134 | |
---|
135 | static std::string complete(const std::string& command); |
---|
136 | static std::string complete(const CommandEvaluation& evaluation); |
---|
137 | |
---|
138 | static std::string hint(const std::string& command); |
---|
139 | static std::string hint(const CommandEvaluation& evaluation); |
---|
140 | |
---|
141 | static CommandEvaluation evaluate(const std::string& command); |
---|
142 | |
---|
143 | static Executor& addConsoleCommandShortcut(ExecutorStatic* executor); |
---|
144 | static ExecutorStatic* getConsoleCommandShortcut(const std::string& name); |
---|
145 | static ExecutorStatic* getLowercaseConsoleCommandShortcut(const std::string& name); |
---|
146 | |
---|
147 | /** @brief Returns the map that stores all console commands. @return The const_iterator */ |
---|
148 | static inline const std::map<std::string, ExecutorStatic*>& getConsoleCommandShortcutMap() { return CommandExecutor::getInstance().consoleCommandShortcuts_; } |
---|
149 | /** @brief Returns a const_iterator to the beginning of the map that stores all console commands. @return The const_iterator */ |
---|
150 | static inline std::map<std::string, ExecutorStatic*>::const_iterator getConsoleCommandShortcutMapBegin() { return CommandExecutor::getInstance().consoleCommandShortcuts_.begin(); } |
---|
151 | /** @brief Returns a const_iterator to the end of the map that stores all console commands. @return The const_iterator */ |
---|
152 | static inline std::map<std::string, ExecutorStatic*>::const_iterator getConsoleCommandShortcutMapEnd() { return CommandExecutor::getInstance().consoleCommandShortcuts_.end(); } |
---|
153 | |
---|
154 | /** @brief Returns the map that stores all console commands with their names in lowercase. @return The const_iterator */ |
---|
155 | static inline const std::map<std::string, ExecutorStatic*>& getLowercaseConsoleCommandShortcutMap() { return CommandExecutor::getInstance().consoleCommandShortcuts_LC_; } |
---|
156 | /** @brief Returns a const_iterator to the beginning of the map that stores all console commands with their names in lowercase. @return The const_iterator */ |
---|
157 | static inline std::map<std::string, ExecutorStatic*>::const_iterator getLowercaseConsoleCommandShortcutMapBegin() { return CommandExecutor::getInstance().consoleCommandShortcuts_LC_.begin(); } |
---|
158 | /** @brief Returns a const_iterator to the end of the map that stores all console commands with their names in lowercase. @return The const_iterator */ |
---|
159 | static inline std::map<std::string, ExecutorStatic*>::const_iterator getLowercaseConsoleCommandShortcutMapEnd() { return CommandExecutor::getInstance().consoleCommandShortcuts_LC_.end(); } |
---|
160 | |
---|
161 | private: |
---|
162 | CommandExecutor() {} |
---|
163 | CommandExecutor(const CommandExecutor& other); |
---|
164 | ~CommandExecutor() {} |
---|
165 | |
---|
166 | static CommandExecutor& getInstance(); |
---|
167 | static CommandEvaluation& getEvaluation(); |
---|
168 | |
---|
169 | static void parse(const std::string& command, bool bInitialize = true); |
---|
170 | static void initialize(const std::string& command); |
---|
171 | |
---|
172 | static bool argumentsGiven(unsigned int num); |
---|
173 | static unsigned int argumentsGiven(); |
---|
174 | |
---|
175 | static std::string getToken(unsigned int index); |
---|
176 | |
---|
177 | static bool enoughParametersGiven(unsigned int head, Executor* executor); |
---|
178 | |
---|
179 | static void createListOfPossibleShortcuts(const std::string& fragment); |
---|
180 | static void createListOfPossibleFunctionClasses(const std::string& fragment); |
---|
181 | static void createListOfPossibleFunctions(const std::string& fragment, Identifier* identifier); |
---|
182 | static void createListOfPossibleConfigValueClasses(const std::string& fragment); |
---|
183 | static void createListOfPossibleConfigValues(const std::string& fragment, Identifier* identifier); |
---|
184 | static void createListOfPossibleKeys(const std::string& fragment); |
---|
185 | |
---|
186 | static bool compareStringsInList(const std::pair<const std::string*, const std::string*>& first, const std::pair<const std::string*, const std::string*>& second); |
---|
187 | |
---|
188 | static std::string dump(const std::list<std::pair<const std::string*, const std::string*> >& list); |
---|
189 | static std::string dump(const ExecutorStatic* executor); |
---|
190 | static std::string dump(const ConfigValueContainer* container); |
---|
191 | |
---|
192 | static std::string getCommonBegin(const std::list<std::pair<const std::string*, const std::string*> >& list); |
---|
193 | |
---|
194 | static Identifier* getIdentifierOfPossibleFunctionClass(const std::string& name); |
---|
195 | static ExecutorStatic* getExecutorOfPossibleShortcut(const std::string& name); |
---|
196 | static ExecutorStatic* getExecutorOfPossibleFunction(const std::string& name, Identifier* identifier); |
---|
197 | static Identifier* getIdentifierOfPossibleConfigValueClass(const std::string& name); |
---|
198 | static ConfigValueContainer* getContainerOfPossibleConfigValue(const std::string& name, Identifier* identifier); |
---|
199 | static ConfigValueContainer* getContainerOfPossibleKey(const std::string& name); |
---|
200 | |
---|
201 | CommandEvaluation evaluation_; |
---|
202 | |
---|
203 | std::map<std::string, ExecutorStatic*> consoleCommandShortcuts_; |
---|
204 | std::map<std::string, ExecutorStatic*> consoleCommandShortcuts_LC_; |
---|
205 | }; |
---|
206 | } |
---|
207 | |
---|
208 | #endif /* _CommandExecutor_H__ */ |
---|