-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
getMatchMapStats.ts
411 lines (361 loc) · 10.3 KB
/
getMatchMapStats.ts
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
import { HLTVConfig } from '../config'
import { HLTVPage, HLTVPageElement, HLTVScraper } from '../scraper'
import { fromMapName, GameMap } from '../shared/GameMap'
import { Team } from '../shared/Team'
import { Event } from '../shared/Event'
import { fetchPage, getIdAt, notNull, parseNumber } from '../utils'
import { Player } from '../shared/Player'
export interface PlayerStats {
player: Player
killsPerRound?: number
deathsPerRound?: number
impact?: number
kills: number
hsKills: number
assists: number
flashAssists: number
deaths: number
KAST?: number
killDeathsDifference: number
ADR?: number
firstKillsDifference: number
rating1?: number
rating2?: number
}
export interface TeamPerformance {
kills: number
deaths: number
assists: number
}
export interface TeamsPerformanceOverview {
team1: TeamPerformance
team2: TeamPerformance
}
export enum Outcome {
CTWin = 'ct_win',
TWin = 't_win',
BombDefused = 'bomb_defused',
BombExploded = 'bomb_exploded',
TimeRanOut = 'stopwatch'
}
export interface RoundOutcome {
outcome: Outcome
score: string
tTeam: number
ctTeam: number
}
interface MapHalfResult {
team1Rounds: number
team2Rounds: number
}
export interface PlayerStat extends Player {
readonly value: number
}
export interface TeamStatComparison {
team1: number
team2: number
}
export interface MapStatsOverview {
rating: TeamStatComparison
firstKills: TeamStatComparison
clutchesWon: TeamStatComparison
mostKills: PlayerStat
mostDamage?: PlayerStat
mostAssists: PlayerStat
mostAWPKills: PlayerStat
mostFirstKills: PlayerStat
bestRating1?: PlayerStat
bestRating2?: PlayerStat
}
export interface FullMatchMapStats {
id: number
matchId: number
result: {
team1TotalRounds: number
team2TotalRounds: number
halfResults: MapHalfResult[]
}
map: GameMap
date: number
team1: Team
team2: Team
event: Event
overview: MapStatsOverview
roundHistory: RoundOutcome[]
playerStats: {
team1: PlayerStats[]
team2: PlayerStats[]
}
performanceOverview: TeamsPerformanceOverview
}
export const getMatchMapStats =
(config: HLTVConfig) =>
async ({ id }: { id: number }): Promise<FullMatchMapStats> => {
const [m$, p$] = await Promise.all([
fetchPage(
`https://www.hltv.org/stats/matches/mapstatsid/${id}/-`,
config.loadPage
).then(HLTVScraper),
fetchPage(
`https://www.hltv.org/stats/matches/performance/mapstatsid/${id}/-`,
config.loadPage
).then(HLTVScraper)
])
const matchId = m$('.match-page-link').attrThen('href', getIdAt(2))!
const halfsString = m$('.match-info-row .right').eq(0).text()
const result = {
team1TotalRounds: m$('.team-left .bold').numFromText()!,
team2TotalRounds: m$('.team-right .bold').numFromText()!,
halfResults: halfsString
.match(/(?!\() \d+ : \d+ (?=\))/g)!
.map((x) => x.trim().split(' : '))
.map(([t1, t2]) => ({
team1Rounds: Number(t1),
team2Rounds: Number(t2)
}))
}
const map = fromMapName(m$('.match-info-box').contents().eq(3).trimText()!)
const date = m$('.match-info-box span[data-time-format]').numFromAttr(
'data-unix'
)!
const team1 = {
id: m$('.team-left a').attrThen('href', getIdAt(3)),
name: m$('.team-left .team-logo').attr('title')
}
const team2 = {
id: m$('.team-right a').attrThen('href', getIdAt(3)),
name: m$('.team-right .team-logo').attr('title')
}
const event = {
id: Number(
m$('.match-info-box .text-ellipsis')
.first()
.attr('href')
.split('event=')
.pop()
),
name: m$('.match-info-box .text-ellipsis').first().text()
}
const roundHistory = getRoundHistory(m$, team1, team2)
const overview = getStatsOverview(m$)
const playerStats = getPlayerStats(m$, p$)
const performanceOverview = getPerformanceOverview(p$)
// TODO: kill matrix
// TODO: equipment value
return {
id,
matchId,
result,
map,
date,
team1,
team2,
event,
overview,
roundHistory,
playerStats,
performanceOverview
}
}
export function getOverviewPropertyFromLabel(
label: string
): keyof MapStatsOverview | undefined {
switch (label) {
case 'Team rating':
return 'rating'
case 'First kills':
return 'firstKills'
case 'Clutches won':
return 'clutchesWon'
case 'Most kills':
return 'mostKills'
case 'Most damage':
return 'mostDamage'
case 'Most assists':
return 'mostAssists'
case 'Most AWP kills':
return 'mostAWPKills'
case 'Most first kills':
return 'mostFirstKills'
case 'Best rating 1.0':
return 'bestRating1'
case 'Best rating 2.0':
return 'bestRating2'
}
}
function getRoundHistory(
$: HLTVPage,
team1: Team,
team2: Team
): RoundOutcome[] {
const getOutcome = (el: HLTVPageElement) => ({
outcome: el.attr('src').split('/').pop()?.split('.')[0]!,
score: el.attr('title')
})
const team1Outcomes = $('.round-history-team-row')
.first()
.find('.round-history-outcome')
.toArray()
.map(getOutcome)
const team2Outcomes = $('.round-history-team-row')
.last()
.find('.round-history-outcome')
.toArray()
.map(getOutcome)
const doesTeam1StartAsCt = team1Outcomes[0].outcome.includes('ct')
const separatorIndex =
$('.round-history-team-row .round-history-bar').last().index() - 2
return Array.from(Array(team1Outcomes.length))
.map((_, i) => {
if (
team1Outcomes[i].outcome === 'emptyHistory' &&
team2Outcomes[i].outcome === 'emptyHistory'
) {
return null
}
const outcome =
team1Outcomes[i].outcome === 'emptyHistory'
? (team2Outcomes[i].outcome as Outcome)
: (team1Outcomes[i].outcome as Outcome)
const score =
team1Outcomes[i].outcome === 'emptyHistory'
? team2Outcomes[i].score
: team1Outcomes[i].score
let tTeam
let ctTeam
if (i < separatorIndex) {
if (doesTeam1StartAsCt) {
tTeam = team2.id!
ctTeam = team1.id!
} else {
tTeam = team1.id!
ctTeam = team2.id!
}
} else {
if (doesTeam1StartAsCt) {
tTeam = team1.id!
ctTeam = team2.id!
} else {
tTeam = team2.id!
ctTeam = team1.id!
}
}
return {
outcome,
score,
tTeam,
ctTeam
}
})
.filter(notNull)
}
export function getStatsOverview($: HLTVPage) {
const teamStats = $('.match-info-row')
.toArray()
.slice(1)
.reduce((res, el, i) => {
const prop = getOverviewPropertyFromLabel(el.find('.bold').text())
if (!prop) {
return res
}
const [team1, team2] = el.find('.right').text().split(' : ').map(Number)
res[prop] = { team1, team2 }
return res
}, {} as Record<string, any>)
const mostX = $('.most-x-box')
.toArray()
.reduce((res, el, i) => {
const prop = getOverviewPropertyFromLabel(el.find('.most-x-title').text())
if (!prop) {
return res
}
const playerHref = el.find('.name > a').attr('href')
res[prop] = {
id: playerHref ? getIdAt(3, playerHref) : undefined,
name: $('.most-x-box').eq(i).find('.name > a').text(),
value: $('.most-x-box').eq(i).find('.valueName').numFromText()
}
return res
}, {} as Record<string, any>)
return { ...teamStats, ...mostX } as any
}
export function getPlayerStats(m$: HLTVPage, p$: HLTVPage) {
const playerPerformanceStats = p$('.highlighted-player')
.toArray()
.reduce((map, el) => {
const graphData = el.find('.graph.small').attr('data-fusionchart-config')!
const { playerId, ...data } = {
playerId: Number(
el.find('.headline span a').attr('href')!.split('/')[2]
),
killsPerRound: Number(
graphData.split('Kills per round: ')[1].split('"')[0]
),
deathsPerRound: Number(
graphData.split('Deaths / round: ')[1].split('"')[0]
),
impact: Number(graphData.split('Impact rating: ')[1].split('"')[0])
}
map[playerId] = data
return map
}, {} as Record<string, Partial<PlayerStats>>)
const getPlayerOverviewStats = (el: HLTVPageElement) => {
const id = el.find('.st-player a').attrThen('href', getIdAt(3))!
const performanceStats = playerPerformanceStats[id]
const rating = el.find('.st-rating').numFromText()
return {
player: {
id,
name: el.find('.st-player a').text()
},
kills: el.find('.st-kills').contents().first().numFromText()!,
hsKills: Number(
el.find('.st-kills .gtSmartphone-only').text().replace(/\(|\)/g, '')
),
assists: el.find('.st-assists').contents().first().numFromText()!,
flashAssists: Number(
el.find('.st-assists .gtSmartphone-only').text().replace(/\(|\)/g, '')
),
deaths: el.find('.st-deaths').numFromText()!,
KAST: el
.find('.st-kdratio')
.textThen((x) => parseNumber(x.replace('%', ''))),
killDeathsDifference: el.find('.st-kddiff').numFromText(),
ADR: el.find('.st-adr').numFromText(),
firstKillsDifference: el.find('.st-fkdiff').numFromText(),
...(el.find('.st-rating .ratingDesc').text() === '2.0'
? { rating2: rating }
: { rating1: rating }),
...(performanceStats as any)
}
}
return {
team1: m$('.stats-table.totalstats')
.first()
.find('tbody tr')
.toArray()
.map(getPlayerOverviewStats),
team2: m$('.stats-table.totalstats')
.last()
.find('tbody tr')
.toArray()
.map(getPlayerOverviewStats)
}
}
export function getPerformanceOverview(p$: HLTVPage) {
return p$('.overview-table tr')
.toArray()
.slice(1)
.reduce(
(res, el) => {
const property = el
.find('.name-column')
.text()
.toLowerCase() as keyof TeamPerformance
res.team1[property] = el.find('.team1-column').numFromText()!
res.team2[property] = el.find('.team2-column').numFromText()!
return res
},
{ team1: {}, team2: {} } as TeamsPerformanceOverview
)
}