aggiunta gestione flash
[brisk.git] / web / index.php
1 <?php
2 /*
3  *  brisk - index.php
4  *
5  *  Copyright (C) 2006 matteo.nastasi@milug.org
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details. You should have received a
16  * copy of the GNU General Public License along with this program; if
17  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
18  * Suite 330, Boston, MA 02111-1307, USA.
19  *
20  * $Id$
21  *
22  */
23
24 require_once("brisk.phh");
25 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
26   echo "Debugging time!";
27   exit;
28 }
29
30 log_load($sess, "LOAD: index.php");
31
32 function main()
33 {
34   GLOBAL $sess, $name, $BRISK_DEBUG;
35   
36   $body = "";
37   $ACTION = "login";
38   
39   if (isset($BRISK_DEBUG) == FALSE) {
40     $is_table = false;
41     $sem = lock_data();
42     $bri = &load_data();
43     
44     /* Actions */
45     if (validate_sess($sess)) {
46       $bri->garbage_manager(TRUE);
47       if (($user = &$bri->get_user($sess, &$idx)) != FALSE) {
48         if ($user->stat == "table") {
49           header ("Location: table.php");
50           unlock_data($sem);
51           exit;
52         }
53         $ACTION = "room";
54       }
55     }
56     
57     if ($ACTION == "login" && isset($name)) {
58       $bri->garbage_manager(TRUE);
59       /* try login */
60       if (($user = &$bri->add_user(&$sess, &$idx, $name)) != FALSE) {
61         $ACTION = "room";
62         
63         // setcookie ("sess", "", time() + 180);      
64         $bri->standup_update(&$user);
65         
66         if (save_data(&$bri) == FALSE) {
67           echo "ERRORE SALVATAGGIO\n";
68           exit;
69         }
70       }
71       else {
72         /* Login Rendering */
73         if ($idx == -2)
74           $body .= '<div class="urgmsg"><b>Il nickname deve contenere almeno una lettera o una cifra.</b></div>';
75         else if ($idx == -1) 
76           $body .= '<div class="urgmsg"><b>Spiacenti, non ci sono pi&ugrave; posti liberi. Riprova pi&ugrave; tardi.</b></div>';
77         else
78           $body .= '<div class="urgmsg"><b>Il tuo nickname &egrave; gi&agrave; in uso.</b></div>';
79       }
80     }
81     unlock_data($sem);
82   }
83   /* Rendering. */
84
85   if ($BRISK_DEBUG == "debugtable") {
86     $ACTION = "room";
87   }
88   else if ($BRISK_DEBUG == "debuglogin") {
89     $ACTION = "login";
90   }
91
92   if ($ACTION == "room") {
93     $tables .= '<table class="room_tab" align="center">';
94     for ($i = 0 ; $i < TABLES_N ; $i++) {
95       if ($i % 4 == 0)
96         $tables .= '<tr>';
97       $tables .= '<td valign="top" align="center" class="room_td"><div class="room_div"><b>Tavolo '.$i.'</b><br><br>';
98       $tables .= sprintf('<div class="proxhr" id="table%d"></div>', $i);
99       $tables .= sprintf('<div class="table_act" id="table_act%d"></div>', $i);
100       $tables .= '</div></td>'."\n";
101       if ($i % 4 == 3)
102         $tables .= '</tr>';
103     }
104     $tables .= '<tr><td colspan="4">';
105     $tables .= '<div class="room_ex_standup">';
106     $tables .= '<b>Giocatori in piedi</b><br><br>';
107     
108     $tables .= sprintf('<div id="standup" class="room_standup"></div>');
109     $tables .= '<div id="esco" class="esco"></div>';
110     $tables .= '</td></tr>';
111     
112     $tables .= '</table>';
113   }
114
115   $altout_propag = array( array ( 'url' => 'http://www.alternativeoutput.it',
116                                   'content' => '<img class="nobo" src="img/altout80x15.png">' ),
117                           array ( 'url' => 'http://virtualsky.alternativeoutput.it',
118                                   'content' => '<img class="nobo" src="img/virtualsky80x15.png">' )
119                           );
120   
121   // seed with microseconds since last "whole" second
122   srand ((double) microtime() * 1000000);
123   $randval = rand(0,count($altout_propag)-1);
124   $altout_carousel = sprintf('<a target="_blank" href="%s">%s</a>',
125                              $altout_propag[$randval]['url'],
126                              $altout_propag[$randval]['content']);
127                          
128
129 $brisk_header_form = '<div class="container">
130 <!-- =========== header ===========  -->
131 <div id="header" class="header">
132 <img class="nobo" src="img/brisk_logo64.png">
133 briscola chiamata in salsa ajax<br><br>
134 </div>
135
136 <!--  =========== vertical menu ===========  -->
137 <div class="topmenu">
138 <a target="_blank" href="/briskhome.php"><img class="nobo" src="img/brisk_homebutt.png"></a>
139 <br><br><br>
140 sponsored by:<br><br>'.$altout_carousel.'<br>
141 <a target="_blank" href="http://www.dynamica.it"><img class="nobo" src="img/dynamica.png"></a><br><br>
142 supported by:<br><br>
143 <a target="_blank" href="http://www.briscolachiamata.it"><img class="nobo" src="img/brichi.png"></a><br><br>
144 <div id="proflashext" class="proflashext"><div id="proflash" class="proflash">
145 </div><br><br></div>
146 %s
147 </div>';
148     
149   /* Templates. */
150   if ($ACTION == 'login') {
151 ?>
152 <html>
153 <head>
154 <title>Brisk</title>
155 <link rel="shortcut icon" href="img/brisk_ico.png">
156 <script type="text/javascript" src="dnd.js"></script>
157 <script type="text/javascript" src="dom-drag.js"></script>
158 <script type="text/javascript" src="commons.js"></script> 
159 <script type="text/javascript" src="xhr.js"></script>
160 <script type="text/javascript" src="preload_img.js"></script>
161 <script type="text/javascript" src="AC_OETags.js"></script>
162 <link rel="stylesheet" type="text/css" href="brisk.css">
163 <link rel="stylesheet" type="text/css" href="room.css">
164 </head>
165 <body>
166 <SCRIPT type="text/javascript">
167    var g_withflash = false;
168
169    window.onload = function() {
170      g_withflash = DetectFlashVer(6,0,0);
171      if (g_withflash == false) {
172        $("proflash").innerHTML = 'Audio con Flash.<br><a href="http://www.macromedia.com/"><img class="nobo" style="padding: 4px; width:73; height: 19;" src="img/download_now_flash.gif"></a>';
173      }
174      else
175        $("proflashext").innerHTML = "";
176      $("nameid").focus();
177    }
178 </SCRIPT>
179 <?php
180     printf($brisk_header_form, '');
181 ?> 
182
183 <!--  =========== tables ===========  -->
184 <div id="tables" class="tables">
185 <?php echo "$body"; ?>
186
187 <br>
188 <div style="text-align: center;">
189    <br><br><br>
190 Digita il tuo nickname per accedere ai tavoli della briscola.<br><br>
191 <form method="post" action="">
192 <input id="nameid" name="name" type="text" size="24" maxlength="12" value="">
193 <input id="sub"    value="entra" type="submit" class="button">
194 </form>
195 </div>
196 </div></div>
197 <br><br><br><br>
198
199 <div id="imgct"></div>
200 <div id="logz"></div>
201 <div id="sandbox"></div>
202 <div id="sandbox2"></div>
203 <div id="response"></div>
204 <div id="xhrstart"></div>
205 <pre>
206 <div id="xhrlog"></div>
207 </pre>
208 <div id="xhrdeltalog"></div>
209 </body>
210 </html>
211 <?php
212   }
213   else if ($ACTION == 'room') {
214   ?>
215 <html>
216 <head>
217 <title>Brisk</title>
218 <link rel="shortcut icon" href="img/brisk_ico.png">
219 <script type="text/javascript" src="dnd.js"></script>
220 <script type="text/javascript" src="dom-drag.js"></script>
221 <script type="text/javascript" src="commons.js"></script> 
222 <script type="text/javascript" src="xhr.js"></script>
223 <script type="text/javascript" src="preload_img.js"></script>
224 <script type="text/javascript" src="AC_OETags.js"></script>
225 <link rel="stylesheet" type="text/css" href="brisk.css">
226 <link rel="stylesheet" type="text/css" href="room.css">
227 </head>
228 <body>
229 <SCRIPT type="text/javascript">
230    var sess;
231    var stat = "";
232    var subst = "";
233    var gst  = new globst();
234
235    var g_withflash = false;
236    var g_imgct= 0;
237    var g_imgtot = g_preload_img_arr.length;
238    var myfrom = "index_php";
239    window.onload = function() {
240 <?php
241 if ($BRISK_DEBUG == "debugtable") {
242 ?>
243      room_checkspace(12,8,50);
244 <?php
245 }
246 else {
247 ?>
248      // alert("INDEX START");
249      xhr_rd = createXMLHttpRequest();
250      sess = "<?php echo "$sess"; ?>";
251
252      window.onunload = onunload_cb;
253      g_withflash = DetectFlashVer(6,0,0);
254      if (g_withflash == false) {
255        $("proflash").innerHTML = 'Audio con Flash.<br><a href="http://www.macromedia.com/"><img class="nobo" style="padding: 4px; width:73; height: 19;" src="img/download_now_flash.gif"></a>';
256      }
257      else
258        $("proflashext").innerHTML = "";
259      setTimeout(xhr_rd_poll, 0, sess); 
260      // alert("ARR LENGTH "+g_preload_img_arr.length);
261      setTimeout(preload_images, 0, g_preload_img_arr, g_imgct); 
262      $("txt_in").focus();
263 <?php
264 }
265 ?>
266    }
267
268 </SCRIPT>
269 <?php
270     printf($brisk_header_form, '<input type="button" class="button" name="xhelp"  value="Help." onclick="act_help();"><br><br><input type="button" class="button" name="xabout"  value="About." onclick="act_about();"><br><br><br>');
271 ?> 
272 <!--  =========== tables ===========  -->
273 <div id="tables" class="tables">
274 <input name="sess" type="hidden" value="<?php echo "$user->sess"; ?>">
275 <?php echo "$tables"; ?>
276 </div>
277
278 <!--  =========== bottom ===========  -->
279 <div id="bottom" class="bottom">
280 <b>Chat</b>
281 <div id="txt" class="chatt">
282 </div>
283 <table><tr><td><div id="myname" class="txtt"></div></td><td><input id="txt_in" type="text" size="90" maxlength="256" onkeypress="chatt_checksend(this,event);" class="txtt"></td></tr></table>
284 </div>
285 <div id="heartbit"></div>
286 <div id="sandbox"></div>
287 <div id="imgct"></div>
288 <div id="logz"></div>
289 <div id="sandbox2"></div>
290 <div id="response"></div>
291 <div id="remark"></div>
292 <div id="xhrstart"></div>
293 <div id="xhrlog"></div>
294 <div id="xhrdeltalog"></div>
295 </div>
296 </body>
297 </html>
298 <?php
299    }
300 }
301
302 main();
303
304 ?>