Hajj-simulation/src/MakkahCity.java

63 lines
1.9 KiB
Java
Raw Normal View History

import java.util.*;
2020-11-08 01:05:52 +01:00
public class MakkahCity {
private static final ArrayList<Campaign> allCampgains = new ArrayList<>();
private static final ArrayList<Vehicle> vehiclesList = new ArrayList<>();
private static final Route[] stdRoutes = new Route[9];
private static final Street[] stdStreet = new Street[8];
2020-11-08 01:05:52 +01:00
public static void main(String[] args) {
//Gen Camp
generateCamps(District.ALAZIZIYA, getRandom(100, 150));
generateCamps(District.ALMANSOOR, getRandom(90, 120));
generateCamps(District.ALHIJRA, getRandom(80, 110));
//Make Streets
makeStreets();
//Make Routes
makeRoutes();
while(!PDate.isEnded()) {
PDate.step(Calendar.MINUTE, 1);
//TODO: add civil cars in loop itirations.
//TODO: Move busses and vehicles.
//TODO: Update streets.
//TODO: Streets move forward.
//TODO: update vehicles on street.
}
}
private static int getRandom(int min, int max) {
return (int)(Math.random() * (max - min) + min);
}
private static void generateCamps(District area, int count) {
for (int i = 0; i < count; i++){
Campaign camp = new Campaign(area, getRandom(10, 15));
allCampgains.add(camp);
}
}
private static void makeStreets(){
//TODO: find values
stdStreet[StreetNames.KA_STREET] = new Street(500,3);
stdStreet[StreetNames.FOURTH_HISHWAY] = new Street(500,4);
stdStreet[StreetNames.THIRD_HIGHWAY] = new Street(500,3);
stdStreet[StreetNames.STREET1] = new Street(500,2);
stdStreet[StreetNames.STREET2] = new Street(500,2);
stdStreet[StreetNames.STREET3] = new Street(500,2);
stdStreet[StreetNames.STREET4] = new Street(500,2);
stdStreet[StreetNames.STREET5] = new Street(500,2);
2020-11-08 01:05:52 +01:00
}
private static void makeRoutes() {
//TODO: find using maps.
}
private static void fillBusesToList() {
//TODO: add all buses from campaigns to vehiclesList
}
2020-11-08 01:05:52 +01:00
}