class Codebreaker::Console
Public Instance Methods
attempt()
click to toggle source
# File lib/codebreaker/console.rb, line 15 def attempt answer = gets.chomp if /^[1-6]*$/ === answer guess(answer) elsif answer == "h" hint else puts "Enter please only 4 digits" attempt end rescue puts "Enter please only 4 digits size" attempt end
game_over()
click to toggle source
# File lib/codebreaker/console.rb, line 68 def game_over puts "Game over" play_again end
guess(answer)
click to toggle source
# File lib/codebreaker/console.rb, line 31 def guess(answer) if @game.attempts > 1 res = @game.guess_code(answer) if res == ["+", "+", "+", "+"] p res puts "Huraaah" game_over else p res puts "Left attempts: #{@game.attempts}" puts "-------------------" attempt end else res = @game.guess_code(answer) if res == ["+", "+", "+", "+"] p res puts "Huraaah" game_over else p res game_over end end end
hint()
click to toggle source
# File lib/codebreaker/console.rb, line 57 def hint if @game.hints > 0 hint = @game.hint p hint attempt else puts "There is no hints avaliable" attempt end end
play_again()
click to toggle source
# File lib/codebreaker/console.rb, line 73 def play_again puts "Do you want to play again? Press y/n" answer = gets.chomp start_game if answer == "y" end
start_game()
click to toggle source
# File lib/codebreaker/console.rb, line 7 def start_game @game = Codebreaker::Game.new puts "Welcome, let's play" puts "Enter 4 digits from 1 to 6 to guess the secret code" puts "Type 'h' to find out 1 number of the secret code" attempt end