// WORLD INPUT BUFFER (WIB)
//
// List of Messages
//
// [[ID, ACTION], ... ]
//
// ACTION = [MOVE, NONMOVE, SAY, SNDC]
//
// MOVE in {'000', ... , '1000'} (Binary notation)
// NONMOVE = {'1001'} (:= 'eat')
//
// SAY in ASCII-Strings
// SNDC := some code for a sound
//
// Example:
WIB1 = [['0000', '000', '0', 'abab', '-']; ['0001', '001','0', '-', '-'];['0010', '000','0', 'xxxx', '-']; ['0011',
'011','0', '-', '-']]
//
// Sysdtem with ID '0000' plans to make no move '000', has no nonmove-action '0', says 'abab' and indicates no further
spound '-'.