X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex.php;h=0e9d615a709355d06f0b6beefc166512028ea9b5;hb=9b3aaa36e632185c5dd838eda214397daf5a6357;hp=918d0b5bbaf4aa365abd77acc8af76a257296998;hpb=473625661891dc60d8869e2aac880e7753dba942;p=brisk.git diff --git a/web/index.php b/web/index.php index 918d0b5..0e9d615 100644 --- a/web/index.php +++ b/web/index.php @@ -2,7 +2,7 @@ /* * brisk - index.php * - * Copyright (C) 2006 matteo.nastasi@milug.org + * Copyright (C) 2006-2007 matteo.nastasi@milug.org * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,113 +21,251 @@ * */ -require_once("brisk.phh"); +require_once("Obj/brisk.phh"); +require_once("briskin5/Obj/briskin5.phh"); if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') { echo "Debugging time!"; exit; } -log_load($sess, "LOAD: index.php"); +log_load("index.php"); function main() { - GLOBAL $sess, $name, $BRISK_DEBUG; + GLOBAL $sess, $name, $table_idx, $table_token, $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; $body = ""; + $tables = ""; + $standup = ""; $ACTION = "login"; - if (isset($BRISK_DEBUG) == FALSE) { - $is_table = false; - $sem = lock_data(); - $bri = &load_data(); - + if (isset($BRISK_SHOWHTML) == FALSE) { + $is_table = FALSE; + $sem = Room::lock_data(); + log_main("lock Room"); + $room = &Room::load_data(); + $curtime = time(); + /* Actions */ + if (validate_sess($sess)) { - $bri->garbage_manager(TRUE); - if (($user = &$bri->get_user($sess, &$idx)) != FALSE) { + log_main("pre garbage_manager UNO"); + $room->garbage_manager(TRUE); + log_main("post garbage_manager"); + if (($user = &$room->get_user($sess, &$idx)) != FALSE) { + log_main("user stat: ".$user->stat); if ($user->stat == "table") { - header ("Location: table.php"); - unlock_data($sem); + if (Room::save_data(&$room) == FALSE) { + echo "ERRORE SALVATAGGIO\n"; + exit; + } + log_main("unlock Room"); + Room::unlock_data($sem); + setcookie("table_token", $user->table_token, $curtime + 31536000); + setcookie("table_idx", $user->table, $curtime + 31536000); + header ("Location: briskin5/index.php"); exit; } $ACTION = "room"; } + + if (Room::save_data(&$room) == FALSE) { + echo "ERRORE SALVATAGGIO\n"; + exit; + } } if ($ACTION == "login" && isset($name)) { - $bri->garbage_manager(TRUE); + + log_main("pre garbage_manager DUE"); + $room->garbage_manager(TRUE); /* try login */ - $name = substr($name, 0, 12); - $name = str_replace(" ", "_", $name); - if (($user = &$bri->add_user(&$sess, &$idx, $name)) != FALSE) { + if (($user = &$room->add_user(&$sess, &$idx, $name, $_SERVER['REMOTE_ADDR'])) != FALSE) { $ACTION = "room"; // setcookie ("sess", "", time() + 180); - $bri->standup_update(&$user); + $room->standup_update(&$user); - if (save_data(&$bri) == FALSE) { + if (Room::save_data(&$room) == FALSE) { echo "ERRORE SALVATAGGIO\n"; exit; } } else { /* Login Rendering */ - if ($idx == -1) + if ($idx == -2) + $body .= '
Il nickname deve contenere almeno una lettera o una cifra.
'; + else if ($idx == -1) $body .= '
Spiacenti, non ci sono più posti liberi. Riprova più tardi.
'; else $body .= '
Il tuo nickname è già in uso.
'; } } - unlock_data($sem); + Room::unlock_data($sem); } /* Rendering. */ - if ($BRISK_DEBUG == "debugtable") { + if ($BRISK_SHOWHTML == "debugtable") { $ACTION = "room"; } - else if ($BRISK_DEBUG == "debuglogin") { + else if ($BRISK_SHOWHTML == "debuglogin") { $ACTION = "login"; } if ($ACTION == "room") { + $tables .= '
'; $tables .= ''; for ($i = 0 ; $i < TABLES_N ; $i++) { if ($i % 4 == 0) $tables .= ''; - $tables .= ''."\n"; + $tables .= ''; + $tables .= ''."\n"; if ($i % 4 == 3) $tables .= ''; } - $tables .= '
Tavolo '.$i.'

'; + $tables .= '
'; + $tables .= '
Tavolo '.$i.'
'; $tables .= sprintf('
', $i); $tables .= sprintf('
', $i); - $tables .= '
'; + $tables .= '
'; + + + $standup .= '
'; + $standup .= '
'; + $standup .= '
Giocatori in piedi
'; + + $standup .= sprintf('
'); + $standup .= '
'; + $standup .= '
'; + + // $tables .= ''; + + /* + $tables .= ''; + $tables .= ''; + $tables .= ''; - - $tables .= '
'; $tables .= '
'; - $tables .= 'Giocatori in piedi

'; + $tables .= 'Giocatori in piedi'; $tables .= sprintf('
'); $tables .= '
'; - $tables .= '
'; + */ + // $tables .= ''; } -$brisk_header = '
+ $altout_propag = array( array ( 'url' => 'http://www.alternativeoutput.it', + 'content' => '' ), + array ( 'url' => 'http://virtualsky.alternativeoutput.it', + 'content' => '' ) + ); + + // seed with microseconds since last "whole" second + srand ((double) microtime() * 1000000); + // $randval = rand(0,count($altout_propag)-1); + $randval = 1; + $altout_carousel = sprintf('%s', + $altout_propag[$randval]['url'], + $altout_propag[$randval]['content']); + + + $brisk_donate = file_get_contents(FTOK_PATH."/brisk_donate.txt"); + if ($brisk_donate == FALSE) + $brisk_donate = ""; + +$brisk_header_form = '
-
- -briscola chiamata in salsa ajax

-
+'; + +$brisk_vertical_menu = '
- + + +


-sponsored by:

-
+sponsored by:

'.$altout_carousel.'


supported by:



+
+


+%s +%s
'; /* Templates. */ @@ -142,22 +280,33 @@ supported by:

+ + \n"); + printf($brisk_vertical_menu, '', ''); + printf(""); ?> -
-



@@ -166,8 +315,7 @@ Digita il tuo nickname per accedere ai tavoli della briscola.

-
-
+




@@ -195,6 +343,8 @@ Digita il tuo nickname per accedere ai tavoli della briscola.

+ + @@ -203,15 +353,17 @@ Digita il tuo nickname per accedere ai tavoli della briscola.

var stat = ""; var subst = ""; var gst = new globst(); + var g_is_spawn = 0; + var g_withflash = false; var g_imgct= 0; var g_imgtot = g_preload_img_arr.length; var myfrom = "index_php"; window.onload = function() { - room_checkspace(12,8,50); + room_checkspace(12, , 50); "; window.onunload = onunload_cb; - + g_withflash = DetectFlashVer(6,0,0); + if (g_withflash == false) { + $("proflash").innerHTML = 'Audio con Flash.
'; + } + else + $("proflashext").innerHTML = ""; setTimeout(xhr_rd_poll, 0, sess); // alert("ARR LENGTH "+g_preload_img_arr.length); - // setTimeout(preload_images, 0, g_preload_img_arr, g_imgct); + setTimeout(preload_images, 0, g_preload_img_arr, g_imgct); $("txt_in").focus(); \n"); + printf($brisk_vertical_menu, '



', + $brisk_donate); + printf(""); ?> -
sess"; ?>"> +
- +
+ +
+ -
-Chat +
+Chat
-
+
+
+
+ +