Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.195.654 Times

Games::Checkers 0.1.0

  Date Added: April 05, 2010  |  Visits: 1.421

Games::Checkers

Report Broken Link
Printer Friendly Version


Product Homepage
Download (124 downloads)



SYNOPSIS # automatical computer-vus-computer play script use Games::Checkers::Constants; use Games::Checkers::Board; use Games::Checkers::BoardTree; my $board = new Games::Checkers::Board; my $color = White; my $numMoves = 0; print $board->dump; while ($board->canColorMove($color)) { sleep(2); # allow 100 moves for each player die "Automatical drawn" if $numMoves++ == 200; my $boardTree = new Games::Checkers::BoardTree ($board, $color, 2); # think 2 steps ahead my $move = $boardTree->chooseBestMove; # or: chooseRandomMove $board->transform($move); print $move->dump, "n", $board->dump; $color = ($color == White)? Black: White; } print "n", ($color == White? "Black": "White"), " won.n"; ABSTRACT ^ Games::Checkers is a set of Perl classes implementing the Checkers game play. Several national rule variants are supported. A basic AI heuristics is implemented using the Minimax algorithm. Replay of previously recorded games is supported too. DESCRIPTION ^ This package is intended to provide complete infrastructure for interactive and automatic playing and manipulating of Checkers games. Some features are not implemented yet..

Requirements: No special requirements
Platforms: Linux
Keyword: Checkers Color Gamescheckers Libraries Perl Play Programming White
Users rating: 0/10

License: Freeware Size: 286.72 KB
USER REVIEWS
More Reviews or Write Review


GAMES::CHECKERS RELATED
Libraries  -  Imager::Color 0.54
Imager::Color is a Perl module with color handling for Imager. SYNOPSIS $color = Imager::Color->new($red, $green, $blue); $color = Imager::Color->new($red, $green, $blue, $alpha); $color = Imager::Color->new("#C0C0FF"); # html color...
849.92 KB  
Board Games  -  Free Chess 0.0.6.4
Free Chess Game allows you to play as White or Black, with all regular chess rules such as three move repetition and 50 move rule and En Passant. Save Games and retrieve PGN and FEN strings.
 
Puzzles  -  FreeSweetGames Mosaic 3. 2. 1940
Pieces of different color appears on the play area. Your target is get rid of them, having made a one-color line on a vertical, horizontal or diagonal. You can move any one piece, if it can reach an empty seat, moving horizontally or vertically on...
674 KB  
Educational Games  -  ColorMosaic 3. 1. 2007
Pieces of different color appears on the play area. Your target is get rid of them, having made one-color lines on a vertical, horizontal or diagonal. You can move any piece, if it can reach an empty seat, moving horizontally or vertically on free...
630 KB  
Programming  -  devkitPro 1.5.7
This project is for homebrew console development tools based on the gnu compiler collection with additional tools and libraries to aid programming each supported console. The windows variants are built with MinGW.
444.26 KB  
Libraries  -  Graphics::ColorPicker 0.10
Graphics::ColorPicker is a Perl module for WYSIWYG web applications that allow selection of HEX color numbers. SYNOPSIS use Graphics::ColorPicker; or require Graphics::ColorPicker; make_page($path_to_images); send_page($html_txt,$type);...
112.64 KB  
Libraries  -  Inline-API 0.44
Inline-API is a Perl module that teach you how to bind a programming language to Perl using Inline.pm. SYNOPSIS #!/usr/bin/perl use Inline Foo; say_it(foo); # Use Foo to print "Hello, Foo" __Foo__ foo-sub say_it { foo-my $foo =...
91.14 KB  
Libraries  -  perlfaq3 5.8.8
perlfaq3 Perl module contains programming tools. How do I do (anything)? Have you looked at CPAN (see perlfaq2)? The chances are that someone has already written a module that can solve your problem. Have you read the appropriate manpages?...
12.2 MB  
Utilities  -  Little RGB Color Picker 2.0
Select a color from the palette and this handy little utility displays the html hex code and the RGB values for that color. Fine tune the color using the sliding controls. Also shows a color sample. Copying the codes to the clipboard is just a...
1.2 MB  
Board Games  -  Orneta Checkers for Smartphone 2002 1.0.1
Orneta Checkers is the classic board game of Checkers on your Windows Mobile based Smartphone. Challenge your strategic skills with this relaxing game. Now you can enjoy the game of checker anywhere you may be, directly from your cellular phone....
75 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB