m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/rooms.rb
blob: a453869dd17491a0d6d8d07ce420caa3cb956e29 (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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
module Rooms
  class Room
    def initialize engine
      @engine = engine
    end

    def damage_with_bonus damage, bonus
      [damage - bonus, 0].max
    end

    def health_damage damage
      damage_with_bonus damage, @engine.magic_armor
    end

    def endurance_damage damage
      damage_with_bonus damage, @engine.magic_weapon
    end

    def resolve command
      @command = command
      if @engine.state == 'invalid'
        @engine.state = 'play'
      end

      if @engine.state == 'play'
        _do_resolve
      end
    end

    def check_death
      if @engine.health <= 0
        @engine.state = 'dead'
      elsif @engine.endurance <= 0
        @engine.state = 'dead'
      end
    end

    def _do_resolve
      do_resolve
      check_death
      if !instant_resolve
        @engine.add_message resolve_message
      end
    end

    # TODO: limit weapon/armor levels
    def do_resolve
      case @command
      when 'c'
      else
        do_invalid
      end
    end

    def do_invalid
      @engine.state = 'invalid'
      @engine.add_message "Invalid command: #{@command}"

      if !instant_resolve
        enter
      else
        list_options
      end
    end

    def resolve_message
      if @engine.state == 'dead'
        if @engine.health <= 0
          death_message
        elsif @engine.endurance <= 0
          exhaust_message
        end
      else
        success_message
      end
    end

    def enter_message
      ''
    end

    def death_message
      'You die'
    end

    def exhaust_message
      'You fall over exhausted'
    end

    def success_message
      ''
    end

    def options
      [
        'continue',
      ]
    end

    def list_options
      options.each do |option|
        @engine.add_message ">[#{option[0]}]#{option[1..]}"
      end
    end

    def enter
      @engine.add_message enter_message
      if instant_resolve
        do_instant_resolve
        check_death
        @engine.add_message resolve_message
      end

      list_options
    end
  end

  class Welcome < Room
    def instant_resolve
      false
    end

    def do_resolve
    end

    def success_message
      <<~MSG.chomp
        A curse has infested an ancient keep near your town.
        The evil magic has filled the keep with monsters.
        Can you save your home from this Hex?
      MSG
    end

    def to_s
      'welcome'
    end
  end

  class Store < Room
    def instant_resolve
      false
    end

    def enter_message
      'You have enough XP to upgrade your equipment!'
    end

    def options
      [
        'weapon upgrade',
        'armor upgrade'
      ]
    end

    def do_resolve
      case @command
      when 'a'
        @engine.xp -= 50
        @engine.magic_armor += 1
        @message = "You've upgraded your magic armor!"
      when 'w'
        @engine.xp -= 50
        @engine.magic_weapon += 1
        @message = "You've upgraded your magic weapon!"
      else
        do_invalid
      end
    end

    def to_s
      'store'
    end
  end

  class Empty < Room
    def initialize engine
      super engine
      @endurance_damage = endurance_damage 1
    end

    def instant_resolve
      false
    end

    def do_resolve
      case @command
      when 'r'
        @engine.update_hex 1, 3, 0
      when 's'
        @engine.update_hex 3, -@endurance_damage, 0
      when 'm'
      else
        do_invalid
      end
    end

    def enter_message
      'You enter an empty room. Nothing dangerous or interesting happening here.'
    end

    def success_message
      case @command
      when 'r'
        'You rest for a bit. You feel refreshed!'
      when 's'
        'After a while, you find some dried meat. It looks good to eat'
      when 'm'
        "You decide there's no time to waste. You continue down the corridor."
      end
    end

    def options
      [
        'rest (+1 H, +3 E)',
        "scavenge for food (+3 H, #{-@endurance_damage} E)"
      ]
    end

    def to_s
      'empty'
    end
  end

  class Trap < Room
    def initialize engine
      super engine
      @health_damage = health_damage @engine.level
      @endurance_damage = endurance_damage @engine.level
    end

    def instant_resolve
      false
    end

    def do_resolve
      case @command
      when 't'
        @engine.update_hex -@health_damage, 0, 0
      when 'd'
        @engine.update_hex 0, -@endurance_damage, 0
      else
        do_invalid
      end
    end

    def success_message
      case @command
      when 't'
        'Ouch!'
      when 'd'
        'Very carefully, you manage to disable the trap.'
      end
    end

    def enter_message
      'You stop yourself short. Your foot was about to brush a tripwire!'
    end

    def options
      [
        "trigger trap (#{-@health_damage} H)",
        "disable trap (#{-@endurance_damage} E)"
      ]
    end

    def to_s
      'trap'
    end
  end

  class Monster < Room
    def initialize engine
      super engine
      @health_damage = health_damage @engine.level
      @endurance_damage = endurance_damage @engine.level
    end

    def instant_resolve
      false
    end

    def do_resolve
      case @command
      when 'r'
      when 'f'
        @engine.update_hex -@health_damage, -@endurance_damage, @engine.level
      else
        do_invalid
      end
    end

    def enter_message
      'You turn the corner and see an ugly monster!'
    end

    def success_message
      case @command
      when 'r'
        'You book it from there, heart beating fast. But you manage to lose the monster.'
      when 'f'
        'The monster is defeated, your clothes still wet with blood, its and yours.'
      end
    end

    def options
      [
        "run away",
        "fight (#{-@health_damage} H, #{-@endurance_damage} E, #{@engine.level} X)"
      ]
    end

    def to_s
      'monster'
    end
  end

  class Treasure < Room
    def instant_resolve
      true
    end

    def do_instant_resolve
      roll = 1 + rand(6)
      case roll + @engine.level
      when 1..3
        @found = 'key'
        @engine.keys += 1
      else
        @found = 'gold'
        @engine.update_hex 0, 0, @engine.level
      end
    end

    def enter_message
      'You enter a dusty room. Something shiny on the ground catches your eye.'
    end

    def success_message
      case @found
      when 'key'
        'You find a key!'
      when 'gold'
        "You found some gold! (+#{@engine.level} X)"
      end
    end

    def to_s
      'treasure'
    end
  end

  class Stairs < Room
    def instant_resolve
      true
    end

    def do_instant_resolve
      @engine.level += 1
    end

    def enter_message
      'You come across a set of cracked stairs.'
    end

    def success_message
      'You journey downwards.'
    end

    def to_s
      'stairs'
    end
  end

  class Boss < Room
    def initialize engine
      super engine
      @health_damage = health_damage(2 * @engine.level)
      @endurance_damage = endurance_damage(2 * @engine.level)
    end

    def instant_resolve
      true
    end

    def do_instant_resolve
      @engine.update_hex -@health_damage, -@endurance_damage, 2 * @engine.level
    end

    def enter_message
      "You encounter a giant boss monster. There's no escape routes, it's live or die!"
    end

    def success_message
      'You defeat the fiend!'
    end

    def to_s
      'boss'
    end
  end

  class Exit < Room
    def instant_resolve
      true
    end

    def do_instant_resolve
      @engine.state = 'win'
    end

    def success_message
      'You won! Congratulations!'
    end

    def to_s
      'exit'
    end
  end
end