I need help in improving my Elevator class and it's subclasses code. I already provided my code at the bottom. This is an elevator simulator that uses polymorphism and object-oriented programming to simulate the movement of elevators in a building with multiple types of passengers and elevators. There are 4 types of elevators in the system: StandardElevator: This is the most common type of elevator and has a request percentage of 70%.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I need help in improving my Elevator class and it's subclasses code. I already provided my code at the bottom. This is an elevator simulator that uses polymorphism and object-oriented programming to simulate the movement of elevators in a building with multiple types of passengers and elevators.

There are 4 types of elevators in the system:
StandardElevator: This is the most common type of elevator and has a request percentage of 70%. 
Standard elevators have a maximum capacity of 10 passengers.
ExpressElevator: This type of elevator has a request percentage of 20%. Express elevators have a 
maximum capacity of 8 passengers and are faster than standard elevators.
FreightElevator: This type of elevator has a request percentage of 5%. Freight elevators have a 
maximum capacity of 5 passengers and are designed to transport heavy items.
GlassElevator: This type of elevator has a request percentage of 5%. Glass elevators have a 
maximum capacity of 6 passengers and are designed to transport fragile item

Classes requirements:

Elevator {

Holds variable and ArrayList needed for each elevators

Holds setters and getters

}

Standard, Express, Glass, Freight subclasses {

Each keep track of the amount of Elevators

Contains method of generating passengers

}

My code:

import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;

public class Simulation {
    SimulatorSettings settings;

    public void initSimulation(SimulatorSettings settings) throws FileNotFoundException {
        Passenger.passengerCounter = 0;
        this.settings = settings;

        File file = new File("settings.txt");
        Scanner scanner = new Scanner(file);

        while (scanner.hasNextLine()) {
            String line = scanner.nextLine();
            if (line.startsWith("floor=")) {
                line = line.replace("floor=", "");
                settings.setNofloors(Integer.parseInt(line));
            }
        }

        ArrayList<Passenger> passengers = new ArrayList<>();

        for (int i = 0; i < 100; i++) {
            // Use the percentage from the file
            passengers.add(new StandardPassenger());
        }
    }
}

public class SimulatorSettings {

    SimulatorSettings(String fileName){

        

    }

    private int nofloors;

 

    public int getNofloors() {

        return nofloors;

    }

 

    public void setNofloors(int nofloors) {

        this.nofloors = nofloors;

    }

}

abstract class Passenger {
    private static int passengerCounter = 0;
    private String passengerID;
    protected int startFloor;
    protected int endFloor;
    protected static Random rand = new Random();

    public Passenger() {
        this.passengerID = String.valueOf(passengerCounter);
        passengerCounter++;
    }

    public abstract boolean requestElevator(SimulatorSettings settings);
}

public abstract class Elevator{
    private int currentFloor;
    private int maxCapacity;
    private int passengersCount;

    public Elevator(int maxCapacity) {
        this.currentFloor = 0; // assuming initial floor is 0
        this.maxCapacity = maxCapacity;
        this.passengersCount = 0;
    }

    public abstract void moveUp();

    public abstract void moveDown();

    public abstract void addPassenger(Passenger passenger);

    public abstract void removePassenger(Passenger passenger);
}

class StandardElevator extends Elevator{

    public StandardElevator() {
        super(10); // max capacity is 10 for StandardElevator
    }

    @Override
    public void moveUp() {
        // implementation for moving up for StandardElevator
    }

    @Override
    public void moveDown() {
        // implementation for moving down for StandardElevator
    }

    @Override
    public void addPassenger(Passenger passenger) {
        // implementation for adding passenger to StandardElevator
    }

    @Override
    public void removePassenger(Passenger passenger) {
        // implementation for removing passenger from StandardElevator
    }
}

public class FreightElevator extends Elevator{
     public FreightElevator() {
        super( 4);
    }
}

public class GlassElevator extends Elevator{
    public GlassElevator() {
        super( 8);
    }
}

class ExpressElevator extends Elevator{

    public ExpressElevator() {
        super(8); // max capacity is 8 for ExpressElevator
    }
}

Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education