X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=index.php;h=51aa24dfb9980d719b2634500f0f8ddcf7add429;hp=d1dad1baf98a4f00efeb9116a875b7ceff00e4d6;hb=4281c9e477f9aafff66f8b9dd6912a2495b0e853;hpb=b74908c768e91f6e19a31f3956a57a2031c510fa diff --git a/index.php b/index.php index d1dad1b..51aa24d 100644 --- a/index.php +++ b/index.php @@ -1,731 +1,153 @@ - - - - Doko via email - - - -

Welcome to E-Doko

- To: $To
Subject: $Subject
$message
"; - else - mail($To,$Subject,$message); - return; -} - -function card_to_name($card) -{ - switch($card) - { - case 1: - case 2: - return "ten of hearts"; - case 3: - case 4: - return "queen of clubs"; - case 5: - case 6: - return "queen of spades"; - case 7: - case 8: - return "queen of hearts"; - case 9: - case 10: - return "queen of diamonds"; - case 11: - case 12: - return "jack of clubs"; - case 13: - case 14: - return "jack of spades"; - case 15: - case 16: - return "jack of hearts"; - case 17: - case 18: - return "jack of diamonds"; - case 19: - case 20: - return "ace of diamonds"; - case 21: - case 22: - return "ten of diamonds"; - case 23: - case 24: - return "king of diamonds"; - case 25: - case 26: - return "nine of diamonds";; - case 27: - case 28: - return "ace of clubs"; - case 29: - case 30: - return "ten of clubs"; - case 31: - case 32: - return "king of clubs"; - case 33: - case 34: - return "nine of clubs"; - case 35: - case 36: - return "ace of spades"; - case 37: - case 38: - return "ten of spades"; - case 39: - case 40: - return "king of spades"; - case 41: - case 42: - return "nine of spades"; - case 43: - case 44: - return "ace of hearts"; - case 45: - case 46: - return "ace of diamonds"; - case 47: - case 48: - return "nine of diamonds"; - default: - return "something went wrong, please contact the admin"; - } -} - -function card_value($card) -{ - switch($card-1) - { - case 0: - case 1: - return 10; - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - return 3; - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - return 2; - case 18: - case 19: - return 11; - case 20: - case 21: - return 10; - case 22: - case 23: - return 4; - case 24: - case 25: - return 0; - case 26: - case 27: - return 11; - case 28: - case 29: - return 10; - case 30: - case 31: - return 4; - case 32: - case 33: - return 0; - case 34: - case 35: - return 11; - case 36: - case 37: - return 10; - case 38: - case 39: - return 4; - case 40: - case 41: - return 0; - case 42: - case 43: - return 11; - case 44: - case 45: - return 4; - case 46: - case 47: - return 0; - default: - echo "something went wrong, please contact the admin
"; - return 0; - } -} - -function display_card($card) -{ - if( $card/2 - (int)($card/2) == 0.5) - echo ""; - else - echo ""; - return; -} - function display_link_card($card,$me) -{ - if( $card/2 - (int)($card/2) == 0.5) - echo ""; - else - echo ""; - return; -} +/* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 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 . + * + */ -function save_status() -{ - global $player,$game,$hash,$history; +error_reporting(E_ALL); - $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; +/* 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(); - fwrite($output,"".$player[$key]["hash"].":" ); - fwrite($output,"".$player[$key]["name"].":" ); - fwrite($output,"".$player[$key]["email"].":" ); - fwrite($output,"".$player[$key]["option"].":" ); - fwrite($output,"".$player[$key]["points"].":" ); - fwrite($output,"".$player[$key]["cards"] .":"); - fwrite($output,"\n"); - } - fwrite($output,"\n"); - foreach($history as $line) - fwrite($output,$line); +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 */ - fwrite($output,"\n"); - fclose($output); - } - else - echo "can't open file for writing, please inform the admin."; - - return; -} +/* make sure that user has set all variables in config.php */ +config_check(); -$history=array(); +/* open the database */ +$DBopen = DB_open(); +if($DBopen<0) + { + output_header(); -/* check for status file and read it, if possible */ + if($DBopen == -1) + echo "Database error, can't connect... Please wait a while and try again. ". + "If the problem doesn't go away feel free to contact $ADMIN_NAME at $ADMIN_EMAIL."; + else if ($DBopen == -2) + echo "Wrong database version, please update your database using the update.php script."; -if(file_exists("status.txt")) - $lines = file("status.txt"); - else - die("no file"); + output_footer(); + exit(); + } -/* 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"]) && sizeof($lines<2)) +/* localization */ +/* needs to be in front of output_header, but we don't know the users preferences at this time, + * so we go by the session variable or if language is set + */ +if(myisset('language') || isset($_SESSION['language'])) { - $PlayerA = $_REQUEST["PlayerA"]; - $PlayerB = $_REQUEST["PlayerB"]; - $PlayerC = $_REQUEST["PlayerC"]; - $PlayerD = $_REQUEST["PlayerD"]; - $EmailA = $_REQUEST["EmailA"] ; - $EmailB = $_REQUEST["EmailB"] ; - $EmailC = $_REQUEST["EmailC"] ; - $EmailD = $_REQUEST["EmailD"] ; - - $hashA = md5("AGameOfDoko".$PlayerA.$EmailA); - $hashB = md5("AGameOfDoko".$PlayerB.$EmailB); - $hashC = md5("AGameOfDoko".$PlayerC.$EmailC); - $hashD = md5("AGameOfDoko".$PlayerD.$EmailD); + $language = 'en'; - /* send out email, check for error with email */ + if(myisset('language')) + $language = $_REQUEST['language']; + else if(isset($_SESSION['language'])) + $language = $_SESSION['language']; - $message = "\n". - "you are invited to play a game of DoKo.\n". - "The whole round would consist of the following players:\n". - "$PlayerA\n". - "$PlayerB\n". - "$PlayerC\n". - "$PlayerD\n\n". - "If you want to join this game, please follow this link:\n\n". - " http://doko.nubati.net/index.php?a="; - - mymail($EmailA,"Invite for a game of DoKo","Hello $PlayerA,\n".$message.$hashA); - mymail($EmailB,"Invite for a game of DoKo","Hello $PlayerB,\n".$message.$hashB); - mymail($EmailC,"Invite for a game of DoKo","Hello $PlayerC,\n".$message.$hashC); - mymail($EmailD,"Invite for a game of DoKo","Hello $PlayerD,\n".$message.$hashD); - - /* 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) + switch($language) { - fwrite($output, "$hashA:$PlayerA:$EmailA:::" ); - for($i=0;$i<11;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[11]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "$hashB:$PlayerB:$EmailB:::" ); - for(;$i<23;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[23]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "$hashC:$PlayerC:$EmailC:::" ); - for(;$i<35;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[35]:" ); $i++; - fwrite($output,"\n"); - - fwrite($output, "$hashD:$PlayerD:$EmailD:::"); - for(;$i<47;$i++) - fwrite($output,"$randomNR[$i];" ); - fwrite($output,"$randomNR[47]:" ); - fwrite($output,"\n"); - - fclose($output); + case 'de': + putenv("LC_ALL=de_DE"); + setlocale(LC_ALL, "de_DE"); + // Specify location of translation tables + bindtextdomain("edoko", "./locale"); + // Choose domain + textdomain("edoko"); + break; + default: + /* do nothing */ } - else - echo "can't open file for writing"; - }; - -/* test if a game is running, else output everything for a new game */ -if(sizeof($lines)<2) - { -?> -

no game in progress, please input 4 names and email addresses, please make sure that the addresses are correct!

-
- Name: - Email:
- - Name: - Email:
- - Name: - Email:
- - Name: - Email:
- - -
- -
- Do you want to play a game of DoKo? - yes - no
+if(myisset("action")) + $action=$_REQUEST['action']; +else + $action=""; /* so that we can use a default option below */ - 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"; - } - } +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'; + } -/* *** - * * * - * *** - * * * - * *** - * yes? email him his hand, ask for solo, poverty, email every move or every card? +/* ask for login or display login info, needs to go at the end, so that we have the + * session-variable already set. */ - if(isset($_REQUEST["b"])) - { - $b=$_REQUEST["b"]; - - if( ereg("s",$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["in"]=="no") - { - for($i=0;$i<4;$i++) - { - $message = "Hello ".$player[$hash[$i]]["name"].",\n\n". - "the game has been cancled due to the request of one of the players.\n"; - mymail($player[$hash[$i]]["email"],"[DoKo] the game has been cancled",$message); - } - $output = fopen("status.txt","w"); - if($output) - fclose($output); - else - echo "problem opening file"; - } - else - { - 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"; - ?> -

aehm... at the moment please just answer everything with no, still need to implement this

-
- - do you want to play solo? - yes - no
- - do you have a wedding? - yes - no
- - do you have poverty? - yes - no
- -\n"; - echo "\n"; - - 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
"; - - $message = "you're in. once everyone has filled out the form,". - "the game will start and you'll get an eamil on your turn\n"; - mymail($player[$c]["email"],"[DoKo] the game will start soon",$message); - - $player[$c]["option"].="s"; - - 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"]; - - echo "game in progress and you are in it
"; - foreach($history as $play) - { - echo "
"; - - $trick = explode(":",$play); - - $last=-2; - /* found old trick, display it */ - for($i=0;$i",$card)) - { - $tmp = explode("->",$card); - echo $player[$hash[$tmp[0]]]["name"]." played "; - display_card($tmp[1]); - $last=$tmp[0]; - } - } - } - - $next = $last + 1; - if ($next>=4) - $next -= 4 ; - if($last<0) - { - $next=$history[sizeof($history)-1][0]; - } +output_status(); +output_footer(); - if(isset($_REQUEST["card"])) - { - if($hash[$next]==$me) - { - $card=$_REQUEST["card"]; - $mycards = explode(";",$player[$me]["cards"]); - if(in_array($card,$mycards)) - { - $tmp=array(); - foreach($mycards as $m) - if($m!=$card) - $tmp[]=$m; - $tmp2=""; - for($i=0;$i".$card.":\n"; - } - else - { - $tmp = explode(":",$history[sizeof($history)-1]); - $tmp[sizeof($tmp)-1] = "".$player[$me]["number"]."->".$card.":"; - $history[sizeof($history)-1]=join(":",$tmp); - } - save_status(); - - echo " you played "; - display_card($card); - /* send out email to players who want/need to get informed */ - for($i=0;$i<4;$i++) - { - $mynext=$next+1; if($mynext>3)$mynext-=4; - if((ereg("c",$player[$hash[$i]]["option"]) || $i==$mynext) && $hash[$i]!=$me) - { - $message = " Hello ".$player[$hash[$i]]["name"].",\n\n"; - - if($i==$mynext) - $message .= "it's your turn now.\n"; - $message .= $player[$me]["name"]. "has played the following card ".card_to_name($card)."\n"; - - mymail($player[$hash[$i]]["email"],"[DoKo] a card has been played",$message); - echo " next player
"; - } - } - } - else - echo "seems like you don't have that card
"; - - } - - } - else if(isset($_REQUEST["win"]) && strlen($history[sizeof($history)-1])>3) - { - $win=$_REQUEST["win"]; - $history[]=$win.":\n"; - /* count points of the last trick */ - $points=0; - - $tmp = explode(":",$history[sizeof($history)-2]); - for($i=0;$i<4;$i++) - { - $tmp2 = explode("->",$tmp[$i]); - $c = $tmp2[1]; - $points += card_value($c); - } - $player[$hash[$win]]["points"]+=$points; - echo "
".$player[$hash[$win]]["name"]." won: $points Points
"; - - save_status(); - } - echo "
"; - - $tmp = explode(":",$history[sizeof($history)-1]); - - if(sizeof($tmp)==5) - { - ?> -
- -"; - echo ""; -?> - - -
-the next player
"; - */ - if(strlen(trim($player[$me]["cards"]))==0) - { - echo "
game over, count points
"; - for($i=0;$i<4;$i++) - { - echo $player[$hash[$i]]["name"]." got ".$player[$hash[$i]]["points"]."
"; - } - } - } - if($hash[$next]==$me && strlen(trim($player[$me]["cards"]))>0 ) - { - - echo "ITS YOUR TURN
"; - $allcards = trim($player[$me]["cards"]); - $mycards = explode(";",$allcards); - - sort($mycards); - echo "your cards are
"; - foreach($mycards as $card) - { - display_link_card($card,$me); - } - echo "
\n"; - } - echo "
"; - - } - } - } - - } +DB_close(); +/* + *Local Variables: + *mode: php + *mode: hs-minor + *End: + */ ?> - - -