Skip to content

Commit

Permalink
Use errorstream instead of std::cout in pathfinder.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
PilzAdam committed Aug 16, 2013
1 parent 1e4e64f commit 75a139e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pathfinder.cpp
Expand Up @@ -207,7 +207,7 @@ std::vector<v3s16> pathfinder::get_Path(ServerEnvironment* env,

//check parameters
if (env == 0) {
std::cout << "missing environment pointer" << std::endl;
ERROR_TARGET << "missing environment pointer" << std::endl;
return retval;
}

Expand Down Expand Up @@ -246,7 +246,7 @@ std::vector<v3s16> pathfinder::get_Path(ServerEnvironment* env,

//build data map
if (!build_costmap()) {
std::cout << "failed to build costmap" << std::endl;
ERROR_TARGET << "failed to build costmap" << std::endl;
return retval;
}
#ifdef PATHFINDER_DEBUG
Expand All @@ -263,13 +263,13 @@ std::vector<v3s16> pathfinder::get_Path(ServerEnvironment* env,
path_gridnode& endpos = getIndexElement(EndIndex);

if (!startpos.valid) {
std::cout << "invalid startpos" <<
ERROR_TARGET << "invalid startpos" <<
"Index: " << PPOS(StartIndex) <<
"Realpos: " << PPOS(getRealPos(StartIndex)) << std::endl;
return retval;
}
if (!endpos.valid) {
std::cout << "invalid stoppos" <<
ERROR_TARGET << "invalid stoppos" <<
"Index: " << PPOS(EndIndex) <<
"Realpos: " << PPOS(getRealPos(EndIndex)) << std::endl;
return retval;
Expand All @@ -290,7 +290,7 @@ std::vector<v3s16> pathfinder::get_Path(ServerEnvironment* env,
update_cost_retval = update_cost_heuristic(StartIndex,v3s16(0,0,0),0,0);
break;
default:
std::cout << "missing algorithm"<< std::endl;
ERROR_TARGET << "missing algorithm"<< std::endl;
break;
}

Expand Down Expand Up @@ -350,7 +350,7 @@ std::vector<v3s16> pathfinder::get_Path(ServerEnvironment* env,
#ifdef PATHFINDER_DEBUG
print_pathlen();
#endif
std::cout << "failed to update cost map"<< std::endl;
ERROR_TARGET << "failed to update cost map"<< std::endl;
}


Expand Down

0 comments on commit 75a139e

Please sign in to comment.