Sha256: e07ce84bf66799705693f297a828ffa40162c8f7c46f6d436ec6f55675097819

Contents?: true

Size: 628 Bytes

Versions: 6

Compression:

Stored size: 628 Bytes

Contents

protected;
module Constants 
  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 = [
    "You are about to enter a rock-paper-scissors best of 3 match.", 
    "Press the return/enter key to continue...", 
    ""
  ];
end;

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-1.4.8 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.4.7 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.4.6 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.4.5 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.4.4 lib/ref/Constants.rb
PlayRockPaperScissorsGame-1.4.3 lib/ref/Constants.rb