NAME
Games::Bowling::Scorecard::Frame - one frame on a scorecard
VERSION
version 0.102
DESCRIPTION
A frame is one attempt to knock down all ten pins -- unless it's the tenth frame, in which case it's so goofy that you need to use a different class, Games::Bowling::Scorecard::Frame::TenPinTenth. A frame is done when you've bowled twice or knocked down all the pins, and it's pending until its score can be definitively be stated.
METHODS
new
This method returns a new frame object.
record
$frame->record($ball);
This method records a single ball against the frame. This method is used for both the current frame and for pending frames. It updates the frame's score and whether the frame is done or pending.
roll_ok
$frame->roll_ok($ball);
This method asserts that given value is an acceptable number to score next in this frame. It checks that:
* the frame is not already done
* $ball is defined, an integer, and between 0 and 10
* $ball would not bring the total number of pins downed above 10
score
This method returns the current score for the frame, even if the frame is not done or is pending further balls.
is_pending
This method returns true if the frame is pending more balls -- that is, it returns true for strikes or spares which have not yet recorded the results of subsequent balls.
is_done
This method returns true if the frame is done.
balls
This method returns the balls recorded against the frame, each ball returned as the number of pins it knocked down. In scalar context, it returns the number of balls recoded against the frame.
AUTHOR
Ricardo SIGNES, <rjbs at cpan.org>
BUGS
Please report any bugs or feature requests to the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Bowling-Scorecard. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT & LICENSE
Copyright 2007 Ricardo SIGNES, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.