|
NAMEGames::Bingo::ColumnCollection - a collection class for holding columnsSYNOPSISmy $col = Games::Bingo::ColumnCollection-E<gt>new(); my $c = Games::Bingo::Column-E<gt>new(0, [1, 2, 3, 4, 5, 6, 7, 8, 9]); $col-E<gt>add_column($c1); my $d = $col-E<gt>get_column(1); my $e = $col-E<gt>get_random_column(); DESCRIPTIONThe ColumnCollection is used when building the bingo cards and is a temporary data structure for holding object of the class Column.The class is an encapsulated array, which is 1 indexed. METHODSnewThe constructor blesses and array and returns.divideThe divided method has nothing as such to do with the class apart from it is a helper method, which is used to taking a list of numbers (1-90 expected, see Games::Bingo).It then divided this list into 9 separate arrays of the following constallations:
From these arrays the Columns are built and the column collection is slowly populated, when done the column collection is returned. add_columnThis is a push like method, is can be used to add an additional to the collection.remove_columnThe method can remove a column specified by its index, the argument specifies this index.get_columnThe method returns a column specified by its index, the argument to this method is the index.The second argument is an indicator of whether the returned collection should be removed from the list, 1 for removed and 0 for not removing, the latter is the default. get_random_columnThis method returns a random columns, the optional parameter can be used to indicate whether the column should be removed from the list. 1 indicates a removed and nothing (the default) that nothing should be done.reset_columnsThe method uses the fact that the class contains Columns and a bit of polymorphy, so this method can be used to set the status of all Columns contained in the class. ' The parameter is the status which you want to set, either 1 or 0.count_columnsReturns the number of columns in G::B::Column object.SEE ALSO
TODOThe TODO file contains a complete list for the whole Games::Bingo project.ACKNOWLEDGEMENTSMy friend Allan helped me out with some of the algoritmic stuff and was in when this class was thought up.AUTHORJonas B. Nielsen, (jonasbn) - "<jonasbn@cpan.org>"COPYRIGHTGames-Bingo is (C) by Jonas B. Nielsen, (jonasbn) 2003-2015Games-Bingo is released under the artistic license 2.0
Visit the GSP FreeBSD Man Page Interface. |