Sha256: fa97d97373bbd34c70d18f1ccee178b51d45f8006ab8e12619e8361f53bbe4ec

Contents?: true

Size: 1.19 KB

Versions: 16

Compression:

Stored size: 1.19 KB

Contents

require "colorized_string"
ColorizedString.colors   
ColorizedString.modes  
module PrivateMethods
  class << self
    def player_choice
      loop do
        print ColorizedString["Choose rock (r), paper (p) or scissors (s): "].colorize(:green)
        choice = gets.chomp.downcase
        if Constants::NTRY_TO_SYM.key?(choice)
          return Constants::NTRY_TO_SYM[choice]
        elsif choice != Constants::VALID_ENTRIES
          puts ColorizedString["That entry is invalid. Please re-enter."].colorize(:red) 
        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 ColorizedString["That entry is invalid. Please re-enter."].colorize(:green) 
        # 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 
    end 
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-2.8.7 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.6 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.5 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.4 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.3 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.2 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.1 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.8.0 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.9 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.8 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.7 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.6 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.5 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.4 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.3 lib/PrivateMethods.rb
PlayRockPaperScissorsGame-2.7.2 lib/PrivateMethods.rb