Chess::Piece::Bishop - an object representation of a bishop in a game of chess


Chess documentation  | view source Contained in the Chess distribution.

Index


NAME

Top

Chess::Piece::Bishop - an object representation of a bishop in a game of chess

SYNOPSIS

Top

    $bishop = Chess::Piece::Bishop->new("f1", "white", 
                                        "White King's bishop");
    $true = $bishop->can_reach("c4");
    $true = $bishop->can_reach("h3");
    $false = $bishop->can_reach("d4");

DESCRIPTION

Top

The Chess module provides a framework for writing chess programs with Perl. This class forms part of that framework, representing a bishop in a Chess::Game.

METHODS

Top

Construction

Constructs a new Chess::Piece::Bishop. Requires two scalar parameters containing the initial square and color of the piece. Optionally takes a third parameter containing a description of the piece.

Class methods

There are no class methods for this class.

Object methods

Overrides base class version. Returns a list of squares that this pawn can reach from its current position. See "reachable_squares()" in Chess::Piece for more details on this method.

DIAGNOSTICS

Top

This module produces no warning messages. See DIAGNOSTICS in Chess::Board or DIAGNOSTICS in Chess::Piece for possible errors or warnings the program may produce.

BUGS

Top

Please report any bugs to the author.

AUTHOR

Top

Brian Richardson <bjr@cpan.org>

COPYRIGHT

Top


Chess documentation  | view source Contained in the Chess distribution.