X-Git-Url: https://ruin.nu/git/?p=icfp05.git;a=blobdiff_plain;f=botsrc%2Fbot.cpp;h=203c96972673c13624667d6f996904d5cec6589b;hp=28e8004a2167997f2b5a8bbe629a486ac03f6711;hb=87c4e6cccfbb55e5ac3f21f2787d54506f389dd4;hpb=54e2cf81a6cc187208a849091bda7cd94a10c894 diff --git a/botsrc/bot.cpp b/botsrc/bot.cpp index 28e8004..203c969 100644 --- a/botsrc/bot.cpp +++ b/botsrc/bot.cpp @@ -33,11 +33,11 @@ void Bot::play(){ return; getline(cin, input); _name = value(input); - cerr << "Got name: " << _name << endl; + //cerr << "Got name: " << _name << endl; getPlayers(); - cerr << "Got players, building graph." << endl; + //cerr << "Got players, building graph." << endl; getline(cin, input); buildGraph(); @@ -48,9 +48,9 @@ void Bot::play(){ updateWorld(); _type = _players[_name].type; _location = _players[_name].location; - cerr << "New turn" << endl; + //cerr << "New turn" << endl; move(turn()); - cerr << "Done with turn." << endl; + //cerr << "Done with turn." << endl; } } @@ -83,7 +83,7 @@ void Bot::buildGraph(){ if (input != "nod\\") return; - cerr << "Getting intersections" << endl; + //cerr << "Getting intersections" << endl; while (true){ getline(cin, input); if (input == "nod/") @@ -105,13 +105,13 @@ void Bot::buildGraph(){ node >> inter.y; } - cerr << "Number of intersections: " << _intersections.size() << endl; + //cerr << "Number of intersections: " << _intersections.size() << endl; getline(cin, input); if (input != "edg\\") return; - cerr << "Getting streets" << endl; + //cerr << "Getting streets" << endl; int streets = 0; while (true){ getline(cin, input); @@ -135,7 +135,7 @@ void Bot::buildGraph(){ }else _intersections[from].connections[to] = car; } - cerr << "Number of streets: " << streets << endl; + //cerr << "Number of streets: " << streets << endl; getline(cin, input); } @@ -196,7 +196,7 @@ void Bot::updateWorld(){ } void Bot::move(std::string location){ - cerr << "Moving to: " << location << endl; + //cerr << "Moving to: " << location << endl; cout << "mov: " << location << " " << _playerTypeNames[_type] << endl; }