Differences From Artifact [4b1de8bd7f]:
- File game.c — part of check-in [1ca3a03298] at 2023-10-18 04:56:08 on branch trunk — Change colour of (X,Y) coordinates to make it easier to read. (user: user, size: 60014) [annotate] [blame] [check-ins using]
To Artifact [64a615a82b]:
- File game.c — part of check-in [382666e88a] at 2023-10-31 23:36:23 on branch trunk — Make control and middle button to draw lines from clicked location for helping with alignment. (user: user, size: 60138) [annotate] [blame] [check-ins using]
| ︙ | |||
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 | 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | + + + + |
sound_test();
return prev;
case '^d': // Describe object
describe_at(number-65);
return prev;
case '^g': // Display global variables
global_examine();
return prev;
case '^l': // Draw lines from location
timerflag=1;
draw_lines(number%64?:64,number/64);
return prev;
case '^n': // List objects (bizarro)
list_objects_at(number-65,bizplayfield,"bizarro ");
return prev;
case '^o': // List objects
list_objects_at(number-65,playfield,"");
return prev;
|
| ︙ |