Sha256: 365e5969c02ab5fbe8a1115ec30e79759f566a72941c294a220cfeb5185f3c2f

Contents?: true

Size: 778 Bytes

Versions: 7

Compression:

Stored size: 778 Bytes

Contents

require "colorized_string";
ColorizedString.colors;   
ColorizedString.modes;  
module Constants 
  protected;
  NTRY_TO_SYM = { 
    'p' => :PAPER, 
    'r' => :ROCK, 
    's' => :SCISSORS 
  }; 
  VALID_ENTRIES = NTRY_TO_SYM.keys; 
  COMPUTER_CHOICES = NTRY_TO_SYM.values;
  WINNERS = [
    [:SCISSORS, :PAPER], 
    [:PAPER, :ROCK], 
    [:ROCK, :SCISSORS]
  ]; # format: player choice, computer choice
  LOSERS = WINNERS.map { |i,j| [j,i] }; # this will take the original WINNERS array and flip the symbols, thus returning a loss for the user/player
  INIT_STRINGS = [
    ColorizedString["You are about to enter a rock-paper-scissors best of 3 match."].colorize(:green), 
    ColorizedString["Press the return/enter key to continue..."].colorize(:green), 
    ""
  ];
end;

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-1.8.1 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.8.0 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.7.9 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.7.8 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.7.7 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.7.6 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.7.5 lib/ref/Constants.rb