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;
}
}
Messung V0.5 in Prozent C=88 H=99 G=93
¤ Dauer der Verarbeitung: 0.40 Sekunden
(vorverarbeitet am 2026-06-10)
¤
*© Formatika GbR, Deutschland