basic user page, list available users and link to start a new game
[e-DoKo.git] / index.php
index d13e3bbbdab3a29e2ab519128a200159d1b78f5e..7db439913a9bf7c7bccd4c0bbb7f6bb3ba919655 100644 (file)
--- a/index.php
+++ b/index.php
@@ -37,6 +37,7 @@
 </div>
 
 <?php
+error_reporting(E_ALL);
      
 include_once("functions.php");
 include_once("db.php");
@@ -51,8 +52,8 @@ DB_open();
 if(isset($_REQUEST["new"]))
   {
 ?>
-    <p> no game in progress, please input 4 names and email addresses, please make sure that the addresses are correct! </p>
- <form action="index.php" method="post">
+    <p>Please add 4 names, please make sure that the names are correct! </p>
      <form action="index.php" method="post">
    Name:  <input name="PlayerA" type="text" size="10" maxlength="20" /> 
    Name:  <input name="PlayerB" type="text" size="10" maxlength="20" /> 
    Name:  <input name="PlayerC" type="text" size="10" maxlength="20" /> 
@@ -96,7 +97,9 @@ else if( isset($_REQUEST["PlayerA"]) &&
     $randomNRstring = join(":",$randomNR);
     
     /* create game */
-    mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', NULL, NULL, NULL)");
+    $followup = NULL;
+    if(isset($_REQUEST["followup"])) $followup= $_REQUEST["followup"];
+    mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', NULL, NULL,'pre',$followup ,NULL)");
     $game_id = mysql_insert_id();
     
     
@@ -146,21 +149,14 @@ else if( isset($_REQUEST["PlayerA"]) &&
     mymail($EmailB,"You are invited to a game of DoKo","Hello $PlayerB,\n".$message.$hashB);
     mymail($EmailC,"You are invited to a game of DoKo","Hello $PlayerC,\n".$message.$hashC);
     mymail($EmailD,"You are invited to a game of DoKo","Hello $PlayerD,\n".$message.$hashD);
-    
-    /*
-
-   do things like:
-     select fullname,strength,suite,game_id from hand_card left join hand on hand_id=hand.id left join user on user.id=user_id left join card on card_id=card.id where game_id='4'
-
-    */
-    
+        
   }    
 /* end set up a new game */
 
 else if(isset($_REQUEST["me"]))
   {
      /* handle request from one specifig player,
-      * the hash is set on a  per game base, so first just handle this game
+      * the hash is set on a per game base, so first just handle this game
       * perhaps also show links to other games in a sidebar
       */
     
@@ -177,6 +173,9 @@ else if(isset($_REQUEST["me"]))
     
     $myname   = DB_get_name_by_hash($me);
     $mystatus = DB_get_status_by_hash($me);
+
+    /* get game id */
+    $gameid = DB_get_gameid_by_hash($me);
     
     switch($mystatus)
       {
@@ -273,28 +272,37 @@ else if(isset($_REQUEST["me"]))
        
        /* 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);
+       $done=1;
+       foreach($userids as $user)
+         if(DB_get_hand_status_by_userid($user)!='play')
+           $done=0;
+
+       if($done)
+         DB_set_game_status_by_gameid($gameid,'play');
+
        break;
       case 'play':
+      case 'gameover': /* gameover and play, so that the tricks are visible for both */
        display_news();
        display_status();
-       
-        /* get game id */
-       $gameid = DB_get_gameid_by_hash($me);
-       
+               
        /* 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");
+       $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");
        
        
        $trickNR = 1;
@@ -381,22 +389,27 @@ else if(isset($_REQUEST["me"]))
          $myturn = 1;
        else
          $myturn = 0;
+
+       if(isset($_REQUEST["comment"]))
+         {
        
+         }  
        /* do we want to play a card? */
        if(isset($_REQUEST["card"]) && $myturn)
          {
            $card   = $_REQUEST["card"];
            $handid = DB_get_handid_by_hash($me); 
            
-           /* check if we have card */
+           /* check if we have card and that we haven't played it yet*/
            /* set played in hand_card to true where hand_id and card_id*/
-           $result = mysql_query("SELECT id from hand_card WHERE hand_id='$handid' AND card_id=".DB_quote_smart($card));
+           $result = mysql_query("SELECT id FROM Hand_Card WHERE played='false' and ".
+                                 "hand_id='$handid' AND card_id=".DB_quote_smart($card));
            $r = mysql_fetch_array($result,MYSQL_NUM);
            $handcardid = $r[0];
            
            if($handcardid)
              {
-               mysql_query("UPDATE hand_card SET played='true' WHERE hand_id='$handid' AND card_id=".DB_quote_smart($card));
+               mysql_query("UPDATE Hand_Card SET played='true' WHERE hand_id='$handid' AND card_id=".DB_quote_smart($card));
                
                /* get trick id or start new trick */
                $a = DB_get_current_trickid($gameid);
@@ -409,10 +422,45 @@ else if(isset($_REQUEST["me"]))
                display_card($card);
                echo "</div>\n";
                
+
+               /*check if we still have cards left, else set status to gameover */
                if(sizeof(DB_get_hand($me))==0)
-                 DB_set_hand_status_by_hash($me,'gameover');
+                 {
+                   DB_set_hand_status_by_hash($me,'gameover');
+                   $mystatus='gameover';
+                 }
+               
+               /* if all players are done, set game status also to game over */
+               $userids = DB_get_all_userid_by_gameid($gameid);
+               $done=1;
+               foreach($userids as $user)
+                 if(DB_get_hand_status_by_userid($user)!='gameover')
+                   $done=0;
+
+               if($done)
+                 DB_set_game_status_by_gameid($gameid,"gameover");
                
-               echo "TODO: email next player<br />";
+               /* email next player */
+               if(DB_get_game_status_by_gameid($gameid)=='play')
+                 {
+                   if($sequence==4)
+                     {
+                       $play   = DB_get_cards_by_trick($trickid);
+                       $winner = get_winner($play); /* returns the position */
+                       $next = $winner;
+                     }
+                   else
+                     {
+                       $next = DB_get_pos_by_hash($me)+1;
+                     }
+                   if($next==5) $next=1;
+
+                   echo "TODO: email next player at pos $next <br />";
+                   if($debug)
+                     echo "DEBUG:<a href=\"index.php?me=".DB_get_hash_from_game_and_pos($gameid,$next).
+                       "\"> next player </a> <br />\n";
+
+                 }
              }
            else
              {
@@ -430,31 +478,52 @@ else if(isset($_REQUEST["me"]))
        
        if($myturn && !isset($_REQUEST["card"]))
          {
-           echo "Hello ".DB_get_name_by_hash($me).", it's your turn!  <br />\n";
+           echo "Hello ".$myname.", it's your turn!  <br />\n";
            echo "Your cards are: <br />\n";
            echo "<form action=\"index.php?me=$me\" method=\"post\">\n";
            foreach($mycards as $card) 
              display_link_card($card);
 ?>
-    <br />A short comment:<input name="comment" type="text" size="30" maxlength="50" /> 
+    <br />A short comments:<input name="comment" type="text" size="30" maxlength="50" /> 
     <input type="hidden" name="me" value="<?php echo $me; ?>" />
     <input type="submit" value="move" />
  </form>
  <?php
          }
-       else
+       else if($mystatus=='play')
          {
            echo "Your cards are: <br />\n";
            foreach($mycards as $card) 
              display_card($card);
          }
        echo "</div>\n";
-       /*check if we still have cards left, else set status to gameover */
-       
-       break;
-      case 'gameover':
-       echo "the game is over... guess the final score should be displayed here...<br />\n";
-       echo "TODO: suggest a new game with the next person as dealer <br />\n";
+
+       /* check if we need to set status to 'gameover' is done during playing of the card */
+       if($mystatus=='play')
+         break;
+   /* the following happens only when the gamestatus is 'gameover' */
+       /* check if game is over, display results */
+       if(DB_get_game_status_by_gameid($gameid)=='play')
+         {
+           echo "the game is over for you.. other people still need to play though";
+         }
+       else
+         {
+           echo "the game is over now... guess the final score should be displayed here...<br />\n";
+           
+           /* suggest a new game with the same people in it, just rotated once */
+           $names = DB_get_all_names_by_gameid($gameid);
+           
+           echo "Do you want to continue playing?(This will start a new game, with the next person as dealer.)\n";
+           echo "<form action=\"index.php\" methog=\"post\">\n";
+           echo "  <input type=\"hidden\" name=\"PlayerA\" value=\"".($names[1])."\" />\n";
+           echo "  <input type=\"hidden\" name=\"PlayerB\" value=\"".($names[2])."\" />\n";
+           echo "  <input type=\"hidden\" name=\"PlayerC\" value=\"".($names[3])."\" />\n";
+           echo "  <input type=\"hidden\" name=\"PlayerD\" value=\"".($names[0])."\" />\n";
+           echo "  <input type=\"hidden\" name=\"followup\" value=\"".($gameid)."\" />\n";
+           echo "  <input type=\"submit\" value=\"keep playing\" />\n";
+           echo "</form>\n";
+         }
        break;
       default:
        echo "error in testing the status";
@@ -473,7 +542,13 @@ else if(isset($_REQUEST["me"]))
     if($ok)
       {
        echo "ok. your logged in, now what? :)<br />";
-       
+       $names = DB_get_all_names();
+       echo "<p>registered players:<br />\n";
+       foreach ($names as $name)
+         echo "$name <br />\n";
+       echo "</p>\n";
+       echo "<p>Want to start a new game? remember 4 names from the list above and visit ".
+         "<a href=\"http://doko.nubati.net/database/index.php?new\">this page.</a></p>";
       }
     else
       {
@@ -527,7 +602,7 @@ else if(isset($_REQUEST["Rfullname"]) &&
          }
        if($ok)
          {
-           $r=mysql_query("INSERT INTO user VALUES(NULL,".DB_quote_smart($_REQUEST["Rfullname"]).
+           $r=mysql_query("INSERT INTO User VALUES(NULL,".DB_quote_smart($_REQUEST["Rfullname"]).
                      ",".DB_quote_smart($_REQUEST["Remail"]).
                      ",".DB_quote_smart(md5($_REQUEST["Rpassword"])).
                      ",".DB_quote_smart($_REQUEST["Rtimezone"]).",NULL)");