Package trackerModule.sim.map

Examples of trackerModule.sim.map.MapFrame


    public void run() {
      World.This().loadWorld_Route();
      World.This().initShortestPath();
      World.This().initNearestFishingAreas();
      World.This().createShipsByGT();
      new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
    }
View Full Code Here


    try {
      World.This().loadWorld_Route();
      World.This().initShortestPath();
      World.This().initNearestFishingAreas();
       World.This().createShipsByGT();
      new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
     
      // this will also initialize text mode runner and ubf/owl to be used
      this.setContinuousCase(this.isContinuousCase());
     
      // initialize kb
View Full Code Here

   
    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");
  }
View Full Code Here

  /**
   * Test_create_ new_ map.
   */
  public void test_create_New_Map(){
    World.This();
     new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000withAreas.bmp");
  }
View Full Code Here

  /**
   * Test_create_ new_ map_by load.
   */
  public void test_create_New_Map_byLoad(){
    World.This().loadWorld()
     new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000withAreas.bmp");
  }
View Full Code Here

  public void test_with_ships(){
    World.This().loadWorld();
    World.This().createShortestPath();
    World.This().initNearestFishingAreas();
    World.This().createShipsByScenario(20, "null");
    new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
  }
View Full Code Here

  public void test_with_Route(){
    World.This().loadWorld_Route();
    World.This().createShortestPath();
    World.This().initNearestFishingAreas();
    World.This().createShipsByScenario(50, "null");
    new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
  }
View Full Code Here

   */
  public void test_BN(){ 
    World.This().setWekaInterface();
    World.This().load("World_Route.map");
    World.This().createShipsByScenario(10, "Bombing", "IllicitCargo");
    new MapFrame("PROGNOS Simulator");
  }
View Full Code Here

   * Test.
   */
  public void test(){ 
      World.This().load("World_Route.map");
    World.This().createShipsByGT();
    new MapFrame("PROGNOS Simulator");
  }
View Full Code Here

TOP

Related Classes of trackerModule.sim.map.MapFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.