Changeset 5635 in orxonox.OLD for trunk/src/lib/util/executor/executor.cc
- Timestamp:
- Nov 18, 2005, 6:20:23 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.cc
r5633 r5635 68 68 69 69 /** 70 * lets a command be described71 * @param description the description of the Given command72 */73 Executor* Executor::describe(const char* description)74 {75 if (this == NULL)76 return NULL;77 else78 {79 this->description = description;80 return this;81 }82 }83 84 /**85 70 * sets default Values of the Commands 86 71 * @param count how many default Values to set. … … 93 78 Executor* Executor::defaultValues(unsigned int count, ...) 94 79 { 80 va_list values; 81 va_start(values, count); 82 83 this->defaultValues(count, values); 84 } 85 86 Executor* Executor::defaultValues(unsigned int count, va_list values) 87 { 95 88 if (this == NULL) 96 89 return NULL; … … 100 93 count = this->paramCount; 101 94 102 va_list defaultList;103 va_start(defaultList, count);104 95 105 96 for (unsigned int i = 0; i < count; i++) … … 108 99 { 109 100 case MT_BOOL: 110 this->defaultValue[i].setInt(va_arg( defaultList, int));101 this->defaultValue[i].setInt(va_arg(values, int)); 111 102 break; 112 103 case MT_CHAR: 113 this->defaultValue[i].setChar((char)va_arg( defaultList, int));104 this->defaultValue[i].setChar((char)va_arg(values, int)); 114 105 break; 115 106 case MT_STRING: 116 this->defaultValue[i].setString(va_arg( defaultList, char*));107 this->defaultValue[i].setString(va_arg(values, char*)); 117 108 break; 118 109 case MT_INT: 119 this->defaultValue[i].setInt(va_arg( defaultList, int));110 this->defaultValue[i].setInt(va_arg(values, int)); 120 111 break; 121 112 /* case MT_UINT: 122 this->defaultValue[i].setInt((int)va_arg( defaultList, unsigned int));113 this->defaultValue[i].setInt((int)va_arg(values, unsigned int)); 123 114 break;*/ 124 115 case MT_FLOAT: 125 this->defaultValue[i].setFloat(va_arg( defaultList, double));116 this->defaultValue[i].setFloat(va_arg(values, double)); 126 117 break; 127 118 /* case MT_LONG: 128 this->defaultValue[i].setInt((int) va_arg( defaultList, long));119 this->defaultValue[i].setInt((int) va_arg(values, long)); 129 120 break;*/ 130 121 default:
Note: See TracChangeset
for help on using the changeset viewer.