urbit/main/app/talk/core.hook

661 lines
21 KiB
Plaintext
Raw Normal View History

2014-12-10 23:09:01 +03:00
::
:::: /hook/core/talk/app
::
/? 314
2014-12-11 00:10:30 +03:00
/- *radio
2015-01-01 23:43:50 +03:00
/+ radio
2014-12-10 23:09:01 +03:00
::
::::
::
!:
2015-01-01 23:43:50 +03:00
=> |% :: structures
++ town :: all client state
$: live=(unit span) :: present story
console=terminal :: controlling terminal
stories=(map span story) :: all stories
== ::
++ grip :: subscription state
|* nub=$+(* *) :: wrapped state
2015-01-04 09:24:48 +03:00
$| $? %warm :: activated
%cool :: activating
%dead :: inoperative
%cold :: inactive
== [%live p=nub] :: operating
2015-01-01 23:43:50 +03:00
++ terminal :: terminal state
$: present=presence :: presence state
== ::
++ story :: persona
2015-01-04 09:24:48 +03:00
$: link=(grip bridge) :: connection
2015-01-01 23:43:50 +03:00
count=@ud :: message counter
2015-01-06 02:59:57 +03:00
mike=(pair ,? (set station)) :: passive/voice
2015-01-01 23:43:50 +03:00
quiet=? :: !verbose
past=(list station) :: past received auds
== ::
2015-01-04 09:24:48 +03:00
++ bridge :: remote state
$: xm=config :: configuration
am=register :: presence
2015-01-01 23:43:50 +03:00
== ::
++ work :: general action
$% [%ask (unit work)] :: help (about)
[%exp twig] :: compute
[%mor (list work)] :: sequence
[%rub work-adjust] :: configure story
[%say speech] :: publish in voice
[%who (unit station)] :: show presence
2015-01-04 09:24:48 +03:00
[%wry work-construct] :: configure system
2014-12-12 00:32:59 +03:00
== ::
2015-01-01 23:43:50 +03:00
++ work-adjust :: adjust story
$% [%dark p=(set ship)] :: toggle blacklist
[%lite p=(set ship)] :: toggle whitelist
[%love p=(set station)] :: toggle stations
[%whom p=? q=(set station)] :: active/voice
[%wind p=@dr] :: rewind by date
2014-12-10 23:09:01 +03:00
== ::
2015-01-01 23:43:50 +03:00
++ work-construct :: configure system
$% [%make p=span] :: create story
[%raze p=span] :: destroy story
[%tune p=span] :: switch to story
2014-12-10 23:09:01 +03:00
== ::
++ iron :: terminal output
$% [%prompt p=cord q=prom r=cord] :: prompt
[%tang p=(list tank)] :: prettyprintable
[%txt p=cord] :: simple text
==
++ gift
$% [%mean ares]
[%nice ~]
[%rush iron]
[%rust iron]
==
++ hapt ,[p=ship q=path]
++ move ,[p=bone q=(mold note gift)]
++ note
$? $: %g
$% [%mess p=hapt q=ship r=cage]
[%nuke p=hapt q=ship]
[%show p=hapt q=ship r=path]
2014-12-17 21:05:38 +03:00
== ==
2015-01-01 23:43:50 +03:00
$: %t
$% [%wait p=@da]
== == ==
++ gall-sign :: subscription result
2014-12-10 23:09:01 +03:00
$% [%mean p=ares]
[%nice ~]
$: %rush
$= p
2015-01-01 23:43:50 +03:00
$% [%txt p=cord] :: input text
[%type p=?] :: typing notify
2014-12-10 23:09:01 +03:00
== ==
$: %rust
$= p
$% [%txt p=cord]
[%radio-report p=report]
== ==
2015-01-01 23:43:50 +03:00
==
++ sign
$? [%g gall-sign] :: from %gall
$: %t :: from %time
2014-12-17 21:05:38 +03:00
$% [%wake ~] :: timer wakeup
2014-12-10 23:09:01 +03:00
== == ==
--
!:
::::
::
2015-01-06 02:59:57 +03:00
=> |% :: tools
2015-01-06 23:31:36 +03:00
++ hy :: messenger
|_ [moz=(list move) hide]
++ hy-abet moz :: resolve core
++ hy-transmit :: send command
|= cod=command
%_ +>
moz :_ moz
[0 %pass /command %g %mess [our /radio] our [%radio-command !>(cod)]]
==
::
++ hy-render :: return to console
|= rod=iron
%_ +>
moz
=+ oss=(~(tap in (~(get ju pus) /out)))
|- ^- (list move)
?~ oss moz
[`move`[i.oss %give %rush rod] $(oss t.oss)]
==
::
++ hy-subscribe :: send %show
|= [way=path hoc=path]
%_(+> moz :_(moz [0 %pass way %g %show [our /radio] our hoc]))
::
++ hy-unsubscribe :: send %nuke
|= way=path
%_(+> moz :_(moz [0 %pass way %g %nuke [our /radio] our]))
::
++ hy-display :: print to console
|=(tay=(list tank) (hy-render %tang tay))
::
++ hy-print :: simple print
|=(tep=tape (hy-display [%leaf tep]~))
::
++ hy-accept :: set prompt
|=(asq=cord (hy-render [%prompt asq %text '']))
--
::
2015-01-01 23:43:50 +03:00
++ parse :: command parser
2015-01-04 09:24:48 +03:00
|= our=ship
2015-01-01 23:43:50 +03:00
=+ vag=(vang | [&1:% &2:% '0' |3:%])
|%
++ come :: keyword command
|* [a=@tas b=_rule]
;~((glue (plus ace)) (cold a (jest a)) b)
::
++ gone :: parse unit
|* a=_rule
;~(pose (stag ~ a) (easy ~))
::
++ posh :: parse each
|* [a=_rule b=_rule]
;~(pose (stag %& a) (stag %| b))
::
++ ship ;~(pfix sig fed:ag) :: ship
++ shiz :: ship set
%+ cook
|=(a=(list ^ship) (~(gas in *(set ^ship)) a))
(most ;~(plug com (star ace)) ship)
::
++ stat :: station
%+ posh
2014-12-18 21:37:36 +03:00
;~ plug
2015-01-01 23:43:50 +03:00
ship
2015-01-04 09:24:48 +03:00
;~(pose ;~(pfix fas urs:ab) (easy (main our)))
2015-01-01 23:43:50 +03:00
==
;~ pfix ket
;~ pose
;~(pfix pat (stag %twitter urs:ab))
2014-12-18 21:37:36 +03:00
==
==
2015-01-01 23:43:50 +03:00
::
++ staz :: station set
%+ cook
|=(a=(list station) (~(gas in *(set station)) a))
(most ;~(plug com (star ace)) stat)
::
++ step :: rollback interval
%+ sear
|= a=coin
?. ?=([%$ %dr @] a) ~
(some `@dr`+>.a)
nuck:so
::
++ text (boss 256 (star prn)) :: utf8 text
++ tome
%+ stag %lin
;~ pose
(stag %| ;~(pfix pat text))
(stag %& text)
==
::
++ work :: all commands
%+ knee *^work |. ~+
;~ pose
;~ pfix zap
%+ stag %wry
;~ pose
(come %make urs:ab)
(come %raze urs:ab)
(come %tune urs:ab)
==
==
::
;~ pfix cen
%+ stag %rub
;~ pose
(come %dark shiz)
(come %lite shiz)
(come %whom (stag %& staz))
(come %wind step)
==
==
::
;~(pfix wut (stag %ask (gone work)))
;~(pfix tis (stag %who (gone stat)))
;~(pfix cen (stag %exp wide:vag))
::
%+ cook
|= [a=(set station) b=(unit ,[%lin p=? q=@t])]
^- ^work
=. b ?~(b ~ ?:(=(0 q.u.b) ~ b))
=+ c=[%rub %whom %& a]
?~(b c [%mor c [%say u.b] ~])
;~ plug
staz
(gone ;~(pfix (star ace) tome))
==
::
(stag %say tome)
==
--
2015-01-06 02:59:57 +03:00
::
++ swatch :: print station set
|= [our=ship tou=(set station)]
=+ tuo=(~(tap in tou))
|- ^- tape
?~ tuo ~
=+ ted=$(tuo t.tuo)
=+ ^= ind ^- tape
?- -.i.tuo
%& =+ sip=(scow %p p.p.i.tuo)
?: =((main p.p.i.tuo) q.p.i.tuo)
sip
:(welp sip "/" (trip q.p.i.tuo))
%| ['^' '@' (trip p.p.i.tuo)]
==
?~ ted ind
(welp ind `tape`[',' ' ' ted])
::
2015-01-01 23:43:50 +03:00
++ stog :: toggle set
|* [tog=(set) tag=(set)]
=+ got=(~(tap in tog))
|- ^+ tag
?~ got tag
%= $
got t.got
tag ?: (~(has in tag) i.got)
(~(del in tag) i.got)
(~(put in tag) i.got)
==
--
2014-12-10 23:09:01 +03:00
!:
::::
::
2015-01-01 23:43:50 +03:00
|_ [hid=hide town]
2015-01-06 23:31:36 +03:00
++ hype |=(moz=(list move) ~(. hy moz hid))
2015-01-01 23:43:50 +03:00
++ sy
|_ $: $: man=span :: u.live
moz=(list move) :: pending moves
== ::
story :: current story
==
2014-12-18 05:29:32 +03:00
::
2015-01-01 23:43:50 +03:00
++ sy-abet :: resolve core
2015-01-04 09:24:48 +03:00
^- [(list move) _+>]
[(flop moz) +>(stories (~(put by stories) man +<+))]
::
2015-01-04 09:24:48 +03:00
++ sy-subscribe :: story subscribe
2015-01-06 02:59:57 +03:00
?> =(%cold link)
=+ cub=?.(=(0 count) (scot %ud count) (scot %da (sub lat.hid ~d1)))
=. + (sy-message "subscribe <{(trip cub)}>")
%_ +
2015-01-04 09:24:48 +03:00
link %cool
2015-01-06 23:31:36 +03:00
moz =< hy-abet
%+ hy-subscribe:(hype moz)
/fm/[man]
2015-01-07 04:27:02 +03:00
:~ %afx
2015-01-06 23:31:36 +03:00
man
?: =(0 count)
~& [%story-init man `@da`(sub lat.hid ~d1)]
(scot %da (sub lat.hid ~d1))
(scot %ud count)
==
==
2015-01-01 23:43:50 +03:00
::
2015-01-04 09:24:48 +03:00
++ sy-unsubscribe :: story unsubscribe
2015-01-06 02:59:57 +03:00
?: =(& ?=(?(%cold %dead) link)) .
2015-01-01 23:43:50 +03:00
%_ .
2015-01-04 09:24:48 +03:00
link %cold
2015-01-06 23:31:36 +03:00
moz hy-abet:(hy-unsubscribe:(hype moz) /fm/[man])
2015-01-01 23:43:50 +03:00
==
::
++ sy-serial :: make serial no
^- [serial _.]
[(shaf %serial eny.hid) .(eny.hid (shax eny.hid))]
::
++ sy-audience :: speech audience
%- ~(gas by *audience)
%+ turn `(list station)`[[%& our.hid man] (~(tap in q.mike))]
|=(a=station [a %pending])
::
++ sy-message :: print message
|= msg=tape
2015-01-06 23:31:36 +03:00
%_(+> moz hy-abet:(hy-print:(hype moz) ":{(trip man)}: {msg}"))
2015-01-06 02:59:57 +03:00
::
++ sy-present
|= [msg=tape tay=(list tank)]
=. tay (welp tay `(list tank)`[%leaf "::"]~)
=. tay :_(tay [%leaf ":{(trip man)}: {msg}:: "])
2015-01-06 23:31:36 +03:00
%_(+>.$ moz hy-abet:(hy-display:(hype moz) (flop tay)))
2015-01-06 02:59:57 +03:00
::
++ sy-prompt
|= tou=(set station)
^- tape
;: welp
(scow %p our.hid)
2015-01-08 00:26:05 +03:00
?:(=(man (main our.hid)) "" `tape`(welp "/" (trip man)))
2015-01-06 02:59:57 +03:00
?~ tou "& "
2015-01-07 04:27:02 +03:00
`tape`:(welp "(" (swatch our.hid tou) ")& ")
2015-01-06 02:59:57 +03:00
==
2015-01-01 23:43:50 +03:00
::
++ sy-voice :: set targets
2015-01-06 02:59:57 +03:00
|= [pas=? tou=(set station)]
?: &(!p.mike pas) +>
2015-01-06 23:31:36 +03:00
%_ +>.$
mike [pas tou]
moz hy-abet:(hy-accept:(hype moz) (crip (sy-prompt tou)))
==
2015-01-01 23:43:50 +03:00
::
++ sy-rollback
|= lon=@dr
!!
::
2015-01-04 09:24:48 +03:00
++ sy-work :: run user command
2015-01-01 23:43:50 +03:00
|= job=work
^+ +>
?- -.job
2015-01-04 09:24:48 +03:00
%ask ~&(%sy-work-ask-stub !!)
%exp ~&(%sy-work-exp-stub !!)
2015-01-01 23:43:50 +03:00
%mor
|- ^+ +>.^$
?~ +.job +>.^$
$(+.job t.+.job, +>.^$ ^$(job i.+.job))
::
%rub
2015-01-04 09:24:48 +03:00
?: ?=(%whom +<.job)
(sy-voice +>.job)
?: ?=(%wind +<.job)
~& %rub-wind-stub
!!
=+ suz=sy-live
?~ suz (sy-message "not connected")
?- +<.job
%lite sz-abet:(sz-cordon:u.suz [%| +>.job])
%dark sz-abet:(sz-cordon:u.suz [%& +>.job])
%love sz-abet:(sz-sources:u.suz +>.job)
2014-12-12 00:32:59 +03:00
==
2015-01-04 09:24:48 +03:00
::
2015-01-01 23:43:50 +03:00
%say
=^ sir +>.$ sy-serial
2015-01-06 23:31:36 +03:00
%= +>.$
moz
=< hy-abet
%- ~(hy-transmit hy moz hid)
[%publish [[sir sy-audience [lat.hid +.job]] ~]]
==
2015-01-01 23:43:50 +03:00
::
2015-01-04 09:24:48 +03:00
%wry ~&(%sy-work-wry !!)
%who ~&(%sy-work-who-stub !!)
2014-12-16 01:00:00 +03:00
==
2015-01-04 09:24:48 +03:00
::
++ sy-gram :: apply telegram
2015-01-06 23:31:36 +03:00
|= [num=@ud gam=telegram]
2015-01-04 09:24:48 +03:00
^+ +>
%= +>
moz
2015-01-06 23:31:36 +03:00
=< hy-abet
%- hy-render:(hype moz)
2015-01-04 09:24:48 +03:00
=* sta r.q.gam
?+ -.q.sta ~&([%strange-gram -.q.sta] !!)
::
2015-01-06 23:31:36 +03:00
%lin
:- %txt
%+ rap 3
2015-01-07 04:27:02 +03:00
:~ (scot %ud num) ')'
2015-01-06 23:31:36 +03:00
(scot %p p.gam) ?:(p.q.sta ': ' ' ')
q.q.sta
2015-01-04 09:24:48 +03:00
==
==
==
::
++ sy-grams :: apply telegrams
|= [num=@ud gaz=(list telegram)]
^+ +>
2015-01-06 02:59:57 +03:00
?: (gth num count)
(sy-message(count 0) "message gap: {<num>} at {<count>}")
2015-01-04 09:24:48 +03:00
=. .
?: =(num count) .
.(num count, gaz (slag (sub count num) gaz))
2015-01-06 02:59:57 +03:00
=+ las=(add count (lent gaz))
2015-01-04 09:24:48 +03:00
|- ^+ +>.^$
2015-01-06 02:59:57 +03:00
?~ gaz +>.^$(count las)
2015-01-06 23:31:36 +03:00
$(gaz t.gaz, count +(count), +>.^$ (sy-gram num i.gaz))
2015-01-04 09:24:48 +03:00
::
++ sy-error :: report error
|= ars=ares
%= +>
moz
2015-01-06 23:31:36 +03:00
=< hy-abet
%- hy-print:(hype moz)
?~(ars "connection error" "disaster: (trip p.u.ars)")
2015-01-04 09:24:48 +03:00
==
::
++ sy-sign :: subscription sign
|= res=gall-sign
^+ +>
2015-01-06 02:59:57 +03:00
:: ~& [%sy-sign res]
2015-01-04 09:24:48 +03:00
?- -.res
%mean
=. link %dead
(sy-error p.res)
::
%nice :: misordered, ignore
:: ?. ?=(%cool link)
2015-01-06 02:59:57 +03:00
:: ~& [%sy-sign-nice-bad link]
2015-01-04 09:24:48 +03:00
:: +>.$
::+>(link %warm)
+>.$
::
%rush :: should use, don't
~&(%sy-sign-rush !!)
::
%rust :: direct update
?: ?=(?(%cold %dead) link)
2015-01-06 02:59:57 +03:00
~& [%sy-sign-rust-bad `@tas`link]
2015-01-04 09:24:48 +03:00
+>.$
?> ?=(%radio-report +<.res)
?: ?=(%cool link)
:: XX workaround for inverted nice
$(link %warm)
=+ suz=sy-live
?~ suz (sy-message "not connected")
sz-abet:(sz-apply:u.suz +>.res)
==
::
++ sy-live :: as connected
^- (unit ,_sz)
?: ?=([%live *] link)
`~(. sz p.link)
?.(?=(%warm link) ~ `~(. sz *bridge))
::
++ sz :: story, connected
|_ big=bridge
++ sz-abet %_(+> link [%live big]) :: resolve to ++sy
++ sz-amok
|= why=?(%cold %cool %dead %warm)
%_(+>+> link why)
::
++ sz-cordon :: design cordon
|= con=(ache (set ship) (set ship))
^+ +>
=. cordon.xm.big
?- -.cordon.xm.big
%& ?- -.con
%& [%& (stog p.con p.cordon.xm.big)]
%| con
==
%| ?- -.con
%& con
%| [%| (stog p.con p.cordon.xm.big)]
==
==
2015-01-06 23:31:36 +03:00
+>.$(moz hy-abet:(hy-transmit:(hype moz) [%design man ~ xm.big]))
2015-01-04 09:24:48 +03:00
::
++ sz-sources :: design sources
|= src=(set station)
^+ +>
=. sources.xm.big (stog src sources.xm.big)
2015-01-06 23:31:36 +03:00
+>.$(moz hy-abet:(hy-transmit:(hype moz) [%design man ~ xm.big]))
2015-01-04 09:24:48 +03:00
::
++ sz-config :: apply config
|= cof=config
2015-01-06 02:59:57 +03:00
=. +>+> (sy-present "config" >cof< ~)
:: ~& [%sz-config cof]
%_(+> xm.big cof, +> (sy-voice %& sources.cof))
2015-01-04 09:24:48 +03:00
::
++ sz-group :: apply register
|= rex=register
%_(+> am.big rex)
::
++ sz-apply :: apply report
|= rad=report
^+ +>
?- -.rad
%house ~&(%sz-apply-house !!)
%grams +>(+> (sy-grams +.rad))
%config (sz-config +.rad)
%group (sz-group +.rad)
==
--
2015-01-01 23:43:50 +03:00
--
++ ny :: top configuration
|_ moz=(list move)
++ ny-abet :: resolve core
2015-01-04 09:24:48 +03:00
^- [(list move) _+>]
[(flop moz) +>]
2015-01-01 23:43:50 +03:00
::
++ ny-amid :: integrate story
|= nov=_sy
2015-01-04 09:24:48 +03:00
=^ zom +>+> sy-abet:nov
+>.$(moz (flop zom))
2015-01-01 23:43:50 +03:00
::
++ ny-tune :: connect to story
|= man=span
^+ +>
?: =(`man live)
2015-01-06 23:31:36 +03:00
+>(moz hy-abet:(hy-print:(hype moz) "already tuned to {(trip man)}"))
2015-01-01 23:43:50 +03:00
?. (~(has by stories) man)
2015-01-06 23:31:36 +03:00
+>(moz hy-abet:(hy-print:(hype moz) "no story {(trip man)}"))
2015-01-01 23:43:50 +03:00
=. +> ny-stop
=. live `man
2015-01-06 02:59:57 +03:00
:: ~& [%tune-start man]
2015-01-04 09:24:48 +03:00
(ny-amid sy-subscribe:(need (novel moz)))
2015-01-01 23:43:50 +03:00
::
++ ny-stop :: disconnect story
^+ .
?~ live .
2015-01-04 09:24:48 +03:00
(ny-amid(live ~) sy-unsubscribe:(need (novel moz)))
2015-01-01 23:43:50 +03:00
::
++ ny-tell :: hear from server
|= sap=(set span)
^+ +>
=. +> ?.(&(?=(^ live) !(~(has in sap) u.live)) +> ny-stop)
=. stories
=+ ros=(skim (~(tap by stories)) |=([a=span *] (~(has in sap) a)))
=+ pas=(~(tap in sap))
%- ~(gas by *(map span story))
|- ^- (list (pair span story))
?~ pas ros
=+ sor=$(pas t.pas)
?:((~(has by stories) i.pas) sor [[i.pas *story] sor])
?^ live +>.$
?~ stories +>.$
2015-01-04 09:24:48 +03:00
?: (~(has by `(map span story)`stories) (main our.hid))
(ny-tune (main our.hid))
2015-01-01 23:43:50 +03:00
(ny-tune p.n.stories)
::
++ ny-work :: user command
|= jaw=work-construct
^+ +>
?- -.jaw
2015-01-06 23:31:36 +03:00
%raze +>(moz hy-abet:(hy-transmit:(hype moz) [%design p.jaw ~]))
%make +>(moz hy-abet:(hy-transmit:(hype moz) [%design p.jaw [~ ~ %| ~]]))
2015-01-01 23:43:50 +03:00
%tune (ny-tune p.jaw)
2014-12-18 21:37:36 +03:00
==
2015-01-01 23:43:50 +03:00
--
2014-12-12 00:32:59 +03:00
::
2015-01-01 23:43:50 +03:00
++ novel :: live story
|= moz=(list move)
^- (unit ,_sy)
?~ live ~
`~(. sy [u.live moz] (~(got by stories) u.live))
2014-12-18 02:40:43 +03:00
::
2015-01-06 02:59:57 +03:00
++ peer
|= [ost=bone you=ship pax=path]
^- [(list move) _+>]
[~ +>.$]
::
2015-01-01 23:43:50 +03:00
++ pour-shell
|= txt=cord
2014-12-10 23:09:01 +03:00
^- [(list move) _+>]
2015-01-04 09:24:48 +03:00
=+ jub=(rush txt work:(parse our.hid))
2015-01-01 23:43:50 +03:00
?~ jub
2015-01-06 23:31:36 +03:00
[hy-abet:(hy-print:(hype ~) "invalid input") +>.$]
2015-01-01 23:43:50 +03:00
?: ?=(%wry -.u.jub)
2015-01-04 09:24:48 +03:00
ny-abet:(ny-work:ny +.u.jub)
2015-01-01 23:43:50 +03:00
=+ nuv=(novel ~)
2015-01-06 23:31:36 +03:00
?~ nuv [hy-abet:(hy-print:(hype ~) "not tuned to any story") +>.$]
2015-01-04 09:24:48 +03:00
sy-abet:(sy-work:u.nuv u.jub)
2014-12-10 23:09:01 +03:00
::
++ pour
|= [ost=bone pax=path sih=*]
^- [(list move) _+>]
2014-12-12 00:32:59 +03:00
=> .(sih ((hard sign) sih))
2014-12-18 05:29:32 +03:00
:: ~& talk-pour/sih
2014-12-11 00:10:30 +03:00
?~ pax ~& talk-pour-strange-path/pax !!
2015-01-06 02:59:57 +03:00
?+ i.pax ~& talk-pour-strange-path/pax
~& sign/sih
!!
%command
?+ +<.sih !!
%nice [~ +>.$]
%mean ~&([%pour-mean-cmd-in +>.sih] !!)
==
2014-12-10 23:09:01 +03:00
%cmd-in
2015-01-01 23:43:50 +03:00
?+ +<.sih !!
%nice [~ +>.$]
2015-01-06 02:59:57 +03:00
%mean ~&([%pour-mean-cmd-in +>.sih] !!)
2015-01-01 23:43:50 +03:00
?(%rush %rust)
?> ?=(%txt -.p.sih)
(pour-shell p.p.sih)
2014-12-10 23:09:01 +03:00
==
2015-01-04 09:24:48 +03:00
::
%cmd-ac
[~ +>.$]
2014-12-10 23:09:01 +03:00
::
2014-12-12 00:32:59 +03:00
%server
2015-01-01 23:43:50 +03:00
?+ +<.sih !!
%nice [~ +>.$]
%mean ~&(%talk-server-crash !!)
?(%rush %rust)
?> ?=([%radio-report %house *] p.sih)
2015-01-04 09:24:48 +03:00
ny-abet:(ny-tell:ny +.p.p.sih)
==
2014-12-12 00:32:59 +03:00
::
2015-01-04 09:24:48 +03:00
%time
:_ +>.$
2015-01-08 00:26:05 +03:00
~& [%talk-pour-time lat.hid `@da`(add ~s12 lat.hid)]
:~ [0 %pass /time %t %wait (add ~s12 lat.hid)]
2014-12-11 00:10:30 +03:00
==
2015-01-04 09:24:48 +03:00
::
%fm
?> ?=([@ *] t.pax)
?. &(?=(^ live) =(u.live i.t.pax))
~& [%talk-wrong-story live i.t.pax]
[~ +>.$]
?> ?=(%g -.sih)
sy-abet:(sy-sign:(need (novel ~)) +.sih)
2014-12-10 23:09:01 +03:00
==
::
++ poke-talk-args
|= [ost=bone you=ship arg=~]
^- [(list move) _+>]
:_ +>
2015-01-01 23:43:50 +03:00
:~ [0 %pass /cmd-in %g %show [our.hid +.imp.hid] you /in/[-.imp.hid]]
2015-01-08 00:26:05 +03:00
[0 %pass /time %t %wait (add ~s13 lat.hid)]
2015-01-01 23:43:50 +03:00
[0 %pass /cmd-ac %g %show [our.hid +.imp.hid] you /active/[-.imp.hid]]
2014-12-10 23:09:01 +03:00
^- move
2015-01-01 23:43:50 +03:00
:* 0 %pass /server
2014-12-11 22:03:49 +03:00
%g %show
2014-12-18 03:01:35 +03:00
[our.hid /radio] our.hid
2014-12-12 00:32:59 +03:00
/
2014-12-11 22:03:49 +03:00
==
2014-12-10 23:09:01 +03:00
==
--