Sha256: 6818b78f59f3c2cd4a902abc8e5e7194435190163dfb346120be5899aa54cfb4

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 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 
      # there will never be a tie for the final outcome due to the code in the play() method
    end 
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rpsg-0.0.2 lib/PrivateMethods.rb
rpsg-0.0.1 lib/PrivateMethods.rb