summaryrefslogtreecommitdiff
path: root/src/main/java/com/benburwell/planes/gui/aircraftmap/symbols/VORDMESymbol.java
blob: 0b67989f2d7d0a99a4d84510a6dc59aff3523260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.benburwell.planes.gui.aircraftmap.symbols;

import com.benburwell.planes.data.Position;
import com.benburwell.planes.gui.GraphicsTheme;
import com.benburwell.planes.gui.aircraftmap.AircraftMap;
import com.benburwell.planes.gui.aircraftmap.Drawable;
import com.benburwell.planes.gui.aircraftmap.symbols.VORSymbol;

import java.awt.Graphics;

/**
 * Created by ben on 11/19/16.
 */
public class VORDMESymbol extends VORSymbol implements Drawable {
    public VORDMESymbol(String name, Position pos, int frequency) {
        super(name, pos, frequency);
    }

    @Override
    public void drawOn(Graphics graphicsContext, AircraftMap map) {
        super.drawOn(graphicsContext, map);
        if (this.shouldDrawOn(map)) {
            int x = this.getX(map);
            int y = this.getY(map);
            graphicsContext.setColor(GraphicsTheme.Colors.VIOLET);
            graphicsContext.drawRect(x - VORSymbol.RADIUS, y - VORSymbol.HEIGHT, VORSymbol.RADIUS * 2, VORSymbol.HEIGHT * 2);
        }
    }
}