Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/lang/class_list.cc @ 7162

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

using vector instead of list in classList

File size: 11.6 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_
17
18#include "class_list.h"
19#include "base_object.h"
20
21#include "compiler.h"
22#include "debug.h"
23#include <string.h>
24#include <math.h>
25#include <algorithm>
26#include "shell_command.h"
27
28using namespace std;
29
30#ifndef NO_SHELL_COMMAND
31SHELL_COMMAND_STATIC(debug, ClassList, ClassList::debugS)
32    ->describe("Shows all registered classes, if param1: is a valid ClassName only values of this class are shown. param2: how much output")
33    ->defaultValues(2, NULL, 1);
34#endif
35
36/**
37 *  Creates a new ClassList
38*/
39ClassList::ClassList(ClassID classID, unsigned long classIDFull, const char* className)
40{
41  this->className = className;
42  this->classID = classID;
43  this->classIDFull = classIDFull;
44}
45
46/**
47 *  standard deconstructor
48*/
49ClassList::~ClassList ()
50{
51//   ClassList::classList->clear());
52}
53
54//! a List of all known Classes.
55std::vector<ClassList>* ClassList::classList = NULL;
56
57//! a List of all strings of all classes, that have registered so far.
58std::list<const char*> ClassList::classNames;
59
60/**
61 * @brief Adds a new Object to the ClassList (and if necessary a new Class)
62 * @param objectPointer Pointer to the Object at hand
63 * @param classID ID of the Given ObjectType \see ClassID
64 * @param className name of the Class to add
65 *
66 * !! FIRST YOU HAVE TO CALL THIS FUNCTION ONCE
67 * !! Before unsing the ClassList, as it creates the ClassLits
68 */
69ClassList* ClassList::addToClassList(BaseObject* objectPointer, ClassID classID, unsigned long classIDFull, const char* className)
70{
71  if (unlikely(classList == NULL))
72    ClassList::classList = new std::vector<ClassList>();
73
74  PRINTF(5)("subscribe a '%s'\n", className );
75
76  ClassList* regClass = ClassList::getClassList(classID);
77  if (regClass != NULL)
78  {
79    regClass->objectList.push_back(objectPointer);
80    return regClass;
81  }
82  else
83  {
84    ClassList::classList->push_back(ClassList(classID, classIDFull, className));
85    ClassList::classList->back().objectList.push_back(objectPointer);
86    return &ClassList::classList->back();
87  }
88}
89
90/**
91 * removes an Object from a the ClassList
92 * @param objectPointer the Object to delete from the List
93 */
94void ClassList::removeFromClassList(BaseObject* objectPointer)
95{
96  for(unsigned int cl= 0; cl < ClassList::classList->size(); cl++)
97  {
98    if (objectPointer->isA((*ClassList::classList)[cl].classID))
99    {
100      std::list<BaseObject*>::iterator bo =
101          std::find ((*ClassList::classList)[cl].objectList.begin(),
102                       (*ClassList::classList)[cl].objectList.end(),
103                     objectPointer);
104      if (bo != (*ClassList::classList)[cl].objectList.end())
105        (*ClassList::classList)[cl].objectList.erase(bo);
106    }
107  }
108}
109
110/**
111 * grabs the names of all Classes, and injects it into a List of const chars
112 * @return the generated List
113 *
114 * This function first looks, if the List has been changed (by the ListSize)
115 * befor it changes anything.
116 */
117const std::list<const char*>* ClassList::getClassNames()
118{
119  if (ClassList::classNames.size() != ClassList::classList->size())
120  {
121      ClassList::classNames.clear();
122
123      for (unsigned int cl = 0; cl < ClassList::classList->size(); cl++)
124        ClassList::classNames.push_back((*ClassList::classList)[cl].className);
125  }
126
127  return &ClassList::classNames;
128}
129
130/**
131 * searches for classID and returns the list of Entities
132 * @param classID the ID of the class to get the list from
133 * @return the List accessed by classID, or NULL if not found
134 */
135const std::list<BaseObject*>* ClassList::getList(ClassID classID)
136{
137  ClassList* fl;
138  return ((fl = ClassList::getClassList(classID)) != NULL)?
139       &(fl->objectList) : NULL;
140
141/*
142  std::list<ClassList>::iterator classIT = find (classList->begin(), classList->end(), classID);
143  return (likely(classIT != classList->end()))? &(*classIT).objectList : NULL;*/
144
145/*  for (classIT = ClassList::classList->begin(); classIT != ClassList::classList->end(); classIT++)
146  {
147    if ((*classIT) == classID )
148      return &(*classIT).objectList;
149  }
150  return NULL;*/
151}
152
153/**
154 * searches for className and returns the list of Entities
155 * @param className the name of the class to get the list from
156 * @return the List accessed by classID, or NULL if not found
157 */
158const std::list<BaseObject*>* ClassList::getList(const char* className)
159{
160  ClassList* fl;
161  return ((fl = ClassList::getClassList(className)) != NULL)?
162      &(fl->objectList) : NULL;
163
164  /*
165  std::list<ClassList>::iterator classIT = find (classList->begin(), classList->end(), className);
166  return (likely(classIT != classList->end()))? &(*classIT).objectList : NULL;*/
167
168
169/*  for (classIT = ClassList::classList->begin(); classIT != ClassList::classList->end(); classIT++)
170  {
171    if ((*classIT) == className )
172      return &(*classIT).objectList;
173  }
174  return NULL;*/
175}
176
177/**
178 * !!PRIVATE!!
179 * @param classID the ClassID to search for
180 * @returns the ClassList with classID as specifyer, or NULL if not
181 */
182ClassList* ClassList::getClassList(ClassID classID)
183{
184  std::vector<ClassList>::iterator classIT = find (ClassList::classList->begin(), ClassList::classList->end(), classID);
185  return (likely(classIT != classList->end()))? &(*classIT) : NULL;
186}
187
188
189/**
190 * !!PRIVATE!!
191 * @param className the ClassName to search for
192 * @returns the ClassList with className as specifyer, or NULL if not
193 */
194ClassList* ClassList::getClassList(const char* className)
195{
196  if (className == NULL)
197    return NULL;
198  std::vector<ClassList>::iterator classIT = find (classList->begin(), classList->end(), className);
199  return (likely(classIT != classList->end()))? &(*classIT) : NULL;
200}
201
202
203/**
204 * checks if the BaseObject* object exists.
205 * @param objectName the name of the BaseObject to look for
206 * @param classID if not CL_NULL it will only search through a specific type of Objects. Otherwise it will be searched everywhere.
207 * @return true, if the Object Exists in the specified ClassID, false otherwise
208 * @todo: speed this up!!
209 */
210BaseObject* ClassList::getObject(const char* objectName, ClassID classID)
211{
212  if (classID != CL_NULL)
213  {
214    ClassList* cl = ClassList::getClassList(classID);
215    if (cl != NULL)
216    {
217      std::list<BaseObject*>::iterator bo;
218      for (bo = cl->objectList.begin(); bo != cl->objectList.end(); bo++)
219        if ((*bo)->getName() != NULL && !strcmp((*bo)->getName(), objectName))
220          return (*bo);
221    }
222  }
223  else
224  {
225    std::list<BaseObject*>::iterator bo;
226    for (unsigned int cl = 0; cl < ClassList::classList->size(); cl++)
227    {
228      for (bo = (*ClassList::classList)[cl].objectList.begin(); bo != (*ClassList::classList)[cl].objectList.end(); bo++)
229        if ((*bo)->getName() != NULL && !strcmp((*bo)->getName(), objectName))
230          return (*bo);
231    }
232  }
233  return NULL;
234}
235
236
237/**
238 * checks if the BaseObject* object exists.
239 * @param object the Pointer to a BaseObject to check if it exists
240 * @param classID if not CL_NULL it will only search through a specific type of Objects. Otherwise it will be searched everywhere.
241 * @return true, if the Object Exists in the specified ClassID, false otherwise
242 * @todo: speed this up!!
243 */
244bool ClassList::exists(const BaseObject* object, ClassID classID)
245{
246  if (classID != CL_NULL)
247  {
248    ClassList* cl = ClassList::getClassList(classID);
249    if (cl != NULL)
250    {
251      std::list<BaseObject*>::const_iterator bo = find (cl->objectList.begin(), cl->objectList.end(), object);
252      return (bo != cl->objectList.end());
253    }
254  }
255  else
256  {
257    for (unsigned int cl = 0; cl < ClassList::classList->size(); cl++)
258    {
259      std::list<BaseObject*>::const_iterator bo =
260          find ((*ClassList::classList)[cl].objectList.begin(),
261          (*ClassList::classList)[cl].objectList.end(), object);
262      if (bo != (*ClassList::classList)[cl].objectList.end())
263        return true;
264    }
265  }
266  return false;
267}
268
269/**
270 * prints out a string of all the types this Object matches
271 * @param object a Pointer to the object to analyze
272 */
273void ClassList::whatIs(const BaseObject* object)
274{
275  for (unsigned int cl = 0; cl < ClassList::classList->size(); cl++)
276    if (object->isA((*ClassList::classList)[cl].classID))
277  {
278    PRINT(0)("=%s::0x%.8X=-",
279    (*ClassList::classList)[cl].className,
280    (*ClassList::classList)[cl].classID);
281  }
282}
283
284/**
285 * converts a ClassID into a string
286 * @param classID the ClassID to search for
287 * @return a String containing the name of the Class, NULL if the Class was not found
288 */
289const char* ClassList::IDToString(ClassID classID)
290{
291  ClassList* cl = ClassList::getClassList(classID);
292  return (cl != NULL) ? cl->className : NULL;
293}
294
295/**
296 * converts a String into a ClassID
297 * @param className the name of the class to search for
298 * @return the ClassID. CL_NULL, if the class was not found.
299 */
300ClassID ClassList::StringToID(const char* className)
301{
302  ClassList* cl = ClassList::getClassList(className);
303  return (cl != NULL) ? cl->classID : CL_NULL;
304}
305
306/**
307 * checks if this ClassList is named className
308 * @param className the Name to check this ClassList's ClassName against
309 * @returns true on match, false otherwise
310 */
311bool ClassList::operator==(const char* className)
312{
313  if (likely( className != NULL && this->className != NULL))
314    return (!strcmp(this->className, className));
315  else
316    return false;
317}
318
319
320
321/**
322 * Print out some very nice debug information
323 * @param debugLevel the level of verbosity
324 * @param classID the class that should be displayed (if CL_NULL (default) all classes will be displayed)
325 */
326void ClassList::debug(unsigned int debugLevel, ClassID classID)
327{
328  if (debugLevel > 3)
329    debugLevel = 3;
330  PRINT(0)("==========================\n");
331  PRINT(0)("=  CLASS_LIST (level %d)  =\n", debugLevel);
332  PRINT(0)("==========================\n");
333  PRINT(0)("| knows %d Classes\n|\n", ClassList::classList->size());
334  char niceString[100];
335  unsigned int lenCount = 0;
336
337  for (unsigned int cl = 0; cl < ClassList::classList->size(); cl++)
338  {
339    if ((debugLevel >= 1 || (*ClassList::classList)[cl].objectList.size() > 0 ) &&
340         (classID == CL_NULL || unlikely (classID == (*ClassList::classList)[cl].classID)))
341    {
342      lenCount = 1;
343      while (pow(10, lenCount) <= (*ClassList::classList)[cl].objectList.size())
344        ++lenCount;
345      for (int i=0; i < 30-strlen((*ClassList::classList)[cl].className) - lenCount; i++)
346        (niceString[i]) = ' ';
347      niceString[30-strlen((*ClassList::classList)[cl].className) - lenCount] = '\0';
348
349      PRINT(0)("| CLASS %s::%s %d\n", (*ClassList::classList)[cl].className, niceString,
350            (*ClassList::classList)[cl].objectList.size());
351
352      if (debugLevel >=2 && (*ClassList::classList)[cl].objectList.size() > 0)
353      {
354        PRINT(0)("|  Listing Instances:\n");
355        list<BaseObject*>::const_iterator bo;
356        for (bo = (*ClassList::classList)[cl].objectList.begin(); bo != (*ClassList::classList)[cl].objectList.end(); bo++)
357        {
358          PRINT(0)("|   %s::%s::(0x%.8X->%p ", (*bo)->getClassName(), (*bo)->getName(), (*bo)->getClassID(), (*bo));
359          if (debugLevel == 3)
360            ClassList::whatIs(*bo);
361          PRINT(0)("\n");
362        }
363      }
364    }
365  }
366  PRINT(0)("=======================CL=\n");
367}
368
369/**
370 * Print out some very nice debug information
371 * @param debugLevel the level of verbosity
372 * @param className the class that should be displayed.
373 * @see ClassList::debug
374 */
375void ClassList::debugS(const char* className, unsigned int debugLevel)
376{
377  ClassList::debug(debugLevel, ClassList::StringToID(className));
378}
Note: See TracBrowser for help on using the repository browser.