Package cross

Examples of cross.EntryPoint


   
    hidingplace = new ArrayList<HidingPlace>();
    hidingplace.add(new HidingPlace());
   
    entrypoints = new ArrayList<EntryPoint>();
    entrypoints.add(new EntryPoint());
   
    quitpoints = new ArrayList<QuitPoint>();
    quitpoints.add(new QuitPoint());
   
 
View Full Code Here


    // graphics osztaly letrehozasa
    gr = MainGraphics.get();

    // ENTRY POINTS
    EntryPoint ep1 = new EntryPoint();
    entrypoints.add(ep1);

    // QUIT POINTS
    QuitPoint qp1 = new QuitPoint();
    qp1.setEntryPoint(ep1);
View Full Code Here

          + "fel - felfele mutato ut\r\n";
   
 
 
    //ENTRY POINTS
    EntryPoint ep1 = new EntryPoint();
    entrypoints.add(ep1);
 
    //QUIT POINTS
    QuitPoint qp1 = new QuitPoint();
    quitpoints.add(qp1);
View Full Code Here

      return MessageBox.get().getMessage(Messages.ParameterCountMismatch) + "\r\n";
    }
    String epId = params.get(0);
   
    RobberyCar rcar = ObjectStore.getInstance().getRobberyCar();
    EntryPoint ep = ObjectStore.getInstance().getEntryPoint(epId);
   
    //check, hogy nem-e null
    if(ep == null){
      return MessageBox.get().getMessage(Messages.NotFound) + "\r\n";
    }
   
    //ha nem null, akkor adjuk hozza
    ep.addVehicleToCross(rcar);
   
    return "Sikeresen hozzaadva az EntryPoint("+epId+")-hoz!";
  }
View Full Code Here

            + "S-stop; L-lamp; B-bank; H-hiding\r\n"
            + "le - lefele mutato ut\r\n"
            + "fel - felfele mutato ut\r\n";
   
    //ENTRY POINTS
    EntryPoint ep1 = new EntryPoint();
    entrypoints.add(ep1);
   
    //QUIT POINTS
    QuitPoint qp1 = new QuitPoint();
    quitpoints.add(qp1);
View Full Code Here

          + "fel - felfele mutato ut\r\n";
   
 
 
    //ENTRY POINTS
    EntryPoint ep1 = new EntryPoint();
    entrypoints.add(ep1);
 
    //QUIT POINTS
    QuitPoint qp1 = new QuitPoint();
    quitpoints.add(qp1);
View Full Code Here

      clearScreen();
     
      Logger.get().addOrdinaryMessage("___________Ido leptetese szekvencia!___________");
      GameTimer.setNotifyEnabled(true);
      route = new Route();
      entry_point = new EntryPoint();
      quit_point = new QuitPoint();
      stop_cross = new StopCross();
      lamp_cross = new LampCross();
      bank = new Bank();
      hiding_place = new HidingPlace();
View Full Code Here

      quitPoint.addOutRoutes(new Route());
     
     
     
      Logger.get().addOrdinaryMessage("[Entry Point letrehozasa es hozzaadasa a maphez]");
      EntryPoint e = new EntryPoint();
      m.addEntryPoint(e);
     
      Logger.get().addOrdinaryMessage("[Kimeno utak hozzaadasa az Entry Pointhoz]");
      e.addOutRoutes(new Route());
     
     
      Logger.get().addOrdinaryMessage("[[[Kiindulohelyzet kialakitasa VEGE]]]");
      Logger.get().addOrdinaryMessage("[QuitPoint.updateVehicleAtCross meghivasa...]");
      quitPoint.updateVehiclesAtCross();
      Logger.get().finishLogging();
      returnToMainMenu();
      } catch (IOException e) {
        e.printStackTrace();
      }
  }
View Full Code Here

TOP

Related Classes of cross.EntryPoint

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.