/**
 * Nov 7, 2007
 * edu.drexel.cs485.assign4:FoodFinderTest.java
 * --------
 */
package edu.drexel.cs485.assign4;

import java.awt.Point;
import java.io.IOException;

import edu.drexel.cs485.env.Environment;

/**
 * FoodFinderTest
 * @author duc
 * 
 * Description: 
 * 
 */
public class FoodFinderTest {
	private Environment env;
	
	public FoodFinderTest() throws IOException{
		env = new Environment();
		
	}
	
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		FoodFinderTest test;
		try {
			test = new FoodFinderTest();
			test.findFood();
			test.printMap();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

	/**
	 * 
	 */
	public void printMap() {
		env.drawEnvironment();
		
	}

	/**
	 * 
	 */
	public void findFood() {
		Point currentLocation = new Point(11,0);
		
		int currX = 11;
		int currY = 0;
		
		/*
		 * virp[] = {up, right, down, left}
		 */
		long up = env.getCellData(currentLocation);
	}

}
