本文整理汇总了C++中Home::getPosition方法的典型用法代码示例。如果您正苦于以下问题:C++ Home::getPosition方法的具体用法?C++ Home::getPosition怎么用?C++ Home::getPosition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Home
的用法示例。
在下文中一共展示了Home::getPosition方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: nextAction
int Agent::nextAction(State s, FANN::neural_net*& net, Position self_pos, Home home, double eps) {
//stateTrajectory.push_back(s);
//TODO if adding threading, change to drand48_r() and rand_r()
if (drand48() < eps)
{
return rand() % 6;
}
if (this->isCarrying())
{
Position home_pos = home.getPosition();
if (home_pos == self_pos) return SET_DOWN;
if (abs(self_pos.getX() - home_pos.getX()) > abs(self_pos.getY() - home_pos.getY()))
{
if (self_pos.getX() > home_pos.getX())
{
return MOVE_LEFT;
}
else {
return MOVE_RIGHT; }
}
else{
if (self_pos.getY() > home_pos.getY())
{
return MOVE_UP;
}
else {
return MOVE_DOWN; }
}
}
/* Picks the output from the neural net */
fann_type* output = net->run( (fann_type*) s.array);
int max_i = 0;
for (int i = 0; i < 6; ++i)
{
if (output[i] > output[max_i]) { max_i = i; }
}
return max_i;
}