2020-10-21 02:15:03 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class Street {
|
|
|
|
|
|
|
|
private double length;
|
|
|
|
private int numberOfLanes;
|
|
|
|
private ArrayList<Vehicle> vehicles;
|
2020-11-11 22:12:59 +01:00
|
|
|
private StreetNames name;
|
2020-11-08 14:03:44 +01:00
|
|
|
|
2020-10-21 02:15:03 +02:00
|
|
|
|
2020-11-11 22:12:59 +01:00
|
|
|
public Street(double length, int numberOfLanes, StreetNames name) {
|
2020-11-10 18:15:11 +01:00
|
|
|
vehicles = new ArrayList<>();
|
2020-10-21 02:15:03 +02:00
|
|
|
setLength(length);
|
|
|
|
setNumberOfLanes(numberOfLanes);
|
2020-11-11 22:12:59 +01:00
|
|
|
this.name = name;
|
2020-10-21 02:15:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void setLength(double length) {
|
|
|
|
if (length >= 0) this.length = length;
|
|
|
|
else throw new IllegalArgumentException("Can not make a negative length street");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setNumberOfLanes(int numberOfLanes) {
|
|
|
|
if (numberOfLanes >= 1) this.numberOfLanes = numberOfLanes;
|
|
|
|
else throw new IllegalArgumentException("Street can not have less then 1 lane");
|
|
|
|
}
|
|
|
|
|
|
|
|
public double getLength() {
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2020-11-09 22:03:29 +01:00
|
|
|
/**
|
|
|
|
* Gets total length of one lane * number of lanes
|
|
|
|
* As if it is a sigle longer lane.
|
|
|
|
* @return Total length of all lanes combined
|
|
|
|
*/
|
|
|
|
public double getCombinedLength() {
|
|
|
|
return this.length * this.numberOfLanes;
|
|
|
|
}
|
|
|
|
|
2020-10-21 02:15:03 +02:00
|
|
|
public int getNumberOfLanes() {
|
|
|
|
return numberOfLanes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ArrayList<Vehicle> getVehicles() {
|
|
|
|
return vehicles;
|
|
|
|
}
|
2020-11-09 10:24:51 +01:00
|
|
|
|
2020-11-11 22:12:59 +01:00
|
|
|
public StreetNames getName() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2020-11-08 14:03:44 +01:00
|
|
|
public double capcity() {
|
2020-11-09 10:24:51 +01:00
|
|
|
double totalLength = length * numberOfLanes;
|
|
|
|
double totalLenthofCar=0;
|
|
|
|
for(int i=0;i<vehicles.size();i++) {
|
|
|
|
totalLenthofCar+=vehicles.get(i).getVehicleSize();
|
|
|
|
}
|
2020-11-09 10:42:32 +01:00
|
|
|
return totalLength -(totalLenthofCar + 0.5*(vehicles.size() - 2));
|
2020-11-08 14:03:44 +01:00
|
|
|
}
|
2020-11-09 22:54:31 +01:00
|
|
|
|
|
|
|
public int getPercentRemainingCapacity() {
|
|
|
|
return (int) (capcity()/(this.length*this.numberOfLanes))*100;
|
|
|
|
}
|
2020-11-08 14:03:44 +01:00
|
|
|
|
|
|
|
public boolean canTakeVehicles( Vehicle vehicle ) {
|
2020-11-10 18:15:11 +01:00
|
|
|
if ( vehicle.getVehicleSize() + 0.5 < capcity() )
|
2020-11-08 14:03:44 +01:00
|
|
|
return true;
|
2020-11-10 18:15:11 +01:00
|
|
|
else
|
|
|
|
return false;
|
2020-11-08 14:03:44 +01:00
|
|
|
}
|
2020-11-09 10:24:51 +01:00
|
|
|
|
2020-11-09 10:30:18 +01:00
|
|
|
public void addVehicle(Vehicle vehicle) {
|
2020-11-13 20:35:52 +01:00
|
|
|
//if(capcity() > vehicle.getVehicleSize() + 0.5) {
|
2020-11-09 10:30:18 +01:00
|
|
|
//adds incoming vehicle in last.
|
|
|
|
vehicles.add(vehicle);
|
2020-11-13 20:35:52 +01:00
|
|
|
//}
|
2020-11-08 14:03:44 +01:00
|
|
|
}
|
2020-10-21 02:15:03 +02:00
|
|
|
}
|