forked from CreaturePhil/Showdown-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 31
/
ladders-remote.js
152 lines (137 loc) · 4.22 KB
/
ladders-remote.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
/**
* Main server ladder library
* Pokemon Showdown - http://pokemonshowdown.com/
*
* This file handles ladders for the main server on
* play.pokemonshowdown.com.
*
* Ladders for all other servers is handled by ladders.js.
*
* Matchmaking is currently still implemented in rooms.js.
*
* @license MIT license
*/
'use strict';
class LadderStore {
/**
* @param {string} formatid
*/
constructor(formatid) {
this.formatid = formatid;
}
/**
* Returns [formatid, html], where html is an the HTML source of a
* ladder toplist, to be displayed directly in the ladder tab of the
* client.
* @return {Promise<[string, string]?>}
*/
async getTop() {
return null;
}
/**
* Returns a Promise for the Elo rating of a user
* @param {string} userid
* @return {Promise<number>}
*/
async getRating(userid) {
let formatid = this.formatid;
let user = Users.getExact(userid);
if (user && user.mmrCache[formatid]) {
return user.mmrCache[formatid];
}
const [data] = await LoginServer.request('mmr', {
format: formatid,
user: userid,
});
let mmr = NaN;
if (data && !data.errorip) {
mmr = parseInt(data);
}
if (isNaN(mmr)) return 1000;
if (user && user.userid === userid) {
user.mmrCache[formatid] = mmr;
}
return mmr;
}
/**
* Update the Elo rating for two players after a battle, and display
* the results in the passed room.
* @param {string} p1name
* @param {string} p2name
* @param {number} p1score
* @param {GameRoom} room
* @return {Promise<[number, AnyObject?, AnyObject?]>}
*/
async updateRating(p1name, p2name, p1score, room) {
if (Ladders.disabled) {
room.addRaw(`Ratings not updated. The ladders are currently disabled.`).update();
return [p1score, null, null];
}
let formatid = this.formatid;
room.update();
room.send(`||Ladder updating...`);
let [data, , error] = await LoginServer.request('ladderupdate', {
p1: p1name,
p2: p2name,
score: p1score,
format: formatid,
});
if (error) {
if (error.message === 'stream interrupt') {
room.add(`||Ladder updated, but score could not be retrieved.`);
} else {
room.add(`||Ladder (probably) updated, but score could not be retrieved (${error.message}).`);
}
return [p1score, null, null];
}
if (!room.battle) {
Monitor.warn(`room expired before ladder update was received`);
return [p1score, null, null];
}
if (data.errorip) {
room.add(`||This server's request IP ${data.errorip} is not a registered server.`);
room.add(`||You should be using ladders.js and not ladders-remote.js for ladder tracking.`);
room.update();
return [p1score, null, null];
}
let p1rating, p2rating;
try {
p1rating = data.p1rating;
p2rating = data.p2rating;
let oldelo = Math.round(p1rating.oldelo);
let elo = Math.round(p1rating.elo);
let act = (p1score > 0.9 ? `winning` : (p1score < 0.1 ? `losing` : `tying`));
let reasons = `${elo - oldelo} for ${act}`;
if (reasons.charAt(0) !== '-') reasons = '+' + reasons;
room.addRaw(Chat.html`${p1name}'s rating: ${oldelo} → <strong>${elo}</strong><br />(${reasons})`);
let minElo = elo;
oldelo = Math.round(p2rating.oldelo);
elo = Math.round(p2rating.elo);
act = (p1score > 0.9 || p1score < 0 ? `losing` : (p1score < 0.1 ? `winning` : `tying`));
reasons = `${elo - oldelo} for ${act}`;
if (reasons.charAt(0) !== '-') reasons = '+' + reasons;
room.addRaw(Chat.html`${p2name}'s rating: ${oldelo} → <strong>${elo}</strong><br />(${reasons})`);
if (elo < minElo) minElo = elo;
room.rated = minElo;
let p1 = Users.getExact(p1name);
if (p1) p1.mmrCache[formatid] = +p1rating.elo;
let p2 = Users.getExact(p2name);
if (p2) p2.mmrCache[formatid] = +p2rating.elo;
room.update();
} catch (e) {
room.addRaw(`There was an error calculating rating changes.`);
room.update();
}
return [p1score, p1rating, p2rating];
}
/**
* Returns a Promise for an array of strings of <tr>s for ladder ratings of the user
* @param {string} username
* @return {Promise<string[]>}
*/
static async visualizeAll(username) {
return [`<tr><td><strong>Please use the official client at play.pokemonshowdown.com</strong></td></tr>`];
}
}
LadderStore.formatsListPrefix = '';
module.exports = LadderStore;