Esempio n. 1
0
 public static int getPersonPieceFrom(int p)
 {
     // given a piece with a person on it, get the corresponding person piece.
     // Returns the failure piece if no person is on it.
     if (Pieces.personNumber(p) == 0)
     {
         return(createFailurePiece());
     }
     return(createPersonPiece(Pieces.personNumber(p)));
 }
Esempio n. 2
0
 //-- Locate people and houses
 public Coordinates locatePerson(int personNumber)
 {
     for (int i = 0; i < this.height; i++)
     {
         for (int j = 0; j < this.width; j++)
         {
             if (Pieces.personNumber(this.board[i, j]) == personNumber)
             {
                 return(new Coordinates(j, i, false));
             }
         }
     }
     return(new Coordinates(0, 0, true));
 }
Esempio n. 3
0
 public static int combinePieces(int p1, int p2)
 {
     // Combines a piece that is a person or house, with a regular piece.  Order is unimportant.
     // Returns the failure piece if neither piece is a plain person or house.
     if (Pieces.isTile(p1))
     {
         int t = p1; p1 = p2; p2 = t;
     }
     if (Pieces.isPerson(p1) && Pieces.isTile(p2))
     {
         return(Pieces.setPersonNumber(p2, Pieces.personNumber(p1)));
     }
     if (Pieces.isHouse(p1) && Pieces.isTile(p2))
     {
         return(Pieces.setHouseNumber(p2, Pieces.houseNumber(p1)));
     }
     return(Pieces.createFailurePiece());
 }
Esempio n. 4
0
 public int distanceToPartner(int p, Coordinates c)
 {
     // Given a person or house piece, and proposed coordinates for placing it, compute
     // the distance to its corresponding partner.  Returns Integer.MAX_VALUE if the
     // partner is not found or the input is not a pure person/house piece.
     if (Pieces.isPerson(p))
     {
         return(this.distance(this.locateHouse(Pieces.personNumber(p)), c));
     }
     else if (Pieces.isHouse(p))
     {
         return(this.distance(this.locatePerson(Pieces.houseNumber(p)), c));
     }
     else
     {
         return(int.MaxValue);
     }
 }
Esempio n. 5
0
 public static bool isPerson(int p)
 {     // true if the piece is JUST a person piece (all the rest zero)
     return(((p & 0b1111111000111111111111) == 0) && Pieces.personNumber(p) > 0);
 }
        public int playPieceAt(int p, int x, int y)
        {
            //  Plays the valid piece P at (x,y) on the board.  Returns the Success piece on regular success
            //  (with the board updated), the Failure piece if the move is invalid, or, if a person has
            //  begun moving, it returns a pure Person piece to indicate which person is moving.
            //  If you get a failure piece, you can get an error message using getLastErrorMessage.
            Coordinates c = new Coordinates(x, y);

            // check if there are no moves left
            if (this._movingPerson && this.personMovesLeft <= 0)
            {
                return(this.setFailure("You have no moves left for your person."));
            }
            if (!this.piecesLeftThisTurn())
            {
                return(this.setFailure("You have no pieces left for this turn."));
            }
            // check for valid coordinates, retrieve the current piece on the board.
            if (!this.currentBoard.isValidCoords(c))
            {
                return(this.setFailure("Internal Error: invalid coordinates"));
            }
            int currentPiece = this.currentBoard.getCell(c);

            // check game rules and place piece based on which kind it is.
            if (Pieces.isPerson(p) && this._movingPerson)
            {
                // Playing a single step in moving a person.  First, see if there is a path to move the person.
                // (The situation of having no moves left was already handled up top.)
                int  sourcePiece      = this.currentBoard.getCell(this.personCoordinates);
                int  thisPersonPiece  = Pieces.getPersonPieceFrom(sourcePiece);
                int  thisPersonNumber = Pieces.personNumber(thisPersonPiece);
                int  goalPiece        = this.currentBoard.createGoalPiece(thisPersonNumber, 0, c);
                bool reachedGoal      = (goalPiece == currentPiece);
                if (Pieces.personNumber(currentPiece) > 0)
                {
                    return(this.setFailure("There can be only one person in a square at a time."));
                }
                if (!Pieces.piecesConnect(this.currentBoard.getCell(this.personCoordinates), currentPiece, this.personCoordinates.x(), this.personCoordinates.y(), x, y))
                {
                    return(this.setFailure("There is no path for the person to get to that square.  Make sure to move your person only one square at a time."));
                }
                //-- it appears that we now have a valid move.
                //-- move the person
                sourcePiece  = Pieces.setPersonNumber(sourcePiece, 0);
                currentPiece = Pieces.setPersonNumber(currentPiece, thisPersonNumber);
                this.currentBoard.setCell(this.personCoordinates, sourcePiece);
                this.personMovesLeft--;
                this.personCoordinates = c;
                //-- check for coins
                if (Pieces.gold(currentPiece) || Pieces.silver(currentPiece))
                {
                    if (Pieces.gold(currentPiece))
                    {
                        this.incrementScore(this.pointsForGold());
                    }
                    if (Pieces.silver(currentPiece))
                    {
                        this.incrementScore(this.pointsForSilver());
                    }
                    currentPiece = Pieces.setCoins(currentPiece, false, false);
                    this.currentBoard.setCell(c, currentPiece);
                }
                //-- check for reaching goal
                if (reachedGoal)
                {
                    int thisZeroBasedPersonNumber = thisPersonNumber - 1;
                    this.incrementScore(this.personScores[thisZeroBasedPersonNumber]);   // DEBUG: line where Nancy's game crashed 9/1 8:20pm: probably due to the zero-based/one-based thing, probably she got her purple person to the goal which caused the crash.
                    this.personScores[thisZeroBasedPersonNumber]--;
                    if (this.personScores[thisZeroBasedPersonNumber] < 0)
                    {
                        this.personScores[thisZeroBasedPersonNumber] = 0;
                    }
                    //-- check: have we won by finding all the goals?
                    if (this.currentBoard.isWinningBoard())
                    {
                        this.determineWinners();
                    }
                }
                //-- now our piece is ready to store and we can return.
                this.currentBoard.setCell(c, currentPiece);
                return(Pieces.createSuccessPiece());
            }
            else if (Pieces.isPerson(p) || Pieces.isHouse(p))
            {
                // Playing a person piece or house piece when you're not moving a person.
                if (!this.currentBoard.isOnEdge(c))
                {
                    return(this.setFailure("Person and house pieces can only be placed on the edges."));                                 // person piece has to be placed on edge
                }
                if (this.currentBoard.isOnCorner(c))
                {
                    return(this.setFailure("You can't place person and house pieces on the corners."));
                }
                if (this.currentBoard.distanceToPartner(p, c) < 5)
                {
                    return(this.setFailure("The person piece and the house piece of each color have to be at least 5 spaces apart."));                                                // person piece can't be too close to house piece
                }
                if (!Pieces.isGreenGrassPiece(currentPiece))
                {
                    return(this.setFailure("Person and house pieces can only be placed on green grass."));                                          // have to put house or person on green grass.
                }
                // combine the pieces and store the result.  Also add a path for the person or house.
                int newPiece = Pieces.combinePieces(currentPiece, p);
                if (Pieces.isFailurePiece(newPiece))
                {
                    return(this.setFailure("There was an unexpected problem."));
                }
                newPiece = this.currentBoard.setGoalDirections(newPiece, c);
                this.currentBoard.setCell(c, newPiece);
                this.setCurrentPiecePlayed();
                return(Pieces.createSuccessPiece());
            }
            else
            {
                // Playing a regular piece.  If you play it against an existing piece with a person on it,
                // it starts person-moving mode.  If you play it on a blank square, it places the piece.
                // Other moves are invalid.
                if (Pieces.personNumber(currentPiece) > 0)
                {
                    // Begin person moving mode
                    this._movingPerson     = true;
                    this.personCoordinates = c;
                    this.personMovesLeft   = Pieces.numberMoves(p);
                    this.setCurrentPiecePlayed();
                    return(Pieces.createSuccessPiece());
                }
                else if (this.currentBoard.isOnEdge(c))     //-- note: you CAN be on an edge if you're moving a person, see above.
                {
                    return(this.setFailure("You can't play a path piece on the edge of the board."));
                }
                else if (Pieces.isBlank(currentPiece))
                {
                    // Placing tile in blank space
                    this.currentBoard.setCell(c, p);
                    this.setCurrentPiecePlayed();
                    return(Pieces.createSuccessPiece());
                }
                else
                {
                    return(this.setFailure("You can't move there."));
                }
            }
            // Shouldn't get here, and indeed, the compiler says you can't get here.
        }