]> ruin.nu Git - icfp05.git/blobdiff - robbersrc/robber.cpp
initial robber done
[icfp05.git] / robbersrc / robber.cpp
index 50db5100faf9b561a99a9f451ca319e4b71b9f05..9bead891761960fd61654568996c0d043cdba3f3 100644 (file)
@@ -8,6 +8,12 @@ using namespace std;
 using namespace __gnu_cxx;
 
 string Robber::turn(){
+
+       //Ignore bribing for now
+       cout << "nobribe:" << endl;
+       string input;
+       getline(cin,input);
+
        hash_map<string,double> streets;
        Intersection& inter = _intersections[_location];
        for (hash_map<string,StreetType>::const_iterator street = inter.connections.begin();
@@ -20,16 +26,17 @@ string Robber::turn(){
                Intersection& conInter = _intersections[street->first];
 
                list<string> closestFootCop = shortestPath(street->first, cop_foot, FindPlayer(_players, cop_foot, 6), true);
-               list<string> closestCarCop = shortestPath(street->first, cop_car, FindPlayer(_players, cop_car, closestFootCop.size() - 1), true);
-
-               unsigned int closestCop = 0;
+               unsigned int closestCop = closestFootCop.size();
+               //cerr << "Cop on fot " << closestCop << " intersections away." << endl;
                bool copInCar = false;
+               list<string> closestCarCop = shortestPath(street->first, cop_car, FindPlayer(_players, cop_car, closestCop > 0 ? closestCop : 5), true);
+               //cerr << "Cop in car " << closestCarCop.size() << " intersections away." << endl;
+
 
                if (closestCarCop.size() > 0){
                        closestCop = closestCarCop.size();
                        copInCar = true;
-               }else 
-                       closestCop = closestFootCop.size();
+               }
 
                if (closestCop > 0 && closestCop < 3){
                        //cerr << "Cop " << closestCop << " intersections away." << endl;
@@ -106,10 +113,17 @@ string Robber::turn(){
                }
        }
        _oldLocation = _location;
+       //cerr << "Moving to: " << destination << endl;
                
        return destination;
        
 }
+void Robber::move(std::string location){
+       cout << "rmov\\" << endl;
+       Bot::move(location);
+       cout << "nobribe:" << endl;
+       cout << "rmov/" << endl;
+}
 
 int main(){
        Robber robber("harv-robber");