⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dobringtoac.act

📁 一个用来控制poineer2型机器人的智能体软件
💻 ACT
字号:

/*
* For now there is no bringto function
* from Markus Hinrichs and Baschir Jaghoori
* for testing purposes

* TODO: replace the patrol function
* with the bringto function
*
* load bringto.act;

*/

/*load sample.act;*/

/*
* necessary to prevent a possible name collision
* next time starting the activity
*/

/*remove dobringtoac;*/


/***************************************************/
act dobringtoac()
{

int x;
/*
* start bringto("a", "c");
*/

  sfMessage("Performing dobringtoac in Saphira a little bit longer");

/*
* wait a while
*/

x=75;

loop:
if (x == 0) goto finish;

onInit:
x = x-1;
goto loop;

finish:
  sfMessage("dobringtoac in Saphira DONE");
  succeed;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -