Changeset 9709 in orxonox.OLD for branches/new_class_id/src/lib/shell
- Timestamp:
- Aug 31, 2006, 10:51:08 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/shell
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/shell/Makefile.am
r7428 r9709 18 18 shell_buffer.h \ 19 19 shell_input.h \ 20 shell_command_class.h \ 20 21 shell_command.h \ 21 shell_command_class.h \22 22 shell_completion.h \ 23 23 shell_completion_plugin.h -
branches/new_class_id/src/lib/shell/shell_command.cc
r9702 r9709 26 26 namespace OrxShell 27 27 { 28 NewObjectListDefinition(ShellCommand); 28 29 SHELL_COMMAND(debug, ShellCommandClass, help); 29 NewObjectListDefinition(ShellCommand);30 30 31 31 -
branches/new_class_id/src/lib/shell/shell_completion.cc
r9697 r9709 141 141 type = ClassCompletion; 142 142 143 /// FIXME 144 // if (!this->addToCompleteList(*boList, objectBegin, type)) 145 // return false; 143 NewObjectListBase::base_list list; 144 objectList->getBaseObjectList(&list); 145 146 if (!this->addToCompleteList(list, objectBegin, type)) 147 return false; 146 148 147 149 return true; -
branches/new_class_id/src/lib/shell/some_shell_commands.cc
r8623 r9709 34 34 SHELL_COMMAND(nick, PlayerStats, shellNick)->setAlias("nick"); 35 35 36 #include "class_list.h"37 SHELL_COMMAND(debug, ClassList, ClassList::debugS)38 ->describe("Shows all registered classes, if param1: is a valid ClassName only values of this class are shown. param2: how much output")39 ->defaultValues(MT_NULL, 1);36 // #include "class_list.h" 37 // SHELL_COMMAND(debug, ClassList, ClassList::debugS) 38 // ->describe("Shows all registered classes, if param1: is a valid ClassName only values of this class are shown. param2: how much output") 39 // ->defaultValues(MT_NULL, 1); 40 40 41 41 #include "p_node.h"
Note: See TracChangeset
for help on using the changeset viewer.