package trackerModule.test;
import trackerModule.sim.map.MapFrame;
import trackerModule.sim.tracker.World;
/**
* The Class Simulation_test.
*/
public class Simulation_test {
/**
* Instantiates a new simulation_test.
*/
public Simulation_test() {
}
/**
* Test_ gui.
*/
public void test_GUI(){
World.This().loadWorld_Route();
World.This().initShortestPath();
World.This().initNearestFishingAreas();
World.This().createShipsByScenario(10, "Bombing", "IllicitCargo");
new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
// World.This().load("World_Route.map");
/// World.This().createShipsByScenario(10, "Bombing", "IllicitCargo");
// new MapFrame("PROGNOS Simulator");
}
/**
* The main method.
*
* @param args the arguments
*/
public static void main(String[] args) {
Simulation_test T = new Simulation_test();
T.test_GUI();
}
}