Differences From Artifact [522c906303]:
- File game.c — part of check-in [1114ae75d5] at 2022-10-05 23:26:45 on branch trunk — Implement LastR, NextR, ThisR; this is not tested and not fully complete; it will be used in future to implement replacing objects with new ones in COLLIDE and COLLIDEBY messages. (user: user, size: 55497) [annotate] [blame] [check-ins using]
To Artifact [c6d45694fd]:
- File game.c — part of check-in [ec8a917348] at 2023-07-18 05:43:34 on branch trunk — Add 'rS' to set replay speed to a number with absolute instead of relative setting. (user: user, size: 55561) [annotate] [blame] [check-ins using]
| ︙ | |||
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 | 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 | + + |
return 1;
case 'mx': // Move list export
if(argc<2) break;
do_export_moves(sqlite3_column_text(args,1));
return 0;
case 'rs': // Replay speed
number+=replay_speed;
// fall through
case 'rS': // Replay speed (absolute)
if(number<1) number=1; else if(number>255) number=255;
replay_speed=number;
return prev;
case 'xy': // Coordinate input
if(argc<3 || !has_xy_input) break;
argc=sqlite3_column_int(args,1);
number=sqlite3_column_int(args,2);
|
| ︙ |