|
| 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 |
0 commit comments