OSDN Git Service

Floodgate's thread 10 sec. Do not show old players.
[shogi-server/shogi-server.git] / mk_html
diff --git a/mk_html b/mk_html
index dadcb1d..8833d25 100755 (executable)
--- a/mk_html
+++ b/mk_html
@@ -40,16 +40,102 @@ USAGE: #{$0}
   exit 1
 end
 
+def remove_long_to_see_players(file)
+  return unless file["players"][999] # only for Not-Yet-Rated players
+
+  file["players"][999].delete_if do |key, value|
+    value['last_modified'] < Time.now - 24*3600*30 # 30 days
+  end
+end
+
 def main
   lines = ""
   while l = gets do
     lines << l
   end
-  yaml = YAML::load(lines)
-
-  sorted_keys = yaml.keys.sort {|a,b| yaml[b]['rate'] <=> yaml[a]['rate']}
+  file = YAML::load(lines)
+  erb = ERB.new( DATA.read, nil, "%>" )
+  tables = []
+  group_names = []
+  file["players"].keys.sort.each do |index|
+    if index < 999
+      group_names << "#{index}"
+    else
+      group_names << "Not-Yet-Rated Players"
+    end
+  end
+  remove_long_to_see_players(file)
+
+  popup_id = 0
+        
+  file["players"].sort.each do |key, yaml| # sort groups in the order written in players.yaml
+  sorted_keys = yaml.keys.sort do |a,b| 
+    # sort players in a group by one's rate
+    if yaml[b]['rate'] == 0 && yaml[a]['rate'] == 0
+      # mainly for not-rated-yet players
+      yaml[b]['last_modified'] <=> yaml[a]['last_modified']
+    else
+      yaml[b]['rate'] <=> yaml[a]['rate']
+    end
+  end 
+  top_rate = nil  
+  table = ERB.new(<<ENDTABLE, nil, "%>")
+% sorted_keys.each do |key|
+  <%
+    win  = yaml[key]['win']
+    loss = yaml[key]['loss']
+    win_rate = win.to_f / (win + loss)
+    last_modified = yaml[key]['last_modified']
+    
+    player_decoration = "default"
+
+    case (Time.now - last_modified)/(60*60*24)
+    when (0..1) then player_decoration = "today"
+    when (0..7) then player_decoration = "this_week"
+    end
+    
+    case key
+    when "yowai_gps+95908f6c18338f5340371f71523fc5e3" then player_decoration = "yowai_gps"
+    when "gps+11648e4e66e7ed6a86cb7f1d0cf604fe"       then player_decoration = "gps"
+    end
+
+    rate = yaml[key]['rate']
+    top_rate ||= rate
+    diff_rate = rate - top_rate
+    diff_possibility = 1.0/(1.0 + 10**(-diff_rate/400.0))
+  %>
+  <tr class="<%=player_decoration%>">
+    <td class="name">
+        <a id="popup<%=popup_id+=1%>" href="http://wdoor.c.u-tokyo.ac.jp/shogi/tools/view/latest-table.cgi?event=LATEST&user=<%= h yaml[key]['name'] %>"><%= h yaml[key]['name'] %></a>
+        <script type="text/javascript">
+          var tooltip<%=popup_id%> = new YAHOO.widget.Tooltip("myTooltip", {
+            context:"popup<%=popup_id%>",
+            text:"<%= h key %>" } );
+        </script>
+    </td>
+    <td class="rate">
+        <span id="popup<%=popup_id+=1%>"><%= rate != 0 ? "%5d"  % [ rate ] : "N/A" %></span>
+        <script type="text/javascript">
+          var tooltip<%=popup_id%> = new YAHOO.widget.Tooltip("myTooltip", {
+            context:"popup<%=popup_id%>",
+            text:"Behind <%= "%5d" % [ diff_rate ] %> (<%= "%.3f" % [ diff_possibility ] %>)" } );
+        </script>
+    </td>
+    <td class="ngames">
+        <%= "%5d"  % [ win ] %>  </td>
+    <td class="ngames">
+        <%= "%5d"  % [ loss ] %> </td>
+    <td class="win_rate">
+        <%= "%.3f" % [win_rate] %> </td>
+    <td class="last_modified">
+        <%= show_date(last_modified) %> </td>
+  </tr>
+% end
+ENDTABLE
+        
+    tables << table.result(binding)
+  end
 
-  erb = ERB.new( DATA.read, nil, "%<>" )
   body = erb.result(binding)
   puts body
 end
@@ -64,33 +150,84 @@ __END__
 <html>
 <head>
   <title>Shogi Server Rating</title>
+  <link rel="StyleSheet" type="text/css" href="http://wdoor.c.u-tokyo.ac.jp/shogi/shogi.css">
+  <!-- CSS --> 
+  <!-- License: http://developer.yahoo.com/yui/license.html -->
+  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.4.1/build/reset-fonts-grids/reset-fonts-grids.css"> 
+  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.4.1/build/base/base-min.css"> 
+  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.4.1/build/container/assets/container.css"> 
+  <!-- Dependencies --> 
+  <script type="text/javascript" src="http://yui.yahooapis.com/2.4.1/build/yahoo-dom-event/yahoo-dom-event.js"></script> 
+  <!-- OPTIONAL: Animation (only required if enabling Animation) --> 
+  <script type="text/javascript" src="http://yui.yahooapis.com/2.4.1/build/animation/animation-min.js"></script> 
+  <!-- Source file --> 
+  <script type="text/javascript" src="http://yui.yahooapis.com/2.4.1/build/container/container-min.js"></script>
+  <style type="text/css"><!--
+    TABLE {margin-left: auto;
+           margin-right: auto;}
+    CAPTION { caption-side: left;}
+    .name {text-align: center;
+           width: 180px;}
+    .rate, .ngames, .win_rate {text-align: right;}
+    .last_modified {text-align: center;}
+    .gps, .yowai_gps {background-color: lightgreen;}
+    .today     {background-color: #FFD700;}
+    .this_week {background-color: #FFDAB9;}
+
+    #bd {text-align: center;}
+    #ft {text-align: right;}
+  --></style>
 </head>
-<body>
+<body><div id="doc">
 
+<div id="hd"></div>
+
+<div id="bd">
 <h1>Shogi Server Rating</h1>
 
+% tables.each_with_index do |t, index|
 <table>
+<caption>Group: <%=group_names[index]%></caption>
+<colgroup>
+  <col class="name">
+  <col class="rate">
+  <col class="ngames">
+  <col class="ngames">
+  <col class="win_rate">
+  <col class="last_modified">
+</colgroup>
+<thead>
 <tr>
-  <th>name</th> <th>rate</th> <th>win</th> <th>loss</th> <th>win_rate</th> <th>last_modified</th>
+  <th>name</th>
+  <th>rate</th> 
+  <th>win</th> 
+  <th>loss</th> 
+  <th>&#37;</th> 
+  <th>last_modified</th>
 </tr>
-<% sorted_keys.each do |key| %>
-  <%
-    win  = yaml[key]['win']
-    loss = yaml[key]['loss']
-    win_rate = win.to_f / (win + loss)
-    last_modified = yaml[key]['last_modified']
-  %>
-  <tr>
-    <td><%=h yaml[key]['name']%></td>
-    <td><%=yaml[key]['rate']%></td>
-    <td><%=win%></td>
-    <td><%=loss%></td>
-    <td><%="%.3f" % [win_rate]%></td>
-    <td><%=show_date(last_modified)%></td>
-  </tr>
-<% end %>
+</thead>
+<tbody>
+  <%= t %>
+</tbody>
 </table>
 
-</body>
+<hr style="width:50%; margin:1em auto;">
+
+% end
+
+<p>Groups are independently rated. You can not compare rates across them.
+<p>The average of the rates in a group is always 1000. 
+<p><a href="http://wdoor.c.u-tokyo.ac.jp/shogi/">BACK</a>
+
+<hr/>
+</div>
+
+
+<div id="ft">
+  <p>Last modified at <%=Time.now%>
+  <p>$Revision$
+</div>
+
+</div></body>
 </html>