kit-programmieren-ws1920-fi.../src/edu/kit/informatik/model/DieselEngine.java

54 lines
1.6 KiB
Java
Raw Normal View History

2020-02-16 14:01:33 +00:00
package edu.kit.informatik.model;
2020-02-15 14:17:23 +00:00
import edu.kit.informatik.ui.InvalidInputException;
2020-02-15 15:11:13 +00:00
/**
* Diesel engine.
*
* @author Arne Keller
* @version 1.0
*/
2020-02-15 14:17:23 +00:00
public class DieselEngine extends Engine {
2020-02-17 09:39:26 +00:00
/**
* ASCII art representation of a diesel engine.
*/
2020-02-15 15:11:13 +00:00
private static final String[] DIESEL_ENGINE_TEXT = new String[] {
" _____________|____ ",
" /_| ____________ |_\\ ",
"/ |____________| \\",
"\\ /",
" \\__________________/ ",
" (O)(O) (O)(O) ",
};
/**
* Construct a new diesel engine.
* @param series series/class of engine
* @param name name of engine
* @param length length of engine
* @param couplingFront whether the engine should have a front coupling
* @param couplingBack whether the engine should have a back coupling
* @throws InvalidInputException on invalid user input (e.g. zero-sized engine)
2020-02-15 15:11:13 +00:00
*/
public DieselEngine(final String series, final String name, final int length,
final boolean couplingFront, final boolean couplingBack) throws InvalidInputException {
2020-02-17 10:19:56 +00:00
super(series, name, length, couplingFront, couplingBack);
2020-02-15 14:17:23 +00:00
}
@Override
public String toString() {
2020-02-17 10:19:56 +00:00
return String.format("d %s %s %d %b %b", getSeries(), getName(), getLength(),
hasCouplingFront(), hasCouplingBack());
2020-02-15 14:17:23 +00:00
}
@Override
public String[] textRepresentation() {
return DIESEL_ENGINE_TEXT;
}
@Override
public String description() {
return "diesel engine";
}
}