blob: 34262a98a1ada70fb697cc0fbddf7c2c0a7621b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
class Player
def initialize
@behaviours = [Rest.new, Attack.new, Walk.new]
end
def play_turn(warrior)
@initial_health ||= warrior.health
@behaviours.each do |action|
action.play(warrior) if action.matches(warrior)
end
end
end
class GoodHealth
FIFTY_PERCENT = 0.5
def matches(warrior)
@initial_health ||= warrior.health
health_is_good(warrior)
end
private
def health_is_good(warrior)
threshold = FIFTY_PERCENT * @initial_health
warrior.health > threshold
end
end
class Attack
def initialize(good_health = GoodHealth.new)
@good_health = good_health
end
def matches(warrior)
warrior.feel.empty? == false && @good_health.matches(warrior)
end
def play(warrior)
warrior.attack!
end
end
class Rest
FIFTY_PERCENT = 0.5
def matches(warrior)
@initial_health ||= warrior.health
warrior.feel.empty? == false && health_is_low(warrior)
end
def play(warrior)
warrior.rest!
end
private
def health_is_low(warrior)
threshold = FIFTY_PERCENT * @initial_health
warrior.health <= threshold
end
end
class Walk
def matches(warrior)
warrior.feel.empty?
end
def play(warrior)
warrior.walk!
end
end
|