5 * Copyright (C) 2006-2008 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 require_once("Obj/brisk.phh");
28 require_once("Obj/auth.phh");
29 // require_once("Obj/proxyscan.phh");
30 require_once("briskin5/Obj/briskin5.phh");
32 // Use of proxies isn't allowed.
37 log_load("index_wr.php");
39 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
40 echo "Debugging time!";
48 /* if the IP is banned, exit without do nothing */
49 if (array_search($_SERVER['REMOTE_ADDR'], $G_black_list) !== FALSE) {
56 log_wr('COMM: '.$mesg);
58 $sem = Room::lock_data();
59 if (($room = &Room::load_data()) == FALSE) {
60 echo "Load data error";
61 log_wr("Load data error");
62 Room::unlock_data($sem);
65 if (($user = &$room->get_user($sess, &$idx)) == FALSE) {
66 Room::unlock_data($sem);
67 $argz = explode('|', $mesg);
69 if ($argz[0] == 'getchallenge') {
71 if (($a_sem = Challenges::lock_data()) != FALSE) {
72 log_main("chal lock data success");
74 if (($chals = &Challenges::load_data()) != FALSE) {
78 // echo '2|'.$argz[1].'|'.$token.'|'.$_SERVER['REMOTE_ADDR'].'|'.$curtime.'|';
81 if (($login_new = validate_name($cli_name)) != FALSE) {
82 if ($chals->add($login_new, $token, $_SERVER['REMOTE_ADDR'], $curtime) != FALSE) {
92 if ($chals->ismod()) {
93 Challenges::save_data(&$chals);
98 Challenges::unlock_data($a_sem);
101 else if ($argz[0] == 'auth') {
102 printf("challenge|ok");
104 else if ($argz[0] == 'help') {
105 echo show_notify(str_replace("\n", " ", $G_room_help), 0, "torna ai tavoli", 600, 500);
107 else if ($argz[0] == 'about') {
108 echo show_notify(str_replace("\n", " ", $G_room_about), 0, "torna ai tavoli", 400, 200);
110 else if ($argz[0] == 'roadmap') {
111 echo show_notify(str_replace("\n", " ", $G_room_roadmap), 0, "torna ai tavoli", 400, 200);
113 else if ($argz[0] == 'whysupport') {
114 echo show_notify(str_replace("\n", " ", $G_room_whysupport), 0, "torna ai tavoli", 400, 200);
117 log_wr("Get User Error");
118 echo "Get User Error:" + $argz[0];
122 $argz = explode('|', $mesg);
124 log_wr('POSTSPLIT: '.$argz[0]);
126 if ($argz[0] == 'shutdown') {
127 log_auth($user->sess, "Shutdown session.");
131 log_rd2("AUTO LOGOUT.");
132 if ($user->subst == 'sitdown' || $user->stat == 'table')
133 $room->room_wakeup(&$user);
134 else if ($user->subst == 'standup')
135 $room->room_outstandup(&$user);
137 log_rd2("SHUTDOWN FROM WHAT ???");
139 else if ($argz[0] == 'warranty') {
140 GLOBAL $cli_name, $cli_email;
145 log_wr("INFO:SKIP:argz == warranty name: [".$cli_name."] AUTH: ".($user->flags & USER_FLAG_AUTH));
146 if ($user->flags & USER_FLAG_AUTH) {
147 if (($wa_lock = Warrant::lock_data()) != FALSE) {
148 if (($fp = @fopen(LEGAL_PATH."/warrant.txt", 'a')) != FALSE) {
149 /* Unix time | session | nickname | IP | where was | mesg */
150 fwrite($fp, sprintf("%ld|%s|%s|%s|\n", $curtime, $user->name, xcapelt(urldecode($cli_name)), xcapelt(urldecode($cli_email))));
153 Warrant::unlock_data($wa_lock);
154 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
155 $user->comm[$user->step % COMM_N] .= show_notify("<br>Il nominativo è stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni vi verrà<br><br>notificata l\'avvenuta registrazione.", 0, "chiudi", 400, 150);
160 $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>");', $dt, NICKSERV);
165 $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>");', $dt, NICKSERV);
168 if ($mesg_to_user != "") {
169 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
171 $dt = date("H:i ", $curtime);
172 $user->comm[$user->step % COMM_N] .= $mesg_to_user;
181 else if ($user->stat == 'room') {
182 $user->laccwr = time();
184 if ($argz[0] == 'help') {
185 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
186 $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_help), 0, "torna ai tavoli", 600, 500);
188 log_wr($user->comm[$user->step % COMM_N]);
192 else if ($argz[0] == 'about') {
193 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
194 $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_about), 0, "torna ai tavoli", 400, 200);
196 log_wr($user->comm[$user->step % COMM_N]);
200 else if ($argz[0] == 'roadmap') {
201 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
202 $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_roadmap), 0, "torna ai tavoli", 400, 200);
204 log_wr($user->comm[$user->step % COMM_N]);
208 else if ($argz[0] == 'whysupport') {
209 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
210 $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_whysupport), 0, "torna ai tavoli", 400, 200);
212 log_wr($user->comm[$user->step % COMM_N]);
216 else if ($argz[0] == 'chatt') {
217 $room->chatt_send(&$user,$mesg);
219 /**********************
223 **********************/
224 else if ($user->subst == 'standup') {
226 if ($argz[0] == 'sitdown') {
227 log_wr("SITDOWN command");
229 if ($user->the_end == TRUE) {
230 log_wr("INFO:SKIP:argz == sitdown && the_end == TRUE => ignore request.");
231 Room::unlock_data($sem);
236 $table_idx = $argz[1];
237 $table = &$room->table[$table_idx];
241 if ($G_shutdown || $table->wakeup_time > $curtime ||
242 ($table->auth_only && (($user->flags & USER_FLAG_AUTH) == 0)) ) {
243 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
245 $dt = date("H:i ", $curtime);
247 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"<b>Il server sta per essere riavviato, non possono avere inizio nuove partite.</b>");', $dt, NICKSERV);
249 else if ($table->auth_only && (($user->flags & USER_FLAG_AUTH) == 0)) {
250 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"<b>Il tavolo a cui volevi sederti richiede autentifica.</b>");', $dt, NICKSERV);
253 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"<b>Il tavolo si è appena liberato, ci si potrà sedere tra %d secondi.</b>");', $dt, NICKSERV, $table->wakeup_time - $curtime);
256 Room::save_data($room);
257 Room::unlock_data($sem);
261 /* TODO: refact to a function */
262 // if ($user->bantime > $user->laccwr) {
263 require_once("Obj/hardban.phh");
265 if (($bantime = Hardbans::check(($user->flags & USER_FLAG_AUTH ? $user->name : FALSE),
266 $user->ip, $user->sess)) != -1) {
267 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
268 if ($user->flags & USER_FLAG_AUTH) {
269 $user->comm[$user->step % COMM_N] .= show_notify("<br>Ti sei alzato da un tavolo senza il consenso degli altri giocatori. <br><br>Dovrai aspettare ancora ".secstoword($user->bantime - $user->laccwr)." prima di poterti sedere nuovamente.", 2000, "resta in piedi.", 400, 100);
272 $user->comm[$user->step % COMM_N] .= show_notify("<br>Tu o qualcuno col tuo stesso indirizzo IP si รจ alzato da un tavolo senza il consenso degli altri giocatori.<br><br>Dovrai aspettare ancora ".secstoword($bantime - $user->laccwr)." prima di poterti sedere nuovamente.<br><br>Se non sei stato tu ad alzarti e possiedi un login con password, autenticandoti con quello, potrai accedere.", 2000, "resta in piedi.", 400, 180);
275 Room::save_data($room);
276 Room::unlock_data($sem);
280 if ($table->player_n == PLAYERS_N) {
281 log_wr("WARN:FSM: Sitdown unreachable, table full.");
282 Room::unlock_data($sem);
287 $user->subst = "sitdown";
288 $user->table = $table_idx;
289 $user->table_pos = $table->user_add($idx);
291 log_wr("MOP before");
293 if ($table->player_n == PLAYERS_N) {
296 // Start game for this table.
297 log_wr("Start game!");
300 // START THE SPAWN HERE!!!!
305 // Create new spawned table
306 $bri_sem = Briskin5::lock_data($table_idx);
307 $table_token = uniqid("");
308 $room->table[$table_idx]->table_token = $table_token;
309 $room->table[$table_idx]->table_start = $curtime;
311 $plist = "$table_token|$user->table|$table->player_n";
312 for ($i = 0 ; $i < $table->player_n ; $i++) {
313 $plist .= '|'.$room->user[$table->player[$i]]->sess;
315 log_legal($curtime, $user->sess, $user->name, "STAT:CREATE_GAME", $plist);
317 if (($bri =& new Briskin5(&$room, $table_idx, $table_token)) == FALSE)
318 log_wr("bri create: FALSE");
320 log_wr("bri create: ".serialize($bri));
323 $bri_table =& $bri->table[0];
324 $bri_table->init(&$bri->user);
325 $bri_table->game_init(&$bri->user);
327 // Init spawned users.
329 for ($i = 0 ; $i < $table->player_n ; $i++) {
330 $bri_user_cur = &$bri->user[$i];
331 $user_cur = &$room->user[$table->player[$i]];
333 $bri_user_cur->stat_set('table');
334 $bri_user_cur->subst = 'asta';
335 $bri_user_cur->laccwr = $curtime;
337 $bri_user_cur->trans_step = $user_cur->step + 1;
338 $bri_user_cur->comm[$bri_user_cur->step % COMM_N] = "";
339 $bri_user_cur->step_inc();
340 $bri_user_cur->comm[$bri_user_cur->step % COMM_N] = show_table(&$bri,&$bri_user_cur,$bri_user_cur->step+1,TRUE, FALSE);
342 $bri_user_cur->step_inc();
344 log_wr("TRY PRESAVE: ".$bri_user_cur->step." TRANS STEP: ".$bri_user_cur->trans_step);
348 // ARRAY_POP DISABLED
350 while (array_pop($user_cur->comm) != NULL);
353 $ret .= sprintf('gst.st_loc++; gst.st=%d; createCookie("table_idx", %d, 24*365, cookiepath); createCookie("table_token", "%s", 24*365, cookiepath); the_end=true; window.onunload = null ; window.onbeforeunload = null ; document.location.assign("briskin5/index.php");|', $user_cur->step+1, $table_idx, $table_token);
355 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
356 $user_cur->trans_step = $user_cur->step + 1;
357 log_wr("TRANS ATTIVATO");
360 $user_cur->stat_set('table');
361 $user_cur->subst = 'asta';
362 $user_cur->laccwr = $curtime;
363 $user_cur->step_inc();
365 log_wr("presave bri");
366 Briskin5::save_data($bri);
367 Briskin5::unlock_data($bri_sem);
368 log_wr("postsave bri");
371 $room->room_sitdown(&$user, $table_idx);
373 log_wr("MOP finish");
377 else if ($argz[0] == 'logout') {
378 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
379 $user->comm[$user->step % COMM_N] .= 'postact_logout();';
380 $user->the_end = TRUE;
384 /**********************
388 **********************/
389 else if ($user->subst == 'sitdown') {
390 if ($argz[0] == 'wakeup') {
391 $room->room_wakeup(&$user);
393 else if ($argz[0] == 'logout') {
394 $room->room_wakeup(&$user);
395 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
396 $user->comm[$user->step % COMM_N] .= 'postact_logout();';
397 $user->the_end = TRUE;
402 log_wr("before save data");
403 Room::save_data($room);
405 Room::unlock_data($sem);