Differences From Artifact [ada84b527b]:
- File names.h — part of check-in [156b0a7c35] at 2022-07-06 05:20:21 on branch trunk — Several changes needed to allow coordinate input to be implemented in future (including the CLICK message and InputXY keyword). Also fixes a bug that was caused by changing MoveItem from Uint8 to Uint16. (user: user, size: 2923) [annotate] [blame] [check-ins using]
To Artifact [256a5051e1]:
- File names.h — part of check-in [60b09ee8e4] at 2022-10-19 22:28:12 on branch trunk — Implement returning classes/objects from COLLIDEBY message to transform objects. (Not fully tested yet) (user: user, size: 2958) [annotate] [blame] [check-ins using]
| ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + |
#define MSG_COLLIDEBY 21
#define MSG_COLLIDE 22
#define MSG_COLLIDING 23
#define MSG_BLOCKED 24
#define MSG_CONNECT 25
#define MSG_NEXTWARP 26
#define MSG_CLICK 27
#define MSG_XCREATE 28
#ifdef HEROMESH_MAIN
const char*const standard_message_names[]={
"INIT",
"CREATE",
"DESTROY",
"BEGIN_TURN",
"ARRIVED",
|
| ︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | + |
"COLLIDEBY",
"COLLIDE",
"COLLIDING",
"BLOCKED",
"CONNECT",
"NEXTWARP",
"CLICK",
"XCREATE",
};
const char*const standard_sound_names[]={
"SPLASH",
"POUR",
"DOOR",
"GLASS",
"BANG",
|
| ︙ |