-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
148 lines (132 loc) · 3.4 KB
/
config.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
const RateLimiter = require('limiter').RateLimiter;
// haloapi only allows 10 requests every 10 seconds
module.exports.limiter = new RateLimiter(5, 10000); // just to be safe; still get some 429s at 10 in 10000ms
module.exports.API_KEY = 'c4778a4ab06e40c39136923ae01c4245';
module.exports.BASE_STATS_URL = 'https://www.haloapi.com/stats/';
module.exports.getMetaDataUrl = function (type) {
return `https://www.haloapi.com/metadata/h5/metadata/${type}`;
}
module.exports.getMatchesUrl = function ({ gamertag, start, count }) {
return `https://www.haloapi.com/stats/h5/players/${gamertag}/matches?start=${start}&count=${count}`;
}
module.exports.getMatchEventsUrl = function (matchId) {
return `https://www.haloapi.com/stats/h5/matches/${matchId}/events`;
}
// dictionaries of resourceId -> resourceName
let userIndex = {};
module.exports.userIndex = userIndex;
let mapIndex = {};
let medalIndex = {};
let impulseIndex = {};
let weaponIndex = {};
let gametypeIndex = {};
// for pWeapons and rifles for consistency and ease of lookup
// weaponId -> true
let powerWeaponIds = {};
let rifleIds = {};
let autoIds = {};
// there are several medals that share the name 'Perfect Kill'
// here we keep them in one dictionary
let perfectKillIds = {};
let overkillAndBeyondIds = {};
const powerWeaponNames = [
'Rocket Launcher',
'SPNKr Rocket Launcher',
'Sniper Rifle',
'Plasma Caster',
'Fuel Rod Cannon',
'Railgun',
'Scattershot',
'Shotgun',
'Energy Sword',
'SAW',
'Beam Rifle'
];
const rifleNames = [
'Battle Rifle',
'LightRifle',
'DMR',
'Carbine',
'Halo 2 Battle Rifle'
];
const autoNames = [
'Assault Rifle',
'Storm Rifle',
'SMG',
'Suppressor'
];
module.exports.set = function (type, id, name) {
switch (type) {
case 'user':
// id is the gamertag here
userIndex[id] = true;
break;
case 'map':
mapIndex[id] = name;
break;
case 'medal':
if (name === 'Perfect Kill') {
perfectKillIds[id] = true;
break;
}
if (name === 'Overkill' || name === 'Killtacular' || name === 'Killtrocity' || name === 'Killtastrophe' || name === 'Killpocalypse' || name === 'Killionaire') {
overkillAndBeyondIds[id] = true;
}
medalIndex[id] = name;
break;
case 'impulse':
medalIndex[id] = name;
break;
case 'weapon':
weaponIndex[id] = name;
if (powerWeaponNames.indexOf(name) !== -1) {
powerWeaponIds[id] = true;
}
if (rifleNames.indexOf(name) !== -1) {
rifleIds[id] = true;
}
if (autoNames.indexOf(name) !== -1) {
autoIds[id] = true;
}
break;
case 'gametype':
gametypeIndex[id] = name;
break;
}
}
module.exports.isPowerWeapon = function (id) {
return !!powerWeaponIds[id];
}
module.exports.isRifle = function (id) {
return !!rifleIds[id];
}
module.exports.isAuto = function (id) {
return !!autoIds[id];
}
module.exports.isPerfectMedal = function (id) {
return !!perfectKillIds[id];
}
module.exports.isOverKillOrBeyond = function (id) {
return !!overkillAndBeyondIds[id];
}
module.exports.get = function (type, key) {
switch (type) {
case 'map':
return mapIndex[key];
case 'medal':
return medalIndex[key];
case 'impulse':
return medalIndex[key];
case 'weapon':
return weaponIndex[key];
case 'gametype':
return gametypeIndex[key]
}
}
module.exports.isRandomTeammate = function (gamertag, isTeammate) {
// we don't really care about random teammates' names
if (isTeammate && !userIndex[gamertag]) {
return true;
}
return false;
}