Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: new and improved ShellCommandAlias

File size: 6.3 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   * collects the Commands registered to some class.
59   * @param className the name of the Class to collect the Commands from.
60   * @param stringList a List to paste the Commands into.
61   * @returns true on success, false otherwise
62   */
63  bool ShellCommandClass::getCommandListOfClass(const std::string& className, std::list<std::string>& stringList)
64  {
65    std::list<ShellCommandClass*>::iterator elem;
66    for(elem = ShellCommandClass::commandClassList->begin(); elem != ShellCommandClass::commandClassList->end(); elem++)
67    {
68      if (className == (*elem)->getName())
69      {
70        std::vector<ShellCommand*>::iterator command;
71        for(command = (*elem)->commandList.begin(); command != (*elem)->commandList.end(); command++)
72          stringList.push_back((*command)->getName());
73      }
74    }
75    return true;
76  }
77
78  /**
79   * @brief unregisters all Commands that exist
80   */
81  void ShellCommandClass::unregisterAllCommands()
82  {
83    if (ShellCommandClass::commandClassList != NULL)
84    {
85      // unregister all commands and Classes
86      std::list<ShellCommandClass*>::iterator classIT;
87      for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
88        delete (*classIT);
89      delete ShellCommandClass::commandClassList;
90      ShellCommandClass::commandClassList = NULL;
91    }
92
93  }
94
95  /**
96   * @brief checks if a Class is already registered to the Commands' class-stack
97   * @param className the Name of the Class to check for
98   * @returns the CommandClass if found, NULL otherwise
99   */
100  const ShellCommandClass* ShellCommandClass::isRegistered(const std::string& className)
101  {
102    if (ShellCommandClass::commandClassList == NULL)
103      initCommandClassList();
104
105    std::list<ShellCommandClass*>::const_iterator classIT;
106    for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
107    {
108      if (className == (*classIT)->className)
109      {
110        if ((*classIT)->classID == CL_NULL)
111          (*classIT)->classID = ClassList::StringToID(className);
112
113        return (*classIT);
114      }
115    }
116    return NULL;
117  }
118
119  /**
120   * searches for a CommandClass
121   * @param className the name of the CommandClass
122   * @returns the CommandClass if found, or a new CommandClass if not
123   */
124  ShellCommandClass* ShellCommandClass::getCommandClass(const std::string& className)
125  {
126    if (ShellCommandClass::commandClassList == NULL)
127      initCommandClassList();
128
129    std::list<ShellCommandClass*>::iterator classIT;
130    for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
131    {
132      if (className == (*classIT)->className)
133      {
134        return (*classIT);
135      }
136    }
137    return new ShellCommandClass(className);
138  }
139
140  /**
141   * @brief initializes the CommandList (if it is NULL)
142   */
143  void ShellCommandClass::initCommandClassList()
144  {
145    if (ShellCommandClass::commandClassList == NULL)
146    {
147      ShellCommandClass::commandClassList = new std::list<ShellCommandClass*>;
148      ShellCommand::registerCommand("debug", "ShellCommand", ExecutorStatic<ShellCommand>(ShellCommand::debug));
149    }
150  }
151
152  /**
153   * @brief displays help about ShellCommandClass
154   * @param className: the Class of Commands to show help about
155   */
156  void ShellCommandClass::help(const std::string& className)
157  {
158    if (likely(ShellCommandClass::commandClassList != NULL))
159    {
160      std::list<ShellCommandClass*>::iterator classIT;
161      for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++)
162      {
163        if (className == (*classIT)->className)
164        {
165          PRINT(0)("Class:'%s' registered %d commands: \n", (*classIT)->className.c_str(), (*classIT)->commandList.size());
166          std::vector<ShellCommand*>::const_iterator cmdIT;
167          for (cmdIT = (*classIT)->commandList.begin(); cmdIT != (*classIT)->commandList.end(); cmdIT++)
168          {
169            PRINT(0)("  command:'%s' : params:%d: ", (*cmdIT)->getName(), (*cmdIT)->executor->getParamCount());
170            /// FIXME
171            /*          for (unsigned int i = 0; i< elem->paramCount; i++)
172              PRINT(0)("%s ", ShellCommand::paramToString(elem->parameters[i]));*/
173            if (!(*cmdIT)->description.empty())
174              PRINT(0)("- %s", (*cmdIT)->description.c_str());
175            PRINT(0)("\n");
176          }
177          return;
178        }
179      }
180      PRINTF(3)("Class %s not found in Command's classes\n", className.c_str());
181    }
182    else
183    {
184      PRINTF(1)("List of commandClasses does not exist");
185    }
186  }
187
188  void ShellCommandClass::registerCommand(ShellCommand* command)
189  {
190    this->commandList.push_back(command);
191  }
192
193
194  void ShellCommandClass::unregisterCommand(ShellCommand* command)
195  {
196    std::vector<ShellCommand*>::iterator delC = std::find(this->commandList.begin(), this->commandList.end(), command);
197    if (delC != this->commandList.end())
198      this->commandList.erase(delC);
199  }
200
201
202
203}
204
205
206
207
Note: See TracBrowser for help on using the repository browser.