/usr/share/games/colobot/ai/tremot2b.txt is in colobot-common 0.1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | extern void object::Slave( )
{
float order, param;
while ( true )
{
// wait for order ...
while ( !testinfo("order", 100) )
{
wait(1);
}
// read the order and the parameter
order = receive("order", 100);
param = receive("param", 100);
if ( order == 1 )
{
message("move("+param+")");
move(param);
}
else if ( order == 2 )
{
message("turn("+param+")");
turn(param);
}
else
{
message("Unknown order");
}
// signal "end of work"
deleteinfo("order", 100);
}
}
|