Changeset 5780 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Nov 26, 2005, 3:47:51 PM (19 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/text_engine/text_engine.cc
r5779 r5780 68 68 { 69 69 while(textList->size() > 0) 70 {71 70 delete dynamic_cast<Text*>(textList->front()); 72 }73 71 } 74 72 // delete all remaining fonts (There should not be Anything to do here) … … 76 74 if (fontList != NULL) 77 75 { 76 ///FIXME 78 77 // while (fontList->size() > 0) 79 78 { 80 Font* font = dynamic_cast<Font*>(fontList-> front());79 Font* font = dynamic_cast<Font*>(fontList->back()); 81 80 if (likely(font != Font::getDefaultFont())) 82 81 ResourceManager::getInstance()->unload(font, RP_GAME); -
trunk/src/lib/lang/class_list.cc
r5779 r5780 49 49 ClassList::~ClassList () 50 50 { 51 /// FIXME 52 // if(ClassList::classList != NULL) 53 // { 54 // delete ClassList::classList; 55 // ClassList::classList = NULL; 56 // } 57 --ClassList::classCount; 51 // ClassList::classList.erase(ClassList::classList.begin(), ClassList::classList.end()); 52 --ClassList::classCount; 58 53 } 59 54 -
trunk/src/lib/shell/shell_command_class.cc
r5779 r5780 20 20 #include "shell_command.h" 21 21 22 #include "list.h"23 22 #include "debug.h" 24 23 #include "class_list.h" 24 #include "compiler.h" 25 25 26 26 #include <stdio.h> … … 104 104 void ShellCommandClass::unregisterAllCommands() 105 105 { 106 /// FIXME 107 108 /* if (ShellCommandClass::commandClassList != NULL) 109 { 110 // unregister all commands 111 tIterator<ShellCommandClass>* iterator = ShellCommandClass::commandClassList->getIterator(); 112 ShellCommandClass* elem = iterator->firstElement(); 113 while(elem != NULL) 114 { 115 delete elem; 116 117 elem = iterator->nextElement(); 118 } 119 delete iterator; 120 106 if (ShellCommandClass::commandClassList != NULL) 107 { 108 // unregister all commands and Classes 109 std::list<ShellCommandClass*>::iterator classIT; 110 for (classIT = ShellCommandClass::commandClassList->begin(); classIT != ShellCommandClass::commandClassList->end(); classIT++) 111 delete (*classIT); 121 112 delete ShellCommandClass::commandClassList; 122 113 ShellCommandClass::commandClassList = NULL; … … 126 117 if (ShellCommandClass::aliasList != NULL) 127 118 { 128 tIterator<ShellCommandAlias>* itAL = ShellCommandClass::aliasList->getIterator(); 129 ShellCommandAlias* elemAL = itAL->firstElement(); 130 while(elemAL != NULL) 131 { 132 delete elemAL; 133 elemAL = itAL->nextElement(); 134 } 135 delete itAL; 119 std::list<ShellCommandAlias*>::iterator alias; 120 for (alias = ShellCommandClass::aliasList->begin(); alias != ShellCommandClass::aliasList->end(); alias++) 121 delete (*alias); 136 122 delete ShellCommandClass::aliasList; 137 123 ShellCommandClass::aliasList = NULL; 138 } */124 } 139 125 } 140 126 -
trunk/src/lib/shell/shell_completion.cc
r5779 r5780 25 25 #include "base_object.h" 26 26 #include "class_list.h" 27 #include "list.h"28 27 #include "debug.h" 29 28 … … 37 36 ShellCompletion::ShellCompletion(ShellInput* input) 38 37 { 39 this->completionList = NULL;40 38 this->input = input; 41 39 } … … 47 45 ShellCompletion::~ShellCompletion () 48 46 { 49 // delete what has to be deleted here50 if (this->completionList)51 {52 this->emptyCompletionList();53 delete this->completionList;54 }55 47 } 56 48 … … 239 231 bool ShellCompletion::generalComplete(const char* begin, const char* displayAs, const char* addBack, const char* addFront) 240 232 { 241 if ( completionList == NULL ||this->input == NULL )242 return false; 243 if (completionList ->size() == 0)244 return false; 245 246 ShellC_Element * addElem = completionList->front();247 const char* addString = addElem ->name;233 if (this->input == NULL ) 234 return false; 235 if (completionList.size() == 0) 236 return false; 237 238 ShellC_Element addElem = completionList.front(); 239 const char* addString = addElem.name; 248 240 unsigned int addLength = 0; 249 241 unsigned int inputLenght = strlen(begin); … … 254 246 255 247 SHELLC_TYPE changeType = SHELLC_NONE; 256 list<ShellC_Element *>::iterator charIT;257 for (charIT = completionList ->begin(); charIT != completionList->end(); charIT++)258 { 259 if ((*charIT) ->type != changeType)248 list<ShellC_Element>::iterator charIT; 249 for (charIT = completionList.begin(); charIT != completionList.end(); charIT++) 250 { 251 if ((*charIT).type != changeType) 260 252 { 261 253 if (changeType != SHELLC_NONE) 262 254 PRINT(0)("\n"); 263 PRINT(0)("%s: ", ShellCompletion::typeToString((*charIT) ->type));264 changeType = (*charIT) ->type;255 PRINT(0)("%s: ", ShellCompletion::typeToString((*charIT).type)); 256 changeType = (*charIT).type; 265 257 } 266 PRINTF(0)("%s ", (*charIT) ->name);258 PRINTF(0)("%s ", (*charIT).name); 267 259 for (unsigned int i = inputLenght; i < addLength; i++) 268 if (addString[i] != (*charIT) ->name[i])260 if (addString[i] != (*charIT).name[i]) 269 261 { 270 262 addLength = i; … … 285 277 this->input->addCharacters(adder); 286 278 287 if (completionList ->size() == 1)279 if (completionList.size() == 1) 288 280 { 289 281 if ( addBack != NULL ) … … 315 307 !strncasecmp(*string, completionBegin, searchLength)) 316 308 { 317 printf("%s\n", *string); 318 ShellC_Element* newElem = new ShellC_Element; 319 newElem->name = *string; 320 newElem->type = type; 321 this->completionList->push_back(newElem); 309 ShellC_Element newElem; 310 newElem.name = *string; 311 newElem.type = type; 312 this->completionList.push_back(newElem); 322 313 } 323 314 } … … 344 335 !strncasecmp((*bo)->getName(), completionBegin, searchLength)) 345 336 { 346 ShellC_Element * newElem = new ShellC_Element;347 newElem ->name = (*bo)->getName();348 newElem ->type = type;349 this->completionList ->push_back(newElem);337 ShellC_Element newElem; 338 newElem.name = (*bo)->getName(); 339 newElem.type = type; 340 this->completionList.push_back(newElem); 350 341 } 351 342 } … … 361 352 void ShellCompletion::emptyCompletionList() 362 353 { 363 if (this->completionList != NULL) 364 { 365 while (this->completionList->size() > 0) 366 { 367 delete this->completionList->front(); 368 this->completionList->pop_front(); 369 } 370 } 354 this->completionList.erase(this->completionList.begin(), 355 this->completionList.end()); 371 356 } 372 357 -
trunk/src/lib/shell/shell_completion.h
r5779 r5780 60 60 61 61 private: 62 std::list<ShellC_Element *>*completionList; //!< A list of completions, that are io.62 std::list<ShellC_Element> completionList; //!< A list of completions, that are io. 63 63 ShellInput* input; //!< the input this completion works on. 64 64 };
Note: See TracChangeset
for help on using the changeset viewer.