I'm writing a simulation in Python for a dice game, and am trying to find the best way to handle the following situation in an Object Oriented manner.
I have a Dice class that handles rolling the dice and reporting things about the dice. This class's methods include a roll()
method which modifies the dice values, and various reporting methods that describe the state of the dice, such as have_n_of_a_kind()
, is_scoring_combination()
, and get_roll_value()
.
There are two classes which make use of this Dice class. The Player, controlled directly by a human, is untrusted to always make legal moves. There is also a Turn class which enforces the rules of the game.
So then, both the Player and Turn class need to be able to ask the Dice about its values by calling the state describing methods, but the Player cannot be allowed to directly call the roll()
method, because the human Player might roll when it is not supposed to.
Is there a good way for me to allow the Turn class to call a Dice object's roll()
method but not allow a Player to do so?