-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi_ching.rb
158 lines (141 loc) · 3.47 KB
/
i_ching.rb
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/usr/bin/env ruby
#
# The I Ching is not magic;
# it is science that we don’t understand.
# - Terence McKenna
#
class IChing
def self.call
new.call
end
def initialize
@result = {}
@hexagram_map = hexagram_mapping.freeze
end
def call
result[:lower_lines] = 3.times.map { calculate_line }
result[:lower_trigram] = determine_trigram(result[:lower_lines])
result[:upper_lines] = 3.times.map { calculate_line }
result[:upper_trigram] = determine_trigram(result[:upper_lines])
result[:hexagram] = determine_hexagram(result)
output = "HEXAGRAM #{result[:hexagram]}: "
output += "#{result[:upper_trigram].last.upcase} "
output += "over "
output += "#{result[:lower_trigram].last.upcase}\n"
output += "https://www.jamesdekorne.com/GBCh/hex#{result[:hexagram]}.htm\n"
print output
result
end
private
attr_accessor :result
attr_reader :hexagram_map
def calculate_line
d20 = roll_d20
return '___' if d20.odd?
'_ _'
end
def determine_trigram(lines)
return ['☰', 'heaven'] if lines.all? { |line| line == '___' }
return ['☷', 'earth'] if lines.all? { |line| line == '_ _' }
return ['☱', 'lake'] if lines.first(2) == ['___', '___']
return ['☶', 'mountain'] if lines.first(2) == ['_ _', '_ _']
return ['☳', 'thunder'] if lines.last(2) == ['_ _', '_ _']
return ['☴', 'wind'] if lines.last(2) == ['___', '___']
return ['☲', 'fire'] if lines.first == '___'
return ['☵', 'water'] if lines.first == '_ _'
end
def determine_hexagram(hash)
hexagram_map.dig(hash[:lower_trigram].last, hash[:upper_trigram].last)
end
def roll_d20
Random.rand(1..20)
end
def roll_d8
Random.rand(1..8)
end
def hexagram_mapping
{
'heaven' => {
'heaven' => 1,
'thunder' => 34,
'water' => 5,
'mountain' => 26,
'earth' => 11,
'wind' => 9,
'fire' => 14,
'lake' => 43
},
'thunder' => {
'heaven' => 25,
'thunder' => 51,
'water' => 3,
'mountain' => 27,
'earth' => 24,
'wind' => 42,
'fire' => 21,
'lake' => 17
},
'water' => {
'heaven' => 6,
'thunder' => 40,
'water' => 29,
'mountain' => 4,
'earth' => 7,
'wind' => 59,
'fire' => 64,
'lake' => 47
},
'mountain' => {
'heaven' => 33,
'thunder' => 62,
'water' => 39,
'mountain' => 52,
'earth' => 15,
'wind' => 53,
'fire' => 56,
'lake' => 31
},
'earth' => {
'heaven' => 12,
'thunder' => 16,
'water' => 8,
'mountain' => 23,
'earth' => 2,
'wind' => 20,
'fire' => 35,
'lake' => 45
},
'wind' => {
'heaven' => 44,
'thunder' => 32,
'water' => 48,
'mountain' => 18,
'earth' => 46,
'wind' => 57,
'fire' => 50,
'lake' => 28
},
'fire' => {
'heaven' => 13,
'thunder' => 55,
'water' => 63,
'mountain' => 22,
'earth' => 36,
'wind' => 37,
'fire' => 30,
'lake' => 49
},
'lake' => {
'heaven' => 10,
'thunder' => 54,
'water' => 60,
'mountain' => 41,
'earth' => 19,
'wind' => 61,
'fire' => 38,
'lake' => 58
}
}
end
end
IChing.call