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 // FIXME: now create can return FALSE
146 $bdb = BriskDB::create();
148 $mti_sql = sprintf("SELECT CAST(EXTRACT(EPOCH FROM mtime) AS INTEGER) as mtime
149 FROM %sbin5_places_mtime WHERE code = 0;", $G_dbpfx);
151 if (($mti_pg = pg_query($bdb->dbconn->db(), $mti_sql)) == FALSE || pg_numrows($mti_pg) == 0) {
152 // no point found, abort
153 log_crit("placing: get placing mtime failed [$mti_sql]");
157 $mti_pg = pg_fetch_object($mti_pg, 0);
159 return ($mti_pg->mtime);
162 function placing_time()
166 $fun_name = "placing_time_${G_dbasetype}";
168 return ($fun_name());
171 function placing_date($mtime)
173 return array( date('G:i', $mtime), date('j/n/y', $mtime) );
177 function placing_show_file(&$user, $ty, $subty)
203 if (($fp = @fopen(LEGAL_PATH."/class_".$suff.".log", 'r')) == FALSE) {
208 $ret = sprintf("<table class='placing'><tr><th>Pos.</th><th>Utente</th><th>Score</th><th>(Punti/Partite)</th>");
210 $old_normpts = 1000000000;
212 for ($i = 0 ; !feof($fp) ; $i++) {
213 $bf = fgets($fp, 4096);
214 $ar = csplitter($bf, '|');
216 $pg = new Ptsgam($ar[0], $ar[1], $ar[2]);
218 if ($pg->username == "")
221 if ($pg->normpts() == $old_normpts && $pg->gam == $old_gam)
225 $ret .= sprintf("<tr><td>%d</td><td>%s%s%s</td><td>%s</td><td>(%d/%d)</td></tr>", $i+1,
226 ($pg->username == $user->name ? "<b>" : ""), xcape($pg->username), ($pg->username == $user->name ? "</b>" : ""), $pg->snormpts(), $pg->pts, $pg->gam);
228 if ($user != FALSE) {
229 if (strcasecmp($pg->username, $user->name) == 0 && $i >= TOP_NUM) {
230 $tail = sprintf("<tr><td colspan=4 style='text-align: center'> . . . . . . . . . . </td></tr>");
231 $tail .= sprintf("<tr><td>%d</td><td>%s%s%s</td><td>%s</td><td>(%d/%d)</td></tr>", $i+1,
232 ($pg->username == $user->name ? "<b>" : ""), xcape($pg->username), ($pg->username == $user->name ? "</b>" : ""), $pg->snormpts(), $pg->pts, $pg->gam);
235 $old_normpts = $pg->normpts();
239 if ($tail != FALSE) {
251 function placing_show_pgsql(&$user, $ty, $subty)
255 // FIXME: now create can return FALSE
256 $bdb = BriskDB::create();
258 if ($user != FALSE) {
259 $pla_sql = sprintf("SELECT * from %sbin5_places where type = %d AND (rank <= %d OR ucode = '%s');",
260 $G_dbpfx, ($ty * 2) + $subty, TOP_NUM, escsql($user->code));
263 $pla_sql = sprintf("SELECT * from %sbin5_places where type = %d AND rank <= %d;",
264 $G_dbpfx, ($ty * 2) + $subty, TOP_NUM);
267 if (($pla_pg = pg_query($bdb->dbconn->db(), $pla_sql)) == FALSE || pg_numrows($pla_pg) == 0) {
268 // no point found, abort
269 log_crit("placing: get placing list failed [$pla_sql]");
274 $ret = sprintf("<table class='placing'><tr><th>Pos.</th><th>Utente</th><th>Score</th><th>(Punti/Partite)</th>");
276 for ($i = 0 ; $i < pg_numrows($pla_pg) ; $i++) {
277 $pla_obj = pg_fetch_object($pla_pg,$i);
281 if ($user != FALSE) {
282 if ($user->code == $pla_obj->ucode) {
288 /* when the user is far from the top-ten we place a ... separator before it */
289 if ($pla_obj->rank > TOP_NUM) {
290 $ret .= sprintf("<tr><td colspan=4 style='text-align: center'> . . . . . . . . . . </td></tr>");
292 $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,
293 $ein, xcape($pla_obj->login), $eou,
294 $ein, $pla_obj->score, $eou,
295 $ein, $pla_obj->pts, $pla_obj->games, $eou);
302 function placing_show(&$user, $ty, $subty)
306 $fun_name = "placing_show_${G_dbasetype}";
308 return ($fun_name($user, $ty, $subty));