Overview
Comment: | Use enumerateObjectsUsingBlock: where appropriate |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fd4460c7b65410b1f78e2f0df253cb5d |
User & Date: | js on 2025-03-20 11:03:23 |
Other Links: | manifest | tags |
Context
2025-03-20
| ||
13:21 | Make more use of convenience methods check-in: 89fbd7a152 user: js tags: trunk | |
11:03 | Use enumerateObjectsUsingBlock: where appropriate check-in: fd4460c7b6 user: js tags: trunk | |
10:52 | Fix projectiles check-in: be136b699f user: js tags: trunk | |
Changes
Modified src/clientextras.mm from [364ff9cb88] to [d40925e827].
︙ | |||
76 77 78 79 80 81 82 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | - + - - - + | } extern int democlientnum; void renderclients() { |
︙ |
Modified src/clientgame.mm from [ec0093549c] to [75ba298a0a].
︙ | |||
194 195 196 197 198 199 200 | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | - - - - - - + + + + + + + - - - - - - - - + + + + + + + + - - | } extern int democlientnum; void otherplayers() { |
︙ |
Modified src/server.mm from [bc477ab2a8] to [f99720b385].
︙ | |||
425 426 427 428 429 430 431 | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | - - + + + - + - - - + | lastsec = seconds; if ((mode > 1 || (mode == 0 && nonlocalclients)) && seconds > mapend - minremain * 60) checkintermission(); if (interm && seconds > interm) { interm = 0; |
︙ |
Modified src/serverbrowser.mm from [bb466005e7] to [7409dbfc1c].
︙ | |||
270 271 272 273 274 275 276 | 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | - - - + + + | refreshservers() { checkresolver(); checkpings(); if (lastmillis - lastinfo >= 5000) pingservers(); [servers sort]; |
︙ | |||
302 303 304 305 306 307 308 | 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | - - - + | if (si.full.length > 50) si.full = [si.full substringToIndex:50]; menumanual(1, i, si.full); if (!--maxmenu) return; |
︙ |
Modified src/weapon.mm from [c14fa40d91] to [5796e07781].
︙ | |||
341 342 343 344 345 346 347 | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | - + - + | particle_trail(1, 500, from, to); break; } } void hitpush(int target, int damage, DynamicEntity *d, DynamicEntity *at, |
︙ | |||
420 421 422 423 424 425 426 | 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | - + - - - + | (int)(from.y * DMF), (int)(from.z * DMF), (int)(to.x * DMF), (int)(to.y * DMF), (int)(to.z * DMF)); d.gunwait = guns[d.gunselect].attackdelay; if (guns[d.gunselect].projspeed) return; |