products/sources/formale Sprachen/Delphi/Bille 0.71/__history image not shown  

Quellcode-Bibliothek

© Kompilation durch diese Firma

[Weder Korrektheit noch Funktionsfähigkeit der Software werden zugesichert.]

Datei: Bus.java   Sprache: Unknown

package gui;

import java.awt.Point;
import java.util.LinkedList;
import java.util.List;

public class Bus {

 int passCount;
 int id;
 Point currentPoint;
 List<Point> currentRoute;
 int currentRouteIndex;
 int currentRouteStepSize;
 
 Bus(int busline, Point initialPoint){
  id = busline;
  passCount = 0;
  currentRoute = new LinkedList<Point>();
  currentRouteIndex = 0;
  currentRouteStepSize = 0;
  currentPoint = initialPoint;
 }
 
 public synchronized void  setPassengerCount(int passengerCount){
  passCount = passengerCount;
 }
 
 public synchronized int passengerCount() {
  return passCount;
 }
 
 public int lineNr(){
  return id;
 }
 
 public synchronized void move(){
  
  if(currentRouteIndex + currentRouteStepSize < currentRoute.size())
  {
   currentRouteIndex += currentRouteStepSize;
   currentPoint = currentRoute.get((currentRouteIndex));
  }
 }
 
 public synchronized void busArrived(){
  
  currentRouteIndex = currentRoute.size();
  currentPoint = currentRoute.get(currentRoute.size() -1);
 }
 
 public synchronized void setRoute(List<Point> route, int timeToMove)
 {
  currentRoute = route;
  currentRouteIndex = 0;

  currentRouteStepSize =  (int) Math.floor(route.size() / timeToMove);
 }
 
 public synchronized Point  getBusPosition(){
  
  return currentPoint;
 }
 
}

[ zur Elbe Produktseite wechseln0.2Quellennavigators  Analyse erneut starten  ]