Sha256: 0891d92352f61b4037c9868197e41b4cd699d9f850390ac9f28b2a295aba035b
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
require 'dmorrill10-utils/class' require File.expand_path('../pile_of_cards', __FILE__) # List of community board cards. class BoardCards < PileOfCards exceptions :too_many_board_cards attr_reader :round def initialize() next_round! end def next_round! @round = if @round then @round + 1 else 0 end self[@round] = PileOfCards.new self end def push(new_element) self[@round].push new_element self end alias_method :<<, :push # @return [String] The string representation of these board cards. def to_s if all? { |pile_for_round| pile_for_round.empty? } '' else '/' + (map { |pile_for_round| pile_for_round.join }).join('/') end end # @see #to_s alias_method :to_str, :to_s # @return [String] The string representation of these board cards. def to_acpc if all? { |pile_for_round| pile_for_round.empty? } '' else '/' + (map do |pile_for_round| (pile_for_round.map { |card| card.to_acpc }).join end).join('/') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acpc_poker_types-0.0.2 | lib/acpc_poker_types/board_cards.rb |