public void run()
 {
     Main.getInstance().Terrain.Reload("heightmap9", 37.0f, 6.35f);
     //Main.getInstance().AddTerrain(terrain);
     Airport airport1 = new Airport(Main.getInstance(), 37, 6, 1.5, 90);
     Airport airport2 = new Airport(Main.getInstance(), 37, 6.7, 2.5, 60);
     Exit exit1 = new Exit(Main.getInstance(), 40, 7, 230, 0.1);
     Exit exit2 = new Exit(Main.getInstance(), 40, 26.0, 270, 0.1);
     Exit exit3 = new Exit(Main.getInstance(), 10.0, 30, 0, 0.1);
     Exit exit4 = new Exit(Main.getInstance(), 0, 23.0, 90, 0.1);
     Exit exit5 = new Exit(Main.getInstance(), 6.0, 0, 120, 0.1);
     Plane plane1 = new Airbus(Main.getInstance(), 5.0, 13.0, 3000, 220, 60, exit1.GenerateAirbusCallSign(), 1000.0);
     Plane plane2 = new Cesna(Main.getInstance(), 7.0, 2.0, 2000, 180, 90, exit1.GenerateCesnaCallSign(), 1000.0);
     Plane plane3 = new Airbus(Main.getInstance(), 25.0, 16.0, 4000, 250, 0, exit1.GenerateAirbusCallSign(), 1000.0);
     Plane plane4 = new Boeing(Main.getInstance(), 10.0, 23.0, 5000, 280, 300, exit1.GenerateBoeingCallSign(), 1000.0);
     Main.getInstance().AddAirport(airport1);
     Main.getInstance().AddAirport(airport2);
     Main.getInstance().AddExit(exit1);
     Main.getInstance().AddExit(exit2);
     Main.getInstance().AddExit(exit3);
     Main.getInstance().AddExit(exit4);
     Main.getInstance().AddExit(exit5);
     Main.getInstance().AddPlane(plane1);
     Main.getInstance().AddPlane(plane2);
     Main.getInstance().AddPlane(plane3);
     Main.getInstance().AddPlane(plane4);
 }
 public void run()
 {
     Main.getInstance().Terrain.Reload("heightmap1", 6.6f, 5.2f);
     //Main.getInstance().AddTerrain(terrain);
     Airport airport = new Airport(Main.getInstance(), 6.6, 5.2, 2.5, 300);
     Main.getInstance().AddAirport(airport);
     Exit exit1 = new Exit(Main.getInstance(), 10, 30, 22.0, 0.5);
     Exit exit2 = new Exit(Main.getInstance(), 40, 10, 250.0, 0.1);
     Main.getInstance().AddExit(exit1);
     Main.getInstance().AddExit(exit2);
     Plane plane1 = new Boeing(Main.getInstance(), 13.0, 25.0, 4000, 280, 30, exit1.GenerateBoeingCallSign(), 1000.0);
     Plane plane2 = new Airbus(Main.getInstance(), 15.0, 10.0, 2500, 180, 300, exit1.GenerateAirbusCallSign(), 630.0);
     Main.getInstance().AddPlane(plane1);
     Main.getInstance().AddPlane(plane2);
 }
 public void run()
 {
     Main.getInstance().Terrain.Reload("heightmap5", 3.0f, 3.0f);
     //Main.getInstance().AddTerrain(terrain);
     Airport airport = new Airport(Main.getInstance(), 3.0, 3, 2.5, 315);
     Exit exit1 = new Exit(Main.getInstance(), 22.0, 0, 180, 0.2);
     Exit exit2 = new Exit(Main.getInstance(), 40, 17.0, 270, 0.2);
     Exit exit3 = new Exit(Main.getInstance(), 10.0, 30, 0, 0.1);
     Exit exit4 = new Exit(Main.getInstance(), 0, 8, 90, 0.1);
     Plane plane1 = new Boeing(Main.getInstance(), 22.0, 6.0, 5000, 280, 180, exit1.GenerateBoeingCallSign(), 1000.0);
     Plane plane2 = new Airbus(Main.getInstance(), 20.0, 17.0, 3000, 260, 290, exit1.GenerateAirbusCallSign(), 1000.0);
     Plane plane3 = new Cesna(Main.getInstance(), 25.0, 20.0, 4000, 250, 290, exit1.GenerateCesnaCallSign(), 1000.0);
     Main.getInstance().AddAirport(airport);
     Main.getInstance().AddExit(exit1);
     Main.getInstance().AddExit(exit2);
     Main.getInstance().AddExit(exit3);
     Main.getInstance().AddExit(exit4);
     Main.getInstance().AddPlane(plane1);
     Main.getInstance().AddPlane(plane2);
     Main.getInstance().AddPlane(plane3);
 }