Games::SGF::Tournament is a Perl module for tournament statistics generator.
SYNOPSIS
use CGI qw / :html /;
use Games::SGF::Tournament;
my $t = Games::SGF::Tournament->new();
print html(body($t->score()));
Smart Go Format (SGF) is a file format used to store game records of two player board games. This module used to collect tournament information from a set of SGF files and produce statistic HTML tables for creating WWW tournament pages.
INTERFACE
Games::SGF::Tournament is a class with following methods:
new
The constructor. Optional parameters are:
sgf_dir
Path to SGF files representing the tournament. Default: current directory.
base_url
Base URL to prefix file names of SGF files. Default: empty string.
games
Returns a table of played games in chronological order with hyperlinks to SGF files.
scores
Returns a table of players descending by score.
Product's homepage
Requirements:
· Perl