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

NAME

Games::ABC_Path::Generator::FinalLayoutObj - represents a final layout.

VERSION

version 0.4.2

SYNOPSIS

    use Games::ABC_Path::Generator;

    my $gen = Games::ABC_Path::Generator->new({seed => 1});

    # Returns a Games::ABC_Path::Generator::FinalLayoutObj object.
    my $layout = $gen->calc_final_layout();

    my $A_xy = $layout->get_A_xy();

SUBROUTINES/METHODS

my $layout = Games::ABC_Path::Generator::FinalLayoutObj->new({%args});

Initializes a new layout. For internal use..

$layout->get_A_pos()

Returns the position of the letter 'A'.

$layout->get_A_xy()

Returns the (X,Y) coordinates of the letter A as a {x => $x, y => $y} hash reference.

$layout->get_cell_contents($index)

Returns the cell at index $index (where index is $Y*5 + $X).

my $letter = $layout->get_letter_at_pos({y => $y, x => $x});

Returns the letter at $y and $x .

$layout->as_string($args);

Represents the layout as string.

AUTHOR

Shlomi Fish, http://www.shlomifish.org/ .

BUGS

Please report any bugs or feature requests to bug-games-abc_path-generator at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-ABC_Path-Generator. 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::ABC_Path::Generator

You can also look for information at:

AUTHOR

Shlomi Fish <shlomif@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2019 by Shlomi Fish.

This is free software, licensed under:

  The MIT (X11) License

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/shlomif/abc-path/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SUPPORT

Perldoc

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

  perldoc Games::ABC_Path::Generator::FinalLayoutObj

Websites

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

Bugs / Feature Requests

Please report any bugs or feature requests by email to bug-games-abc_path-generator at rt.cpan.org, or through the web interface at https://rt.cpan.org/Public/Bug/Report.html?Queue=Games-ABC_Path-Generator. You will be automatically notified of any progress on the request by the system.

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/shlomif/abc-path

  git clone https://github.com/shlomif/abc-path