Skip to content

Commit ac811d6

Browse files
committedApr 6, 2024
[Crystal] Crystal Hunter
1 parent 8f63db7 commit ac811d6

File tree

5 files changed

+307
-0
lines changed

5 files changed

+307
-0
lines changed
 

‎crystal/crystal-hunter/HELP.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Help
2+
3+
## Running the tests
4+
5+
Execute the tests with:
6+
7+
```bash
8+
$ crystal spec
9+
```
10+
11+
## Skipped tests
12+
13+
In each test suite all but the first test have been skipped.
14+
15+
Once you get a test passing, you can unskip the next one by changing `pending` to `it`.
16+
17+
## Submitting your solution
18+
19+
You can submit your solution using the `exercism submit src/crystal_hunter.cr` command.
20+
This command will upload your solution to the Exercism website and print the solution page's URL.
21+
22+
It's possible to submit an incomplete solution which allows you to:
23+
24+
- See how others have completed the exercise
25+
- Request help from a mentor
26+
27+
## Need to get help?
28+
29+
If you'd like help solving the exercise, check the following pages:
30+
31+
- The [Crystal track's documentation](https://exercism.org/docs/tracks/crystal)
32+
- The [Crystal track's programming category on the forum](https://forum.exercism.org/c/programming/crystal)
33+
- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5)
34+
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
35+
36+
Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
37+
38+
To get help if you're having trouble, you can use one of the following resources:
39+
40+
- [Crystal API](http://crystal-lang.org/api/)
41+
- [r/crystal_programming/](https://www.reddit.com/r/crystal_programming/) is the Crystal subreddit.
42+
- [StackOverflow](https://stackoverflow.com/questions/tagged/crystal-lang) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
43+
- [Crystal Forum](https://forum.crystal-lang.org/) is the official Crystal forum.

‎crystal/crystal-hunter/HINTS.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Hints
2+
3+
## General
4+
5+
- Don't worry about how the arguments are _derived_, focus on combining the arguments to return the intended result.
6+
7+
## 1. Define if character gets bonus points
8+
9+
- You can use [the logical _and_ operator][and] to combine arguments for a result.
10+
11+
## 2. Define if character scores
12+
13+
- You can use [the logical _or_ operator][or] to combine arguments for a result.
14+
15+
## 3. Define if character loses
16+
17+
- You can use [the logical _not_ operator][not] to negate an argument for a result.
18+
19+
## 4. Define if character wins
20+
21+
- You can use the previous methods to combine arguments for a result.
22+
23+
[and]: https://crystal-lang.org/reference/latest/syntax_and_semantics/and.html
24+
[or]: https://crystal-lang.org/reference/latest/syntax_and_semantics/or.html
25+
[not]: https://crystal-lang.org/reference/latest/syntax_and_semantics/not.html

‎crystal/crystal-hunter/README.md

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
# Crystal Hunter
2+
3+
Welcome to Crystal Hunter on Exercism's Crystal Track.
4+
If you need help running the tests or submitting your code, check out `HELP.md`.
5+
If you get stuck on the exercise, check out `HINTS.md`, but try and solve it without using those first :)
6+
7+
## Introduction
8+
9+
Crystal has a type known as [`Bool`][bools], it is used to represent the values `true` and `false`.
10+
11+
## Logical operators
12+
13+
Crystal has 3 logical operators (`!`, `||`, `&&`) which are used to combine Bools and make expressions that produce different values.
14+
15+
### And(`&&`)
16+
17+
The [_and_ operator][and] in Crystal is represented by `&&` and returns `true` if both values given are `true` otherwise it returns `false`.
18+
When using the _and_ operator, one Bool be placed on the right side of the `&&` and another one on the left side.
19+
20+
```crystal
21+
true && true
22+
# => true
23+
24+
true && false
25+
# => false
26+
```
27+
28+
### Or(`||`)
29+
30+
The [_or_ operator][or] in Crystal is represented by `||` and returns `true` if **at least one** of values given is `true` if both of the values are `false` then it returns `false`.
31+
When using the _or_ operator one bool should be placed on the right side of the `||` and another one on the left side.
32+
33+
```crystal
34+
true || true
35+
# => true
36+
37+
true || false
38+
# => true
39+
40+
false || false
41+
# => false
42+
```
43+
44+
### Not(`!`)
45+
46+
The _not_ operator in Crystal is represented by `!` and returns `true` if the given Bool is `false` and returns `false` if `true` is given.
47+
When using the _not_ operator one Bool should be placed after the operator (`!`).
48+
49+
```crystal
50+
!true
51+
# => false
52+
53+
!false
54+
# => true
55+
```
56+
57+
## Using parentheses(`()`)
58+
59+
When working with booleans you can use parentheses to decide which Bools to evaluate first.
60+
The result can differ depending on how the parentheses are used.
61+
In Crystal, what is in parentheses is evaluated first.
62+
63+
```crystal
64+
true && false && false || true
65+
# => true
66+
67+
true && false && (false || true)
68+
# => false
69+
```
70+
71+
Since what is in parentheses is evaluated first, in the following example, the _not_ operator will apply to the expression inside parentheses.
72+
73+
```crystal
74+
!true && false
75+
# => false
76+
77+
!(true && false)
78+
# => true
79+
```
80+
81+
~~~~exercism/note
82+
You should only use parentheses when they affect the result, otherwise, should they be omitted.
83+
~~~~
84+
85+
[bools]: https://crystal-lang.org/reference/latest/syntax_and_semantics/literals/bool.html
86+
[and]: https://crystal-lang.org/reference/latest/syntax_and_semantics/and.html
87+
[or]: https://crystal-lang.org/reference/latest/syntax_and_semantics/or.html
88+
89+
## Instructions
90+
91+
You are in process of developing the new highly appreciated game **Crystal Hunter**.
92+
In the game you are a character that moves around and collects crystals.
93+
The player wins by picking up all the crystals.
94+
If the player comes in contact with a bandit, then the player will lose all their crystals and lose the game.
95+
There is an exception to this rule: the player can have an active power-up that makes them invisible to the bandits.
96+
97+
Your goal is to write some rules that will be used in the game.
98+
99+
## 1. Define if character gets bonus points
100+
101+
In the game, the character will get bonus points if they touch a bandit while having a power-up.
102+
103+
Define the `Rules#bonus_points?` method that takes two arguments (_if the character has an active power-up_ and _if the character is touching a bandit_) and returns a boolean value that tells whether the character will get bonus points or not.
104+
The method should return `true` only if the character has a power-up active and is touching a bandit, and `false` otherwise.
105+
106+
```Crystal
107+
Rules.new.bonus_points?(false, true)
108+
# => false
109+
```
110+
111+
## 2. Define if character scores
112+
113+
In the game, the player gets points when picking up a crystal or a power-up.
114+
115+
Define the `Rules#score?` method that takes two arguments (_if the character is touching a power-up_ and _if the character is touching a crystal_) and returns a boolean value indicating if the character scored or not.
116+
The method should return `true` if the character is touching a power-up or a crystal, and return `false` otherwise.
117+
118+
```crystal
119+
Rules.new.score?(true, true)
120+
# => true
121+
```
122+
123+
## 3. Define if character loses
124+
125+
Define the `Rules#lose?` method that takes two arguments (_if the character has a power-up active_ and _if the character is touching a bandit_) and returns a boolean value that indicates if the character loses or not.
126+
The method should return `true` if the character is touching a bandit and does not have a power-up active, and return `false` otherwise.
127+
128+
```crystal
129+
Rules.new.lose?(false, true)
130+
# => true
131+
```
132+
133+
## 4. Define if character wins
134+
135+
Define the `Rules#win?` method that takes three arguments (_if the character has picked up all of the crystals_, _if the character has a power-up active_, and _if the character is touching a bandit_) and returns a boolean value indicating if the character wins or not.
136+
The method should return `true` if the character has gathered all crystals and has not lost based on the arguments defined in part 3, and return `false` otherwise.
137+
138+
```crystal
139+
Rules.new.win?(false, true, false)
140+
# => false
141+
```
142+
143+
## Source
144+
145+
### Created by
146+
147+
- @meatball133
148+
149+
### Contributed to by
150+
151+
- @andrerfcsantos
152+
- @angelikatyborska
153+
- @glennj
154+
- @ryanplusplus
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
require "spec"
2+
require "../src/*"
3+
4+
describe Rules do
5+
describe "bonus_points?" do
6+
it "Character gets bonus points" do
7+
Rules.new.bonus_points?(true, true).should be_true
8+
end
9+
10+
it "Character gets no bonus points because no power-up is active" do
11+
Rules.new.bonus_points?(false, true).should be_false
12+
end
13+
14+
it "Character gets no bonus points because not touching bandit" do
15+
Rules.new.bonus_points?(true, false).should be_false
16+
end
17+
18+
it "Character gets no bonus points because no power-up is active and character is not touching bandit" do
19+
Rules.new.bonus_points?(false, false).should be_false
20+
end
21+
end
22+
23+
describe "score?" do
24+
it "Score when picking up crystal" do
25+
Rules.new.score?(true, false).should be_true
26+
end
27+
28+
it "Score when picking up power-up" do
29+
Rules.new.score?(false, true).should be_true
30+
end
31+
32+
it "No score when not picking up anything" do
33+
Rules.new.score?(false, false).should be_false
34+
end
35+
end
36+
37+
describe "lose?" do
38+
it "Lose if touching a bandit without a power-up active" do
39+
Rules.new.lose?(false, true).should be_true
40+
end
41+
42+
it "Don't lose if touching a bandit with a power-up active" do
43+
Rules.new.lose?(true, true).should be_false
44+
end
45+
46+
it "Don't lose if not touching a bandit" do
47+
Rules.new.lose?(false, false).should be_false
48+
end
49+
50+
it "Don't lose if powered-up and not touching a bandit" do
51+
Rules.new.lose?(true, false).should be_false
52+
end
53+
end
54+
55+
describe "win?" do
56+
it "Win if all crystals have been picked up" do
57+
Rules.new.win?(true, false, false).should be_true
58+
end
59+
60+
it "Don't win if all crystals have been picked up, but touching a bandit" do
61+
Rules.new.win?(true, false, true).should be_false
62+
end
63+
64+
it "Win if all crystals have been picked up and touching a bandit with a power-up active" do
65+
Rules.new.win?(true, true, true).should be_true
66+
end
67+
end
68+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class Rules
2+
def bonus_points?(power_up_active, touching_bandit)
3+
touching_bandit && power_up_active
4+
end
5+
6+
def score?(touching_power_up, touching_crystal)
7+
touching_crystal || touching_power_up
8+
end
9+
10+
def lose?(power_up_active, touching_bandit)
11+
touching_bandit && !power_up_active
12+
end
13+
14+
def win?(has_picked_up_all_crystals, power_up_active, touching_bandit)
15+
!lose?(power_up_active, touching_bandit) && has_picked_up_all_crystals
16+
end
17+
end

0 commit comments

Comments
 (0)
Please sign in to comment.