X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=index.php;h=e25b7208f570bb20c2b645c4f3774a14802c0561;hp=d13e3bbbdab3a29e2ab519128a200159d1b78f5e;hb=68e916d4e488f110dcdab69d7827e8b2f4129cd4;hpb=c997188d74716ef29f82da903435b95eec736d79 diff --git a/index.php b/index.php index d13e3bb..e25b720 100644 --- a/index.php +++ b/index.php @@ -1,74 +1,28 @@ - - - - e-Doko - - - - - -
-

Welcome to E-Doko

-
- -

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

-
- Name: - Name: - Name: - Name: - - -
-\n"; - echo "perhaps the game has been cancled."; - exit(); + echo "perhaps the game has been cancled, check by login in here."; + exit(); } + DB_update_user_timestamp($myid); + + /* get some information from the DB */ + $gameid = DB_get_gameid_by_hash($me); $myname = DB_get_name_by_hash($me); $mystatus = DB_get_status_by_hash($me); + $mypos = DB_get_pos_by_hash($me); switch($mystatus) { @@ -184,9 +142,8 @@ else if(isset($_REQUEST["me"])) check_want_to_play($me); DB_set_hand_status_by_hash($me,'init'); break; - case 'init': - if( !isset($_REQUEST["in"]) || !isset($_REQUEST["update"])) + if( !myisset("in","update") ) { DB_set_hand_status_by_hash($me,'start'); echo "you need to answer both question"; @@ -195,8 +152,8 @@ else if(isset($_REQUEST["me"])) { if($_REQUEST["in"] == "no") { - echo "TODO: email everyone that the game has been canceld
"; - /*something like + echo "TODO: email everyone that the game has been canceled.
"; + /*something like need to modify for DB backend for($i=0;$i<4;$i++) { $message = "Hello ".$player[$hash[$i]]["name"].",\n\n". @@ -204,6 +161,7 @@ else if(isset($_REQUEST["me"])) mymail($player[$hash[$i]]["email"],"[DoKo-Debug] the game has been canceled",$message); } */ + /* delete everything from the dB */ DB_cancel_game($me); } else @@ -227,27 +185,41 @@ else if(isset($_REQUEST["me"])) break; case 'check': - echo "no checking at the moment... you need to play a normal game"; - if(!isset($_REQUEST["solo"]) || - !isset($_REQUEST["wedding"]) || - !isset($_REQUEST["poverty"]) || - !isset($_REQUEST["nines"]) ) + echo "checking for solo...
". + " if you have a wedding, please send an email to the other players.
". + " if you have poverty you need to play a normal game,sorry...
". + " At the moment you need to reload this page to finish the setup.
"; + if(!myisset("solo","wedding","poverty","nines") ) { - DB_set_hand_status_by_hash($me,'init'); - /* problem: by setting it back to init, variables "in" and "update" are - * not set, so the player will be send back to the start, after seeing his hand - */ - echo "you need to fill out the form"; + /* all these variables have a pre-selected default, + * so we should never get here, + * unless a user tries to cheat ;) */ + echo "something went wrong...please contact the admin."; } else { + /* check if this sickness needs to be handled first */ + $gametype = DB_get_gametype_by_gameid($gameid); + $startplayer = DB_get_startplayer_by_gameid($gameid); + if( $_REQUEST["solo"]!="No") { DB_set_solo_by_hash($me,$_REQUEST["solo"]); DB_set_sickness_by_hash($me,"solo"); + echo "
Seems like you want to play a ".$_REQUEST["solo"]." solo. Got it.
\n"; + + if($gametype == "solo" && $startplayer<$mypos) + {}/* do nothing */ + else + { + DB_set_gametype_by_gameid($gameid,"solo"); + DB_set_startplayer_by_gameid($gameid,$mypos); + DB_set_solo_by_gameid($gameid,$_REQUEST["solo"]); + }; } else if($_REQUEST["wedding"] == "yes") { + /* TODO: add silent solo somewhere*/ echo "wedding was chosen
\n"; DB_set_sickness_by_hash($me,"wedding"); } @@ -262,39 +234,131 @@ else if(isset($_REQUEST["me"])) DB_set_sickness_by_hash($me,"nines"); } } + DB_set_hand_status_by_hash($me,'poverty'); - + /* check all players and set game to final result, e.g. solo, wedding, povert, redeal */ - - /* reset solo, etc from players who did say something, but it didn't matter? */ + break; case 'poverty': - echo "
poverty not handeled at the moment... you need to play a normal game
"; + /* here we need to check if there is a solo or some other form of sickness. + * If so, which one counts + * set that one in the Game table, delete other ones form Hand table + * tell people about it. + */ + echo "
poverty not handeled at the moment... you need to play a normal game
". + "reload this page to finish the setup
"; /* only set this after all poverty, etc. are handeled*/ DB_set_hand_status_by_hash($me,'play'); + + /* check if the game can start */ + $userids = DB_get_all_userid_by_gameid($gameid); + $ok=1; + foreach($userids as $user) + if(DB_get_hand_status_by_userid_and_gameid($user,$gameid)!='play') + $ok=0; + + if($ok) + { + /* TODO: check what kind of game we are playing */ + DB_set_game_status_by_gameid($gameid,'play'); + } + break; case 'play': + case 'gameover': + /* both entries here, so that the tricks are visible for both. + * in case of 'play' there is a break later that skips the last part + */ + + /* figure out what kind of game we are playing, + * set the global variables $TRUMP,$DIAMONDS,$HEARTS,$CLUBS,$SPADES + * accordingly + */ + + $gametype = DB_get_gametype_by_gameid($gameid); + $GT = $gametype; + if($gametype=="solo") + { + $gametype = DB_get_solo_by_gameid($gameid); + $GT = $gametype." ".$GT; + } + else + $gametype="normal"; + + set_gametype($gametype); + + + /* display useful things in divs */ + + /* display local time */ + echo "
\n Local times:"; + $users = array(); + $users = DB_get_all_userid_by_gameid($gameid); + foreach($users as $user) + { + $offset = DB_get_user_timezone($user); + $zone = return_timezone($offset); + date_default_timezone_set($zone); + $name = DB_get_name_by_userid($user); + + echo "\n"; + }; + echo "
$name ".date("Y-m-d H:i:s")."
\n
\n"; + + display_status($GT); + + /* display links to the users status page */ + $result = mysql_query("SELECT email,password from User WHERE id='$myid'" ); + $r = mysql_fetch_array($result,MYSQL_NUM); + output_link_to_user_page($r[0],$r[1]); + display_news(); - display_status(); + + /* end display useful things*/ + + /* has the game started? No, then just wait here...*/ + $gamestatus = DB_get_game_status_by_gameid($gameid); + if($gamestatus == 'pre') + { + echo "you need to wait for the others...
"; + break; /* not sure this works... the idea is that you can + * only play a card after everyone is ready to play */ + } - /* get game id */ - $gameid = DB_get_gameid_by_hash($me); + /* display the table and the names */ + $result = mysql_query("SELECT User.fullname as name,". + " Hand.position as position ". + "FROM Hand ". + "LEFT JOIN User ON User.id=Hand.user_id ". + "WHERE Hand.game_id='".$gameid."' ". + "ORDER BY position ASC"); - /* get trick ids */ - $result = mysql_query("SELECT hand_card.card_id as card,". - " user.fullname as name,". - " hand.position as position,". - " play.sequence as sequence, ". - " hand.hash as hash, ". - " trick.id ". - "FROM trick ". - "LEFT JOIN play ON trick.id=play.trick_id ". - "LEFT JOIN hand_card ON play.hand_card_id=hand_card.id ". - "LEFT JOIN hand ON hand_card.hand_id=hand.id ". - "LEFT JOIN user ON user.id=hand.user_id ". - "WHERE trick.game_id='".$gameid."' ". - "ORDER BY trick.id,sequence ASC"); + echo "
\n". + " \"table\"\n"; + while($r = mysql_fetch_array($result,MYSQL_NUM)) + { + $name = $r[0]; + $pos = $r[1]; + + echo " $name\n"; + } + echo "
\n"; + + /* get everything relevant to display the tricks */ + $result = mysql_query("SELECT Hand_Card.card_id as card,". + " Hand.position as position,". + " Play.sequence as sequence, ". + " Trick.id, ". + " Comment.comment ". + "FROM Trick ". + "LEFT JOIN Play ON Trick.id=Play.trick_id ". + "LEFT JOIN Hand_Card ON Play.hand_card_id=Hand_Card.id ". + "LEFT JOIN Hand ON Hand_Card.hand_id=Hand.id ". + "LEFT JOIN Comment ON Play.id=Comment.play_id ". + "WHERE Trick.game_id='".$gameid."' ". + "ORDER BY Trick.id,sequence ASC"); $trickNR = 1; @@ -302,52 +366,53 @@ else if(isset($_REQUEST["me"])) $lasttrick = DB_get_max_trickid($gameid); $play = array(); /* needed to calculate winner later */ - $seq=1; - $pos=0; + $seq = 1; + $pos = 0; + $firstcard = ""; /* first card in a trick */ - echo "\n