-
Notifications
You must be signed in to change notification settings - Fork 1
/
team.js
137 lines (118 loc) · 4.29 KB
/
team.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import * as teamRepository from "./team-repository.js"
import * as matchRepository from "./match-repository.js"
import { Match } from "./match.js"
/**
* Holds team data. Uses `number` as a unique identifier.
* Roughly keeps track of the same fields as The Blue Alliance's Rankings page.
*/
export class Team {
#number;
#name;
#rankingPoints;
#autoPoints;
#endgamePoints;
#teleopPowerCellPoints;
#controlPanelPoints;
#wins;
#ties;
#losses;
#disqualifications;
#matchesPlayed;
constructor(number) {
this.#number = number;
this.#name = teamRepository.getTeamName(number);
}
get number() {
return this.#number;
}
get name() {
return this.#name;
}
calculateFields() {
let matches = matchRepository.getAllMatches();
matches = matches.filter(match => match.type == Match.Type.QUALIFICATION && match.result != Match.Result.UNDETERMINED);
matches = matches.filter(match => match.teamNumbers.includes(this.number) && !match.isSurrogate(this.number));
this.#rankingPoints = 0;
this.#autoPoints = 0;
this.#endgamePoints = 0;
this.#teleopPowerCellPoints = 0;
this.#controlPanelPoints = 0;
this.#wins = 0;
this.#ties = 0;
this.#losses = 0;
this.#disqualifications = 0;
matches.forEach(match => {
if (match.isDisqualified(this.number)) {
this.#disqualifications++;
} else {
if (match.red.teamNumbers.includes(this.number)) {
if (match.result == Match.Result.RED_WIN) {
this.#rankingPoints += 2;
this.#wins++;
} else if (match.result == Match.Result.TIE) {
this.#rankingPoints += 1;
this.#ties++;
} else {
this.#losses++;
}
if (match.red.shieldGeneratorEnergized) this.#rankingPoints += 1;
if (match.red.shieldGeneratorOperational) this.#rankingPoints += 1;
this.#autoPoints += match.red.autoPoints;
this.#endgamePoints += match.red.endgamePoints;
this.#teleopPowerCellPoints += match.red.teleopPowerCellPoints;
this.#controlPanelPoints += match.red.controlPanelPoints;
} else if (match.blue.teamNumbers.includes(this.number)) {
if (match.result == Match.Result.BLUE_WIN) {
this.#rankingPoints += 2;
this.#wins++;
} else if (match.result == Match.Result.TIE) {
this.#rankingPoints += 1;
this.#ties++;
} else {
this.#losses++;
}
if (match.blue.shieldGeneratorEnergized) this.#rankingPoints += 1;
if (match.blue.shieldGeneratorOperational) this.#rankingPoints += 1;
this.#autoPoints += match.blue.autoPoints;
this.#endgamePoints += match.blue.endgamePoints;
this.#teleopPowerCellPoints += match.blue.teleopPowerCellPoints;
this.#controlPanelPoints += match.blue.controlPanelPoints;
}
}
});
this.#matchesPlayed = matches.length;
}
get rankingScore() {
return this.#rankingPoints / this.#matchesPlayed;
}
get rankingPoints() {
return this.#rankingPoints;
}
get autoPoints() {
return this.#autoPoints;
}
get endgamePoints() {
return this.#endgamePoints;
}
get teleopPowerCellPoints() {
return this.#teleopPowerCellPoints;
}
get controlPanelPoints() {
return this.#controlPanelPoints;
}
get wins() {
return this.#wins;
}
get ties() {
return this.#ties;
}
get losses() {
return this.#losses;
}
get disqualifications() {
return this.#disqualifications;
}
get matchesPlayed() {
return this.#matchesPlayed;
}
}