-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbard.hoon
702 lines (699 loc) · 17.2 KB
/
bard.hoon
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
:: bard: interactive story-teller
::
:: minimal engine for running interactive fiction.
:: intended to run on a host ship that supplies content, then used by others
:: through |link ~host %bard.
:: pins session state to @p, rather than sole session.
::
::TODO short-term
:: - write actual content
:: - /sur
:: - story import mechanism
:: - implement elaborate lobby menu
:: - improve node type
::
::TODO long-term
:: - custom file format w/ parser
:: - lobby chat?
:: - consider implementing the lobby/entire app as a tale
::
::TODO story inspo
:: - ~tocrex's galaxy girls
:: - esports vs dolphins
:: - group survival, nomads
::
/+ shoe, verb, dbug, default-agent
::
|%
+$ state-0
$: %0
tales=(map term tale)
heros=(map ship savefile)
panes=(jug ship @ta)
==
::
+$ savefile
$: ::TODO stats?
=savestate
==
::
+$ savestate
$% [%lobby =area]
[%story tale=term =told true=(list told)] ::TODO smarter history storing
==
::
+$ area
?(%intro %menu %recent %unplayed %all)
::
+$ tale
$: title=@t
brief=@t
start=term
nodes=(map term node)
==
::
+$ told
$: stack=(lest node) :: upcoming
store=(list term) :: memories
==
::
::TODO separate renderable from logic nodes explicitly? for what purpose?
+$ node
$~ [%end ~]
$% [%end ~]
[%text text=@t =next]
[%flow texts=(lest @t) =next]
[%choice text=@t options=(lest [[pick=@t text=@t] =next])]
[%both one=next two=next] ::TODO enforce both renderable?
:: secret: display node. if parse go (find res). if fail, node's behavior
:: [%secret =node parser=rule find=$-(* (unit next))]
[%store store-op]
==
::
+$ next $~(~ ?(~ term node))
::
+$ store-op
$% [[%put =term] =next] :: add
[[%del =term] =next] :: delete one
[[%dal =term] =next] :: delete all
[[%hav =term] yes=next no=next] :: have, go next
[[%han =term] yes=next no=next] :: have not, go next
[[%set all=(list term)] =next] :: replace all
::TODO have all, have any
==
::
+$ command
$% [%next choice=(unit @t)]
[%show ~]
[%back ~]
[%exit ~]
==
::
+$ card card:shoe
--
::
=| state-0
=* state -
::
%+ verb |
%- agent:dbug
^- agent:gall
%- (agent:shoe command)
^- (shoe:shoe command)
=<
|_ =bowl:gall
+* this .
do +>
def ~(. (default-agent this %|) bowl)
des ~(. (default:shoe this command) bowl)
::
++ on-init
^- (quip card _this)
=. tales (~(put by tales) %test example-tale:content)
[~ this]
::
++ on-save !>(state)
++ on-load
|= old=vase
^- (quip card _this)
~& [dap.bowl %load-lmao]
=. state !<(state-0 old)
=. tales (~(put by tales) %test example-tale:content)
[~ this]
::
++ on-poke on-poke:def
++ on-watch on-watch:def
++ on-leave on-leave:def
++ on-peek on-peek:def
++ on-agent on-agent:def
++ on-arvo on-arvo:def
++ on-fail on-fail:def
::
++ command-parser
|= sole-id=@ta
^+ |~(nail *(like [? command]))
~(parser do bowl sole-id)
::
++ on-command
|= [sole-id=@ta =command]
^- (quip card _this)
=^ cards state
(~(run-command do bowl sole-id) command)
[cards this]
::
++ can-connect
|= sole-id=@ta
^- ?
&
::
++ on-connect
|= sole-id=@ta
^- (quip card _this)
=? heros !(~(has by heros) src.bowl)
~& [%new-player src.bowl]
%+ ~(put by heros) src.bowl
%*(. *savefile savestate [%lobby %intro])
=- [[-]~ this]
%- show-state:~(display do bowl sole-id)
savestate:(~(got by heros) src.bowl)
::
++ tab-list
|= sole-id=@ta
^- (list [@t tank])
~(completions do bowl sole-id)
++ on-disconnect on-disconnect:des
--
::
|_ [=bowl:gall sole-id=@ta]
+* who src.bowl
::
++ parser
=/ ,savefile (~(got by heros) who)
|^ =- ;~(pose perma-parser -)
?- -.savestate
%lobby (lobby-parser +.savestate)
%story (story-parser +.savestate)
==
::
++ perma-parser
%+ pick
:: keypress commands
::
(full ;~(pose show exit))
:: write-out commands
::
fail
::
++ show (cold [%show ~] dot)
++ back (cold [%back ~] gal)
++ exit (cold [%exit ~] zap)
++ next ;~(pose (cold [%next ~] ace) (easy [%next ~]))
::
++ lobby-parser
|= =area
%+ pick
:: keypress commands
::
?+ area back
%intro next
==
:: write-out commands
::
%+ stag %next
%+ stag ~
?+ area fail
%menu (park ~(tap in ~(key by tales)))
==
::
++ story-parser
|= [tale=term =told true=(list told)]
=* node i.stack.told
%+ pick
:: keypress commands
::
%- full
;~ pose
?^(true back fail)
::
?+ -.node next
?(%choice %end) fail
==
==
:: write-out commands
::
;~ pose
exit
::
?+ -.node
fail
::
%choice
%+ stag %next
%+ stag ~
%- park
%+ turn options.node
(cork head head)
==
==
::
++ park ::NOTE kinda like +perk, but for non-literals
|= l=(list @t)
?~ l fail
%+ knee *@t |. ~+
;~ pose
(jest i.l)
(park t.l)
==
--
::
++ completions
^- (list [@t tank])
%+ weld
:~ ['.' leaf+"-> reprint the last text/prompt"]
['<' leaf+"-> go backwards"]
['!' leaf+"exit to story selection"]
==
=+ (~(got by heros) who)
?- -.savestate
%lobby
?. ?=(%menu area.savestate) ~
%+ turn ~(tap by tales)
|= [=term tale]
[term leaf+"play {(trip title)}"]
::
%story
=* node i.stack.told.savestate
?+ -.node [' ' leaf+"-> proceed"]~
%choice
%+ turn options.node
|= [[pick=@t text=@t] next]
[pick leaf+(trip (cat 3 pick text))]
==
==
::
::TODO %clr command?
++ run-command
|= =command
^- (quip card _state)
=; =savefile
:- [(show-state:display savestate.savefile)]~
state(heros (~(put by heros) who savefile))
=/ =savefile (~(got by heros) who)
?- -.command
%show savefile
::
%next
?- -.savestate.savefile
%lobby
?+ area.savestate.savefile !!
%intro savefile(area.savestate %menu)
::
%menu
=/ =term (need choice.command)
=/ ,tale (~(got by tales) term)
=/ =node (~(got by nodes) start)
=/ =told %*(. *told stack [node]~)
savefile(savestate [%story term told ~])
==
::
%story
=- savefile(savestate -)
^- savestate
=, savestate.savefile
~| [%tale tale]
:^ %story tale
%^ go-next:reader
nodes:(~(got by tales) tale)
told
choice.command
[told true]
==
::
%back
?- -.savestate.savefile
%lobby
?: ?=(%intro area.savestate.savefile) savefile
savefile(area.savestate %intro)
::
%story
=, savestate.savefile
%_ savefile
told.savestate (snag 0 true)
true.savestate (slag 1 true)
==
==
::
%exit
savefile(savestate [%lobby %menu])
==
::
++ reader
|%
:: +unpack-next: produce the next node, if any
::
++ unpack-next
|= [=next nodes=(map term node)]
^- (unit node)
?~ next ~
%- some
?^ next next
~| [%no-such-node next]
(~(got by nodes) next)
:: +proceed-into: add :next to the stack if it exists, %end if empty stack
::
++ proceed-into
|= [=next nodes=(map term node) stack=(list node)]
^- (lest node)
?^ n=(unpack-next next nodes)
[u.n stack]
?~ stack [%end ~]~
stack
:: +descend: pop the stack until top node is renderable
::
::TODO also produce the sequence of nodes that was popped off, so that it
:: can be passed into a +inverse function, for an inverse node to push
:: onto the "undo stack", or whatever kind of stack you want to be able
:: to just move back on top of the current stack (& run to next renderable)
:: in order to recreate past state
::
++ descend
|= [nodes=(map term node) told]
^- told
=* node i.stack
?+ -.node [stack store]
%end [[node]~ store]
::
%both
=- $(stack -)
::TODO this is a bit weird. maybe instead unpack all, welp one two t.stack?
%+ welp
(drop (unpack-next one.node nodes))
(proceed-into two.node nodes t.stack)
::
%store
=; [=next =_store]
$(stack (proceed-into next nodes t.stack), store store)
?- +<-.node
?(%put %del %dal %set)
:- next.node
?- +<-.node
%put [term.node store]
%del ?~ i=(find [term.node]~ store) store
(oust [u.i 1] store)
%dal (skip store |=(t=term =(t term.node)))
%set all.node
==
::
?(%hav %han)
:_ store
=; yes=?
?:(yes yes.node no.node)
?- +<-.node
%hav ?=(^ (find [term.node]~ store))
%han ?=(~ (find [term.node]~ store))
==
==
==
:: +ascend: reverse descend
::
++ ascend
!!
:: +go-next: find the next node and descend into it
::
++ go-next
|= [nodes=(map term node) told choice=(unit @t)]
^- told
=* node i.stack
=; =next
(descend nodes (proceed-into next nodes t.stack) store)
?+ -.node ~|([%no-step-on -.node] !!)
%text next.node
::
%flow
?~ t.texts.node next.node
node(texts t.texts.node)
::
%choice
?: ?=(~ choice) ~|([%no-choice text.node] !!)
|-
=* option i.options.node
?: =(u.choice pick.option) next.option
?~ t.options.node ~|([%bad-choice u.choice] !!)
$(options.node t.options.node)
==
:: +go-back: find the last step in history and ascend back up it
::
++ go-back
|= [nodes=(map term node) told]
^- told
!!
--
::
++ display
|%
++ intro-text
'''
The bonfire crackles and puffs. Sparks float up into the night sky and
pretend to be stars.
You join a group near the bonfire. A bard is telling tall tales. Noticing
your arrival, a small child walks over to hand you a flyer. You read it:
At any time, you can press:
- space or return to continue,
- . to re-print the last piece of text,
- < to step backward, like undo,
- tab to be reminded of these, and perhaps others things you can do.
'''
::
::TODO motd
++ lobby-text
'Having finished the story, the bard asks you which one he should tell next.\0a'
::
++ end-text
'''
You have reached the end of this story.
Tune in next week for another thrilling tale!
Press ! to go back to the lobby.
'''
::
++ show-state
|= =savestate
^- card
:+ %shoe [sole-id]~
:+ %sole %mor
:- txt+""
:- (show-prompt savestate)
?- -.savestate
%lobby (show-lobby +.savestate)
%story (show-node i.stack.told.savestate)
==
::
++ show-prompt
|= =savestate
^- sole-effect:shoe
:- %pro
^- sole-prompt:shoe
|^ ?- -.savestate
%lobby [& %lobby (pre ['lobby> ']~)]
%story [& tale.savestate (pre [(cat 3 tale.savestate '> ')]~)]
==
::
++ pre
|= =styx
[':' styx]
--
::
++ show-lobby
|= =area
^- (list sole-effect:shoe)
?+ area !!
%intro
(lines-as-txts intro-text)
::
%menu
:- txt+(trip lobby-text)
%+ turn ~(tap by tales)
|= [=term tale]
:- %klr
:~ ' '
[[`%br ~ ~] term ~]
' ] '
title
': '
brief
==
==
::
++ show-node
|= =node
^- (list sole-effect:shoe)
:_ ~
^- sole-effect:shoe
|^ ?- -.node
%end (lines end-text)
%text (lines text.node)
%flow (lines i.texts.node)
%both ~|([dap.bowl %cannot-show -.node] !!)
:: %many ~|([dap.bowl %cannot-show -.node] !!)
%store ~|([dap.bowl %cannot-show -.node] !!)
%choice [%mor (lines text.node) (choices options.node)]
==
::
++ lines
|= lines=@t
:- %mor ::TODO don't newlines auto-print? yes, but maybe not at correct indent. want manual newlines always for max render control
%+ turn
%+ rash lines
%+ more (just '\0a')
(star ;~(less (just '\0a') ^next))
|=(t=tape [%txt t])
::
++ choices
|= options=(lest [[pick=@t text=@t] =next])
^- (list sole-effect:shoe)
:_ ?~ t.options ~
$(options t.options)
:- %klr
=, i.options
:~ ' ) '
[[`%br ~ ~] pick ~]
text
==
--
::
++ simple-wrap
|= [txt=tape wid=@ud]
^- (list tape)
?~ txt ~
=/ [end=@ud nex=?]
=/ ret (find "\0a" (scag +(wid) `tape`txt))
?^ ret [u.ret &]
?: (lte (lent txt) wid)
[(lent txt) &]
=/ ace (find " " (flop (scag +(wid) `tape`txt)))
?~ ace [wid |]
[(sub wid u.ace) &]
:- (tufa (scag end `(list @)`txt))
$(txt (slag ?:(nex +(end) end) `tape`txt))
--
::
++ content
|%
++ build-tale
|= [title=@t brief=@t nodes=(list [=term =node])]
^- tale
:+ title brief
?~ nodes
~| %empty-tale
!!
:- term.i.nodes
(~(gas by *(map term node)) nodes)
::
++ example-tale
^~
%^ build-tale 'Doomo'
'A short demo story.'
^- (list [term node])
:~
:- %intro ::TODO build into engine
:+ %text
'you are a traveler. your clothes needs replacing.'
%crossroads
::
:- %crossroads
:+ %both
:^ %store [%hav %rebirth]
[%text 'the sun is shining brightly.' ~]
:+ %text 'the sun is about to set.'
:^ %store [%han %soaked]
~
[%text 'you are soaking wet.' ~]
:+ %choice
'you stand at the crossroads. which way do you go?'
:~
:- ['go north' ', into the mountains'] %mt-teal-foot
:- ['go south' 'ish, to the pole'] %south-pole-ferry
:- ['go west' ', to azure lake'] %azure-lake
==
::
:- %mt-teal-foot
:+ %text
'a mountain troll eats you.'
[%end ~]
::
:- %azure-lake
:+ %text
'you arrive at azure lake. the water tempts you, and you fall in!'
:+ %choice
'you are floating on azure lake. what do you do?'
:~
:- ['swim' ' south']
[%text 'the lake is too big to swim across. you lose.' %end ~]
::
:- ['give up' '']
:+ %text
'you put your life in fate\'s hands and sink to the bottom of the lake'
:+ %text
'...'
:+ %store [%put %rebirth]
:+ %choice
'''
you wake up on the lakeshore.
your clothes are gone. thick scales cover your skin!
what now?
'''
:~
:- ['despair' '']
:+ %text
'you spend the rest of your days regretting your fate. you lose.'
[%end ~]
::
[['return' ' from whence you came'] %crossroads]
==
::
:- ['get out' ' and head back']
:+ %store [%put %soaked]
%crossroads
==
::
:- %south-pole-ferry
:+ %text
'you arrive at the southish pole.'
:^ %store [%hav %soaked]
[%text 'you die of hypothermia. you lose.' %end ~]
:+ %text
'''
you hear the sound of snow falling.
near the water's edge, a man waves at you.
'''
:+ %choice
'the ferryman greets you. \'where to, traveler?\''
:~
:- ['further' ' south'] %offer
:- ['back' ' where you came from'] %crossroads
==
::
:- %offer
:+ %text
'you get aboard the ferry and set off.'
:+ %both
:^ %store [%hav %rebirth]
~
:+ %choice
'the ferryman offers to give you new clothes.'
:~
:- ['accept' ' the clothes'] [%store [%put %debt] ~]
:- ['reject' ' his offer'] ~
==
:+ %text
'the ferry arrives in the land of the dead.'
:^ %store [%hav %debt]
:+ %text
'in return for the clothes, the ferryman takes your soul. you lose.'
[%end ~]
:+ %text
'you venture into the land of the dead.'
:^ %store [%han %rebirth]
:+ %text
'you have no protection, and get eaten by a ghoul. you lose.'
[%end ~]
:+ %text
'a ghoul tries to eat you, but can\'t bite through your scales.'
:+ %text
'''
among the dead, you find your dog.
you are reunited at last.
'''
[%end ~]
==
--
::
::
++ lines-as-txts
|= =cord
^- (list sole-effect:shoe)
%+ rash cord
%+ more (just '\0a')
%+ stag %txt
%- star
;~(less (just '\0a') ^next)
--