The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Games::Domino - Interface to the Domino game.

VERSION

Version 0.11

DESCRIPTION

This is a very basic Domino game played by two players (Computer vs Human) at the moment. This is just an initial draft of Proof of Concept, also to get my head around the game which I have never played in my life before.There is a cheat flag which makes tiles for "Computer" visible to the other player "Human". Avoid this flag if possible.By default the cheat flag is turned off.There is a debug switch as well which is turned off by default. They are arranged like here before we shuffle to start the the game.

    [0 | 0]
    [0 | 1] [1 | 1]
    [0 | 2] [1 | 2] [2 | 2]
    [0 | 3] [1 | 3] [2 | 3] [3 | 3]
    [0 | 4] [1 | 4] [2 | 4] [3 | 4] [4 | 4]
    [0 | 5] [1 | 5] [2 | 5] [3 | 5] [4 | 5] [5 | 5]
    [0 | 6] [1 | 6] [2 | 6] [3 | 6] [4 | 6] [5 | 6] [6 | 6]

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();

SYNOPSIS

Below is the working code for the Domino game using the Games::Domino package. The game script 'play-domino.pl' is supplied with the distribution and on install , is available to play with.

    use strict; use warnings;
    use Games::Domino;

    $|=1;

    my ($response);
    do {
        my $game = Games::Domino->new({ debug => 1 });
        do { $game->play; $game->show; } until $game->is_over;
        $game->result;

        print {*STDOUT} "Do you wish to continue playing Domino with computer (Y/N)? ";
        $response = <STDIN>;
        $response =~ s/[\f\r\n]*$//g;

        while (defined($response) && ($response !~ /Y|N/i)) {
            print {*STDOUT} "Invalid response, please enter (Y/N). ";
            $response = <STDIN>;
            $response =~ s/[\f\r\n]*$//g;
        }
    } while (defined($response) && ($response =~ /Y/i));

    print {*STDOUT} "\nThank you.\n";

Once it is installed, it can be played on a terminal/command window as below:

    $ play-domino.pl

METHODS

play()

Pick a tile from the current player. If no matching tile found then picks it from the stock until it found one or the stock has only 2 tiles left at that time the game is over.

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();
    $game->play;

is_over()

Returns 1 or 0 depending whether the game is over or not.The game can be declared over in the following circumstances:

  • Any one of the two players have used all his tiles.

  • There are only two (2) tiles left in the bank.

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();
    do { $game->play; } until $game->is_over;

result()

Declares who is the winner against whom and by how much margin.

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();
    do { $game->play; } until $game->is_over;
    $game->result;

show()

Print the current tiles of Computer, Human and matched one.

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();
    do { $game->play; $game->show; } until $game->is_over;

as_string()

Returns all the unused tiles remained in the bank.

    use strict; use warnings;
    use Games::Domino;

    my $game = Games::Domino->new();
    do { $game->play; } until $game->is_over;
    print "DOMINO : $game\n\n";

AUTHOR

Mohammad S Anwar, <mohammad.anwar at yahoo.com>

REPOSITORY

https://github.com/Manwar/Games-Domino

BUGS

Please report any bugs or feature requests to bug-games-domino at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Domino. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Games::Domino

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2012 - 2015 Mohammad S Anwar.

This program is free software; you can redistribute it and / or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:

http://www.perlfoundation.org/artistic_license_2_0

Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License.By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.

If your Modified Version has been derived from a Modified Version made by someone other than you,you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.

This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.

This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement,then this Artistic License to you shall terminate on the date that such litigation is filed.

Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.