mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-26 07:26:41 +00:00
Merge branch 'master' into bug3305
This commit is contained in:
+16
-5
@@ -110,10 +110,11 @@ public class LeaderboardTotalRankComparator implements Comparator<Competitor> {
|
||||
for (RaceColumn raceColumn : getLeaderboard().getRaceColumns()) {
|
||||
needToResetO1ScoreUponNextValidResult = raceColumn.isStartsWithZeroScore();
|
||||
needToResetO2ScoreUponNextValidResult = raceColumn.isStartsWithZeroScore();
|
||||
if (getLeaderboard().getScoringScheme().isValidInTotalScore(getLeaderboard(), raceColumn, o1, timePoint)
|
||||
&& getLeaderboard().getScoringScheme().isValidInTotalScore(getLeaderboard(), raceColumn, o2, timePoint)) {
|
||||
int preemptiveColumnResult = 0;
|
||||
final Double o1Score = totalPointsCache.get(new Util.Pair<Competitor, RaceColumn>(o1, raceColumn));
|
||||
final boolean o1ValidInTotalScore = getLeaderboard().getScoringScheme().isValidInTotalScore(getLeaderboard(), raceColumn, o1, timePoint);
|
||||
final boolean o2ValidInTotalScore = getLeaderboard().getScoringScheme().isValidInTotalScore(getLeaderboard(), raceColumn, o2, timePoint);
|
||||
final Double o1Score;
|
||||
if (o1ValidInTotalScore) {
|
||||
o1Score = totalPointsCache.get(new Util.Pair<Competitor, RaceColumn>(o1, raceColumn));
|
||||
if (o1Score != null) {
|
||||
o1Scores.add(new Util.Pair<RaceColumn, Double>(raceColumn, o1Score));
|
||||
if (needToResetO1ScoreUponNextValidResult) {
|
||||
@@ -122,7 +123,12 @@ public class LeaderboardTotalRankComparator implements Comparator<Competitor> {
|
||||
}
|
||||
o1ScoreSum += o1Score;
|
||||
}
|
||||
final Double o2Score = totalPointsCache.get(new Util.Pair<Competitor, RaceColumn>(o2, raceColumn));
|
||||
} else {
|
||||
o1Score = null;
|
||||
}
|
||||
final Double o2Score;
|
||||
if (o2ValidInTotalScore) {
|
||||
o2Score = totalPointsCache.get(new Util.Pair<Competitor, RaceColumn>(o2, raceColumn));
|
||||
if (o2Score != null) {
|
||||
o2Scores.add(new Util.Pair<RaceColumn, Double>(raceColumn, o2Score));
|
||||
if (needToResetO2ScoreUponNextValidResult) {
|
||||
@@ -131,6 +137,11 @@ public class LeaderboardTotalRankComparator implements Comparator<Competitor> {
|
||||
}
|
||||
o2ScoreSum += o2Score;
|
||||
}
|
||||
} else {
|
||||
o2Score = null;
|
||||
}
|
||||
if (o1ValidInTotalScore && o2ValidInTotalScore) {
|
||||
int preemptiveColumnResult = 0;
|
||||
if (raceColumn.isMedalRace()) {
|
||||
// only count the score for the medal race score if it wasn't a carry-forward column
|
||||
if (!raceColumn.isCarryForward()) {
|
||||
|
||||
@@ -73,6 +73,7 @@ First of all, make sure you've looked at http://www.amazon.de/Patterns-Elements-
|
||||
* Start the appropriate Eclipse launch configuration (e.g. 'Sailing Server (Proxy)') You´ll find this in the run dropdown
|
||||
* Run "SailingGWT" in the run dropdown
|
||||
5. Within the Race Analysis Suite
|
||||
* Default Login: user "admin", password "admin"
|
||||
* For TracTrac Events: (Date 27.11.2012) Use Live URI tcp://10.18.22.156:4412, Stored URI tcp://10.18.22.156:4413, JSON URL http://germanmaster.traclive.dk/events/event_20120905_erEuropean/jsonservice.php
|
||||
* Press List Races
|
||||
|
||||
|
||||
Reference in New Issue
Block a user