Codebreaker_RG2016 0.1.0
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 +7 -0
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +74 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/codebreaker.gemspec +27 -0
- data/lib/codebreaker/game.rb +35 -0
- data/lib/codebreaker/modules/engine.rb +44 -0
- data/lib/codebreaker/modules/score.rb +22 -0
- data/lib/codebreaker/player.rb +41 -0
- data/lib/codebreaker/score/Player_score.txt +2 -0
- data/lib/codebreaker/version.rb +3 -0
- data/lib/codebreaker.rb +10 -0
- metadata +104 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 71658e47ca674abd1b7a6565972beadb1040df0c
|
4
|
+
data.tar.gz: 284514d6dd1609d2b0e5a9ad2185147d97bcf6d6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 98b12eb1db8a8705651975ef0a84d3a038d01cd3dfaa598ccc050471a20509e85bd3a4e2e1ae12f482a344c6e8f518adb2dfe29d8c5dc5012e27127a6f0c69c6
|
7
|
+
data.tar.gz: a2e99f874ed1732c3953458efbc9f8fea0e1e22f0898408b3e054547dff5a7e56104ed522a42fc421eb7437c4950dbe4f602774c62bf85c6d2c7dd0bd0d1683c
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at ajiexwel4@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Ajiexwel4
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Codebreaker
|
2
|
+
|
3
|
+
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6.
|
4
|
+
|
5
|
+
|
6
|
+
The code-breaker then gets some number of chances to break the code. In each turn, the code-breaker makes a guess of four numbers. The code-maker then marks the guess with up to four + and - signs.
|
7
|
+
|
8
|
+
|
9
|
+
A + indicates an exact match: one of the numbers in the guess is the same as one of the numbers in the secret code and in the same position.
|
10
|
+
|
11
|
+
|
12
|
+
A - indicates a number match: one of the numbers in the guess is the same as one of the numbers in the secret code but in a different position.
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
gem 'codebreaker'
|
19
|
+
|
20
|
+
And then execute:
|
21
|
+
|
22
|
+
$ bundle
|
23
|
+
|
24
|
+
Or install it yourself as:
|
25
|
+
|
26
|
+
$ gem install codebreaker
|
27
|
+
|
28
|
+
## Usage
|
29
|
+
|
30
|
+
$ ruby lib/codebreaker.rb
|
31
|
+
or
|
32
|
+
install gem Codebreaker_RG2016 from rubygems.org and from irb type:
|
33
|
+
$ require 'codebreaker'
|
34
|
+
|
35
|
+
## It looks like:
|
36
|
+
|
37
|
+
You should to break a secret code ****.
|
38
|
+
Please, enter your name: $ Alex
|
39
|
+
You have 7 attempts and 1 hint.
|
40
|
+
Type your secret code or "hint": $ hint
|
41
|
+
Hint: Secret code contains: 3
|
42
|
+
|
43
|
+
You have 7 attempts and 0 hint.
|
44
|
+
Type your secret code or "hint": $ 21321
|
45
|
+
You should type 4 numbers in code or "hint"!!!
|
46
|
+
$ 6666
|
47
|
+
+---
|
48
|
+
You have 7 attempts and 0 hint.
|
49
|
+
Type your secret code or "hint": $ 3333
|
50
|
+
+---
|
51
|
+
...
|
52
|
+
You have 0 attempts and 0 hint.
|
53
|
+
Type your secret code or "hint": $ 3444
|
54
|
+
Game over! Secret code is 3614.
|
55
|
+
Alex, your score: 0!
|
56
|
+
Do you want to start new game?(y/n)
|
57
|
+
$ y
|
58
|
+
You have 7 attempts and 1 hint.
|
59
|
+
Type your secret code or "hint": $ hint
|
60
|
+
Hint: Secret code contains: 6
|
61
|
+
...
|
62
|
+
Do you want to start new game?(y/n)
|
63
|
+
$ n
|
64
|
+
Do you want to save your score in score file?(y/n)
|
65
|
+
|
66
|
+
## Contributing
|
67
|
+
|
68
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Ajiexwel4/codebreaker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
69
|
+
|
70
|
+
|
71
|
+
## License
|
72
|
+
|
73
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
74
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "codebreaker"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/codebreaker.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'codebreaker/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "Codebreaker_RG2016"
|
8
|
+
spec.version = Codebreaker::VERSION
|
9
|
+
spec.authors = ["Ajiexwel4"]
|
10
|
+
spec.email = ["ajiexwel4@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Codebreaker is a logic game"
|
13
|
+
spec.description = "Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker"
|
14
|
+
spec.homepage = "https://github.com/Ajiexwel4/Codebreaker"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec"
|
27
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module Codebreaker
|
2
|
+
class Game
|
3
|
+
include Engine
|
4
|
+
include Score
|
5
|
+
|
6
|
+
ATTEMPTS = 7
|
7
|
+
HINT = 1
|
8
|
+
CODE_SIZE = 4
|
9
|
+
RANGE = 1..6
|
10
|
+
|
11
|
+
attr_accessor :secret_code, :player, :hint, :attempts
|
12
|
+
def initialize(player = Player.new)
|
13
|
+
@secret_code = Array.new(CODE_SIZE) { rand(RANGE) }.join
|
14
|
+
@player = player
|
15
|
+
@hint = HINT
|
16
|
+
@attempts = ATTEMPTS
|
17
|
+
|
18
|
+
start
|
19
|
+
end
|
20
|
+
|
21
|
+
def start
|
22
|
+
puts "You have #{@attempts} attempts and #{@hint} hint."
|
23
|
+
check_guess
|
24
|
+
score
|
25
|
+
new_game? ? start : save_score?
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def new_game?
|
31
|
+
puts 'Do you want to start new game?(y/n)'
|
32
|
+
Game.new(@player) if @player.agree?
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Codebreaker
|
2
|
+
module Engine
|
3
|
+
def check_guess
|
4
|
+
@player_code = @player.guess
|
5
|
+
if @player_code == 'hint' && @hint.nonzero?
|
6
|
+
puts 'Hint: Secret code contains: ' + @secret_code[rand(0..3)]
|
7
|
+
@hint -= 1
|
8
|
+
@attempts += 1
|
9
|
+
end
|
10
|
+
check_win
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def check_win
|
16
|
+
if win?
|
17
|
+
puts 'Congratulation! You win!'
|
18
|
+
elsif @attempts.zero?
|
19
|
+
puts "Game over! Secret code is #{@secret_code}."
|
20
|
+
@hint = 0
|
21
|
+
else
|
22
|
+
puts (pluses + minuses).join
|
23
|
+
@attempts -= 1
|
24
|
+
start
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def array_player_code
|
29
|
+
@player_code.chars.to_a
|
30
|
+
end
|
31
|
+
|
32
|
+
def pluses
|
33
|
+
array_player_code.map.with_index { |num, index| '+' if num == @secret_code[index] }.compact
|
34
|
+
end
|
35
|
+
|
36
|
+
def minuses
|
37
|
+
array_player_code.map { |num| '-' if @secret_code.include?(num) }.drop(pluses.size)
|
38
|
+
end
|
39
|
+
|
40
|
+
def win?
|
41
|
+
@secret_code == @player_code
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Codebreaker
|
2
|
+
module Score
|
3
|
+
def score
|
4
|
+
@player.score += 250 if win?
|
5
|
+
@player.score += @hint * 100 + @attempts * 50
|
6
|
+
puts "#{player.name}, your score: #{@player.score}!"
|
7
|
+
end
|
8
|
+
|
9
|
+
def save_score?
|
10
|
+
puts 'Do you want to save your score in score file?(y/n)'
|
11
|
+
save_score_file if @player.agree?
|
12
|
+
exit
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
def save_score_file
|
17
|
+
File.open("lib/codebreaker/score/#{@player.name}_score.txt", 'a') do |file|
|
18
|
+
file.puts "#{@player.score} - #{Time.now.asctime}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module Codebreaker
|
2
|
+
class Player
|
3
|
+
attr_accessor :name, :player_code, :score
|
4
|
+
def initialize(score = 0)
|
5
|
+
@name = input_name
|
6
|
+
@player_code = ''
|
7
|
+
@score = score
|
8
|
+
end
|
9
|
+
|
10
|
+
def guess
|
11
|
+
print 'Type your secret code or "hint": '
|
12
|
+
@player_code = input_code
|
13
|
+
end
|
14
|
+
|
15
|
+
def agree?
|
16
|
+
input =~ /^yes|y/i ? true : false
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def input
|
22
|
+
gets.chomp
|
23
|
+
end
|
24
|
+
|
25
|
+
def input_name
|
26
|
+
print 'Please, enter your name: '
|
27
|
+
input
|
28
|
+
end
|
29
|
+
|
30
|
+
def input_code
|
31
|
+
player_code = input
|
32
|
+
if player_code.size == Codebreaker::Game::CODE_SIZE ||
|
33
|
+
player_code == 'hint'
|
34
|
+
player_code
|
35
|
+
else
|
36
|
+
puts 'You should type 4 numbers in code or "hint"!!!'
|
37
|
+
input_code
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
data/lib/codebreaker.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require_relative 'codebreaker/version'
|
2
|
+
require_relative 'codebreaker/modules/score'
|
3
|
+
require_relative 'codebreaker/modules/engine'
|
4
|
+
require_relative 'codebreaker/game'
|
5
|
+
require_relative 'codebreaker/player'
|
6
|
+
|
7
|
+
module Codebreaker
|
8
|
+
puts 'You should to break a secret code ****.'
|
9
|
+
Game.new
|
10
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Codebreaker_RG2016
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ajiexwel4
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Codebreaker is a logic game in which a code-breaker tries to break a
|
56
|
+
secret code created by a code-maker
|
57
|
+
email:
|
58
|
+
- ajiexwel4@gmail.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".rspec"
|
65
|
+
- CODE_OF_CONDUCT.md
|
66
|
+
- Gemfile
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- codebreaker.gemspec
|
73
|
+
- lib/codebreaker.rb
|
74
|
+
- lib/codebreaker/game.rb
|
75
|
+
- lib/codebreaker/modules/engine.rb
|
76
|
+
- lib/codebreaker/modules/score.rb
|
77
|
+
- lib/codebreaker/player.rb
|
78
|
+
- lib/codebreaker/score/Player_score.txt
|
79
|
+
- lib/codebreaker/version.rb
|
80
|
+
homepage: https://github.com/Ajiexwel4/Codebreaker
|
81
|
+
licenses:
|
82
|
+
- MIT
|
83
|
+
metadata: {}
|
84
|
+
post_install_message:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
87
|
+
- lib
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
requirements: []
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 2.5.1
|
101
|
+
signing_key:
|
102
|
+
specification_version: 4
|
103
|
+
summary: Codebreaker is a logic game
|
104
|
+
test_files: []
|