Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/shell/shell_command_class.cc @ 7390

Last change on this file since 7390 was 7390, checked in by bensch, 18 years ago

orxonox/trunk: ShellCommands stuff

File size: 6.4 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_SHELL
17
18#include "shell_command_class.h"
19
20#include "shell_command.h"
21
22#include "debug.h"
23#include "class_list.h"
24#include "compiler.h"
25
26namespace OrxShell
27{
28  std::list<ShellCommandClass*>* ShellCommandClass::commandClassList = NULL;
29
30  /**
31   * creates a new ShellCommandClass
32   * @param className the Name of the command-class to create
33   */
34  ShellCommandClass::ShellCommandClass(const std::string& className)
35      : className(className)
36  {
37    this->setClassID(CL_SHELL_COMMAND_CLASS, "ShellCommandClass");
38    this->setName(className);
39
40    this->classID = CL_NULL;
41
42    ShellCommandClass::commandClassList->push_back(this);
43  }
44
45  /**
46   * destructs the shellCommandClass again
47   */
48  ShellCommandClass::~ShellCommandClass()
49  {
50    while(!this->commandList.empty())
51    {
52      delete this->commandList.back();
53      this->commandList.pop_back();
54    }
55  }
56
57  /**
58   * @param command the Command to register.
59   */
60  void ShellCommandClass::registerCommand(ShellCommand* command)
61  {
62    this->commandList.push_back(command);
63  }
64
65  /**
66   * @brief unregister command.
67   * @param command the Command to unregister.
68   */
69  void ShellCommandClass::unregisterCommand(ShellCommand* command)
70  {
71    std::vector<ShellCommand*>::iterator delC = std::find(this->commandList.begin(), this->commandList.end(), command);
72    if (delC != this->commandList.end())
73      this->commandList.erase(delC);
74  }
75
76  /**
77   * @brief unregisters all Commands that exist
78   */
79  void ShellCommandClass::unregisterAllCommands()
80  {
81    if (ShellCommandClass::commandClassList != NULL)
82    {
83      // unregister all commands and Classes
84      std::list<ShellCommandClass*>::iterator classIT;
85      for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
86        delete (*classIT);
87      delete ShellCommandClass::commandClassList;
88      ShellCommandClass::commandClassList = NULL;
89    }
90
91  }
92
93
94  /**
95   * @brief collects the Commands registered to some class.
96   * @param className the name of the Class to collect the Commands from.
97   * @param stringList a List to paste the Commands into.
98   * @returns true on success, false otherwise
99   */
100  bool ShellCommandClass::getCommandListOfClass(const std::string& className, std::list<std::string>& stringList)
101  {
102    std::list<ShellCommandClass*>::iterator elem;
103    for(elem = ShellCommandClass::commandClassList->begin(); elem != ShellCommandClass::commandClassList->end(); elem++)
104    {
105      if (className == (*elem)->getName())
106      {
107        std::vector<ShellCommand*>::iterator command;
108        for(command = (*elem)->commandList.begin(); command != (*elem)->commandList.end(); command++)
109          stringList.push_back((*command)->getName());
110      }
111    }
112    return true;
113  }
114
115
116  /**
117   * @brief checks if a Class is already registered to the Commands' class-stack
118   * @param className the Name of the Class to check for
119   * @returns the CommandClass if found, NULL otherwise
120   */
121  const ShellCommandClass* ShellCommandClass::isRegistered(const std::string& className)
122  {
123    if (ShellCommandClass::commandClassList == NULL)
124      initCommandClassList();
125
126    std::list<ShellCommandClass*>::const_iterator classIT;
127    for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
128    {
129      if (className == (*classIT)->className)
130      {
131        if ((*classIT)->classID == CL_NULL)
132          (*classIT)->classID = ClassList::StringToID(className);
133
134        return (*classIT);
135      }
136    }
137    return NULL;
138  }
139
140  /**
141   * @brief searches for a CommandClass
142   * @param className the name of the CommandClass
143   * @returns the CommandClass if found, or a new CommandClass if not
144   */
145  ShellCommandClass* ShellCommandClass::getCommandClass(const std::string& className)
146  {
147    if (ShellCommandClass::commandClassList == NULL)
148      initCommandClassList();
149
150    std::list<ShellCommandClass*>::iterator classIT;
151    for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
152    {
153      if (className == (*classIT)->className)
154      {
155        return (*classIT);
156      }
157    }
158    return new ShellCommandClass(className);
159  }
160
161  /**
162   * @brief initializes the CommandList (if it is NULL)
163   */
164  void ShellCommandClass::initCommandClassList()
165  {
166    if (ShellCommandClass::commandClassList == NULL)
167    {
168      ShellCommandClass::commandClassList = new std::list<ShellCommandClass*>;
169      ShellCommand::registerCommand("debug", "ShellCommand", ExecutorStatic<ShellCommand>(ShellCommand::debug));
170    }
171  }
172
173  /**
174   * @brief displays help about ShellCommandClass
175   * @param className: the Class of Commands to show help about
176   */
177  void ShellCommandClass::help(const std::string& className)
178  {
179    if (likely(ShellCommandClass::commandClassList != NULL))
180    {
181      std::list<ShellCommandClass*>::iterator classIT;
182      for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
183      {
184        if (className == (*classIT)->className)
185        {
186          PRINT(0)("Class:'%s' registered %d commands: \n", (*classIT)->className.c_str(), (*classIT)->commandList.size());
187          std::vector<ShellCommand*>::const_iterator cmdIT;
188          for (cmdIT = (*classIT)->commandList.begin(); cmdIT != (*classIT)->commandList.end(); cmdIT++)
189          {
190            PRINT(0)("  command:'%s' : params:%d: ", (*cmdIT)->getName(), (*cmdIT)->executor->getParamCount());
191            /// FIXME
192            /*          for (unsigned int i = 0; i< elem->paramCount; i++)
193              PRINT(0)("%s ", ShellCommand::paramToString(elem->parameters[i]));*/
194            if (!(*cmdIT)->description.empty())
195              PRINT(0)("- %s", (*cmdIT)->description.c_str());
196            PRINT(0)("\n");
197          }
198          return;
199        }
200      }
201      PRINTF(3)("Class %s not found in Command's classes\n", className.c_str());
202    }
203    else
204    {
205      PRINTF(1)("List of commandClasses does not exist");
206    }
207  }
208
209}
210
211
212
213
Note: See TracBrowser for help on using the repository browser.