| 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 | /** | 
|---|
| 30 | @defgroup ConsoleCommand Console commands | 
|---|
| 31 | @ingroup Command | 
|---|
| 32 | */ | 
|---|
| 33 |  | 
|---|
| 34 | #ifndef _ConsoleCommandManager_H__ | 
|---|
| 35 | #define _ConsoleCommandManager_H__ | 
|---|
| 36 |  | 
|---|
| 37 | #include "core/CorePrereqs.h" | 
|---|
| 38 |  | 
|---|
| 39 | #include "util/Singleton.h" | 
|---|
| 40 |  | 
|---|
| 41 | #include <map> | 
|---|
| 42 |  | 
|---|
| 43 | namespace orxonox | 
|---|
| 44 | { | 
|---|
| 45 | /** | 
|---|
| 46 | * A singleton that stores all existing ConsoleCommands. | 
|---|
| 47 | */ | 
|---|
| 48 | class _CoreExport ConsoleCommandManager : public Singleton<ConsoleCommandManager> | 
|---|
| 49 | { | 
|---|
| 50 | friend class Singleton<ConsoleCommandManager>; | 
|---|
| 51 |  | 
|---|
| 52 | public: | 
|---|
| 53 | void registerCommand(ConsoleCommand* command); | 
|---|
| 54 | void registerCommand(const std::string& group, const std::string& name, ConsoleCommand* command); | 
|---|
| 55 | void unregisterCommand(ConsoleCommand* command); | 
|---|
| 56 |  | 
|---|
| 57 | /// Returns the map with all groups and commands. | 
|---|
| 58 | inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommands() | 
|---|
| 59 | { return this->commandMap_; } | 
|---|
| 60 | /// Returns the map with all groups and commands in lowercase. | 
|---|
| 61 | inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommandsLC() | 
|---|
| 62 | { return this->commandMapLC_; } | 
|---|
| 63 |  | 
|---|
| 64 | /// Returns a command (shortcut) with given name. @param name The name of the command shortcut @param bPrintError If true, an error is printed if the command doesn't exist | 
|---|
| 65 | inline ConsoleCommand* getCommand(const std::string& name, bool bPrintError = false) | 
|---|
| 66 | { return this->getCommand("", name, bPrintError); } | 
|---|
| 67 | /// Returns a command (shortcut) with given name in lowercase. @param name The lowercase name of the command shortcut @param bPrintError If true, an error is printed if the command doesn't exist | 
|---|
| 68 | inline ConsoleCommand* getCommandLC(const std::string& name, bool bPrintError = false) | 
|---|
| 69 | { return this->getCommandLC("", name, bPrintError); } | 
|---|
| 70 |  | 
|---|
| 71 | ConsoleCommand* getCommand(const std::string& group, const std::string& name, bool bPrintError = false); | 
|---|
| 72 | ConsoleCommand* getCommandLC(const std::string& group, const std::string& name, bool bPrintError = false); | 
|---|
| 73 |  | 
|---|
| 74 | private: | 
|---|
| 75 | std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMap_; | 
|---|
| 76 | std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMapLC_; | 
|---|
| 77 |  | 
|---|
| 78 | static ConsoleCommandManager* singletonPtr_s; | 
|---|
| 79 | }; | 
|---|
| 80 | } | 
|---|
| 81 |  | 
|---|
| 82 | #endif /* _ConsoleCommandManager_H__ */ | 
|---|