Overview
Comment: | Pad arguments for commands |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
852e3a48c314a7a6eb6e5c9894e439a4 |
User & Date: | js on 2025-03-08 13:12:32 |
Other Links: | manifest | tags |
Context
2025-03-08
| ||
14:04 | commands.mm: More cleanups check-in: dab8760d1e user: js tags: trunk | |
13:12 | Pad arguments for commands check-in: 852e3a48c3 user: js tags: trunk | |
12:51 | Fix ARG_VARI commands check-in: 8edff2c849 user: js tags: trunk | |
Changes
Modified src/Command.mm from [3d87b31463] to [3d696164e9].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | + + + + + + + + + + + + + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + - + + + - + + + - + + + - + + + | #import "Command.h" #include <cube.h> static OFArray<OFString *> * padArguments(OFArray<OFString *> *arguments, size_t count) { OFMutableArray<OFString *> *copy; if (arguments.count >= count) return arguments; copy = [arguments mutableCopy]; while (copy.count < count) [copy addObject:@""]; [copy makeImmutable]; return copy; } @implementation Command - (instancetype)initWithName:(OFString *)name function:(void (*)())function argumentsTypes:(int)argumentsTypes { self = [super initWithName:name]; _function = function; _argumentsTypes = argumentsTypes; return self; } - (int)callWithArguments:(OFArray<OFString *> *)arguments isDown:(bool)isDown { switch (_argumentsTypes) { case ARG_1INT: |
Modified src/commands.mm from [80db5d3058] to [b241a73010].
︙ | |||
341 342 343 344 345 346 347 348 | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | + - + + | } } bool execfile(OFString *cfgfile) { @autoreleasepool { OFString *command; @try { |
︙ |