codebreaker_bo 0.1.1 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 393adc86b6476ae3b6814d68b20098f9b2274a4e7b5c0fecb9d1d3442b87f790
4
- data.tar.gz: cf97c28918c0378622e0755958edc3936fcd8ca206e6f83378b1825cf9a1f065
3
+ metadata.gz: 9944c5101dc90e5ff2ef8fa18e8692c76a17ee53377560ed1004d7ccf0431fd8
4
+ data.tar.gz: 9050baa0eeaaaee224a1b458d4c71eeff6269b57645eab0f35d33ca3901a60e7
5
5
  SHA512:
6
- metadata.gz: 40850e2c3c66f96c89baf0d2bdaa9059c69140ca94c0eced84cfbd7fb19f75db7f7f901d9eacb8736420994a76969931c2a0cbe36450c8ea9d2cfc51c8d1e921
7
- data.tar.gz: e8c21caa087d831258429e3d5e9f13bf3f2e2eb483bd54de43c5155b94f5f008b91a38371e1cbe2893f1e58fc2a97fda43d48af861c96b8ded59167288388a11
6
+ metadata.gz: e40e2ff6dee2172547206c1bb62da931b411675c4ba0a88c431a031d7d844666011080af6210406c2143fbd41c1aa22d302f2743d173e55c64e722c748b1b250
7
+ data.tar.gz: eccc9f39f593bd893e8f8b61fa9c6fee27a0fdc549d3d0c5c2b9963c4435319c60c783559cd18ec59a294fb898d45a57e6cfcfab199a91e8e4e86804b91ef959
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- codebreaker_bo (0.1.0)
4
+ codebreaker_bo (0.1.5)
5
5
  json (~> 2.6.1)
6
6
 
7
7
  GEM
data/data/statistic.yml CHANGED
@@ -0,0 +1,13 @@
1
+ ---
2
+ - :user_name: WEWEE
3
+ :difficulty: easy
4
+ :attempts_total: 15
5
+ :attempts_used: 15
6
+ :hints_total: 2
7
+ :hints_used: 2
8
+ - :user_name: TWTWTWT
9
+ :difficulty: medium
10
+ :attempts_total: 10
11
+ :attempts_used: 10
12
+ :hints_total: 1
13
+ :hints_used: 1
data/e_attempts ADDED
@@ -0,0 +1,20 @@
1
+
2
+ From: /home/bo/rubypr/codebreaker/lib/codebreaker/Console.rb:75 Console#game_process:
3
+
4
+ 74: def game_process
5
+ => 75: binding.pry
6
+ 76: if !game.decrease_attempts == game.secret_code && 'lose'
7
+ 77: p game
8
+ 78: game_actions
9
+ 79: end
10
+ 80:
11
+ 81: # if !game.used_attempts.nil? && !game.used_attempts.zero?
12
+ 82: # p game
13
+ 83: # game_actions
14
+ 84: # else
15
+ 85: # p 'attempts finished'
16
+ 86: # lose
17
+ 87: # new_process
18
+ 88: # end
19
+ 89: end
20
+
@@ -1,15 +1,27 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative 'validation'
3
4
  module Codebreaker
4
5
  class BaseClass
5
- def valid?
6
- @errors.empty?
6
+ include Validator
7
+ attr_accessor :errors
8
+
9
+ def initialize
10
+ @errors = []
7
11
  end
8
12
 
9
- private
13
+ def handle_errors(text)
14
+ @errors << text
15
+ end
10
16
 
11
17
  def show_errors
12
- @errors.each { |error| p error } unless valid?
18
+ data = errors.flatten
19
+ clear_errors
20
+ data
21
+ end
22
+
23
+ def clear_errors
24
+ @errors = []
13
25
  end
14
26
  end
15
27
  end
@@ -15,4 +15,5 @@ module Constants
15
15
  LENGTH_RANGE = (3..20).freeze
16
16
  RANGE = (1..6).freeze
17
17
  NUMBER_OF_DIGITS = 4
18
+ PATH = './data/statistic.yml'
18
19
  end
@@ -1,33 +1,50 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require './bin/config'
4
-
5
3
  module Codebreaker
6
4
  class Game < BaseClass
7
- attr_accessor :user_hints
8
- attr_reader :secret_code, :total_attempts, :used_attempts, :level, :errors
5
+ attr_reader :secret_code, :total_attempts, :used_attempts, :total_hints, :used_hints, :stats, :level
9
6
 
10
7
  def initialize
11
- @errors = []
12
- @secret_code = generate_code
13
8
  super()
9
+ @secret_code = generate_code
10
+ @stat = Statistic.new
11
+ end
12
+
13
+ def decrease_attempts
14
+ return secret_code && 'lose' if @used_attempts.zero?
15
+
16
+ @used_attempts -= 1
17
+ end
18
+
19
+ def save_stats
20
+ hash = { user_name: @player_name, difficulty: level, attempts_total: total_attempts, attempts_used: used_attempts,
21
+ hints_total: total_hints, hints_used: used_hints }
22
+ @stat.collect_statistic(hash)
23
+ end
24
+
25
+ def load_stats
26
+ @stat.show_statistic
14
27
  end
15
28
 
16
29
  def create_settings(name, level)
17
30
  player_name(name)
18
31
  create_level(level)
19
- show_errors
32
+
33
+ show_errors unless valid?
20
34
  end
21
35
 
22
36
  def player_name(name)
23
- @player_name = User.new(name).name
37
+ user = User.new(name)
38
+ return @player_name = user.name if user.valid?
39
+
40
+ errors << user.errors
24
41
  end
25
42
 
26
43
  def accept_level(level)
27
44
  level = level.upcase
28
45
  Object.const_get "Constants::#{level}"
29
46
  rescue StandardError
30
- @errors << 'entered level is not present'
47
+ handle_errors('entered level is not present')
31
48
  nil
32
49
  end
33
50
 
@@ -37,76 +54,55 @@ module Codebreaker
37
54
  return unless @level.nil?
38
55
 
39
56
  @level = level
40
- @user_hints = choice_level[:hints]
57
+ @used_hints = choice_level[:hints]
58
+ @total_hints = choice_level[:hints]
41
59
  @total_attempts = choice_level[:attempts]
42
60
  @used_attempts = choice_level[:attempts]
43
61
  end
44
62
 
45
63
  def check_guess(numbers)
46
- return @errors unless guess_valid?(numbers)
64
+ return show_errors unless guess_valid?(numbers)
47
65
 
48
- decrease_attempts
49
66
  array_choose_numbers = numbers.to_s.each_char.map(&:to_i)
50
67
  return win if secret_code == array_choose_numbers
51
68
 
52
- result = []
53
- codebreaker_result(array_choose_numbers, result)
54
- result.join
69
+ decrease_attempts
70
+ codebreaker_result(array_choose_numbers)
55
71
  end
56
72
 
57
73
  def use_hint
58
- return 'Hints are over' if @user_hints.zero?
74
+ return 'Hints are over' if @used_hints.zero?
59
75
 
60
- @user_hints -= 1
76
+ @used_hints -= 1
61
77
  secret_code.sample
62
78
  end
63
79
 
64
- def save_statistic
65
- stats = {
66
- user_name: @player_name,
67
- game_status: 'WIN',
68
- difficulty: level,
69
- attempts_total: total_attempts,
70
- attempts_used: used_attempts,
71
- hints_total: user_hints
72
- }
73
-
74
- File.open('./data/statistic.yml', 'a') { |f| f.write YAML.dump(stats.flatten) }
80
+ def win
81
+ "#{Constants::PLUS * Constants::WIN_NUMBER}(win)"
75
82
  end
76
83
 
77
84
  private
78
85
 
79
- def guess_valid?(match_code)
80
- @errors << 'match_code not number' unless match_code.is_a?(Numeric)
81
-
82
- input_data = match_code.to_s
83
- @errors << 'invalid_input_data' unless input_data =~ Constants::DESIRED_NUMBER
84
-
85
- valid?
86
- end
87
-
88
86
  def generate_code
89
87
  Array.new(Constants::NUMBER_OF_DIGITS) { rand Constants::RANGE }
90
88
  end
91
89
 
92
- def win
93
- "#{Constants::PLUS * Constants::WIN_NUMBER}(win)"
94
- end
95
-
96
- def codebreaker_result(array_choose_numbers, result)
90
+ def codebreaker_result(array_choose_numbers)
91
+ full_match = []
97
92
  array_choose_numbers.each_with_index do |code, index|
98
93
  next unless code == secret_code[index]
99
94
 
100
- result << Constants::PLUS
95
+ full_match << code
101
96
  array_choose_numbers[index] = nil
102
97
  end
103
- array_choose_numbers.compact.uniq.each { |number| result << Constants::MINUS if secret_code.include? number }
98
+ partial_match = array_choose_numbers.compact.uniq.select { |number| secret_code.include? number }
99
+ partial_match = partial_match.reject { |number| full_match.include? number }
100
+ create_result(full_match, partial_match)
104
101
  end
105
102
 
106
- def decrease_attempts
107
- return secret_code && 'lose' if @used_attempts.zero?
108
-
109
- @used_attempts -= 1
103
+ def create_result(full_match, partial_match)
104
+ result = full_match.map { Constants::PLUS } + partial_match.map { Constants::MINUS }
105
+ result.join
110
106
  end
111
107
  end
112
108
  end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Codebreaker
4
+ class Statistic
5
+ def collect_statistic(hash)
6
+ @stat = [{
7
+ user_name: hash[:user_name],
8
+ difficulty: hash[:difficulty],
9
+ attempts_total: hash[:attempts_total],
10
+ attempts_used: hash[:attempts_used],
11
+ hints_total: hash[:hints_total],
12
+ hints_used: hash[:hints_used]
13
+ }]
14
+ save_statistic
15
+ end
16
+
17
+ def show_statistic
18
+ @items = YAML.load_file(Constants::PATH)
19
+ @items.sort_by! { |game| [game[:difficulty], game[:attempts_used], game[:hints_used]] }
20
+ @items.each_with_index.map do |stat, index|
21
+ [index.next, stat[:user_name], stat[:difficulty], stat[:attempts_total],
22
+ stat[:attempts_used], stat[:hints_total], stat[:hints_used]]
23
+ end
24
+ end
25
+
26
+ def save_statistic
27
+ yaml_data = YAML.load_file(Constants::PATH)
28
+ yaml_data = [] if yaml_data.nil?
29
+ yaml_data << @stat
30
+ File.open(Constants::PATH, 'r+') { |file| file.write YAML.dump(yaml_data.flatten) }
31
+ end
32
+ end
33
+ end
@@ -1,25 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'game'
4
-
5
3
  module Codebreaker
6
4
  class User < BaseClass
7
- attr_accessor :errors
8
5
  attr_reader :name
9
6
 
10
7
  def initialize(player_name)
11
- @errors = []
12
- validation_name(player_name)
13
- @errors.empty? ? @name = player_name : show_errors
14
8
  super()
15
- end
16
-
17
- def validation_name(player_name)
18
- if player_name.is_a?(String)
19
- @errors << 'error min length or max length' unless Constants::LENGTH_RANGE.include?(player_name.length)
20
- else
21
- @errors << 'name is not string'
22
- end
9
+ validation_name(player_name)
10
+ @name = player_name if valid?
23
11
  end
24
12
  end
25
13
  end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Codebreaker
4
+ module Validator
5
+ def valid?
6
+ errors.empty?
7
+ end
8
+
9
+ private
10
+
11
+ def guess_valid?(match_code)
12
+ handle_errors('match code not number') unless match_code.is_a?(Numeric)
13
+
14
+ input_data = match_code.to_s
15
+ handle_errors('invalid_input_data') unless input_data =~ Constants::DESIRED_NUMBER
16
+
17
+ valid?
18
+ end
19
+
20
+ def validation_name(player_name)
21
+ if player_name.is_a?(String)
22
+ errors << 'error min length or max length' unless Constants::LENGTH_RANGE.include?(player_name.length)
23
+ else
24
+ errors << 'name is not string'
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Codebreaker
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.5'
5
5
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Codebreaker
4
+ require 'codebreaker/version'
5
+ require 'codebreaker/constant'
6
+ require 'codebreaker/base_class'
7
+ require 'codebreaker/game'
8
+ require 'codebreaker/user'
9
+ require 'codebreaker/validation'
10
+ require 'codebreaker/statistic'
11
+ end
data/s ADDED
@@ -0,0 +1,14 @@
1
+
2
+ From: /home/bo/rubypr/codebreaker/lib/codebreaker/console.rb:95 Console#game_process:
3
+
4
+ 91: def game_process
5
+ 92: if !game.used_attempts.nil? && !game.used_attempts.zero?
6
+ 93: game_actions
7
+ 94: else
8
+ => 95: binding.pry
9
+ 96: p 'attempts finished'
10
+ 97: lose
11
+ 98: new_process
12
+ 99: end
13
+ 100: end
14
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codebreaker_bo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oladko Bohdan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-24 00:00:00.000000000 Z
11
+ date: 2022-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -173,12 +173,16 @@ files:
173
173
  - README.md
174
174
  - Rakefile
175
175
  - data/statistic.yml
176
+ - e_attempts
177
+ - lib/codebreaker.rb
176
178
  - lib/codebreaker/base_class.rb
177
- - lib/codebreaker/console.rb
179
+ - lib/codebreaker/constant.rb
178
180
  - lib/codebreaker/game.rb
181
+ - lib/codebreaker/statistic.rb
179
182
  - lib/codebreaker/user.rb
183
+ - lib/codebreaker/validation.rb
180
184
  - lib/codebreaker/version.rb
181
- - lib/constant.rb
185
+ - s
182
186
  - sig/codebreaker.rbs
183
187
  homepage: https://github.com/bogdansev1/codebreaker_gem
184
188
  licenses:
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require './bin/config'
4
-
5
- # u = Codebreaker::User.new('Bpgdan')
6
- # p u
7
-
8
- # g = Codebreaker::Game.new
9
- # name = gets.chomp
10
- # level = gets.chomp
11
- # g.create_settings('an', 'easy')
12
- # p g
13
- # p g.check_guess(4444)
14
- # p g.used_attempts