Home
last modified time | relevance | path

Searched refs:ROBOTOP_RIGHT (Results 1 – 3 of 3) sorted by relevance

/dports/games/netherearth/netherearth-0.51/
H A Dnethercycle.cpp1053 if (r->op==ROBOTOP_RIGHT) r->angle+=RobotRotationSpeed(r->traction,terrain); in cycle()
1190 if (r->op==ROBOTOP_RIGHT && (r->angle%90)==0) r->op=ROBOTOP_NONE; in cycle()
1254 if (r->angle==270) r->op=ROBOTOP_RIGHT; in cycle()
1262 if (r->angle==90) r->op=ROBOTOP_RIGHT; in cycle()
1270 if (r->angle==0) r->op=ROBOTOP_RIGHT; in cycle()
1278 if (r->angle==180) r->op=ROBOTOP_RIGHT; in cycle()
H A Drobot_ai.cpp236 if (dif==90) op->first_robotop=ROBOTOP_RIGHT; in AI_availableoperators()
237 if (dif==180) op->first_robotop=ROBOTOP_RIGHT; in AI_availableoperators()
288 if (dif==90) searchmap[newpos]->first_robotop=ROBOTOP_RIGHT; in AI_expandoperators()
289 if (dif==180) searchmap[newpos]->first_robotop=ROBOTOP_RIGHT; in AI_expandoperators()
1097 op=ROBOTOP_RIGHT; in AI_program_destroy()
1257 op=ROBOTOP_RIGHT; in AI_program_stopdefend()
H A Dnether.h109 #define ROBOTOP_RIGHT 2 macro