import becker.robots.*;
import becker.robots.icons.*;
import java.awt.*;

/**
 *  Driver for the 2007 TEE2O Final Exam:
 *  <a href="http://srschool.rsgc.on.ca/cdarcy/TEE2O/media/2007TEEExam.html>Robots animation</a>
 *	Date 2007 06 04
 *  @author C. D'Arcy
 */
public class Exam2007 {
	
  public static void main(String[] args) {

    // Construct the crime scene...
    City scene = new City("CrimeScene.txt");

    // create and position the criminal...
    Thing badGuy = new Thing(scene, 7, 6);
    CircleIcon badIcon = new CircleIcon(Color.BLACK, 0.2);

    badGuy.setIcon(badIcon);

    // bring out Rex...
    PoliceDog roboDog = new PoliceDog(scene, 0, 0, Direction.EAST);

    // Sick 'em...
    roboDog.findTheBadGuy();
  }		
	
}
