summaryrefslogtreecommitdiff
path: root/src/com/benburwell/planes/data/Aircraft.java
diff options
context:
space:
mode:
authorBen Burwell <ben.burwell@trifecta.com>2016-11-19 17:39:05 -0500
committerBen Burwell <ben.burwell@trifecta.com>2016-11-19 17:39:05 -0500
commit9441ed331af3aa6b3ef45bf165e40faad18bc7fd (patch)
treee4f9155ccce81e3cb2145a41a68dacff6671950a /src/com/benburwell/planes/data/Aircraft.java
parent4a7ae2831563622ebb4a1d893764afd0e0e0dfbe (diff)
Use gradle
Diffstat (limited to 'src/com/benburwell/planes/data/Aircraft.java')
-rw-r--r--src/com/benburwell/planes/data/Aircraft.java90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/com/benburwell/planes/data/Aircraft.java b/src/com/benburwell/planes/data/Aircraft.java
deleted file mode 100644
index 66a7a46..0000000
--- a/src/com/benburwell/planes/data/Aircraft.java
+++ /dev/null
@@ -1,90 +0,0 @@
-package com.benburwell.planes.data;
-
-import com.benburwell.planes.sbs.SBSPacket;
-
-import java.util.List;
-import java.util.ArrayList;
-
-/**
- * Created by ben on 11/15/16.
- */
-public class Aircraft implements Comparable<Aircraft> {
- private final String hexIdent;
- private Position currentPosition = new Position();
- private List<Position> positionHistory = new ArrayList<>();
- private String callsign = "";
- private String squawk = "";
- private long packetCount = 0;
- private double track;
- private double groundSpeed;
- private double verticalRate;
-
- public Aircraft(String hexIdent) {
- this.hexIdent = hexIdent;
- }
-
- public void handleUpdate(SBSPacket packet) {
- this.packetCount++;
- if (packet.getAltitude() != null) {
- this.currentPosition.setAltitude(packet.getAltitude());
- }
- if (packet.getLatitude() != null) {
- this.currentPosition.setLatitude(packet.getLatitude());
- }
- if (packet.getLongitude() != null) {
- this.currentPosition.setLongitude(packet.getLongitude());
- }
- if (packet.getCallsign() != null && !packet.getCallsign().isEmpty()) {
- this.callsign = packet.getCallsign();
- }
- if (packet.getSquawk() != null && !packet.getSquawk().isEmpty()) {
- this.callsign = packet.getSquawk();
- }
- if (packet.getTrack() != null) {
- this.track = packet.getTrack();
- }
- if (packet.getGroundSpeed() != null) {
- this.groundSpeed = packet.getGroundSpeed();
- }
- if (packet.getVerticalRate() != null) {
- this.verticalRate = packet.getVerticalRate();
- }
- }
-
- public Position getCurrentPosition() {
- return currentPosition;
- }
-
- public String getCallsign() {
- return callsign;
- }
-
- public String getSquawk() {
- return squawk;
- }
-
- public Long getPacketCount() {
- return packetCount;
- }
-
- public String getHexIdent() {
- return this.hexIdent;
- }
-
- public double getTrack() {
- return this.track;
- }
-
- public double getGroundSpeed() {
- return this.groundSpeed;
- }
-
- public double getVerticalRate() {
- return this.verticalRate;
- }
-
- @Override
- public int compareTo(Aircraft that) {
- return this.getHexIdent().compareTo(that.getHexIdent());
- }
-}