X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=index.php;h=f71643accab1699a62573e4b77ff67298729fc44;hp=cf877cdac66c26998a1169edc7eeba13f5a26415;hb=64586775883969c933517edc541b6f5a0878bd7d;hpb=0e0b8bf81eff8eb4c726135b888aad69637f242b diff --git a/index.php b/index.php index cf877cd..f71643a 100644 --- a/index.php +++ b/index.php @@ -1,434 +1,148 @@ - - - - Doko via email - - - -

Welcome to E-Doko

- "; - else - echo ""; - return; -} - function display_link_card($card,$me) -{ - if( $card/2 - (int)($card/2) == 0.5) - echo ""; - else - echo ""; - return; -} - -function save_status() -{ - global $player,$game,$hash,$history; - - $output = fopen("status.txt","w"); - if ($output) - { - foreach($hash as $key) - { - $tmp=""; - if( ereg("i",$player[$key]["option"]) ) - $tmp.="i"; - if( ereg("s",$player[$key]["option"]) ) - $tmp.="s"; - if( ereg("t",$player[$key]["option"]) ) - $tmp.="t"; - if( ereg("c",$player[$key]["option"]) ) - $tmp.="c"; - $player[$key]["option"]=$tmp; - - fwrite($output,"".$player[$key]["hash"].":" ); - fwrite($output,"".$player[$key]["name"].":" ); - fwrite($output,"".$player[$key]["email"].":" ); - fwrite($output,"".$player[$key]["option"].":" ); - fwrite($output,"".$player[$key]["cards"] .":"); - fwrite($output,"\n"); - } - fwrite($output,"\n"); - foreach($history as $line) - fwrite($output,$line); - - fwrite($output,"\n"); - fclose($output); - } - else - echo "can't open file for writing, please inform the admin."; - - return; -} +/* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Arun Persaud + * + * This file is part of e-DoKo. + * + * e-DoKo is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * e-DoKo is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with e-DoKo. If not, see . + * + */ +error_reporting(E_ALL); -/* check for status file and read it, if possible */ +/* start a session, if it is not already running. + * This way people don't have to log in all the times. + * The session variables can also be read out from different + * php scripts, so that the code can be easily split up across several files + */ +session_start(); -if(file_exists("status.txt")) - $lines = file("status.txt"); - else - die("no file"); +include_once("config.php"); /* needs to be first in list, since other includes use this */ +include_once("./include/output.php"); /* html output only */ +include_once("./include/db.php"); /* database only */ +include_once("./include/functions.php"); /* the rest */ -/* check if we want to start a new game */ -if( isset($_REQUEST["PlayerA"]) && - isset($_REQUEST["PlayerB"]) && - isset($_REQUEST["PlayerC"]) && - isset($_REQUEST["PlayerD"]) && - isset($_REQUEST["EmailA"]) && - isset($_REQUEST["EmailB"]) && - isset($_REQUEST["EmailC"]) && - isset($_REQUEST["EmailD"]) ) - { - $PlayerA = $_REQUEST["PlayerA"]; - $PlayerB = $_REQUEST["PlayerB"]; - $PlayerC = $_REQUEST["PlayerC"]; - $PlayerD = $_REQUEST["PlayerD"]; - $EmailA = $_REQUEST["EmailA"] ; - $EmailB = $_REQUEST["EmailB"] ; - $EmailC = $_REQUEST["EmailC"] ; - $EmailD = $_REQUEST["EmailD"] ; - - /* send out email, check for error with email */ - echo "send out emails to everyone, asking if they want to join"; - echo "use link
"; - echo " player 1
"; - echo " player 2
"; - echo " player 3
"; - echo " player 4
"; - - /* read in random.txt */ - if(file_exists("random.txt")) - $random = file("random.txt"); - else - die("no random file"); - - $randomNR = explode( ":", $random[1] ); - - /* write initial status into file */ - $output = fopen("status.txt","w"); - if ($output) - { - fwrite($output, "hash1:".$PlayerA.":".$EmailA."::" ); - for($i=0;$i<11;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[11]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "hash2:$PlayerB:$EmailB::" ); - for(;$i<23;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[23]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "hash3:$PlayerC:$EmailC::" ); - for(;$i<35;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[35]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "hash4:$PlayerD:$EmailD::"); - for(;$i<47;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[47]:" ); - fwrite($output,"\n"); - - fclose($output); - } - else - echo "can't open file for writing"; - }; +/* make sure that user has set all variables in config.php */ +config_check(); -/* test if a game is running, else output everything for a new game */ -if(sizeof($lines)<2) +/* open the database */ +$DBopen = DB_open(); +if($DBopen<0) { -?> -

no game in progress, please input 4 names and email addresses

-
- Name: - Email:
- - Name: - Email:
- - Name: - Email:
- - Name: - Email:
+ output_header(); - -
- -
- Do you want to play a game of DoKo? - yes - no
+/* set default */ +$language = detectlanguage(); - Do you want to get an email for every card played or only if it your move? - every card - only on my turn
-\n"; - echo "\n"; - echo "\n"; - echo "
\n"; - } - } +/* check if default in array of supported languages, else default to english */ +$supported_languages = array ('en','de'); -/* *** - * * * - * *** - * * * - * *** - * yes? email him his hand, ask for solo, poverty, email every move or every card? - */ - if(isset($_REQUEST["b"])) - { - $b=$_REQUEST["b"]; - - if( ereg("[is]",$player[$b]["option"]) && $game["init"]<4) - { - echo "just wait for the game to start"; - } - else if(!isset($_REQUEST["in"])|| !isset($_REQUEST["update"]) ) - { - echo "go back to "; - echo " here and fill out the form
"; - } - else - { /* show the hand */ - if($_REQUEST["update"]=="card") $player[$b]["option"].="c"; - if($_REQUEST["update"]=="turn") $player[$b]["option"].="t"; - - $player[$b]["option"].="i"; - - save_status(); - - $allcards = $player[$b]["cards"]; - $mycards = explode(";",$allcards); - - sort($mycards); - echo "your cards are
"; - foreach($mycards as $card) - { - display_card($card); - } - echo "
\n"; - ?> -
- - do you want to play solo? - yes - no
+if ( !in_array($language, $supported_languages) ) + $language = 'en'; - do you have a wedding? - yes - no
+/* override with explicit request from user */ +if(myisset('language')) + $language = $_REQUEST['language']; +else if(isset($_SESSION['language'])) + $language = $_SESSION['language']; - do you have poverty? - yes - no
- -\n"; - echo "\n"; +/* set it */ +set_language($language); +/**** end language ****/ - echo "
\n"; - } - } - if(isset($_REQUEST["c"])) - { - $c=$_REQUEST["c"]; - - if(!isset($_REQUEST["solo"])|| !isset($_REQUEST["wedding"])|| !isset($_REQUEST["poverty"]) ) - { - echo "go back to "; - echo " here and fill out the form
"; - } - else if( ereg("s",$player[$c]["option"]) && $game["init"]<4 ) - { - echo "just wait for the game to start"; - } - else if($game["init"]<4) - { - echo "handle krankheit
"; +/* done major error checking, output header of HTML page */ +output_header(); - echo "email this out: you're in. once everyone has filled out the form,"; - echo "the game will start and you'll get an eamil about it"; - - $player[$c]["option"].="s"; +/* The rest of the file consists of handling user input. + * The user sends information via html GET and POST variables, + * and the action variable tells the prog what the user wants to do + */ +if(myisset("action")) + $action=$_REQUEST['action']; +else + $action=""; /* so that we can use a default option below */ - save_status(); - } - } - if($game["init"]==4) - { - if(!isset($_REQUEST["me"])) - echo "a game is in progress, but you are not playing"; - else - { - $me = $_REQUEST["me"]; - if(isset($_REQUEST["card"])) - { - $card=$_REQUEST["card"]; - echo "EMAIL: you played $card
"; - echo "check,if card correct remove card from deck
"; - +switch($action) + { + case 'new': + require './include/newgame.php'; + break; + case 'cancel': + require './include/cancelgame.php'; + break; + case 'reminder': + require './include/reminder.php'; + break; + case 'logout': + require './include/logout.php'; + require './include/welcome.php'; + break; + case 'login': + require './include/login.php'; + require './include/user.php'; + break; + case 'register': + require './include/register.php'; + break; + case 'prefs': + require './include/preferences.php'; + break; + case 'game': + require './include/game.php'; + break; + case 'about': + require './include/about.php'; + break; + case 'stats': + if(isset($_SESSION["name"])) + require './include/stats.php'; + else + require './include/welcome.php'; + break; + default: + if(isset($_SESSION["name"])) + require './include/user.php'; + else + require './include/welcome.php'; + } - $tmp = explode(":",$history[sizeof($history)-1]); - $tmp[sizeof($tmp)-1] = "".$player[$me]["number"]."->".$card.":"; - $history[sizeof($history)-1]=join(":",$tmp); +/* ask for login or display login info, needs to go at the end, so that we have the + * session-variable already set. + */ +output_navbar(); - save_status(); - } - echo "game in progress and you are in it
"; - foreach($history as $play) - { - $trick = explode(":",$play); +output_footer(); - $last=-1; - /* found old trick, display it */ - for($i=0;$i",$card); - echo $player[$hash[$tmp[0]]]["name"]." played "; - display_card($tmp[1]); - $last=$tmp[0]; - } - echo "
"; - - - $next = $last + 1; - if ($next>=4) - $next -= 4 ; - - switch(sizeof($trick)) - { - case 1: - echo "new trick , next player ".$trick[0]."
"; - break; - case 4: - echo "figure out who will win
"; - case 2: - case 3: - echo "some played $next"; - if($hash[$next]==$me) - { - - echo "ITS YOUR TURN
"; - $allcards = $player[$me]["cards"]; - $mycards = explode(";",$allcards); - - sort($mycards); - echo "your cards are
"; - foreach($mycards as $card) - { - display_link_card($card,$me); - } - echo "
\n"; - } - echo "
"; - break; - default: - echo "default
"; - } - } - } - } - -} /* is this the last player that needs to accept? */ - /* yes, figure out who starts, send out email to first player */ - /* no, email the rest to cancel game */ +DB_close(); -/* player wants to make a move? */ - /* check if it is this players turn it is (if it's the players turn, convert cards into links) */ - /* if it is the last card played*/ - /* add checkbox for who one the trick */ - /* email next player */ - /* last card played? */ - /* count score for each player */ +/* + *Local Variables: + *mode: php + *mode: hs-minor + *End: + */ ?> - - -