Merge branch 'splitIntoTwoModules' of https://eng-git.canterbury.ac.nz/seng302-2017/team-7 into splitIntoTwoModules

main
Erika Savell 9 years ago
commit 6befa24302

@ -1,19 +1,25 @@
package seng302.Controllers; package seng302.Controllers;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.ObservableList; import javafx.collections.ObservableList;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.control.*; import javafx.scene.control.*;
import javafx.scene.layout.GridPane; import javafx.scene.layout.GridPane;
import org.xml.sax.SAXException;
import seng302.Mock.StreamedRace; import seng302.Mock.StreamedRace;
import seng302.Model.BoatInRace; import seng302.Model.*;
import seng302.Model.Race;
import seng302.Model.RaceClock;
import seng302.Model.ResizableRaceCanvas;
import seng302.RaceDataSource; import seng302.RaceDataSource;
import seng302.RaceXMLReader;
import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException;
import java.net.URL; import java.net.URL;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.ResourceBundle; import java.util.ResourceBundle;
/** /**
@ -22,11 +28,16 @@ import java.util.ResourceBundle;
public class RaceController extends Controller { public class RaceController extends Controller {
@FXML @FXML
GridPane canvasBase; GridPane canvasBase;
//user saved data for annotation display
private ArrayList<Boolean> presetAnno;
ResizableRaceCanvas raceMap; ResizableRaceCanvas raceMap;
@FXML @FXML
SplitPane race; SplitPane race;
@FXML @FXML
CheckBox showFPS; CheckBox showFPS;
@FXML @FXML
CheckBox showBoatPath; CheckBox showBoatPath;
@FXML @FXML
@ -37,6 +48,7 @@ public class RaceController extends Controller {
Label FPS; Label FPS;
@FXML @FXML
Label timeZone; Label timeZone;
@FXML @FXML
CheckBox showName; CheckBox showName;
@FXML @FXML
@ -47,18 +59,17 @@ public class RaceController extends Controller {
Button saveAnno; Button saveAnno;
@FXML @FXML
Button showSetAnno; Button showSetAnno;
@FXML @FXML
TableView<BoatInRace> boatInfoTable; TableView<Boat> boatInfoTable;
@FXML @FXML
TableColumn<BoatInRace, String> boatPlacingColumn; TableColumn<Boat, String> boatPlacingColumn;
@FXML @FXML
TableColumn<BoatInRace, String> boatTeamColumn; TableColumn<Boat, String> boatTeamColumn;
@FXML @FXML
TableColumn<BoatInRace, String> boatMarkColumn; TableColumn<Boat, String> boatMarkColumn;
@FXML @FXML
TableColumn<BoatInRace, String> boatSpeedColumn; TableColumn<Boat, String> boatSpeedColumn;
//user saved data for annotation display
private ArrayList<Boolean> presetAnno;
/** /**
* Updates the ResizableRaceCanvas (raceMap) with most recent data * Updates the ResizableRaceCanvas (raceMap) with most recent data
@ -66,7 +77,7 @@ public class RaceController extends Controller {
* @param boats boats that are to be displayed in the race * @param boats boats that are to be displayed in the race
* @see ResizableRaceCanvas * @see ResizableRaceCanvas
*/ */
public void updateMap(ObservableList<BoatInRace> boats) { public void updateMap(ObservableList<Boat> boats) {
raceMap.setBoats(boats); raceMap.setBoats(boats);
raceMap.update(); raceMap.update();
} }

@ -14,9 +14,10 @@ import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.GridPane; import javafx.scene.layout.GridPane;
import org.xml.sax.SAXException; import org.xml.sax.SAXException;
import seng302.Mock.*; import seng302.Mock.*;
import seng302.Model.BoatInRace; import seng302.Model.Boat;
import seng302.Model.RaceClock; import seng302.Model.RaceClock;
import seng302.RaceDataSource; import seng302.RaceDataSource;
import seng302.RaceXMLReader;
import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException; import java.io.IOException;
@ -30,28 +31,20 @@ import java.util.ResourceBundle;
*/ */
public class StartController extends Controller { public class StartController extends Controller {
@FXML @FXML private GridPane start;
Button oneMinButton; @FXML private AnchorPane startWrapper;
@FXML
Button fiveMinButton; @FXML private TableView<Boat> boatNameTable;
@FXML @FXML private TableColumn<Boat, String> boatNameColumn;
Button fifteenMinButton; @FXML private TableColumn<Boat, String> boatCodeColumn;
@FXML @FXML private Label timeZoneTime;
private GridPane start; @FXML private Label timer;
@FXML @FXML private int PRERACE_TIME = 15000;
private AnchorPane startWrapper;
@FXML @FXML Button oneMinButton;
private TableView<BoatInRace> boatNameTable; @FXML Button fiveMinButton;
@FXML @FXML Button fifteenMinButton;
private TableColumn<BoatInRace, String> boatNameColumn;
@FXML
private TableColumn<BoatInRace, String> boatCodeColumn;
@FXML
private Label timeZoneTime;
@FXML
private Label timer;
@FXML
private int PRERACE_TIME = 15000;
private RaceClock raceClock; private RaceClock raceClock;
private RaceDataSource raceData; private RaceDataSource raceData;
@ -78,7 +71,7 @@ public class StartController extends Controller {
startRace(1); startRace(1);
} }
private void startRace(int raceScale) { private void startRace(int raceScale){
oneMinButton.setDisable(true); oneMinButton.setDisable(true);
fiveMinButton.setDisable(true); fiveMinButton.setDisable(true);
@ -87,7 +80,7 @@ public class StartController extends Controller {
} }
@Override @Override
public void initialize(URL location, ResourceBundle resources) { public void initialize(URL location, ResourceBundle resources){
raceData = null; raceData = null;
try { try {
StreamedCourse streamedCourse = new StreamedCourse(new BoatXMLReader("mockXML/boatXML/boatTest.xml")); StreamedCourse streamedCourse = new StreamedCourse(new BoatXMLReader("mockXML/boatXML/boatTest.xml"));
@ -109,13 +102,13 @@ public class StartController extends Controller {
setRaceClock(); setRaceClock();
} }
public AnchorPane startWrapper() { public AnchorPane startWrapper(){
return startWrapper; return startWrapper;
} }
private void initialiseTables() { private void initialiseTables() {
List<BoatInRace> boats = raceData.getBoats(); List<Boat> boats = raceData.getBoats();
ObservableList<BoatInRace> observableBoats = FXCollections.observableArrayList(boats); ObservableList<Boat> observableBoats = FXCollections.observableArrayList(boats);
boatNameTable.setItems(observableBoats); boatNameTable.setItems(observableBoats);
boatNameColumn.setCellValueFactory(cellData -> cellData.getValue().getName()); boatNameColumn.setCellValueFactory(cellData -> cellData.getValue().getName());
@ -140,7 +133,7 @@ public class StartController extends Controller {
protected void countdownTimer(int scaleFactor) { protected void countdownTimer(int scaleFactor) {
new AnimationTimer() { new AnimationTimer() {
long currentTime = System.currentTimeMillis(); long currentTime = System.currentTimeMillis();
long startTime = currentTime + (PRERACE_TIME / scaleFactor); long startTime = currentTime + (PRERACE_TIME/scaleFactor);
long minutes; long minutes;
long currentTimeInSeconds; long currentTimeInSeconds;
long remainingSeconds; long remainingSeconds;
@ -156,7 +149,7 @@ public class StartController extends Controller {
startWrapper.setVisible(false); startWrapper.setVisible(false);
} else { } else {
currentTimeInSeconds = (timeLeft * scaleFactor) / 1000; currentTimeInSeconds = (timeLeft*scaleFactor) / 1000;
minutes = currentTimeInSeconds / 60; minutes = currentTimeInSeconds / 60;
remainingSeconds = currentTimeInSeconds % 60; remainingSeconds = currentTimeInSeconds % 60;
hours = minutes / 60; hours = minutes / 60;

@ -3,11 +3,14 @@ package seng302.Mock;
import javafx.scene.paint.Color; import javafx.scene.paint.Color;
import org.w3c.dom.Element; import org.w3c.dom.Element;
import org.w3c.dom.Node; import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException; import org.xml.sax.SAXException;
import seng302.Model.Boat;
import seng302.XMLReader; import seng302.XMLReader;
import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException; import java.io.IOException;
import java.lang.annotation.ElementType;
import java.text.ParseException; import java.text.ParseException;
import java.util.*; import java.util.*;
@ -15,36 +18,30 @@ import java.util.*;
* Created by Joseph on 24/04/2017. * Created by Joseph on 24/04/2017.
*/ */
public class BoatXMLReader extends XMLReader { public class BoatXMLReader extends XMLReader {
private static int currentColourIndex = 0;
Map<Integer, StreamedBoat> streamedBoatMap = new HashMap<>(); Map<Integer, StreamedBoat> streamedBoatMap = new HashMap<>();
Map<Integer, StreamedBoat> participants = new HashMap<>(); Map<Integer, StreamedBoat> participants = new HashMap<>();
private List<Color> colours;
/** /**
* Constructor for Boat XML Reader * Constructor for Boat XML Reader
*
* @param filePath path of the file * @param filePath path of the file
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error
* @throws ParserConfigurationException error * @throws ParserConfigurationException error
*/ */
public BoatXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException, ParseException { public BoatXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException, ParseException {
this(filePath, false); this(filePath, false);
makeColours();
} }
/** /**
* Constructor for Boat XML Reader * Constructor for Boat XML Reader
*
* @param filePath file path to read * @param filePath file path to read
* @param read whether or not to read and store the files straight away. * @param read whether or not to read and store the files straight away.
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error
* @throws ParserConfigurationException error * @throws ParserConfigurationException error
*/ */
public BoatXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException, ParseException { public BoatXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException, ParseException {
super(filePath); super(filePath);
makeColours();
if (read) { if (read) {
read(); read();
} }
@ -81,7 +78,6 @@ public class BoatXMLReader extends XMLReader {
Node boat = nBoats.getChildNodes().item(i); Node boat = nBoats.getChildNodes().item(i);
if (boat.getNodeName().equals("Boat")) { if (boat.getNodeName().equals("Boat")) {
readSingleBoat(boat); readSingleBoat(boat);
currentColourIndex = (currentColourIndex + 1) % colours.size();
} }
} }
} }
@ -98,8 +94,7 @@ public class BoatXMLReader extends XMLReader {
String shortName = null; String shortName = null;
String country = null; String country = null;
if (exists(boat, "Type")) type = boat.getAttributes().getNamedItem("Type").getTextContent(); if (exists(boat, "Type")) type = boat.getAttributes().getNamedItem("Type").getTextContent();
if (exists(boat, "SourceID")) if (exists(boat, "SourceID")) sourceID = Integer.parseInt(boat.getAttributes().getNamedItem("SourceID").getTextContent());
sourceID = Integer.parseInt(boat.getAttributes().getNamedItem("SourceID").getTextContent());
if (exists(boat, "BoatName")) boatName = boat.getAttributes().getNamedItem("BoatName").getTextContent(); if (exists(boat, "BoatName")) boatName = boat.getAttributes().getNamedItem("BoatName").getTextContent();
if (exists(boat, "ShortName")) shortName = boat.getAttributes().getNamedItem("ShortName").getTextContent(); if (exists(boat, "ShortName")) shortName = boat.getAttributes().getNamedItem("ShortName").getTextContent();
if (exists(boat, "Country")) country = boat.getAttributes().getNamedItem("Country").getTextContent(); if (exists(boat, "Country")) country = boat.getAttributes().getNamedItem("Country").getTextContent();
@ -109,9 +104,9 @@ public class BoatXMLReader extends XMLReader {
if (!streamedBoatMap.containsKey(sourceID)) { if (!streamedBoatMap.containsKey(sourceID)) {
if (country != null) { if (country != null) {
streamedBoat = new StreamedBoat(sourceID, boatName, colours.get(currentColourIndex), country); streamedBoat = new StreamedBoat(sourceID, boatName, country);
} else { } else {
streamedBoat = new StreamedBoat(sourceID, boatName, colours.get(currentColourIndex), shortName); streamedBoat = new StreamedBoat(sourceID, boatName, shortName);
} }
streamedBoatMap.put(sourceID, streamedBoat); streamedBoatMap.put(sourceID, streamedBoat);
// Override boat with new boat // Override boat with new boat
@ -133,20 +128,6 @@ public class BoatXMLReader extends XMLReader {
// TODO Get relative point before implementing. (GPSposition is based off a relative point). // TODO Get relative point before implementing. (GPSposition is based off a relative point).
} }
private void makeColours() {
colours = new ArrayList<Color>(Arrays.asList(
Color.BLUEVIOLET,
Color.BLACK,
Color.RED,
Color.ORANGE,
Color.DARKOLIVEGREEN,
Color.LIMEGREEN,
Color.PURPLE,
Color.DARKGRAY,
Color.YELLOW
));
}
public void setParticipants(Map<Integer, StreamedBoat> participants) { public void setParticipants(Map<Integer, StreamedBoat> participants) {
this.participants = participants; this.participants = participants;
} }
@ -154,4 +135,8 @@ public class BoatXMLReader extends XMLReader {
public Map<Integer, StreamedBoat> getStreamedBoatMap() { public Map<Integer, StreamedBoat> getStreamedBoatMap() {
return streamedBoatMap; return streamedBoatMap;
} }
public List<Boat> getBoats() {
return new ArrayList<>(streamedBoatMap.values());
}
} }

@ -1,44 +1,48 @@
package seng302.Mock; package seng302.Mock;
import javafx.scene.paint.Color; import javafx.scene.paint.Color;
import org.geotools.referencing.GeodeticCalculator;
import seng302.GPSCoordinate;
import seng302.Model.Boat;
import seng302.Model.BoatInRace; import seng302.Model.BoatInRace;
import seng302.Model.Leg;
import seng302.Model.Marker;
/** /**
* Created by Joseph on 24/04/2017. * Created by Joseph on 24/04/2017.
*/ */
public class StreamedBoat extends BoatInRace { public class StreamedBoat extends Boat {
private int sourceID; private int sourceID;
private boolean complete; private boolean dnf = false;
public StreamedBoat(int sourceID, String name, Color colour, String abbrev) { private void init() {
super(name, colour, abbrev); this.velocity = 0;
this.sourceID = sourceID;
this.complete = true;
} }
public StreamedBoat(int sourceID) { public StreamedBoat(int sourceID, String name, String abbrev) {
super("None", Color.BLACK, "None"); super(name, abbrev);
this.sourceID = sourceID; this.sourceID = sourceID;
this.complete = false; this.init();
} }
public StreamedBoat(int sourceID) {
/** super("None", "None");
* Overridden to ignore this function this.sourceID = sourceID;
* this.init();
* @return 0
* @deprecated
*/
public double getScaledVelocity() {
return 0;
} }
/** /**
* Overridden to ignore this function * Calculates the azimuth of the travel via heading of the boat
* *
* @param velocity of boat * @return the direction that the boat is heading towards in degrees (-180 to 180).
* @deprecated
*/ */
public void setScaledVelocity(double velocity) { public double calculateAzimuth() {
double azimuth;
if (heading <= 180) {
azimuth = heading;
} else {
azimuth = -heading + 180;
}
return azimuth;
} }
} }

@ -1,15 +1,11 @@
package seng302.Mock; package seng302.Mock;
import seng302.GPSCoordinate; import seng302.GPSCoordinate;
import seng302.Model.BoatInRace; import seng302.Model.*;
import seng302.Model.Leg;
import seng302.Model.Marker;
import seng302.Model.RaceClock;
import seng302.RaceDataSource; import seng302.RaceDataSource;
import java.time.ZonedDateTime; import java.time.ZonedDateTime;
import java.util.ArrayList; import java.util.*;
import java.util.List;
/** /**
* Created by jjg64 on 21/04/17. * Created by jjg64 on 21/04/17.
@ -18,7 +14,6 @@ public class StreamedCourse implements RaceDataSource {
StreamedCourseXMLReader streamedCourseXMLReader = null; StreamedCourseXMLReader streamedCourseXMLReader = null;
BoatXMLReader boatXMLReader = null; BoatXMLReader boatXMLReader = null;
RegattaXMLReader regattaXMLReader = null; RegattaXMLReader regattaXMLReader = null;
List<GPSCoordinate> boundary = new ArrayList<>();
public StreamedCourse(StreamedCourseXMLReader streamedCourseXMLReader) { public StreamedCourse(StreamedCourseXMLReader streamedCourseXMLReader) {
this.streamedCourseXMLReader = streamedCourseXMLReader; this.streamedCourseXMLReader = streamedCourseXMLReader;
@ -44,16 +39,16 @@ public class StreamedCourse implements RaceDataSource {
} }
} }
public RegattaXMLReader getRegattaXMLReader() {
return regattaXMLReader;
}
public void setRegattaXMLReader(RegattaXMLReader regattaXMLReader) { public void setRegattaXMLReader(RegattaXMLReader regattaXMLReader) {
this.regattaXMLReader = regattaXMLReader; this.regattaXMLReader = regattaXMLReader;
} }
public List<BoatInRace> getBoats() { public RegattaXMLReader getRegattaXMLReader() {
return new ArrayList<>(boatXMLReader.getStreamedBoatMap().values()); return regattaXMLReader;
}
public List<Boat> getBoats() {
return boatXMLReader.getBoats();
} }
public List<Leg> getLegs() { public List<Leg> getLegs() {

@ -1,10 +1,16 @@
package seng302.Mock; package seng302.Mock;
import javafx.collections.FXCollections;
import org.geotools.referencing.GeodeticCalculator;
import seng302.Constants;
import seng302.Controllers.RaceController; import seng302.Controllers.RaceController;
import seng302.Model.BoatInRace; import seng302.GPSCoordinate;
import seng302.Model.Race; import seng302.Model.*;
import seng302.RaceDataSource; import seng302.RaceDataSource;
import java.awt.geom.Point2D;
import java.util.*;
/** /**
* Created by jjg64 on 21/04/17. * Created by jjg64 on 21/04/17.
*/ */
@ -14,18 +20,30 @@ public class StreamedRace extends Race {
public StreamedRace(RaceDataSource raceData, RaceController controller, int scaleFactor) { public StreamedRace(RaceDataSource raceData, RaceController controller, int scaleFactor) {
super(raceData.getBoats(), raceData.getLegs(), controller, scaleFactor); super(raceData.getBoats(), raceData.getLegs(), controller, scaleFactor);
this.raceData = raceData; this.raceData = raceData;
this.scaleFactor = 1; // There will be no scaling in a live streamed race
} }
public void initialiseBoats() { public void initialiseBoats() {
Leg officialStart = legs.get(0);
String name = officialStart.getName();
Marker endMarker = officialStart.getEndMarker();
for (int i = 0; i < startingBoats.size(); i++) {
Boat boat = startingBoats.get(i);
if (boat != null) {
Leg startLeg = new Leg(name, 0);
startLeg.setEndMarker(endMarker);
boat.setCurrentLeg(startLeg);
}
}
} }
/** /**
* Checks if the boat cannot finish the race * Checks if the boat cannot finish the race
*
* @return True if boat cannot finish the race * @return True if boat cannot finish the race
*/ */
protected boolean doNotFinish() { protected boolean doNotFinish() {
// DNF is no longer random and is now determined by a dnf packet
return false; return false;
} }
@ -36,18 +54,30 @@ public class StreamedRace extends Race {
* @param timeElapsed Time that has elapse since the start of the the race. * @param timeElapsed Time that has elapse since the start of the the race.
* @see BoatInRace * @see BoatInRace
*/ */
protected void checkPosition(BoatInRace boat, long timeElapsed) { protected void checkPosition(Boat boat, long timeElapsed) {
if (boat.getCurrentLeg().getName().toLowerCase().contains("finish")) {
//boat has finished
boatsFinished++;
boat.setFinished(true);
boat.setTimeFinished(timeElapsed);
}
//Update the boat display table in the GUI to reflect the leg change
updatePositions();
} }
/** /**
* Updates the boat's gps coordinates * Updates the boat's gps coordinates
* *
* @param boat to be updated * @param boat to be updated
* @param millisecondsElapsed time since last update * @param millisecondsElapsed time since last update
*/ */
protected void updatePosition(BoatInRace boat, int millisecondsElapsed) { protected void updatePosition(Boat boat, int millisecondsElapsed) {
//TODO Grab info from network
// setPostiion(boat, coordinate);
}
protected void setPostion(Boat boat, GPSCoordinate coordinate) {
boat.setCurrentPosition(coordinate);
} }
} }

@ -2,16 +2,39 @@ package seng302.Model;
import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty; import javafx.beans.property.StringProperty;
import org.geotools.referencing.GeodeticCalculator;
import seng302.Constants;
import seng302.GPSCoordinate;
import java.awt.geom.Point2D;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
/** /**
* Created by fwy13 on 3/03/17. * Created by fwy13 on 3/03/17.
*/ */
public class Boat { public class Boat {
private StringProperty name; protected StringProperty name;
private double velocity; protected double velocity;
private StringProperty velocityProp; private StringProperty velocityProp;
private String abbrev; protected String abbrev;
protected GPSCoordinate currentPosition;
protected double heading;
protected Leg currentLeg;
protected StringProperty currentLegName;
protected boolean finished = false;
protected long timeFinished;
protected StringProperty position;
protected boolean started = false;
private double wakeScale = 1 / 50;
protected Queue<TrackPoint> track = new ConcurrentLinkedQueue<>();
protected long nextValidTime = 0;
protected static final float BASE_TRACK_POINT_TIME_INTERVAL = 5000;
protected static float trackPointTimeInterval = 5000; // every 1 seconds
protected final int TRACK_POINT_LIMIT = 10;
/** /**
* Boat initialiser which keeps all of the information of the boat. * Boat initialiser which keeps all of the information of the boat.
@ -25,6 +48,8 @@ public class Boat {
this.velocityProp = new SimpleStringProperty(String.valueOf(Math.round(velocity))); this.velocityProp = new SimpleStringProperty(String.valueOf(Math.round(velocity)));
this.abbrev = abbrev; this.abbrev = abbrev;
this.name = new SimpleStringProperty(name); this.name = new SimpleStringProperty(name);
currentLegName = new SimpleStringProperty("");
position = new SimpleStringProperty("-");
} }
/** /**
@ -34,8 +59,52 @@ public class Boat {
* @param abbrev nam abbreviation * @param abbrev nam abbreviation
*/ */
public Boat(String name, String abbrev) { public Boat(String name, String abbrev) {
this.abbrev = abbrev; this(name, 0, abbrev);
this.name = new SimpleStringProperty(name); }
/**
* Returns the position of the end of the boat's wake, which is 180 degrees
* from the boat's heading, and whose length is proportional to the boat's
* speed.
*
* @return GPSCoordinate of wake endpoint.
*/
public GPSCoordinate getWake() {
double reverseHeading = getHeading() - 180;
double distance = wakeScale * getVelocity();
GeodeticCalculator calc = new GeodeticCalculator();
calc.setStartingGeographicPoint(
new Point2D.Double(getCurrentPosition().getLongitude(), getCurrentPosition().getLatitude())
);
calc.setDirection(reverseHeading, distance);
Point2D endpoint = calc.getDestinationGeographicPoint();
return new GPSCoordinate(endpoint.getY(), endpoint.getX());
}
/**
* Adds a new point to boat's track.
* @param coordinate of point on track
* @return whether add is successful
* @see seng302.Model.TrackPoint
*/
public boolean addTrackPoint(GPSCoordinate coordinate) {
Boolean added = System.currentTimeMillis() >= nextValidTime;
long currentTime = System.currentTimeMillis();
if (added && this.started) {
nextValidTime = currentTime + (long) trackPointTimeInterval;
track.add(new TrackPoint(coordinate, currentTime, TRACK_POINT_LIMIT * (long) trackPointTimeInterval));
}
return added;
}
/**
* Returns the boat's sampled track between start of race and current time.
* @return queue of track points
* @see seng302.Model.TrackPoint
*/
public Queue<TrackPoint> getTrack() {
return track;
} }
/** /**
@ -94,4 +163,67 @@ public class Boat {
return abbrev; return abbrev;
} }
public GPSCoordinate getCurrentPosition() {
return currentPosition;
}
public void setCurrentPosition(GPSCoordinate currentPosition) {
this.currentPosition = currentPosition;
}
public double getHeading() {
return heading;
}
public void setHeading(double heading) {
this.heading = heading;
}
public Leg getCurrentLeg() {
return currentLeg;
}
public void setCurrentLeg(Leg currentLeg) {
this.currentLeg = currentLeg;
this.currentLegName.setValue(currentLeg.getName());
}
public boolean isFinished() {
return finished;
}
public void setFinished(boolean finished) {
this.finished = finished;
}
public long getTimeFinished() {
return timeFinished;
}
public void setTimeFinished(long timeFinished) {
this.timeFinished = timeFinished;
}
public StringProperty positionProperty() {
return position;
}
public void setPosition(String position) {
this.position.set(position);
}
public boolean isStarted() {
return started;
}
public void setStarted(boolean started) {
this.started = started;
}
/**
* @return Name of boat's current leg
*/
public StringProperty getCurrentLegName() {
return currentLegName;
}
} }

@ -17,10 +17,8 @@ import java.util.concurrent.ConcurrentLinkedQueue;
*/ */
public class BoatInRace extends Boat { public class BoatInRace extends Boat {
protected static final float BASE_TRACK_POINT_TIME_INTERVAL = 5000;
protected static float trackPointTimeInterval = 5000; // every 1 seconds
protected final int TRACK_POINT_LIMIT = 10;
protected Leg currentLeg; protected Leg currentLeg;
protected double scaledVelocity;
protected double distanceTravelledInLeg; protected double distanceTravelledInLeg;
protected GPSCoordinate currentPosition; protected GPSCoordinate currentPosition;
protected long timeFinished; protected long timeFinished;
@ -30,10 +28,13 @@ public class BoatInRace extends Boat {
protected boolean started = false; protected boolean started = false;
protected StringProperty position; protected StringProperty position;
protected double heading; protected double heading;
protected Queue<TrackPoint> track = new ConcurrentLinkedQueue<>(); protected Queue<TrackPoint> track = new ConcurrentLinkedQueue<>();
protected long nextValidTime = 0; protected long nextValidTime = 0;
protected boolean trackVisible = true;
private double scaledVelocity; protected static final float BASE_TRACK_POINT_TIME_INTERVAL = 5000;
protected static float trackPointTimeInterval = 5000; // every 1 seconds
protected final int TRACK_POINT_LIMIT = 10;
/** /**
* Constructor method. * Constructor method.
@ -41,7 +42,7 @@ public class BoatInRace extends Boat {
* @param name Name of the boat. * @param name Name of the boat.
* @param velocity Speed that the boat travels. * @param velocity Speed that the boat travels.
* @param colour Colour the boat will be displayed as on the map * @param colour Colour the boat will be displayed as on the map
* @param abbrev of boat * @param abbrev of boat
*/ */
public BoatInRace(String name, double velocity, Color colour, String abbrev) { public BoatInRace(String name, double velocity, Color colour, String abbrev) {
super(name, velocity, abbrev); super(name, velocity, abbrev);
@ -53,8 +54,8 @@ public class BoatInRace extends Boat {
/** /**
* Constructor method. * Constructor method.
* *
* @param name Name of the boat. * @param name Name of the boat.
* @param colour Colour the boat will be displayed as on the map * @param colour Colour the boat will be displayed as on the map
* @param abbrev of boat * @param abbrev of boat
*/ */
public BoatInRace(String name, Color colour, String abbrev) { public BoatInRace(String name, Color colour, String abbrev) {
@ -64,38 +65,6 @@ public class BoatInRace extends Boat {
position = new SimpleStringProperty("-"); position = new SimpleStringProperty("-");
} }
/**
* Converts an azimuth to a bearing
*
* @param azimuth azimuth value to be converted
* @return the bearings in degrees (0 to 360).
*/
public static double calculateHeading(double azimuth) {
if (azimuth >= 0) {
return azimuth;
} else {
return azimuth + 360;
}
}
/**
* Get base track point time interval
*
* @return base track point time interval
*/
public static float getBaseTrackPointTimeInterval() {
return BASE_TRACK_POINT_TIME_INTERVAL;
}
/**
* Set track point time interval
*
* @param value track point time interval value
*/
public static void setTrackPointTimeInterval(float value) {
trackPointTimeInterval = value;
}
/** /**
* Calculates the azimuth of the travel via map coordinates of the raceMarkers * Calculates the azimuth of the travel via map coordinates of the raceMarkers
* *
@ -113,6 +82,20 @@ public class BoatInRace extends Boat {
return calc.getAzimuth(); return calc.getAzimuth();
} }
/**
* Converts an azimuth to a bearing
*
* @param azimuth azimuth value to be converted
* @return the bearings in degrees (0 to 360).
*/
public static double calculateHeading(double azimuth) {
if (azimuth >= 0) {
return azimuth;
} else {
return azimuth + 360;
}
}
public double getHeading() { public double getHeading() {
return heading; return heading;
} }
@ -127,7 +110,7 @@ public class BoatInRace extends Boat {
* @return the direction that the boat is heading towards in degrees (0 to 360). * @return the direction that the boat is heading towards in degrees (0 to 360).
*/ */
public double calculateHeading() { public double calculateHeading() {
double azimuth = this.calculateAzimuth(); double azimuth = calculateAzimuth();
return calculateHeading(azimuth); return calculateHeading(azimuth);
} }
@ -292,17 +275,16 @@ public class BoatInRace extends Boat {
return position.get(); return position.get();
} }
public void setPosition(String position) {
this.position.set(position);
}
public StringProperty positionProperty() { public StringProperty positionProperty() {
return position; return position;
} }
public void setPosition(String position) {
this.position.set(position);
}
/** /**
* Adds a new point to boat's track. * Adds a new point to boat's track.
*
* @param coordinate of point on track * @param coordinate of point on track
* @return whether add is successful * @return whether add is successful
* @see seng302.Model.TrackPoint * @see seng302.Model.TrackPoint
@ -319,7 +301,6 @@ public class BoatInRace extends Boat {
/** /**
* Returns the boat's sampled track between start of race and current time. * Returns the boat's sampled track between start of race and current time.
*
* @return queue of track points * @return queue of track points
* @see seng302.Model.TrackPoint * @see seng302.Model.TrackPoint
*/ */
@ -328,20 +309,18 @@ public class BoatInRace extends Boat {
} }
/** /**
* Returns whether track is visible * Get base track point time interval
* * @return base track point time interval
* @return true if visible
*/ */
public boolean isTrackVisible() { public static float getBaseTrackPointTimeInterval() {
return trackVisible; return BASE_TRACK_POINT_TIME_INTERVAL;
} }
/** /**
* Sets track visibility. * Set track point time interval
* * @param value track point time interval value
* @param trackVisible visible if true.
*/ */
public void setTrackVisible(boolean trackVisible) { public static void setTrackPointTimeInterval(float value) {
this.trackVisible = trackVisible; trackPointTimeInterval = value;
} }
} }

@ -1,209 +1,208 @@
package seng302.Model; //package seng302.Model;
//
import org.geotools.referencing.GeodeticCalculator; //import org.geotools.referencing.GeodeticCalculator;
import seng302.Constants; //import seng302.Constants;
import seng302.Controllers.RaceController; //import seng302.Controllers.RaceController;
import seng302.GPSCoordinate; //import seng302.GPSCoordinate;
import seng302.RaceDataSource; //import seng302.RaceDataSource;
//
import java.awt.geom.Point2D; //import java.awt.geom.Point2D;
import java.util.ArrayList; //import java.util.ArrayList;
import java.util.Arrays; //import java.util.Arrays;
import java.util.List; //import java.util.List;
import java.util.Random; //import java.util.Random;
//
/** ///**
* Created by cbt24 on 6/03/17. // * Created by cbt24 on 6/03/17.
* // *
* @deprecated // * @deprecated
*/ // */
public class ConstantVelocityRace extends Race { //public class ConstantVelocityRace extends Race {
//
private int dnfChance = 0; //%percentage chance a boat fails at each checkpoint // private int dnfChance = 0; //%percentage chance a boat fails at each checkpoint
//
/** // /**
* Initialiser for a constant velocity race without standard data source // * Initialiser for a constant velocity race without standard data source
* // *
* @param startingBoats in race // * @param startingBoats in race
* @param legs in race // * @param legs in race
* @param controller for graphics // * @param controller for graphics
* @param scaleFactor of timer // * @param scaleFactor of timer
*/ // */
public ConstantVelocityRace(List<BoatInRace> startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) { // public ConstantVelocityRace(List<BoatInRace> startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) {
super(startingBoats, legs, controller, scaleFactor); // super(startingBoats, legs, controller, scaleFactor);
} // }
//
/** // /**
* Initialiser for legacy tests // * Initialiser for legacy tests
* // *
* @param startingBoats in race // * @param startingBoats in race
* @param legs in race // * @param legs in race
* @param controller for graphics // * @param controller for graphics
* @param scaleFactor of timer // * @param scaleFactor of timer
* @deprecated Please use {@link #ConstantVelocityRace(List, List, RaceController, int) } for future tests. // *
*/ // * @deprecated Please use {@link #ConstantVelocityRace(List, List, RaceController, int) } for future tests.
public ConstantVelocityRace(BoatInRace[] startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) { // */
super(Arrays.asList(startingBoats), legs, controller, scaleFactor); // public ConstantVelocityRace(BoatInRace[] startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) {
} // super(Arrays.asList(startingBoats), legs, controller, scaleFactor);
// }
/** //
* Initialiser for constant velocity race with standard data source // /**
* // * Initialiser for constant velocity race with standard data source
* @param raceData for race // * @param raceData for race
* @param controller for graphics // * @param controller for graphics
* @param scaleFactor of timer // * @param scaleFactor of timer
*/ // */
public ConstantVelocityRace(RaceDataSource raceData, RaceController controller, int scaleFactor) { // public ConstantVelocityRace(RaceDataSource raceData, RaceController controller, int scaleFactor) {
super(raceData, controller, scaleFactor); // super(raceData, controller, scaleFactor);
} // }
//
/** // public void initialiseBoats() {
* Calculates the boats next GPS position based on its distance travelled and heading // Leg officialStart = legs.get(0);
* // String name = officialStart.getName();
* @param oldCoordinates GPS coordinates of the boat's starting position // Marker endMarker = officialStart.getEndMarker();
* @param distanceTravelled distance in nautical miles //
* @param azimuth boat's current direction. Value between -180 and 180 // BoatInRace.setTrackPointTimeInterval(BoatInRace.getBaseTrackPointTimeInterval() / scaleFactor);
* @return The boat's new coordinate //
*/ // ArrayList<Marker> startMarkers = getSpreadStartingPositions();
public static GPSCoordinate calculatePosition(GPSCoordinate oldCoordinates, double distanceTravelled, double azimuth) { // for (int i = 0; i < startingBoats.size(); i++) {
// BoatInRace boat = startingBoats.get(i);
//Find new coordinate using current heading and distance // if (boat != null) {
// boat.setScaledVelocity(boat.getVelocity() * scaleFactor);
GeodeticCalculator geodeticCalculator = new GeodeticCalculator(); // Leg startLeg = new Leg(name, 0);
//Load start point into calculator // boat.setCurrentPosition(startMarkers.get(i).getAverageGPSCoordinate());
Point2D startPoint = new Point2D.Double(oldCoordinates.getLongitude(), oldCoordinates.getLatitude()); // startLeg.setStartMarker(startMarkers.get(i));
geodeticCalculator.setStartingGeographicPoint(startPoint); // startLeg.setEndMarker(endMarker);
//load direction and distance tranvelled into calculator // startLeg.calculateDistance();
geodeticCalculator.setDirection(azimuth, distanceTravelled * Constants.NMToMetersConversion); // boat.setCurrentLeg(startLeg);
//get new point // boat.setHeading(boat.calculateHeading());
Point2D endPoint = geodeticCalculator.getDestinationGeographicPoint(); // }
// }
return new GPSCoordinate(endPoint.getY(), endPoint.getX()); // }
} //
// /**
public void initialiseBoats() { // * Creates a list of starting positions for the different boats, so they do not appear cramped at the start line
Leg officialStart = legs.get(0); // *
String name = officialStart.getName(); // * @return list of starting positions
Marker endMarker = officialStart.getEndMarker(); // */
// public ArrayList<Marker> getSpreadStartingPositions() {
BoatInRace.setTrackPointTimeInterval(BoatInRace.getBaseTrackPointTimeInterval() / scaleFactor); //
// int nBoats = startingBoats.size();
ArrayList<Marker> startMarkers = getSpreadStartingPositions(); // Marker marker = legs.get(0).getStartMarker();
for (int i = 0; i < startingBoats.size(); i++) { //
BoatInRace boat = startingBoats.get(i); // GeodeticCalculator initialCalc = new GeodeticCalculator();
if (boat != null) { // initialCalc.setStartingGeographicPoint(marker.getMark1().getLongitude(), marker.getMark1().getLatitude());
boat.setScaledVelocity(boat.getVelocity() * scaleFactor); // initialCalc.setDestinationGeographicPoint(marker.getMark2().getLongitude(), marker.getMark2().getLatitude());
Leg startLeg = new Leg(name, 0); //
boat.setCurrentPosition(startMarkers.get(i).getAverageGPSCoordinate()); // double azimuth = initialCalc.getAzimuth();
startLeg.setStartMarker(startMarkers.get(i)); // double distanceBetweenMarkers = initialCalc.getOrthodromicDistance();
startLeg.setEndMarker(endMarker); // double distanceBetweenBoats = distanceBetweenMarkers / (nBoats + 1);
startLeg.calculateDistance(); //
boat.setCurrentLeg(startLeg); // GeodeticCalculator positionCalc = new GeodeticCalculator();
boat.setHeading(boat.calculateHeading()); // positionCalc.setStartingGeographicPoint(marker.getMark1().getLongitude(), marker.getMark1().getLatitude());
} // ArrayList<Marker> positions = new ArrayList<>();
} //
} // for (int i = 0; i < nBoats; i++) {
// positionCalc.setDirection(azimuth, distanceBetweenBoats);
/** // Point2D position = positionCalc.getDestinationGeographicPoint();
* Creates a list of starting positions for the different boats, so they do not appear cramped at the start line // positions.add(new Marker(new GPSCoordinate(position.getY(), position.getX())));
* //
* @return list of starting positions // positionCalc = new GeodeticCalculator();
*/ // positionCalc.setStartingGeographicPoint(position);
public ArrayList<Marker> getSpreadStartingPositions() { // }
// return positions;
int nBoats = startingBoats.size(); // }
Marker marker = legs.get(0).getStartMarker(); //
// /**
GeodeticCalculator initialCalc = new GeodeticCalculator(); // * Sets the chance each boat has of failing at a gate or marker
initialCalc.setStartingGeographicPoint(marker.getMark1().getLongitude(), marker.getMark1().getLatitude()); // * @param chance percentage chance a boat has of failing per checkpoint.
initialCalc.setDestinationGeographicPoint(marker.getMark2().getLongitude(), marker.getMark2().getLatitude()); // */
// protected void setDnfChance(int chance) {
double azimuth = initialCalc.getAzimuth(); // if (chance >= 0 && chance <= 100) {
double distanceBetweenMarkers = initialCalc.getOrthodromicDistance(); // dnfChance = chance;
double distanceBetweenBoats = distanceBetweenMarkers / (nBoats + 1); // }
// }
GeodeticCalculator positionCalc = new GeodeticCalculator(); //
positionCalc.setStartingGeographicPoint(marker.getMark1().getLongitude(), marker.getMark1().getLatitude()); // protected boolean doNotFinish() {
ArrayList<Marker> positions = new ArrayList<>(); // Random rand = new Random();
// return rand.nextInt(100) < dnfChance;
for (int i = 0; i < nBoats; i++) { // }
positionCalc.setDirection(azimuth, distanceBetweenBoats); //
Point2D position = positionCalc.getDestinationGeographicPoint(); // /**
positions.add(new Marker(new GPSCoordinate(position.getY(), position.getX()))); // * Calculates the distance a boat has travelled and updates its current position according to this value.
// *
positionCalc = new GeodeticCalculator(); // * @param boat to be updated
positionCalc.setStartingGeographicPoint(position); // * @param millisecondsElapsed since last update
} // */
return positions; // protected void updatePosition(BoatInRace boat, int millisecondsElapsed) {
} //
// //distanceTravelled = velocity (nm p hr) * time taken to update loop
/** // double distanceTravelled = (boat.getScaledVelocity() * millisecondsElapsed) / 3600000;
* Sets the chance each boat has of failing at a gate or marker //
* // double totalDistanceTravelled = distanceTravelled + boat.getDistanceTravelledInLeg();
* @param chance percentage chance a boat has of failing per checkpoint. //
*/ // boolean finish = boat.getCurrentLeg().getName().equals("Finish");
protected void setDnfChance(int chance) { // if (!finish) {
if (chance >= 0 && chance <= 100) { // boat.setHeading(boat.calculateHeading());
dnfChance = chance; // //update boat's distance travelled
} // boat.setDistanceTravelledInLeg(totalDistanceTravelled);
} // //Calculate boat's new position by adding the distance travelled onto the start point of the leg
// boat.setCurrentPosition(calculatePosition(boat.getCurrentLeg().getStartMarker().getAverageGPSCoordinate(),
protected boolean doNotFinish() { // totalDistanceTravelled, boat.calculateAzimuth()));
Random rand = new Random(); // }
return rand.nextInt(100) < dnfChance; // }
} //
// protected void checkPosition(BoatInRace boat, long timeElapsed) {
/** // if (boat.getDistanceTravelledInLeg() > boat.getCurrentLeg().getDistance()) {
* Calculates the distance a boat has travelled and updates its current position according to this value. // //boat has passed onto new leg
* // if (boat.getCurrentLeg().getName().equals("Finish")) {
* @param boat to be updated // //boat has finished
* @param millisecondsElapsed since last update // boatsFinished++;
*/ // boat.setFinished(true);
protected void updatePosition(BoatInRace boat, int millisecondsElapsed) { // boat.setTimeFinished(timeElapsed);
// } else if (doNotFinish()) {
//distanceTravelled = velocity (nm p hr) * time taken to update loop // boatsFinished++;
double distanceTravelled = (boat.getScaledVelocity() * millisecondsElapsed) / 3600000; // boat.setFinished(true);
// boat.setCurrentLeg(new Leg("DNF", -1));
double totalDistanceTravelled = distanceTravelled + boat.getDistanceTravelledInLeg(); // boat.setVelocity(0);
// boat.setScaledVelocity(0);
boolean finish = boat.getCurrentLeg().getName().equals("Finish"); // } else {
if (!finish) { // //Calculate how much the boat overshot the marker by
boat.setHeading(boat.calculateHeading()); // boat.setDistanceTravelledInLeg(boat.getDistanceTravelledInLeg() - boat.getCurrentLeg().getDistance());
//update boat's distance travelled // //Move boat on to next leg
boat.setDistanceTravelledInLeg(totalDistanceTravelled); // Leg nextLeg = legs.get(boat.getCurrentLeg().getLegNumber() + 1);
//Calculate boat's new position by adding the distance travelled onto the start point of the leg //
boat.setCurrentPosition(calculatePosition(boat.getCurrentLeg().getStartMarker().getAverageGPSCoordinate(), // boat.setCurrentLeg(nextLeg);
totalDistanceTravelled, boat.calculateAzimuth())); // //Add overshoot distance into the distance travelled for the next leg
} // boat.setDistanceTravelledInLeg(boat.getDistanceTravelledInLeg());
} // }
// //Update the boat display table in the GUI to reflect the leg change
protected void checkPosition(BoatInRace boat, long timeElapsed) { // updatePositions();
if (boat.getDistanceTravelledInLeg() > boat.getCurrentLeg().getDistance()) { // }
//boat has passed onto new leg // }
if (boat.getCurrentLeg().getName().equals("Finish")) { //
//boat has finished // /**
boatsFinished++; // * Calculates the boats next GPS position based on its distance travelled and heading
boat.setFinished(true); // *
boat.setTimeFinished(timeElapsed); // * @param oldCoordinates GPS coordinates of the boat's starting position
} else if (doNotFinish()) { // * @param distanceTravelled distance in nautical miles
boatsFinished++; // * @param azimuth boat's current direction. Value between -180 and 180
boat.setFinished(true); // * @return The boat's new coordinate
boat.setCurrentLeg(new Leg("DNF", -1)); // */
boat.setVelocity(0); // public static GPSCoordinate calculatePosition(GPSCoordinate oldCoordinates, double distanceTravelled, double azimuth) {
boat.setScaledVelocity(0); //
} else { // //Find new coordinate using current heading and distance
//Calculate how much the boat overshot the marker by //
boat.setDistanceTravelledInLeg(boat.getDistanceTravelledInLeg() - boat.getCurrentLeg().getDistance()); // GeodeticCalculator geodeticCalculator = new GeodeticCalculator();
//Move boat on to next leg // //Load start point into calculator
Leg nextLeg = legs.get(boat.getCurrentLeg().getLegNumber() + 1); // Point2D startPoint = new Point2D.Double(oldCoordinates.getLongitude(), oldCoordinates.getLatitude());
// geodeticCalculator.setStartingGeographicPoint(startPoint);
boat.setCurrentLeg(nextLeg); // //load direction and distance tranvelled into calculator
//Add overshoot distance into the distance travelled for the next leg // geodeticCalculator.setDirection(azimuth, distanceTravelled * Constants.NMToMetersConversion);
boat.setDistanceTravelledInLeg(boat.getDistanceTravelledInLeg()); // //get new point
} // Point2D endPoint = geodeticCalculator.getDestinationGeographicPoint();
//Update the boat display table in the GUI to reflect the leg change //
updatePositions(); // return new GPSCoordinate(endPoint.getY(), endPoint.getX());
} // }
} //
//}
}

@ -5,37 +5,44 @@ import javafx.animation.AnimationTimer;
import javafx.application.Platform; import javafx.application.Platform;
import javafx.collections.FXCollections; import javafx.collections.FXCollections;
import javafx.collections.ObservableList; import javafx.collections.ObservableList;
import org.geotools.referencing.GeodeticCalculator;
import seng302.Controllers.RaceController; import seng302.Controllers.RaceController;
import seng302.GPSCoordinate;
import seng302.RaceDataSource; import seng302.RaceDataSource;
import java.awt.geom.Point2D;
import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.Random;
/** /**
* Parent class for races * Parent class for races
* Created by fwy13 on 3/03/17. * Created by fwy13 on 3/03/17.
*/ */
public abstract class Race implements Runnable { public abstract class Race implements Runnable {
//protected BoatInRace[] startingBoats; //protected Boat[] startingBoats;
protected ObservableList<BoatInRace> startingBoats; protected ObservableList<Boat> startingBoats;
protected List<Leg> legs; protected List<Leg> legs;
protected RaceController controller; protected RaceController controller;
protected int boatsFinished = 0; protected int boatsFinished = 0;
protected long totalTimeElapsed; protected long totalTimeElapsed;
private int lastFPS = 20;
protected int scaleFactor; protected int scaleFactor;
protected int PRERACE_TIME = 120000; //time in milliseconds to pause during pre-race protected int PRERACE_TIME = 120000; //time in milliseconds to pause during pre-race
private int lastFPS = 20;
private boolean timerEnabled = true; //boolean to determine if timer is ran private boolean timerEnabled = true; //boolean to determine if timer is ran
/** /**
* Initailiser for Race * Initailiser for Race
* *
* @param boats Takes in an array of boats that are participating in the race. * @param boats Takes in an array of boats that are participating in the race.
* @param legs Number of marks in order that the boats pass in order to complete the race. * @param legs Number of marks in order that the boats pass in order to complete the race.
* @param controller race controller * @param controller race controller
* @param scaleFactor for race * @param scaleFactor for race
*/ */
public Race(List<BoatInRace> boats, List<Leg> legs, RaceController controller, int scaleFactor) { public Race(List<Boat> boats, List<Leg> legs, RaceController controller, int scaleFactor) {
this.startingBoats = FXCollections.observableArrayList(boats); this.startingBoats = FXCollections.observableArrayList(boats);
this.legs = legs; this.legs = legs;
@ -47,19 +54,25 @@ public abstract class Race implements Runnable {
} }
} }
public Race(BoatInRace[] startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) {
this(Arrays.asList(startingBoats), legs, controller, scaleFactor);
}
public Race(RaceDataSource raceData, RaceController controller, int scaleFactor) { public Race(RaceDataSource raceData, RaceController controller, int scaleFactor) {
this(raceData.getBoats(), raceData.getLegs(), controller, scaleFactor); this(raceData.getBoats(), raceData.getLegs(), controller, scaleFactor);
} }
/**
* @deprecated
* @param startingBoats
* @param legs
* @param controller
* @param scaleFactor
*/
public Race(Boat[] startingBoats, List<Leg> legs, RaceController controller, int scaleFactor) {
this(Arrays.asList(startingBoats), legs, controller, scaleFactor);
}
public abstract void initialiseBoats(); public abstract void initialiseBoats();
/** /**
* Checks if the boat cannot finish the race * Checks if the boat cannot finish the race
*
* @return True if boat cannot finish the race * @return True if boat cannot finish the race
*/ */
protected abstract boolean doNotFinish(); protected abstract boolean doNotFinish();
@ -69,17 +82,17 @@ public abstract class Race implements Runnable {
* *
* @param boat Boat that the postion is to be updated for. * @param boat Boat that the postion is to be updated for.
* @param timeElapsed Time that has elapse since the start of the the race. * @param timeElapsed Time that has elapse since the start of the the race.
* @see BoatInRace * @see Boat
*/ */
protected abstract void checkPosition(BoatInRace boat, long timeElapsed); protected abstract void checkPosition(Boat boat, long timeElapsed);
/** /**
* Updates the boat's gps coordinates * Updates the boat's gps coordinates
* *
* @param boat to be updated * @param boat to be updated
* @param millisecondsElapsed time since last update * @param millisecondsElapsed time since last update
*/ */
protected abstract void updatePosition(BoatInRace boat, int millisecondsElapsed); protected abstract void updatePosition(Boat boat, int millisecondsElapsed);
/** /**
* Runnable for the thread. * Runnable for the thread.
@ -105,7 +118,7 @@ public abstract class Race implements Runnable {
protected void countdownTimer() { protected void countdownTimer() {
new AnimationTimer() { new AnimationTimer() {
long currentTime = System.currentTimeMillis(); long currentTime = System.currentTimeMillis();
long startTime = currentTime + (PRERACE_TIME / scaleFactor); long startTime = currentTime + (PRERACE_TIME/scaleFactor);
long minutes; long minutes;
long currentTimeInSeconds; long currentTimeInSeconds;
long remainingSeconds; long remainingSeconds;
@ -114,22 +127,22 @@ public abstract class Race implements Runnable {
@Override @Override
public void handle(long arg0) { public void handle(long arg0) {
timeLeft = startTime - currentTime; timeLeft = startTime - currentTime;
if (timeLeft <= 0 && controller != null) { if (timeLeft <= 0 && controller != null) {
updateTime("Race is starting..."); updateTime("Race is starting...");
stop(); stop();
simulateRace(); simulateRace();
} else { } else {
currentTimeInSeconds = (timeLeft * scaleFactor) / 1000; currentTimeInSeconds = (timeLeft*scaleFactor) / 1000;
minutes = currentTimeInSeconds / 60; minutes = currentTimeInSeconds / 60;
remainingSeconds = currentTimeInSeconds % 60; remainingSeconds = currentTimeInSeconds % 60;
hours = minutes / 60; hours = minutes / 60;
minutes = minutes % 60; minutes = minutes % 60;
if (controller != null) { if (controller != null) {
updateTime(String.format("Race clock: -%02d:%02d:%02d", hours, minutes, remainingSeconds)); updateTime(String.format("Race clock: -%02d:%02d:%02d", hours, minutes, remainingSeconds));
}
} }
} currentTime = System.currentTimeMillis();
currentTime = System.currentTimeMillis();
} }
}.start(); }.start();
} }
@ -183,7 +196,7 @@ public abstract class Race implements Runnable {
System.setProperty("javafx.animation.fullspeed", "true"); System.setProperty("javafx.animation.fullspeed", "true");
for (BoatInRace boat : startingBoats) { for (Boat boat : startingBoats) {
boat.setStarted(true); boat.setStarted(true);
} }
@ -199,7 +212,7 @@ public abstract class Race implements Runnable {
if (boatsFinished < startingBoats.size()) { if (boatsFinished < startingBoats.size()) {
totalTimeElapsed = System.currentTimeMillis() - timeRaceStarted; totalTimeElapsed = System.currentTimeMillis() - timeRaceStarted;
for (BoatInRace boat : startingBoats) { for (Boat boat : startingBoats) {
if (boat != null && !boat.isFinished()) { if (boat != null && !boat.isFinished()) {
boat.addTrackPoint(boat.getCurrentPosition()); boat.addTrackPoint(boat.getCurrentPosition());
updatePosition(boat, Math.round(1000 / lastFPS) > 20 ? 15 : Math.round(1000 / lastFPS)); updatePosition(boat, Math.round(1000 / lastFPS) > 20 ? 15 : Math.round(1000 / lastFPS));
@ -228,8 +241,8 @@ public abstract class Race implements Runnable {
*/ */
protected void updatePositions() { protected void updatePositions() {
FXCollections.sort(startingBoats, (a, b) -> b.getCurrentLeg().getLegNumber() - a.getCurrentLeg().getLegNumber()); FXCollections.sort(startingBoats, (a, b) -> b.getCurrentLeg().getLegNumber() - a.getCurrentLeg().getLegNumber());
for (BoatInRace boat : startingBoats) { for(Boat boat: startingBoats) {
if (boat != null) { if(boat != null) {
boat.setPosition(Integer.toString(startingBoats.indexOf(boat) + 1)); boat.setPosition(Integer.toString(startingBoats.indexOf(boat) + 1));
if (boat.getCurrentLeg().getName().equals("DNF") || boat.getCurrentLeg().getLegNumber() == 0) if (boat.getCurrentLeg().getName().equals("DNF") || boat.getCurrentLeg().getLegNumber() == 0)
boat.setPosition("-"); boat.setPosition("-");
@ -247,11 +260,11 @@ public abstract class Race implements Runnable {
/** /**
* Returns the boats that have started the race. * Returns the boats that have started the race.
* *
* @return ObservableList of BoatInRace class that participated in the race. * @return ObservableList of Boat class that participated in the race.
* @see ObservableList * @see ObservableList
* @see BoatInRace * @see Boat
*/ */
public ObservableList<BoatInRace> getStartingBoats() { public ObservableList<Boat> getStartingBoats() {
return startingBoats; return startingBoats;
} }
} }

@ -57,6 +57,7 @@ public class RaceClock {
} }
public String getTimeZone() { public String getTimeZone() {
System.out.println(zoneId.toString());
return zoneId.toString(); return zoneId.toString();
} }

@ -21,12 +21,13 @@ import java.util.List;
public class ResizableRaceCanvas extends Canvas { public class ResizableRaceCanvas extends Canvas {
private GraphicsContext gc; private GraphicsContext gc;
private RaceMap map; private RaceMap map;
private List<BoatInRace> boats; private List<Boat> boats;
private boolean raceAnno = true; private boolean raceAnno = true;
private boolean annoName = true; private boolean annoName = true;
private boolean annoAbbrev = true; private boolean annoAbbrev = true;
private boolean annoSpeed = true; private boolean annoSpeed = true;
private boolean annoPath = true; private boolean annoPath = true;
private List<Color> colours;
private List<GPSCoordinate> raceBoundaries; private List<GPSCoordinate> raceBoundaries;
private List<Marker> markers; private List<Marker> markers;
double[] xpoints = {}, ypoints = {}; double[] xpoints = {}, ypoints = {};
@ -46,6 +47,7 @@ public class ResizableRaceCanvas extends Canvas {
this.raceBoundaries = raceData.getBoundary(); this.raceBoundaries = raceData.getBoundary();
this.markers = raceData.getMarkers(); this.markers = raceData.getMarkers();
makeColours();
} }
/** /**
@ -53,7 +55,7 @@ public class ResizableRaceCanvas extends Canvas {
* *
* @param boats in race * @param boats in race
*/ */
public void setBoats(List<BoatInRace> boats) { public void setBoats(List<Boat> boats) {
this.boats = boats; this.boats = boats;
} }
@ -81,9 +83,9 @@ public class ResizableRaceCanvas extends Canvas {
gc.fillOval(graphCoordinate.getX() - (d / 2), graphCoordinate.getY() - (d / 2), d, d); gc.fillOval(graphCoordinate.getX() - (d / 2), graphCoordinate.getY() - (d / 2), d, d);
} }
public void displayBoat(BoatInRace boat, double angle) { public void displayBoat(Boat boat, double angle, Color colour) {
GraphCoordinate pos = this.map.convertGPS(boat.getCurrentPosition()); GraphCoordinate pos = this.map.convertGPS(boat.getCurrentPosition());
Paint paint = boat.getColour(); Paint paint = colour;
double[] x = {pos.getX() - 6, pos.getX(), pos.getX() + 6}; double[] x = {pos.getX() - 6, pos.getX(), pos.getX() + 6};
double[] y = {pos.getY() + 12, pos.getY() - 12, pos.getY() + 12}; double[] y = {pos.getY() + 12, pos.getY() - 12, pos.getY() + 12};
@ -322,27 +324,29 @@ public class ResizableRaceCanvas extends Canvas {
* Draws boats while race in progress, when leg heading is set. * Draws boats while race in progress, when leg heading is set.
*/ */
public void updateBoats() { public void updateBoats() {
int currentColour = 0;
// TODO Remove null when boats are ready // TODO Remove null when boats are ready
boats = null; boats = null;
if (boats != null) { if (boats != null) {
for (BoatInRace boat : boats) { for (Boat boat : boats) {
boolean finished = boat.getCurrentLeg().getName().equals("Finish") || boat.getCurrentLeg().getName().equals("DNF"); boolean finished = boat.getCurrentLeg().getName().equals("Finish") || boat.getCurrentLeg().getName().equals("DNF");
boolean isStart = boat.isStarted(); boolean isStart = boat.isStarted();
if (!finished && isStart) { if (!finished && isStart) {
displayBoat(boat, boat.getHeading()); displayBoat(boat, boat.getHeading(), colours.get(currentColour));
GraphCoordinate wakeFrom = this.map.convertGPS(boat.getCurrentPosition()); GraphCoordinate wakeFrom = this.map.convertGPS(boat.getCurrentPosition());
GraphCoordinate wakeTo = this.map.convertGPS(boat.getWake()); GraphCoordinate wakeTo = this.map.convertGPS(boat.getWake());
displayLine(wakeFrom, wakeTo, boat.getColour()); displayLine(wakeFrom, wakeTo, colours.get(currentColour));
} else if (!isStart) { } else if (!isStart) {
displayBoat(boat, boat.getHeading()); displayBoat(boat, boat.getHeading(), colours.get(currentColour));
} else { } else {
displayBoat(boat, 0); displayBoat(boat, 0, colours.get(currentColour));
} }
if (raceAnno) if (raceAnno)
displayText(boat.toString(), boat.getAbbrev(), boat.getVelocity(), this.map.convertGPS(boat.getCurrentPosition())); displayText(boat.toString(), boat.getAbbrev(), boat.getVelocity(), this.map.convertGPS(boat.getCurrentPosition()));
if(boat.isTrackVisible()) drawTrack(boat); drawTrack(boat, colours.get(currentColour));
currentColour = (currentColour + 1) % colours.size();
} }
} }
} }
@ -352,11 +356,11 @@ public class ResizableRaceCanvas extends Canvas {
* @param boat whose track is displayed * @param boat whose track is displayed
* @see seng302.Model.TrackPoint * @see seng302.Model.TrackPoint
*/ */
private void drawTrack(BoatInRace boat) { private void drawTrack(Boat boat, Color colour) {
if (annoPath && raceAnno) { if (annoPath && raceAnno) {
for (TrackPoint point : boat.getTrack()) { for (TrackPoint point : boat.getTrack()) {
GraphCoordinate scaledCoordinate = this.map.convertGPS(point.getCoordinate()); GraphCoordinate scaledCoordinate = this.map.convertGPS(point.getCoordinate());
Color boatColour = boat.getColour(); Color boatColour = colour;
gc.setFill(new Color(boatColour.getRed(), boatColour.getGreen(), boatColour.getBlue(), point.getAlpha())); gc.setFill(new Color(boatColour.getRed(), boatColour.getGreen(), boatColour.getBlue(), point.getAlpha()));
gc.fillOval(scaledCoordinate.getX(), scaledCoordinate.getY(), 5, 5); gc.fillOval(scaledCoordinate.getX(), scaledCoordinate.getY(), 5, 5);
} }
@ -381,6 +385,20 @@ public class ResizableRaceCanvas extends Canvas {
} }
} }
private void makeColours() {
colours = new ArrayList<Color>(Arrays.asList(
Color.BLUEVIOLET,
Color.BLACK,
Color.RED,
Color.ORANGE,
Color.DARKOLIVEGREEN,
Color.LIMEGREEN,
Color.PURPLE,
Color.DARKGRAY,
Color.YELLOW
));
}
/** /**
* Set the Canvas to resizable. * Set the Canvas to resizable.
* *

@ -1,5 +1,6 @@
package seng302; package seng302;
import seng302.Model.Boat;
import seng302.Model.BoatInRace; import seng302.Model.BoatInRace;
import seng302.Model.Leg; import seng302.Model.Leg;
import seng302.Model.Marker; import seng302.Model.Marker;
@ -11,7 +12,7 @@ import java.util.List;
* Created by connortaylorbrown on 19/04/17. * Created by connortaylorbrown on 19/04/17.
*/ */
public interface RaceDataSource { public interface RaceDataSource {
List<BoatInRace> getBoats(); List<Boat> getBoats();
List<Leg> getLegs(); List<Leg> getLegs();
List<Marker> getMarkers(); List<Marker> getMarkers();
List<GPSCoordinate> getBoundary(); List<GPSCoordinate> getBoundary();

@ -4,10 +4,7 @@ import javafx.scene.paint.Color;
import org.w3c.dom.Element; import org.w3c.dom.Element;
import org.w3c.dom.NodeList; import org.w3c.dom.NodeList;
import org.xml.sax.SAXException; import org.xml.sax.SAXException;
import seng302.Model.BoatInRace; import seng302.Model.*;
import seng302.Model.Leg;
import seng302.Model.Marker;
import seng302.Model.RaceClock;
import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException; import java.io.IOException;
@ -20,20 +17,19 @@ import java.util.List;
* @deprecated use {@link seng302.Mock.StreamedCourseXMLReader} * @deprecated use {@link seng302.Mock.StreamedCourseXMLReader}
*/ */
public class RaceXMLReader extends XMLReader implements RaceDataSource { public class RaceXMLReader extends XMLReader implements RaceDataSource {
private static double COORDINATEPADDING = 0.0005; private List<Boat> boats = new ArrayList<>();
private List<BoatInRace> boats = new ArrayList<>();
private Color[] colors = {Color.BLUEVIOLET, Color.BLACK, Color.RED, Color.ORANGE, Color.DARKOLIVEGREEN, Color.LIMEGREEN};//TODO make this established in xml or come up with a better system. private Color[] colors = {Color.BLUEVIOLET, Color.BLACK, Color.RED, Color.ORANGE, Color.DARKOLIVEGREEN, Color.LIMEGREEN};//TODO make this established in xml or come up with a better system.
private List<Leg> legs = new ArrayList<>(); private List<Leg> legs = new ArrayList<>();
private GPSCoordinate mark, startPt1, startPt2, finishPt1, finishPt2, leewardPt1, leewardPt2, windwardPt1, windwardPt2; private GPSCoordinate mark, startPt1, startPt2, finishPt1, finishPt2, leewardPt1, leewardPt2, windwardPt1, windwardPt2;
private GPSCoordinate mapTopLeft, mapBottomRight; private GPSCoordinate mapTopLeft, mapBottomRight;
private List<GPSCoordinate> boundary = new ArrayList<>(); private List<GPSCoordinate> boundary = new ArrayList<>();
private static double COORDINATEPADDING = 0.0005;
/** /**
* Constractor for Race XML * Constractor for Race XML
*
* @param filePath path of the file * @param filePath path of the file
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error
* @throws ParserConfigurationException error * @throws ParserConfigurationException error
*/ */
public RaceXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException { public RaceXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException {
@ -42,11 +38,10 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* COnstructor for Race XML * COnstructor for Race XML
*
* @param filePath file path to read * @param filePath file path to read
* @param read whether or not to read and store the files straight away. * @param read whether or not to read and store the files straight away.
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error
* @throws ParserConfigurationException error * @throws ParserConfigurationException error
*/ */
public RaceXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException { public RaceXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException {
@ -67,7 +62,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* Read all the boats in the XML file * Read all the boats in the XML file
*/ */
public void readBoats() { public void readBoats() {
//get all boats //get all boats
NodeList nBoats = doc.getElementsByTagName("boat"); NodeList nBoats = doc.getElementsByTagName("boat");
@ -174,7 +169,6 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* gets a marker from the XML file * gets a marker from the XML file
*
* @param start base nodelist this should be the tag that contains <coordinate></coordinate> * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @return * @return
*/ */
@ -184,8 +178,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* gets a marker from the XML file * gets a marker from the XML file
* * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param startIndex index in the node that has the coordinate tag * @param startIndex index in the node that has the coordinate tag
* @return * @return
*/ */
@ -195,10 +188,9 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* gets a marker from the XML file * gets a marker from the XML file
* * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param startIndex index in the node that has the coordinate tag * @param startIndex index in the node that has the coordinate tag
* @param nodeIndex coordinate index * @param nodeIndex coordinate index
* @return * @return
*/ */
private Marker getMarker(NodeList start, int startIndex, int nodeIndex) { private Marker getMarker(NodeList start, int startIndex, int nodeIndex) {
@ -209,7 +201,6 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* gets a changes a marker to GPS coordinates into a marker * gets a changes a marker to GPS coordinates into a marker
*
* @param markerNode marker to turn into coordinates * @param markerNode marker to turn into coordinates
* @return * @return
*/ */
@ -230,7 +221,6 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* gets a coordinates from the XML file * gets a coordinates from the XML file
*
* @param start base nodelist this should be the tag that contains <coordinate></coordinate> * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @return * @return
*/ */
@ -238,10 +228,9 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
return getCoordinates(start, 0); return getCoordinates(start, 0);
} }
/** /**
* gets a coordinates from the XML file * gets a coordinates from the XML file
* * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param startIndex the index the tag containing the coordinate should be in * @param startIndex the index the tag containing the coordinate should be in
* @return * @return
*/ */
@ -249,12 +238,11 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
return getCoordinates(start, startIndex, 0); return getCoordinates(start, startIndex, 0);
} }
/** /**
* gets a coordinates from the XML file * gets a coordinates from the XML file
* * @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param start base nodelist this should be the tag that contains <coordinate></coordinate>
* @param startIndex the index the tag containing the coordinate should be in * @param startIndex the index the tag containing the coordinate should be in
* @param nodeIndex The coordinate index * @param nodeIndex The coordinate index
* @return * @return
*/ */
private GPSCoordinate getCoordinates(NodeList start, int startIndex, int nodeIndex) { private GPSCoordinate getCoordinates(NodeList start, int startIndex, int nodeIndex) {
@ -281,7 +269,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
return null; return null;
} }
public List<BoatInRace> getBoats() { public List<Boat> getBoats() {
return boats; return boats;
} }

@ -1,139 +1,140 @@
package seng302.Model; //package seng302.Model;
//
//
import javafx.scene.paint.Color; //import javafx.scene.paint.Color;
import org.geotools.referencing.GeodeticCalculator; //import org.geotools.referencing.GeodeticCalculator;
import org.junit.Test; //import org.junit.Test;
import seng302.Constants; //import seng302.Constants;
import seng302.GPSCoordinate; //import seng302.GPSCoordinate;
//
import java.util.ArrayList; //import java.lang.reflect.Array;
//import java.util.ArrayList;
import static org.junit.Assert.assertEquals; //
//import static org.junit.Assert.assertEquals;
/** //
* Created by esa46 on 16/03/17. ///**
*/ // * Created by esa46 on 16/03/17.
public class ConstantVelocityRaceTest { // */
//public class ConstantVelocityRaceTest {
Marker START_MARKER = new Marker(new GPSCoordinate(0, 0)); //
Marker END_MARKER = new Marker(new GPSCoordinate(10, 10)); // Marker START_MARKER = new Marker(new GPSCoordinate(0, 0));
Leg START_LEG = new Leg("Start", START_MARKER, END_MARKER, 0); // Marker END_MARKER = new Marker(new GPSCoordinate(10, 10));
// Leg START_LEG = new Leg("Start", START_MARKER, END_MARKER, 0);
int ONE_HOUR = 3600000; //1 hour in milliseconds //
// int ONE_HOUR = 3600000; //1 hour in milliseconds
//
private ArrayList<Leg> generateLegsArray() { //
ArrayList<Leg> legs = new ArrayList<>(); // private ArrayList<Leg> generateLegsArray() {
legs.add(START_LEG); // ArrayList<Leg> legs = new ArrayList<>();
return legs; // legs.add(START_LEG);
} // return legs;
// }
@Test //
public void updatePositionChangesDistanceTravelled() { // @Test
ArrayList<Leg> legs = generateLegsArray(); // public void updatePositionChangesDistanceTravelled() {
BoatInRace boat = new BoatInRace("Test", 1, Color.ALICEBLUE, "tt"); // ArrayList<Leg> legs = generateLegsArray();
boat.setCurrentLeg(legs.get(0)); // BoatInRace boat = new BoatInRace("Test", 1, Color.ALICEBLUE, "tt");
boat.setDistanceTravelledInLeg(0); // boat.setCurrentLeg(legs.get(0));
BoatInRace[] boats = new BoatInRace[]{boat}; // boat.setDistanceTravelledInLeg(0);
// BoatInRace[] boats = new BoatInRace[]{boat};
ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1); //
// ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1);
race.updatePosition(boat, ONE_HOUR); //
assertEquals(boat.getDistanceTravelledInLeg(), boat.getVelocity(), 1e-8); // race.updatePosition(boat, ONE_HOUR);
} // assertEquals(boat.getDistanceTravelledInLeg(), boat.getVelocity(), 1e-8);
// }
//
@Test //
public void updatePositionHandlesNoChangeToDistanceTravelled() { // @Test
// public void updatePositionHandlesNoChangeToDistanceTravelled() {
ArrayList<Leg> legs = generateLegsArray(); //
BoatInRace boat = new BoatInRace("Test", 0, Color.ALICEBLUE, "tt"); // ArrayList<Leg> legs = generateLegsArray();
boat.setCurrentLeg(legs.get(0)); // BoatInRace boat = new BoatInRace("Test", 0, Color.ALICEBLUE, "tt");
boat.setDistanceTravelledInLeg(0); // boat.setCurrentLeg(legs.get(0));
BoatInRace[] boats = new BoatInRace[]{boat}; // boat.setDistanceTravelledInLeg(0);
// BoatInRace[] boats = new BoatInRace[]{boat};
ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1); //
// ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1);
race.updatePosition(boat, ONE_HOUR); //
assertEquals(boat.getDistanceTravelledInLeg(), 0, 1e-8); // race.updatePosition(boat, ONE_HOUR);
} // assertEquals(boat.getDistanceTravelledInLeg(), 0, 1e-8);
// }
@Test //
public void changesToDistanceTravelledAreAdditive() { // @Test
// public void changesToDistanceTravelledAreAdditive() {
ArrayList<Leg> legs = generateLegsArray(); //
BoatInRace boat = new BoatInRace("Test", 5, Color.ALICEBLUE, "tt"); // ArrayList<Leg> legs = generateLegsArray();
boat.setCurrentLeg(legs.get(0)); // BoatInRace boat = new BoatInRace("Test", 5, Color.ALICEBLUE, "tt");
boat.setDistanceTravelledInLeg(50); // boat.setCurrentLeg(legs.get(0));
BoatInRace[] boats = new BoatInRace[]{boat}; // boat.setDistanceTravelledInLeg(50);
// BoatInRace[] boats = new BoatInRace[]{boat};
ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1); //
// ConstantVelocityRace race = new ConstantVelocityRace(boats, legs, null, 1);
race.updatePosition(boat, ONE_HOUR); //
assertEquals(boat.getDistanceTravelledInLeg(), boat.getVelocity() + 50, 1e-8); // race.updatePosition(boat, ONE_HOUR);
} // assertEquals(boat.getDistanceTravelledInLeg(), boat.getVelocity() + 50, 1e-8);
// }
@Test //
public void travelling10nmNorthGivesCorrectNewCoordinates() { // @Test
GPSCoordinate oldPos = new GPSCoordinate(0, 0); // public void travelling10nmNorthGivesCorrectNewCoordinates() {
GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 0); // GPSCoordinate oldPos = new GPSCoordinate(0, 0);
// GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 0);
GeodeticCalculator calc = new GeodeticCalculator(); //
calc.setStartingGeographicPoint(0, 0); // GeodeticCalculator calc = new GeodeticCalculator();
calc.setDirection(0, 10 * Constants.NMToMetersConversion); // calc.setStartingGeographicPoint(0, 0);
// calc.setDirection(0, 10 * Constants.NMToMetersConversion);
assertEquals(newPos.getLongitude(), 0, 1e-8); //
assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8); // assertEquals(newPos.getLongitude(), 0, 1e-8);
assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8); // assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8);
} // assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8);
// }
//
@Test //
public void travelling10nmEastGivesCorrectNewCoordinates() { // @Test
GPSCoordinate oldPos = new GPSCoordinate(0, 0); // public void travelling10nmEastGivesCorrectNewCoordinates() {
GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 90); // GPSCoordinate oldPos = new GPSCoordinate(0, 0);
// GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 90);
GeodeticCalculator calc = new GeodeticCalculator(); //
calc.setStartingGeographicPoint(0, 0); // GeodeticCalculator calc = new GeodeticCalculator();
calc.setDirection(90, 10 * Constants.NMToMetersConversion); // calc.setStartingGeographicPoint(0, 0);
// calc.setDirection(90, 10 * Constants.NMToMetersConversion);
//
assertEquals(newPos.getLatitude(), 0, 1e-8); //
assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8); // assertEquals(newPos.getLatitude(), 0, 1e-8);
assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8); // assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8);
} // assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8);
// }
//
@Test //
public void travelling10nmWestGivesCorrectNewCoordinates() { // @Test
GPSCoordinate oldPos = new GPSCoordinate(0, 0); // public void travelling10nmWestGivesCorrectNewCoordinates() {
GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, -90); // GPSCoordinate oldPos = new GPSCoordinate(0, 0);
// GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, -90);
GeodeticCalculator calc = new GeodeticCalculator(); //
calc.setStartingGeographicPoint(0, 0); // GeodeticCalculator calc = new GeodeticCalculator();
calc.setDirection(-90, 10 * Constants.NMToMetersConversion); // calc.setStartingGeographicPoint(0, 0);
// calc.setDirection(-90, 10 * Constants.NMToMetersConversion);
//
assertEquals(newPos.getLatitude(), 0, 1e-8); //
assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8); // assertEquals(newPos.getLatitude(), 0, 1e-8);
assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8); // assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8);
} // assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8);
// }
//
@Test //
public void travelling10nmSouthGivesCorrectNewCoordinates() { // @Test
GPSCoordinate oldPos = new GPSCoordinate(0, 0); // public void travelling10nmSouthGivesCorrectNewCoordinates() {
GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 180); // GPSCoordinate oldPos = new GPSCoordinate(0, 0);
// GPSCoordinate newPos = ConstantVelocityRace.calculatePosition(oldPos, 10, 180);
GeodeticCalculator calc = new GeodeticCalculator(); //
calc.setStartingGeographicPoint(0, 0); // GeodeticCalculator calc = new GeodeticCalculator();
calc.setDirection(180, 10 * Constants.NMToMetersConversion); // calc.setStartingGeographicPoint(0, 0);
// calc.setDirection(180, 10 * Constants.NMToMetersConversion);
//
assertEquals(newPos.getLongitude(), 0, 1e-8); //
assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8); // assertEquals(newPos.getLongitude(), 0, 1e-8);
assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8); // assertEquals(newPos.getLatitude(), calc.getDestinationGeographicPoint().getY(), 1e-8);
} // assertEquals(newPos.getLongitude(), calc.getDestinationGeographicPoint().getX(), 1e-8);
// }
} //
//}

@ -26,7 +26,7 @@ public class RaceXMLTest {
try { try {
RaceXMLReader raceXMLReader = new RaceXMLReader("raceXML/bermuda_AC35.xml", false); RaceXMLReader raceXMLReader = new RaceXMLReader("raceXML/bermuda_AC35.xml", false);
raceXMLReader.readBoats(); raceXMLReader.readBoats();
List<BoatInRace> boats = raceXMLReader.getBoats(); List<Boat> boats = raceXMLReader.getBoats();
assertTrue(boats.size() == 6); assertTrue(boats.size() == 6);
//test boat 1 //test boat 1
assertEquals(boats.get(0).getName().getValue(), "ORACLE TEAM USA"); assertEquals(boats.get(0).getName().getValue(), "ORACLE TEAM USA");

Loading…
Cancel
Save