5 * Copyright (C) 2009-2011 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
27 define(TRI_LIMIT, (90 * 24 * 60 * 60));
28 define(TRI_MIN_GAMES, 70);
29 define(TRI_MAX_GAMES, 140);
31 define(MON_LIMIT, (30 * 24 * 60 * 60));
32 define(MON_MIN_GAMES, 35);
33 define(MON_MAX_GAMES, 70);
35 define(WEE_LIMIT, (7 * 24 * 60 * 60));
36 define(WEE_MIN_GAMES, 10);
37 define(WEE_MAX_GAMES, 35);
45 function Ptsgam($username = "", $pts = 0, $gam = 0)
47 $this->username = $username;
54 $ret = new Ptsgam($this->username, $this->pts, $this->gam);
67 $ret = sprintf ("%.3f", $this->normpts() * 100.0);
68 if (strchr($ret, ".")) {
69 $ret = rtrim(rtrim($ret, "0"), ".");
79 return ($this->pts / $this->gam);
83 function ptsgam_cmp($a, $b)
85 $norma = $a->normpts();
86 $normb = $b->normpts();
88 if ($norma == $normb) {
89 if ($a->gam == $b->gam)
92 return ($a->gam < $b->gam ? 1 : -1);
95 return (($norma < $normb) ? 1 : -1);
98 /* types of placing based on delta time */
99 define(TY_DTIME_TRI, 0);
100 define(TY_DTIME_MON, 1);
101 define(TY_DTIME_WEE, 2);
103 /* subtypes of placing based on number of played games */
104 define(SUBTY_FREQ_LO, 0);
105 define(SUBTY_FREQ_HI, 1);
108 function placings_show(&$user)
110 $mtime = placing_time();
111 $tm = placing_date($mtime);
112 $ret = sprintf("<div style='padding: auto;'><h2><b>CLASSIFICHE</b></h2>(aggiornate alle ore %s del %s)<table class='placings'>", $tm[0], $tm[1]);
114 $tmwee = placing_date($mtime - WEE_LIMIT + (3600));
115 $ret .= sprintf("<tr><td style='background-color: #f0f0ff;'><br><b>Settimanale</b><br>dal %s al %s<br>(non meno di %d partite)<br><br>%s<br></td>", $tmwee[1], $tm[1], WEE_MAX_GAMES, placing_show($user, TY_DTIME_WEE, SUBTY_FREQ_HI) );
116 $ret .= sprintf("<td style='background-color: #f0f0ff;'><br><b>Settimanale</b><br>dal %s al %s<br>(meno di %d partite, più di %d)<br><br>%s<br></td></tr>\n", $tmwee[1], $tm[1], WEE_MAX_GAMES, WEE_MIN_GAMES, placing_show($user, TY_DTIME_WEE, SUBTY_FREQ_LO) );
118 $tmmon = placing_date($mtime - MON_LIMIT + (3600));
119 $ret .= sprintf("<tr><td style='background-color: #fffff0;'><br><b>Mensile</b><br>dal %s al %s<br>(non meno di %d partite)<br><br>%s<br></td>", $tmmon[1], $tm[1], MON_MAX_GAMES, placing_show($user, TY_DTIME_MON, SUBTY_FREQ_HI) );
120 $ret .= sprintf("<td style='background-color: #fffff0;'><br><b>Mensile</b><br>dal %s al %s<br>(meno di %d partite, più di %d)<br><br>%s<br></td></tr>\n", $tmmon[1], $tm[1], MON_MAX_GAMES, MON_MIN_GAMES, placing_show($user, TY_DTIME_MON, SUBTY_FREQ_LO) );
122 $tmtri = placing_date($mtime - TRI_LIMIT + (3600));
123 $ret .= sprintf("<tr><td style='background-color: #fff0f0;'><br><b>Trimestrale</b><br>dal %s al %s<br>(non meno di %d partite)<br><br>%s<br></td>", $tmtri[1], $tm[1], TRI_MAX_GAMES, placing_show($user, TY_DTIME_TRI, SUBTY_FREQ_HI));
124 $ret .= sprintf("<td style='background-color: #fff0f0;'><br><b>Trimestrale</b><br>dal %s al %s<br>(meno di %d partite, più di %d)<br><br>%s<br></td></tr>", $tmtri[1], $tm[1], TRI_MAX_GAMES, TRI_MIN_GAMES, placing_show($user, TY_DTIME_TRI, SUBTY_FREQ_LO));
127 $ret .= sprintf("</table></div>");
131 function placing_time_file()
133 if (($fp = @fopen(LEGAL_PATH."/class_wee_lo.log", 'r')) == FALSE) {
139 return ( $st['mtime'] );
142 function placing_time_pgsql()
145 $bdb = new BriskDB();
147 $mti_sql = sprintf("SELECT CAST(EXTRACT(EPOCH FROM mtime) AS INTEGER) as mtime
148 FROM %sbin5_places_mtime WHERE code = 0;", $G_dbpfx);
150 if (($mti_pg = pg_query($bdb->dbconn->db(), $mti_sql)) == FALSE || pg_numrows($mti_pg) == 0) {
151 // no point found, abort
152 log_crit("placing: get placing mtime failed [$mti_sql]");
156 $mti_pg = pg_fetch_object($mti_pg, 0);
158 return ($mti_pg->mtime);
161 function placing_time()
165 $fun_name = "placing_time_${G_dbasetype}";
167 return ($fun_name());
170 function placing_date($mtime)
172 return array( date('G:i', $mtime), date('j/n/y', $mtime) );
176 function placing_show_file(&$user, $ty, $subty)
202 if (($fp = @fopen(LEGAL_PATH."/class_".$suff.".log", 'r')) == FALSE) {
207 $ret = sprintf("<table class='placing'><tr><th>Pos.</th><th>Utente</th><th>Score</th><th>(Punti/Partite)</th>");
209 $old_normpts = 1000000000;
211 for ($i = 0 ; !feof($fp) ; $i++) {
212 $bf = fgets($fp, 4096);
213 $ar = csplitter($bf, '|');
215 $pg = new Ptsgam($ar[0], $ar[1], $ar[2]);
217 if ($pg->username == "")
220 if ($pg->normpts() == $old_normpts && $pg->gam == $old_gam)
224 $ret .= sprintf("<tr><td>%d</td><td>%s%s%s</td><td>%s</td><td>(%d/%d)</td></tr>", $i+1,
225 ($pg->username == $user->name ? "<b>" : ""), xcape($pg->username), ($pg->username == $user->name ? "</b>" : ""), $pg->snormpts(), $pg->pts, $pg->gam);
227 if ($user != FALSE) {
228 if (strcasecmp($pg->username, $user->name) == 0 && $i >= TOP_NUM) {
229 $tail = sprintf("<tr><td colspan=4 style='text-align: center'> . . . . . . . . . . </td></tr>");
230 $tail .= sprintf("<tr><td>%d</td><td>%s%s%s</td><td>%s</td><td>(%d/%d)</td></tr>", $i+1,
231 ($pg->username == $user->name ? "<b>" : ""), xcape($pg->username), ($pg->username == $user->name ? "</b>" : ""), $pg->snormpts(), $pg->pts, $pg->gam);
234 $old_normpts = $pg->normpts();
238 if ($tail != FALSE) {
250 function placing_show_pgsql(&$user, $ty, $subty)
254 $bdb = new BriskDB();
256 if ($user != FALSE) {
257 $pla_sql = sprintf("SELECT * from %sbin5_places where type = %d AND (rank <= %d OR ucode = '%s');",
258 $G_dbpfx, ($ty * 2) + $subty, TOP_NUM, escsql($user->code));
261 $pla_sql = sprintf("SELECT * from %sbin5_places where type = %d AND rank <= %d;",
262 $G_dbpfx, ($ty * 2) + $subty, TOP_NUM);
265 if (($pla_pg = pg_query($bdb->dbconn->db(), $pla_sql)) == FALSE || pg_numrows($pla_pg) == 0) {
266 // no point found, abort
267 log_crit("placing: get placing list failed [$pla_sql]");
272 $ret = sprintf("<table class='placing'><tr><th>Pos.</th><th>Utente</th><th>Score</th><th>(Punti/Partite)</th>");
274 for ($i = 0 ; $i < pg_numrows($pla_pg) ; $i++) {
275 $pla_obj = pg_fetch_object($pla_pg,$i);
279 if ($user != FALSE) {
280 if ($user->code == $pla_obj->ucode) {
286 /* when the user is far from the top-ten we place a ... separator before it */
287 if ($pla_obj->rank > TOP_NUM) {
288 $ret .= sprintf("<tr><td colspan=4 style='text-align: center'> . . . . . . . . . . </td></tr>");
290 $ret .= sprintf("<tr><td>%d</td><td>%s%s%s</td><td>%s%12.3f%s</td><td>%s(%d/%d)%s</td></tr>", $pla_obj->rank,
291 $ein, xcape($pla_obj->login), $eou,
292 $ein, $pla_obj->score, $eou,
293 $ein, $pla_obj->pts, $pla_obj->games, $eou);
300 function placing_show(&$user, $ty, $subty)
304 $fun_name = "placing_show_${G_dbasetype}";
306 return ($fun_name($user, $ty, $subty));