forked from mmai/glicko2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (87 loc) · 3.3 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<script src="../glicko2.js"></script>
<script type="text/javascript">
var settings = {
tau : 0.5,
rpd : 604800,
rating : 1500,
rd : 300,
vol : 0.06
};
var glicko = new glicko2.Glicko2(settings);
//Make players
Ryan = glicko.makePlayer(); //use default values
Mary = glicko.makePlayer(1700, 300, 0.06);
Bob = glicko.makePlayer(1400, 30, 0.06);
John = glicko.makePlayer(1550, 100, 0.06);
Gaspard = glicko.makePlayer();
Hector = glicko.makePlayer();
var players = [
{ name:'Ryan', glicko: Ryan },
{ name:'Mary', glicko: Mary },
{ name:'Bob', glicko: Bob },
{ name:'John', glicko: John },
{ name:'Gaspard', glicko: Gaspard },
{ name:'Hector', glicko: Hector }
];
function showRankings(){
//Sort players
players.sort(function(pl1, pl2){ return pl2.glicko.getRating() - pl1.glicko.getRating(); });
//Display ratings
for (var i=0,len= players.length;i<len;i++){
player = players[i];
document.write(player.name + ' : ' + player.glicko.getRating() + ' (rd : ' + player.glicko.getRd() + ')<br>');
}
}
</script>
</head>
<body>
<h2>Initial rankings</h2>
<script>
showRankings();
</script>
<h2>Rankings after tournament 1</h2>
<script>
var matches = [];
matches.push([Ryan, Bob, 1]); //Ryan won over Bob
matches.push([Ryan, John, 0]); //Ryan lost against John
matches.push([Ryan, Mary, 0]); //Ryan lost against Mary
glicko.updateRatings(matches);
showRankings();
document.write("<div><br>Ryan has " + Math.ceil(Ryan.predict(Bob) * 100) + "% chances of winning against Bob in the next match</div>");
</script>
<h2>Rankings after tournament 2</h2>
<script>
var matches = [];
matches.push([Ryan, Gaspard, 1]);
matches.push([Hector, Bob, 0]);
matches.push([John, Mary, 0.5]);
matches.push([John, Ryan, 0]);
matches.push([Gaspard, Mary, 0.5]);
matches.push([Mary, John, 0]);
glicko.updateRatings(matches);
showRankings();
document.write("<div><br>Ryan has " + Math.ceil(glicko.predict(Ryan, Bob) * 100) + "% chances of winning against Bob in the next match</div>");
</script>
<h2>Rankings after two races</h2>
<script>
var matches = [];
var race1 = glicko.makeRace([
[Ryan],
[John],
[Mary]
]);
var race2 = glicko.makeRace([
[Gaspard],
[John, Bob],
[Hector]
]);
matches = matches.concat(race1.getMatches());
matches = matches.concat(race2.getMatches());
glicko.updateRatings(matches);
showRankings();
</script>
</body>
</html>