コード例 #1
0
    /// <summary>
    /// Initializes a new instance of the <see cref="BGMoveOptions"/> class.
    /// </summary>
    /// <param name="player"></param>
    /// <param name="boardMap"></param>
    /// <param name="diceRoll"></param>
    public BGMoveOptions(BGPlayerID player, BGBoardMap boardMap, BGDiceRoll diceRoll)
    {
        Moves = null;
        Moves = GetMoves(player, boardMap, diceRoll);

        // A player must use both numbers of a roll if possible.
        // If either number can be played but not both, the player must play the larger one.

        if (diceRoll.Roll1 != diceRoll.Roll2 &&
            diceRoll.CanUse(diceRoll.Roll1) &&
            diceRoll.CanUse(diceRoll.Roll2))
        {
            List <BGMove> roll1OnlyMoves = new List <BGMove>();
            List <BGMove> roll2OnlyMoves = new List <BGMove>();
            List <BGMove> bothRollMoves  = new List <BGMove>();

            foreach (BGMove move in Moves)
            {
                BGBoardMap newBoardMap = boardMap.Copy();
                newBoardMap.Use(move);

                BGDiceRoll newDiceRoll = diceRoll.Copy();
                newDiceRoll.Use(move);

                BGMoveOptions newMoveOptions = new BGMoveOptions(player, newBoardMap, newDiceRoll);

                if (move.DiceRoll == diceRoll.Roll1 && newMoveOptions.CanMoveWith(diceRoll.Roll2) ||
                    move.DiceRoll == diceRoll.Roll2 && newMoveOptions.CanMoveWith(diceRoll.Roll1))
                {
                    bothRollMoves.Add(move);
                }
                else if (move.DiceRoll == diceRoll.Roll1 && !newMoveOptions.CanMoveWith(diceRoll.Roll2))
                {
                    roll1OnlyMoves.Add(move);
                }
                else if (move.DiceRoll == diceRoll.Roll2 && !newMoveOptions.CanMoveWith(diceRoll.Roll1))
                {
                    roll2OnlyMoves.Add(move);
                }
            }

            if (bothRollMoves.Count > 0)
            {
                Moves = bothRollMoves;
            }
            else if (diceRoll.Roll1 > diceRoll.Roll2 && roll1OnlyMoves.Count > 0)
            {
                Moves = roll1OnlyMoves;
            }
            else if (diceRoll.Roll2 > diceRoll.Roll1 && roll2OnlyMoves.Count > 0)
            {
                Moves = roll2OnlyMoves;
            }
        }
    }
コード例 #2
0
    /// <summary>
    /// Gets a list of all moves that can be made for the specified player with the specified board and dice roll.
    /// </summary>
    private List <BGMove> GetMoves(BGPlayerID player, BGBoardMap board, BGDiceRoll diceRoll)
    {
        List <BGMove> moves = new List <BGMove>();

        if (player == BGPlayerID.None)
        {
            return(moves);
        }

        BGPoint home = board.GetHome(player);
        BGPoint jail = board.GetJail(player);

        BGPoint[] innerTable = board.GetInnerTable(player);
        BGPoint[] outerTable = board.GetOuterTable(player);

        // Find available moves.

        if (jail.Count > 0)
        {
            for (int roll = 1; roll <= 6; roll++)
            {
                if (diceRoll.CanUse(roll) && !outerTable[roll - 1].IsBlocking(player))
                {
                    moves.Add(new BGMove(jail, outerTable[roll - 1], roll));
                }
            }
        }
        else
        {
            for (int roll = 1; roll <= 6; roll++)
            {
                if (diceRoll.CanUse(roll))
                {
                    for (BGPointID point = BGPointID.Point1; point <= BGPointID.Point24; point++)
                    {
                        BGPoint from = board.GetPoint(point);

                        if (from.IsOccupiedBy(player))
                        {
                            BGPoint to = null;

                            if (player == BGPlayerID.Player1 && ((point - roll) >= BGPointID.Point1))
                            {
                                to = board.GetPoint(point - roll);
                            }
                            else if (player == BGPlayerID.Player2 && ((point + roll) <= BGPointID.Point24))
                            {
                                to = board.GetPoint(point + roll);
                            }

                            if (to != null && !to.IsBlocking(player))
                            {
                                moves.Add(new BGMove(from, to, roll));
                            }
                        }
                    }
                }
            }

            if (!outerTable.Any(point => point.IsOccupiedBy(player)))
            {
                // Get max distance from home.

                int maxDistance = 0;

                for (int i = 0; i < innerTable.Length; i++)
                {
                    if (innerTable[i].IsOccupiedBy(player))
                    {
                        maxDistance = i + 1;
                    }
                }

                // Find moves that can be used to bear off.

                for (int roll = 1; roll <= 6; roll++)
                {
                    if (diceRoll.CanUse(roll))
                    {
                        if (innerTable[roll - 1].IsOccupiedBy(player))
                        {
                            moves.Add(new BGMove(innerTable[roll - 1], home, roll));
                        }
                        else if (maxDistance > 0 && innerTable[maxDistance - 1].IsOccupiedBy(player) && roll >= maxDistance)
                        {
                            moves.Add(new BGMove(innerTable[maxDistance - 1], home, roll));
                        }
                    }
                }
            }
        }

        return(moves);
    }