PIbd-12_Karamushko_M.K._Air.../DrawingTruncatedEngines.java
2022-11-10 15:44:45 +03:00

35 lines
1.1 KiB
Java

import java.awt.*;
public class DrawingTruncatedEngines implements IDrawingEngines {
private EnginesCount enginesCount;
private Color color;
public DrawingTruncatedEngines(int count, Color bodyColor) {
setCount(count);
color = bodyColor;
}
@Override
public void setCount(int count) {
if(count <= 2) enginesCount = EnginesCount.Two;
else if(count >= 6) enginesCount = EnginesCount.Six;
else enginesCount = EnginesCount.Four;
}
public void draw(Graphics2D g, int startPosX, int startPosY) {
g.setPaint(color);
g.fillArc(startPosX + 90, startPosY + 10, 30, 15, 90, 180);
g.fillArc(startPosX + 90, startPosY + 141, 30, 15, 90, 180);
if(enginesCount == EnginesCount.Two) return;
g.fillArc(startPosX + 90, startPosY + 30, 30, 15, 90, 180);
g.fillArc(startPosX + 90, startPosY + 121, 30, 15, 90, 180);
if(enginesCount == EnginesCount.Four) return;
g.fillArc(startPosX + 90, startPosY + 50, 30, 15, 90, 180);
g.fillArc(startPosX + 90, startPosY + 101, 30, 15, 90, 180);
}
}