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 +4 -4
- data/Gemfile.lock +1 -1
- data/data/statistic.yml +13 -0
- data/e_attempts +20 -0
- data/lib/codebreaker/base_class.rb +16 -4
- data/lib/{constant.rb → codebreaker/constant.rb} +1 -0
- data/lib/codebreaker/game.rb +44 -48
- data/lib/codebreaker/statistic.rb +33 -0
- data/lib/codebreaker/user.rb +2 -14
- data/lib/codebreaker/validation.rb +28 -0
- data/lib/codebreaker/version.rb +1 -1
- data/lib/codebreaker.rb +11 -0
- data/s +14 -0
- metadata +8 -4
- data/lib/codebreaker/console.rb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9944c5101dc90e5ff2ef8fa18e8692c76a17ee53377560ed1004d7ccf0431fd8
|
4
|
+
data.tar.gz: 9050baa0eeaaaee224a1b458d4c71eeff6269b57645eab0f35d33ca3901a60e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e40e2ff6dee2172547206c1bb62da931b411675c4ba0a88c431a031d7d844666011080af6210406c2143fbd41c1aa22d302f2743d173e55c64e722c748b1b250
|
7
|
+
data.tar.gz: eccc9f39f593bd893e8f8b61fa9c6fee27a0fdc549d3d0c5c2b9963c4435319c60c783559cd18ec59a294fb898d45a57e6cfcfab199a91e8e4e86804b91ef959
|
data/Gemfile.lock
CHANGED
data/data/statistic.yml
CHANGED
data/e_attempts
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
[1mFrom:[0m /home/bo/rubypr/codebreaker/lib/codebreaker/Console.rb:75 Console#game_process:
|
3
|
+
|
4
|
+
[1;34m74[0m: [32mdef[0m [1;34mgame_process[0m
|
5
|
+
=> [1;34m75[0m: binding.pry
|
6
|
+
[1;34m76[0m: [32mif[0m !game.decrease_attempts == game.secret_code && [31m[1;31m'[0m[31mlose[1;31m'[0m[31m[0m
|
7
|
+
[1;34m77[0m: p game
|
8
|
+
[1;34m78[0m: game_actions
|
9
|
+
[1;34m79[0m: [32mend[0m
|
10
|
+
[1;34m80[0m:
|
11
|
+
[1;34m81[0m: [1;34m# if !game.used_attempts.nil? && !game.used_attempts.zero?[0m
|
12
|
+
[1;34m82[0m: [1;34m# p game[0m
|
13
|
+
[1;34m83[0m: [1;34m# game_actions[0m
|
14
|
+
[1;34m84[0m: [1;34m# else[0m
|
15
|
+
[1;34m85[0m: [1;34m# p 'attempts finished'[0m
|
16
|
+
[1;34m86[0m: [1;34m# lose[0m
|
17
|
+
[1;34m87[0m: [1;34m# new_process[0m
|
18
|
+
[1;34m88[0m: [1;34m# end[0m
|
19
|
+
[1;34m89[0m: [32mend[0m
|
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
|
-
|
6
|
-
|
6
|
+
include Validator
|
7
|
+
attr_accessor :errors
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
@errors = []
|
7
11
|
end
|
8
12
|
|
9
|
-
|
13
|
+
def handle_errors(text)
|
14
|
+
@errors << text
|
15
|
+
end
|
10
16
|
|
11
17
|
def show_errors
|
12
|
-
|
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
|
data/lib/codebreaker/game.rb
CHANGED
@@ -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
|
-
|
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
|
-
|
32
|
+
|
33
|
+
show_errors unless valid?
|
20
34
|
end
|
21
35
|
|
22
36
|
def player_name(name)
|
23
|
-
|
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
|
-
|
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
|
-
@
|
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
|
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
|
-
|
53
|
-
codebreaker_result(array_choose_numbers
|
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 @
|
74
|
+
return 'Hints are over' if @used_hints.zero?
|
59
75
|
|
60
|
-
@
|
76
|
+
@used_hints -= 1
|
61
77
|
secret_code.sample
|
62
78
|
end
|
63
79
|
|
64
|
-
def
|
65
|
-
|
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
|
93
|
-
|
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
|
-
|
95
|
+
full_match << code
|
101
96
|
array_choose_numbers[index] = nil
|
102
97
|
end
|
103
|
-
array_choose_numbers.compact.uniq.
|
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
|
107
|
-
|
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
|
data/lib/codebreaker/user.rb
CHANGED
@@ -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
|
-
|
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
|
data/lib/codebreaker/version.rb
CHANGED
data/lib/codebreaker.rb
ADDED
@@ -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
|
+
[1mFrom:[0m /home/bo/rubypr/codebreaker/lib/codebreaker/console.rb:95 Console#game_process:
|
3
|
+
|
4
|
+
[1;34m91[0m: [32mdef[0m [1;34mgame_process[0m
|
5
|
+
[1;34m92[0m: [32mif[0m !game.used_attempts.nil? && !game.used_attempts.zero?
|
6
|
+
[1;34m93[0m: game_actions
|
7
|
+
[1;34m94[0m: [32melse[0m
|
8
|
+
=> [1;34m95[0m: binding.pry
|
9
|
+
[1;34m96[0m: p [31m[1;31m'[0m[31mattempts finished[1;31m'[0m[31m[0m
|
10
|
+
[1;34m97[0m: lose
|
11
|
+
[1;34m98[0m: new_process
|
12
|
+
[1;34m99[0m: [32mend[0m
|
13
|
+
[1;34m100[0m: [32mend[0m
|
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.
|
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-
|
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/
|
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
|
-
-
|
185
|
+
- s
|
182
186
|
- sig/codebreaker.rbs
|
183
187
|
homepage: https://github.com/bogdansev1/codebreaker_gem
|
184
188
|
licenses:
|
data/lib/codebreaker/console.rb
DELETED
@@ -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
|