Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit 5f38998

Browse files
created 2020 match score breakdown class
1 parent 250d943 commit 5f38998

3 files changed

Lines changed: 166 additions & 2 deletions

File tree

.idea/uiDesigner.xml

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
package com.thebluealliance.api.v3.models;
2+
3+
import lombok.Value;
4+
5+
@Value
6+
public class MatchScoreBreakdown2020Alliance {
7+
String initLineRobot1;
8+
String endgameRobot1;
9+
String initLineRobot2;
10+
String endgameRobt2;
11+
String initLineRobot3;
12+
int autoCellsBottom;
13+
int autoCellsOuter;
14+
int autoCellsInner;
15+
int teleopCellsBottom;
16+
int teleopCellsOuter;
17+
int teleopCellsInner;
18+
boolean stage1Activated;
19+
boolean stage2Activated;
20+
boolean stage3Activated;
21+
String stage3TargetColor;
22+
String endgameRungIsLevel;
23+
int autoInitLinePoints;
24+
int autoCellPoints;
25+
int teleopCellPoints;
26+
int controlPanelPoints;
27+
int endgamePoints;
28+
int teleopPoints;
29+
boolean shieldOperationRankingPoint;
30+
boolean shieldEnergizedRankingPoint;
31+
boolean tba_shieldEnergizedRankingPointFromFoul;
32+
int foulCount;
33+
int techFoulPoints;
34+
int adjustPoints;
35+
int foulPoints;
36+
int rp;
37+
int totalPoints;
38+
39+
40+
}

src/main/java/com/thebluealliance/api/v3/models/ScoreBreakdown.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
@Value
66
public class ScoreBreakdown {
77

8-
MatchScoreBreakdown2019Allliance blue;
9-
MatchScoreBreakdown2019Allliance red;
8+
MatchScoreBreakdown2020Alliance blue;
9+
MatchScoreBreakdown2020Alliance red;
1010
}

0 commit comments

Comments
 (0)