-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers-table.js
163 lines (144 loc) · 6.61 KB
/
users-table.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
const config = require('./config');
const usersAggregateStatsRow = {
kills: 0,
deaths: 0,
assists: 0,
shotsFired: 0,
shotsHit: 0,
headshots: 0,
dmgDealt: 0,
dmgPerDeath: 0,
medalCount: 0,
firstBlood: 0,
distractions: 0,
pWeaponPickups: 0,
pWeaponKills: 0,
powerWeaponDeaths: 0,
perfectKills: 0,
perfectDeaths: 0,
reversals: 0,
reversalDeaths: 0,
noScopeDeaths: 0,
bigGameKills: 0,
forcedTurnovers: 0,
turnovers: 0,
medalCount: 0,
};
const usersNonAggregateStats = {
startingCsr: 0,
endingCsr: 0,
totalStartingCsr: 0, // this key will be removed, used for getting the average csr for random teammates
totalEndingCsr: 0, // this key will be removed, used for getting the average csr for random teammates
gamesPlayed: 0
};
module.exports.getUsersTable = function (allMatchData) {
let usersOverall = {
entities: {
all: Object.assign({
name: 'All'
}, usersAggregateStatsRow, usersNonAggregateStats)
},
result: ['all']
};
const matchCount = allMatchData.length;
allMatchData.forEach((m, i) => {
Object.keys(m.teams.friendly.ids).forEach(friendlyTag => {
if (!usersOverall.entities[friendlyTag]) {
usersOverall.entities[friendlyTag] = Object.assign({
name: friendlyTag
}, usersAggregateStatsRow, usersNonAggregateStats);
usersOverall.result.push(friendlyTag);
}
// this game is the last game of the session
if (i === 0) {
// get end of session csr for the people we care about
if (!config.isRandomTeammate(friendlyTag, true) && m.users[friendlyTag].currentCsr) {
usersOverall.entities[friendlyTag].endingCsr = m.users[friendlyTag].currentCsr.Csr;
// for the 'all' user, add up everyone's csr for an average calculated below. we'll need to add the randoms' average csr
usersOverall.entities.all.totalEndingCsr += m.users[friendlyTag].currentCsr.Csr;
}
}
// this is the first game of the session
if (i === matchCount - 1) {
// get start of session csr
if (!config.isRandomTeammate(friendlyTag, true) && m.users[friendlyTag].previousCsr) {
// TODO something wrong with csr here in low rank matches
if (m.users[friendlyTag].previousCsr) {
usersOverall.entities[friendlyTag].startingCsr = m.users[friendlyTag].previousCsr.Csr;
// for the 'all' user, add up everyone's csr for an average calculated below. we'll need to add the randoms' average csr
usersOverall.entities.all.totalStartingCsr += m.users[friendlyTag].previousCsr.Csr;
}
}
}
// for the Random Teammates we need to get the previous and currentCsr of every game and find an average change
// TODO do something about csr not existing
if (m.users[friendlyTag].previousCsr) {
usersOverall.entities[friendlyTag].totalStartingCsr += m.users[friendlyTag].previousCsr.Csr;
}
if (m.users[friendlyTag].currentCsr) {
usersOverall.entities[friendlyTag].totalEndingCsr += m.users[friendlyTag].currentCsr.Csr;
}
// add to the total team data
Object.keys(usersAggregateStatsRow).forEach(key => {
usersOverall.entities.all[key] += m.users[friendlyTag][key];
usersOverall.entities[friendlyTag][key] += m.users[friendlyTag][key];
});
usersOverall.entities[friendlyTag].gamesPlayed++;
});
});
// now we do whatever we need to do after we have aggregated all games
const numberOfRandoms = usersOverall.result.reduce((randomCount, currentUser) => {
if (currentUser === 'all' || !config.isRandomTeammate(currentUser, true)) {
return randomCount;
}
return randomCount + 1;
}, 0);
// average csr for users in the session
usersOverall.entities.all.startingCsr = Math.floor(usersOverall.entities.all.totalStartingCsr / (usersOverall.result.length - 1 - numberOfRandoms)) //divide by number of users in results minus the 'all' user and the randoms;
usersOverall.entities.all.endingCsr = Math.floor(usersOverall.entities.all.totalEndingCsr / (usersOverall.result.length - 1 - numberOfRandoms));
const randomTeammateStats = Object.assign({
name: 'Random Teammate'
}, usersAggregateStatsRow, usersNonAggregateStats);
usersOverall.result.forEach(user => {
// calculate dmgPerDeath now that we have all the damage deaths
usersOverall.entities[user].dmgPerDeath = Math.floor(usersOverall.entities[user].dmgDealt / usersOverall.entities[user].deaths);
// add up all the random teammate stats so we can average them
if (user !== 'all' && config.isRandomTeammate(user, true)) {
// calculate average starting and ending CSRs for random teammates
usersOverall.entities[user].startingCsr = Math.floor(usersOverall.entities[user].totalStartingCsr / usersOverall.entities[user].gamesPlayed);
usersOverall.entities[user].endingCsr = Math.floor(usersOverall.entities[user].totalEndingCsr / usersOverall.entities[user].gamesPlayed);
Object.keys(usersOverall.entities[user]).forEach(key => {
if (key === 'name' || key === 'dmgPerDeath' || key === 'rifleAccuracy' || key === 'arAccuracy') {
return;
}
randomTeammateStats[key] += usersOverall.entities[user][key];
});
}
// remove these keys since they're a little redundant and this table is already ginormous
delete usersOverall.entities[user].rifleHits;
delete usersOverall.entities[user].magnumHits;
delete usersOverall.entities[user].arHits;
delete usersOverall.entities[user].totalStartingCsr;
delete usersOverall.entities[user].totalEndingCsr;
delete usersOverall.entities[user].gamesPlayed;
});
// dmgPerDeath and accuracy stats cant be aggregated. need to be calculated here.
randomTeammateStats.dmgPerDeath = Math.floor(randomTeammateStats.dmgDealt / randomTeammateStats.deaths);
delete randomTeammateStats.rifleHits;
delete randomTeammateStats.magnumHits;
delete randomTeammateStats.arHits;
delete randomTeammateStats.totalStartingCsr;
delete randomTeammateStats.totalEndingCsr;
delete randomTeammateStats.gamesPlayed;
// finally, the startingCsr and endingCsrs for the random teammate need to be divided by number of random teammates
randomTeammateStats.startingCsr = Math.floor(randomTeammateStats.startingCsr / numberOfRandoms);
randomTeammateStats.endingCsr = Math.floor(randomTeammateStats.endingCsr / numberOfRandoms);
// TODO and if there is more than one random teammate, divide by that number so the random stats are comparable
// our final data structure has 'all', followed by the non random teammates...
usersOverall.result = usersOverall.result.filter(user => user === 'all' || !config.isRandomTeammate(user, true))
// ...plus the average stats for all of the random teammates
// TODO
// usersOverall.result.push('Random Teammate');
usersOverall.entities['Random Teammate'] = randomTeammateStats;
return usersOverall.result.map(u => usersOverall.entities[u]);
}