Sha256: 1662fb79ccfb8bd2e6f6c9e8374c0fc8c98d1a5ff4d5f65b29597deccf21faff

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

module PrivateMethods
  class << self
    def player_choice
      loop do
        print "Choose: Rock (r), Paper (p), or Scissors (s): "
        choice = gets.chomp.downcase
        if Constants::NTRY_TO_SYM.key?(choice)
          return Constants::NTRY_TO_SYM[choice]
        elsif choice != Constants::VALID_ENTRIES
          puts "That entry is invalid. Please re-enter."
        else
          return nil
        end
        # # one may also do this:
        # case
        # when Constants::NTRY_TO_SYM.key?(choice)
        #   return Constants::NTRY_TO_SYM[choice]
        # when choice != Constants::VALID_ENTRIES
        #   puts "That entry is invalid. Please re-enter." 
        # end
      end 
    end 
    def player_outcome(plays)
      return :WIN  if Constants::WINNERS.include?(plays)
      return :LOSE if Constants::LOSERS.include?(plays)
      return :TIE  if !:WIN | !:LOSE
    end 
    def final_outcome(pl,co) 
      return :WIN  if pl > co 
      return :LOSE if pl < co
      # return :TIE  if pl = co 
      # there will never be a tie for the final outcome due to the code in the play() method
    end 
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rpsg-0.0.9 lib/PrivateMethods.rb
rpsg-0.0.8 lib/PrivateMethods.rb
rpsg-0.0.7 lib/PrivateMethods.rb
rpsg-0.0.6 lib/PrivateMethods.rb
rpsg-0.0.5 lib/PrivateMethods.rb
rpsg-0.0.4 lib/PrivateMethods.rb
rpsg-0.0.3 lib/PrivateMethods.rb