forked from AdaGold/word-guess
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
final project, previous commits not available because I cloned the wr… #25
Open
AngelaPoland
wants to merge
1
commit into
Ada-C9:master
Choose a base branch
from
AngelaPoland:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
|
||
word_corpus_array = ["strings", "things", "icing", "imagination", "ocean", "jungle", "fairy", "desk", "tart", "chair", "mountain", "beach", "fridge", "fancy", "river", "mushroom", "books", "sticker", "mango", "street", "lucky", "paper", "crystal", "plant", "cactus", "author", "ship", "canoe", "happy", "jump"] | ||
|
||
|
||
# This method choses a word at random from the word_corpus_array | ||
|
||
def word_selection (corpus_array) | ||
target_word = corpus_array.sample | ||
return target_word | ||
end | ||
|
||
# This method takes the length of the selected word and generates an | ||
# array of blanks of the same length. | ||
def generate_solution_array (letter_array_length) | ||
array_o_blanks = [] | ||
letter_array_length.times do | ||
blank = "_" | ||
array_o_blanks << blank | ||
end | ||
return array_o_blanks | ||
end | ||
|
||
=begin This suite of methods uses the two private methods above | ||
along with the .length method and .split method to choose a word | ||
from the word corpus array and convert it into the input the values | ||
that an instance of the Solution class needs. | ||
=end | ||
|
||
our_target_word = word_selection(word_corpus_array) | ||
our_target_word_array = our_target_word.split('') | ||
target_length = our_target_word_array.length | ||
solution_array = generate_solution_array(target_length) | ||
|
||
|
||
|
||
class Solution | ||
attr_accessor :guess_word, :guess_word_array, :guess_word_length, :guess_solution_array, :failed_guess_count, :fails_allowed | ||
def initialize (guess_word, guess_word_array, guess_word_length, guess_solution_array) | ||
@guess_word = guess_word | ||
@guess_word_array = guess_word_array | ||
@guess_word_length = guess_word_length | ||
@guess_solution_array = guess_solution_array | ||
@failed_guess_count = 0 | ||
@fails_allowed = 5 | ||
@piranhas = [ | ||
" ><(((('> ", | ||
" ><(((('> ><(((('> ", | ||
" ><(((('> ><(((('> ><(((('> ", | ||
" ><(((('> ><(((('> ><(((('> ><(((('> ", | ||
" ><(((('> ><(((('> ><(((('> ><(((('> ><(((('> " | ||
] | ||
end | ||
|
||
def identify_match_locations(user_guess) | ||
iterations = @guess_word_length - 1 | ||
match_position_array = [] | ||
for i in 0..iterations | ||
if @guess_word_array[i] == user_guess | ||
match_position = i | ||
match_position_array << match_position | ||
end | ||
end | ||
return match_position_array | ||
end | ||
|
||
def guess_succeed_or_fail(array_of_matches_found) | ||
if array_of_matches_found.none? | ||
#the puts statement below is temporary and just for testing. | ||
puts "\nYour guess failed.\n" | ||
@failed_guess_count += 1 | ||
else | ||
puts "\nYou guessed a correct letter!\n" | ||
end | ||
end | ||
|
||
def replace_blank_with_successful_guess(identified_match_positions, user_guess) | ||
original_guess_solution_array = @guess_solution_array | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is never used |
||
identified_match_positions.each do |location| | ||
@guess_solution_array.insert(location, user_guess) | ||
@guess_solution_array.delete_at(location + 1) | ||
end | ||
end | ||
|
||
def piranhas | ||
puts "Now, a school of #{@failed_guess_count} piranha(s) has come to eat you!" | ||
puts @piranhas[@failed_guess_count - 1] | ||
end | ||
|
||
def guesses_left | ||
guesses_remaining = @fails_allowed - @failed_guess_count | ||
puts "\n\nYou have #{guesses_remaining} failed guess(es) remaining." | ||
return guesses_remaining | ||
end | ||
|
||
def test_for_loss | ||
if @failed_guess_count == 5 | ||
#These 'Puts' statements are temporary, for testing. | ||
puts "\nThe piranhas ate you! You have lost!" | ||
exit | ||
#puts "The piranhas are circling, but you're still alive." | ||
end | ||
end | ||
|
||
def check_for_win | ||
if !@guess_solution_array.include?("_") | ||
#Temporary output for TESTING | ||
puts "\nYou have survived the piranha attack! You win." | ||
#puts "The Pirhanas are getting hungrier!" | ||
exit | ||
end | ||
end | ||
end | ||
|
||
|
||
class GuessRecord | ||
attr_accessor :array_of_guessed_letters | ||
|
||
def initialize | ||
@array_of_guessed_letters = [] | ||
end | ||
|
||
|
||
def update_guess_array (guessed_letter) | ||
@array_of_guessed_letters << guessed_letter | ||
end | ||
|
||
def get_number_of_guesses | ||
number_of_guesses = @array_of_guessed_letters.length | ||
# puts "You have made #{number_of_guesses} guess(es).\n" | ||
return number_of_guesses | ||
end | ||
|
||
end | ||
|
||
# STANDALONE METHOD FOR GUESS SOLICITATION | ||
|
||
def solicit_guess | ||
puts "Please guess a letter: " | ||
guess = gets.chomp | ||
end | ||
|
||
# INSTANTIATE NECESSARY CLASSES | ||
|
||
test_solution = Solution.new(our_target_word, our_target_word_array, target_length, solution_array) | ||
|
||
test_guess_record = GuessRecord.new | ||
|
||
# PROCEDURE FOR RENDERING INITIAL DISPLAY | ||
puts "\n\n" | ||
puts "Welcome to Word Guessing Game!\n" | ||
puts "If you guess wrong, piranhas will start to appear and if you lose, they will eat you! No pressure or anything.\n\n" | ||
puts "________________________________________\n\n" | ||
puts "#{solution_array}"#solution_array {Note -- not processed via class} | ||
puts "\n\nYou get #{test_solution.fails_allowed} guesses!\n\n" | ||
|
||
#Until (win || loss) do | ||
|
||
until test_solution.test_for_loss || test_solution.check_for_win do | ||
|
||
|
||
player_guess = solicit_guess | ||
|
||
test_guess_record.update_guess_array(player_guess) | ||
|
||
puts "Here are the letters you've guessed so far: #{test_guess_record.array_of_guessed_letters}" | ||
|
||
first_match_array = test_solution.identify_match_locations(player_guess) | ||
# puts "#{test_solution.guess_word}" #this shows the solution word | ||
|
||
if !test_solution.guess_succeed_or_fail(first_match_array) | ||
test_solution.replace_blank_with_successful_guess(first_match_array, player_guess) | ||
end | ||
|
||
print test_solution.guess_solution_array | ||
|
||
test_solution.check_for_win | ||
|
||
test_guess_record.get_number_of_guesses | ||
|
||
#piranhas_needed = test_guess_record.get_number_of_guesses | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the reason this wasn't working is that it counts correct guesses |
||
|
||
test_solution.test_for_loss | ||
|
||
test_solution.guesses_left | ||
|
||
test_solution.piranhas | ||
|
||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The class name here is not great. Objects made from this aren't solutions, they are tracking progress against a secret word. So maybe
SecretWord
orWordGuess
would make sense. It's also mixing logic with gameplay features and output.