コメント文にしたところ&あってるかわからないところ

Common

makesTargetHealths()内
if (!targetArmors.isEmpty())の中
Astar関連がわからない

Battle

goToLastEnemy()内
safeRunToLocationがわからない

moveRandomly()内
safeRunToLocationがわからない

goToLastEnemy()内
safeRunToLocationがわからない

escapeBattle()内
ArrayList<NeighNav> myNeighbours = gameMap.nearestNavPoint(info.getLocation()).neighbours;を実装するのに

List<NavPoint> myNeighbours = new LinkedList();
for (NavPointNeighbourLink link : info.getNearestNavPoint().getOutgoingEdges().values()) {
myNeighbours.add(link.getToNavPoint());
}
としているがあってますか?

followNavs()内
getNavPointsAStarがわからない
その下
if(goalNav == gameMap.nearestNavPoint(memory.getAgentLocation()))
のところ
escapeBattle()内と同じやり方でいいのかわからないので放置


Serach

runAroundAllItemList()内
if (targetItem == null) {の中
safeRunToLocationがわからない
最終更新:2010年06月04日 17:35