2017-03-23 03:34:56 +03:00
|
|
|
:: :: ::
|
|
|
|
:::: /hoon/talk-agent/app :: ::
|
|
|
|
:: :: ::
|
|
|
|
/? 310 :: hoon version
|
|
|
|
/- talk, sole :: structures
|
|
|
|
/+ talk, sole, time-to-id, twitter :: libraries
|
|
|
|
/= seed /~ !>(.)
|
|
|
|
::
|
|
|
|
::::
|
|
|
|
::
|
|
|
|
=> |% :: data structures
|
2017-03-24 01:10:28 +03:00
|
|
|
++ chattel :: full state
|
|
|
|
$: tales/(map knot tale) :: conversations
|
2017-03-23 03:34:56 +03:00
|
|
|
folks/(map ship human) :: human identities
|
|
|
|
nik/(map (set partner) char) :: bound station glyphs
|
|
|
|
nak/(jug char (set partner)) :: station glyph lookup
|
2017-03-24 01:10:28 +03:00
|
|
|
shells/(map bone shell) :: interaction state
|
|
|
|
== ::
|
|
|
|
++ tale :: user-facing story
|
|
|
|
$: count/@ud :: (lent grams)
|
|
|
|
grams/(list telegram) :: all history
|
|
|
|
locals/atlas :: local presence
|
|
|
|
shape/config :: configuration
|
2017-03-24 23:10:27 +03:00
|
|
|
known/(map serial @ud) :: messages heard
|
2017-03-23 03:34:56 +03:00
|
|
|
== ::
|
|
|
|
++ shell :: console session
|
|
|
|
$: her/ship :: client identity
|
|
|
|
man/knot :: mailbox
|
|
|
|
count/@ud :: messages shown
|
|
|
|
say/sole-share :: console state
|
2017-03-24 01:10:28 +03:00
|
|
|
active/(unit (set partner)) :: active targets
|
2017-03-23 03:34:56 +03:00
|
|
|
owners/register :: presence mirror
|
|
|
|
harbor/(map knot (pair posture cord)) :: stations mirror
|
|
|
|
system/cabal :: config mirror
|
|
|
|
settings/(set knot) :: frontend settings
|
|
|
|
== ::
|
2017-03-24 23:10:27 +03:00
|
|
|
:: ::
|
|
|
|
++ move (pair bone card) :: all actions
|
|
|
|
++ lime {$sole-effect sole-effect} :: diff fruit
|
|
|
|
++ pear :: poke fruit
|
|
|
|
$% {$talk-command command} ::
|
|
|
|
{$talk-update update} ::
|
|
|
|
== ::
|
|
|
|
++ card :: general card
|
|
|
|
$% {$diff lime} ::
|
|
|
|
{$poke wire dock pear} ::
|
|
|
|
== ::
|
|
|
|
++ work :: interface action
|
|
|
|
$% {$number p/$@(@ud {@u @ud})} :: relative/absolute
|
|
|
|
{$help $~} :: print usage info
|
|
|
|
{$who p/where} :: presence
|
|
|
|
{$what p/$@(char (set partner))} :: show bound glyph
|
|
|
|
{$bind p/char q/(unit where)} ::
|
|
|
|
{$join p/where} ::
|
|
|
|
{$leave p/where} ::
|
|
|
|
{$say p/(list speech)} ::
|
|
|
|
{$eval p/cord q/twig} ::
|
|
|
|
{$invite p/knot q/(list partner)} :: whitelist add
|
|
|
|
{$banish p/knot q/(list partner)} :: blacklist add
|
|
|
|
{$block p/knot q/(list partner)} :: blacklist add
|
|
|
|
{$author p/knot q/(list partner)} :: whitelist add
|
|
|
|
{$nick p/(unit ship) q/(unit cord)} ::
|
|
|
|
{$set p/knot} ::
|
|
|
|
{$unset p/knot} ::
|
|
|
|
{$target p/where q/(unit work)} :: set active targets
|
|
|
|
:: {$destroy p/knot} ::
|
|
|
|
{$create p/posture q/knot r/cord} ::
|
|
|
|
{$probe p/station} ::
|
|
|
|
== ::
|
|
|
|
++ where (set partner) :: non-empty audience
|
|
|
|
++ glyphs `wall`~[">=+-" "}),." "\"'`^" "$%&@"] :: station char pool'
|
|
|
|
|
2017-03-23 03:34:56 +03:00
|
|
|
--
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
2017-03-24 01:10:28 +03:00
|
|
|
|_ {hid/bowl chattel}
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
++ ra :: per transaction
|
|
|
|
::x gets called when talk gets poked or otherwise prompted/needs to perform
|
|
|
|
::x an action.
|
|
|
|
::x arms generally modify state, and store moves in ++ra's moves. these get
|
|
|
|
::x produced when calling ++ra-abet.
|
|
|
|
::x in applying commands and making reports, it uses ++pa for story work.
|
|
|
|
::
|
|
|
|
::x moves: moves storage, added to by ++ra-emit and -emil, produced by -abed.
|
|
|
|
|_ moves/(list move)
|
|
|
|
::
|
|
|
|
++ ra-abed :: resolve core
|
|
|
|
::x produces the moves stored in ++ra's moves.
|
|
|
|
::x sole-effects get special treatment to become a single move.
|
|
|
|
::
|
|
|
|
^+ [*(list move) +>]
|
|
|
|
:_ +>
|
|
|
|
::x seperate our sole-effects from other moves.
|
|
|
|
=+ ^= yop
|
|
|
|
|- ^- (pair (list move) (list sole-effect))
|
|
|
|
?~ moves [~ ~]
|
|
|
|
=+ mor=$(moves t.moves)
|
|
|
|
?: ?& =(ost.hid p.i.moves)
|
|
|
|
?=({$diff $sole-effect *} q.i.moves)
|
|
|
|
==
|
|
|
|
[p.mor [+>.q.i.moves q.mor]]
|
|
|
|
[[i.moves p.mor] q.mor]
|
|
|
|
::x flop moves, flop and squash sole-effects into a %mor.
|
|
|
|
=+ :* moz=(flop p.yop)
|
|
|
|
^= foc ^- (unit sole-effect)
|
|
|
|
?~ q.yop ~
|
|
|
|
?~(t.q.yop `i.q.yop `[%mor (flop `(list sole-effect)`q.yop)])
|
|
|
|
==
|
|
|
|
::x produce moves or sole-effects and moves.
|
|
|
|
?~(foc moz [[ost.hid %diff %sole-effect u.foc] moz])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ ra-abet :: complete core
|
|
|
|
::x applies talk reports, then produces moves and updated state.
|
|
|
|
::
|
|
|
|
ra-abed:ra-axel
|
|
|
|
::
|
|
|
|
++ ra-axel :: rebound reports
|
|
|
|
::x extracts and applies the talk-reports in moves meant for our shells.
|
|
|
|
::
|
|
|
|
^+ .
|
|
|
|
::x separate talk-reports meant for our shells from other moves.
|
|
|
|
=+ ^= rey
|
|
|
|
|- ^- (pair (list move) (list (pair bone report)))
|
|
|
|
?~ moves
|
|
|
|
[~ ~]
|
|
|
|
=+ mor=$(moves t.moves)
|
|
|
|
::x if we know the target shell is ours, and it's a talk report,
|
|
|
|
::x add it to the list of reports to be locally applied.
|
|
|
|
?. ?& (~(has by shells) `bone`p.i.moves)
|
|
|
|
?=({$diff $talk-report *} q.i.moves)
|
|
|
|
==
|
|
|
|
[[i.moves p.mor] q.mor]
|
|
|
|
[p.mor [[p.i.moves +>.q.i.moves] q.mor]]
|
|
|
|
::x update moves to exclude our talk-reports.
|
|
|
|
=. moves p.rey
|
|
|
|
=. q.rey (flop q.rey)
|
|
|
|
?: =(q.rey ~) +
|
|
|
|
|- ^+ +>
|
|
|
|
?~ q.rey ra-axel
|
|
|
|
::x apply reports to our shells.
|
|
|
|
::TODO will this ever happen? yes: implement ra-back. no: delete sh-repo-*
|
|
|
|
=+ bak=(ra-back(ost.hid p.i.q.rey) q.i.q.rey)
|
|
|
|
$(q.rey t.q.rey, +> bak(ost.hid ost.hid))
|
|
|
|
::
|
|
|
|
++ ra-diff-talk-report :: subscription update
|
|
|
|
::x process a talk report from cuz into story man.
|
|
|
|
::
|
|
|
|
|= {man/knot cuz/station rad/report}
|
|
|
|
^+ +>
|
|
|
|
::TODO ra-know needed counter +1
|
|
|
|
=+ tal=(~(get by tales) man)
|
|
|
|
?~ tal ~&([%know-no-tale man] !!)
|
|
|
|
pa-abet:(~(pa-diff-talk-report pa man u.tal) cuz rad)
|
|
|
|
|
|
|
|
::
|
|
|
|
++ ra-sole
|
|
|
|
::x applies sole-action.
|
|
|
|
::
|
|
|
|
|= act/sole-action
|
|
|
|
^+ +>
|
|
|
|
=+ shu=(~(get by shells) ost.hid)
|
|
|
|
?~ shu
|
|
|
|
~| :+ %ra-console-broken ost.hid
|
|
|
|
::x differentiate between subscribers we know and don't know.
|
|
|
|
?:((~(has by sup.hid) ost.hid) %lost %unknown)
|
|
|
|
!!
|
|
|
|
sh-abet:(~(sh-sole sh ~ u.shu) act)
|
|
|
|
::
|
|
|
|
++ pa :: story core
|
|
|
|
::x tale core, used for doing work on a story.
|
|
|
|
::x as always, an -abet arms is used for applying changes to the state.
|
|
|
|
::x ++pa-watch- arms get called by ++ra-subscribe to add a subscriber.
|
|
|
|
::x bones are used to identify subscribers (source event identifiers)
|
|
|
|
::
|
|
|
|
|_ ::x man: the knot identifying the story in stories.
|
|
|
|
::x story doesn't get a face because ease of use
|
|
|
|
::
|
|
|
|
$: man/knot
|
|
|
|
story
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
++ pa-abet
|
|
|
|
::x apply/fold changes back into the stories map.
|
|
|
|
::
|
|
|
|
^+ +>
|
|
|
|
+>(stories (~(put by stories) man `story`+<+))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ pa-lesson :: learn multiple
|
|
|
|
::x learn all telegrams in a list.
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
|= gaz/(list telegram)
|
|
|
|
^+ +>
|
|
|
|
?~ gaz +>
|
|
|
|
$(gaz t.gaz, +> (pa-learn i.gaz))
|
|
|
|
::
|
|
|
|
++ pa-learn :: learn message
|
|
|
|
::x store an incoming telegram, modifying audience to say we received it.
|
|
|
|
::x update existing telegram if it already exists.
|
|
|
|
::
|
|
|
|
|= gam/telegram
|
|
|
|
^+ +>
|
|
|
|
::x if author isn't allowed to write here, reject.
|
|
|
|
::TODO we shouldn't need to do permission checks anymore, all we need to
|
|
|
|
:: do is make sure the grams came from our broker.
|
|
|
|
?. (pa-admire p.gam)
|
|
|
|
~& %pa-admire-rejected
|
|
|
|
+>.$
|
|
|
|
=. q.q.gam
|
|
|
|
::x if we are in the audience, mark us as having received it.
|
|
|
|
=+ ole=(~(get by q.q.gam) [%& our.hid man])
|
|
|
|
?^ ole (~(put by q.q.gam) [%& our.hid man] -.u.ole %received)
|
|
|
|
:: for fedearted stations, pretend station src/foo is also our/foo
|
|
|
|
:: XX pass src through explicitly instead of relying on implicit
|
|
|
|
:: value in hid from the subscription to src/foo
|
|
|
|
=+ ole=(~(get by q.q.gam) [%& src.hid man])
|
|
|
|
?~ ole q.q.gam
|
|
|
|
::x as described above, fake src into our.
|
|
|
|
=. q.q.gam (~(del by q.q.gam) [%& src.hid man])
|
|
|
|
(~(put by q.q.gam) [%& our.hid man] -.u.ole %received)
|
|
|
|
=+ old=(~(get by known) p.q.gam)
|
|
|
|
?~ old
|
|
|
|
(pa-append gam) ::x add
|
|
|
|
(pa-revise u.old gam) ::x modify
|
|
|
|
::
|
|
|
|
++ pa-append :: append new gram
|
|
|
|
::x add gram to our story, and update our subscribers.
|
|
|
|
::
|
|
|
|
|= gam/telegram
|
|
|
|
^+ +>
|
|
|
|
%= +>
|
|
|
|
grams [gam grams]
|
|
|
|
count +(count)
|
|
|
|
known (~(put by known) p.q.gam count)
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ pa-revise :: revise existing gram
|
|
|
|
::x modify a gram in our story, and update our subscribers.
|
|
|
|
::
|
|
|
|
|= {num/@ud gam/telegram}
|
|
|
|
=+ way=(sub count num)
|
|
|
|
?: =(gam (snag (dec way) grams))
|
|
|
|
+>.$ :: no change
|
|
|
|
=. grams (welp (scag (dec way) grams) [gam (slag way grams)])
|
|
|
|
+>.$
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ pa-remind :: presence update
|
|
|
|
::x merge local and remote presences, and store them in locals.
|
|
|
|
::
|
|
|
|
::TODO stop using timed.
|
|
|
|
|= {tay/partner loc/atlas rem/(map partner atlas)}
|
|
|
|
::x remove this story from the presence map, since it's in local already.
|
|
|
|
=. rem (~(del by rem) %& our.hid man) :: superceded by local data
|
|
|
|
::TODO stop using timed, just do uni here.
|
|
|
|
=/ buk (~(uni timed remotes) rem) :: XX drop?
|
|
|
|
=. buk (~(put timed buk) tay now.hid loc)
|
|
|
|
+>.$
|
|
|
|
::
|
|
|
|
++ pa-cabal
|
|
|
|
::x update the tale's config.
|
|
|
|
::
|
|
|
|
|= {cuz/station con/config}
|
|
|
|
^+ +>
|
|
|
|
+>(shape con)
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ pa-diff-talk-report :: subscribed update
|
|
|
|
::x process a talk report from cuz.
|
|
|
|
::
|
|
|
|
|= {cuz/station rad/report}
|
|
|
|
^+ +>
|
|
|
|
::x verify we are supposed to receive reports from cuz.
|
|
|
|
?. (~(has in sources.shape) [%& cuz])
|
|
|
|
~& [%pa-diff-unexpected cuz rad]
|
|
|
|
+>
|
|
|
|
?+ -.rad ~|([%talk-odd-friend rad] !!)
|
|
|
|
$cabal (pa-cabal cuz +.rad)
|
|
|
|
$group (pa-remind [%& cuz] +.rad)
|
|
|
|
$grams (pa-lesson q.+.rad)
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
--
|
|
|
|
++ sh :: per console
|
|
|
|
::x shell core, responsible for doing things with console sessions,
|
|
|
|
::x like parsing input, acting based on input, showing output, keeping
|
|
|
|
::x track of settings and other frontend state.
|
|
|
|
::x important arms include ++sh-repo which is used to apply reports, and
|
|
|
|
::x ++sh-sole which gets called upon cli prompt interaction.
|
|
|
|
::x any talk commands the core's arms want to have executed get put into
|
|
|
|
::x coz. the stored commands get applied upon calling ++sh-abet.
|
|
|
|
::
|
|
|
|
|_ $: ::x coz: talk commands storage, applied by ++sh-abet.
|
|
|
|
::x she: console session state used in this core.
|
|
|
|
::
|
|
|
|
she/shell
|
|
|
|
coz/(list command) :: talk actions
|
|
|
|
==
|
|
|
|
++ sh-scad :: command parser
|
|
|
|
::x builds a core with parsers for talk-cli, and produces its work arm.
|
|
|
|
::x ++work uses those parsers to parse the current talk-cli prompt input
|
|
|
|
::x and produce a work item to be executed by ++sh-work.
|
|
|
|
::
|
|
|
|
=< work
|
|
|
|
|%
|
|
|
|
++ expr :: [cord twig]
|
|
|
|
|= tub/nail %. tub
|
|
|
|
%+ stag (crip q.tub)
|
|
|
|
wide:(vang & [&1:% &2:% (scot %da now.hid) |3:%])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ dare :: @dr
|
|
|
|
%+ sear
|
|
|
|
|= a/coin
|
|
|
|
?. ?=({$$ $dr @} a) ~
|
|
|
|
(some `@dr`+>.a)
|
|
|
|
nuck:so
|
|
|
|
::
|
|
|
|
++ ship ;~(pfix sig fed:ag) :: ship
|
|
|
|
++ shiz :: ship set
|
|
|
|
%+ cook
|
|
|
|
|=(a/(list ^ship) (~(gas in *(set ^ship)) a))
|
|
|
|
(most ;~(plug com (star ace)) ship)
|
|
|
|
::
|
|
|
|
++ pasp :: passport
|
|
|
|
;~ pfix pat
|
|
|
|
;~ pose
|
|
|
|
(stag %twitter ;~(pfix (jest 't') col urs:ab))
|
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ stan :: station
|
2017-03-23 03:34:56 +03:00
|
|
|
;~ pose
|
2017-03-24 23:10:27 +03:00
|
|
|
(cold [our.hid man.she] col)
|
|
|
|
;~(pfix cen (stag our.hid sym))
|
|
|
|
;~(pfix fas (stag (sein our.hid) sym))
|
|
|
|
::
|
|
|
|
%+ cook
|
|
|
|
|= {a/@p b/(unit term)}
|
|
|
|
[a ?^(b u.b (main a))]
|
|
|
|
;~ plug
|
|
|
|
ship
|
|
|
|
(punt ;~(pfix fas urs:ab))
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
++ parn :: partner
|
|
|
|
;~ pose
|
|
|
|
(stag %& stan)
|
|
|
|
(stag %| pasp)
|
|
|
|
==
|
|
|
|
++ partners-flat :: collapse mixed list
|
|
|
|
|= a/(list (each partner (set partner)))
|
|
|
|
^- (set partner)
|
|
|
|
?~ a ~
|
|
|
|
?- -.i.a
|
|
|
|
$& (~(put in $(a t.a)) p.i.a)
|
|
|
|
$| (~(uni in $(a t.a)) p.i.a)
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ para :: partners alias
|
|
|
|
%+ cook partners-flat
|
|
|
|
%+ most ;~(plug com (star ace))
|
|
|
|
(pick parn (sear sh-glyf glyph))
|
|
|
|
::
|
|
|
|
++ parz :: non-empty partners
|
|
|
|
%+ cook ~(gas in *(set partner))
|
|
|
|
(most ;~(plug com (star ace)) parn)
|
|
|
|
::
|
|
|
|
++ nump :: number reference
|
|
|
|
;~ pose
|
|
|
|
;~(pfix hep dem:ag)
|
|
|
|
;~ plug
|
|
|
|
(cook lent (plus (just '0')))
|
|
|
|
;~(pose dem:ag (easy 0))
|
|
|
|
==
|
|
|
|
(stag 0 dem:ag)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ pore :: posture
|
|
|
|
;~ pose
|
|
|
|
(cold %black (jest %channel))
|
|
|
|
(cold %white (jest %village))
|
|
|
|
(cold %green (jest %journal))
|
|
|
|
(cold %brown (jest %mailbox))
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ message
|
|
|
|
;~ pose
|
|
|
|
;~(plug (cold %eval hax) expr)
|
|
|
|
::
|
|
|
|
%+ stag %say
|
|
|
|
%+ most (jest '•')
|
2017-03-23 03:34:56 +03:00
|
|
|
;~ pose
|
2017-03-24 23:10:27 +03:00
|
|
|
(stag %url aurf:urlp)
|
|
|
|
:(stag %lin | ;~(pfix pat text))
|
|
|
|
:(stag %lin & ;~(less sem hax text))
|
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ nick (cook crip (stun [1 14] low)) :: nickname
|
|
|
|
++ text (cook crip (plus (shim ' ' '~'))) :: bullets separating
|
|
|
|
++ glyph (mask "/\\\{(<!?{(zing glyphs)}") :: station postfix
|
|
|
|
++ setting
|
|
|
|
%- perk :~
|
|
|
|
%noob
|
|
|
|
%quiet
|
|
|
|
%showtime
|
|
|
|
==
|
|
|
|
++ work
|
|
|
|
%+ knee *^work |. ~+
|
|
|
|
=- ;~(pose ;~(pfix sem -) message)
|
|
|
|
;~ pose
|
|
|
|
;~ (glue ace) (perk %create ~)
|
|
|
|
pore
|
|
|
|
;~(pfix cen sym)
|
|
|
|
qut
|
|
|
|
==
|
|
|
|
::
|
|
|
|
;~(plug (perk %who ~) ;~(pose ;~(pfix ace para) (easy ~)))
|
|
|
|
;~(plug (perk %bind ~) ;~(pfix ace glyph) (punt ;~(pfix ace para)))
|
|
|
|
;~((glue ace) (perk %join ~) para)
|
|
|
|
;~((glue ace) (perk %leave ~) para)
|
|
|
|
;~((glue ace) (perk %what ~) ;~(pose parz glyph))
|
|
|
|
::
|
|
|
|
;~ plug (perk %nick ~)
|
|
|
|
;~ pose
|
|
|
|
;~ plug
|
2017-03-23 03:34:56 +03:00
|
|
|
(cook some ;~(pfix ace ship))
|
2017-03-24 23:10:27 +03:00
|
|
|
(cold (some '') ;~(pfix ace sig))
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
;~ plug
|
|
|
|
;~ pose
|
|
|
|
(cook some ;~(pfix ace ship))
|
|
|
|
(easy ~)
|
|
|
|
==
|
|
|
|
;~ pose
|
|
|
|
(cook some ;~(pfix ace nick))
|
|
|
|
(easy ~)
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
==
|
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
;~(plug (perk %set ~) ;~(pose ;~(pfix ace setting) (easy %$)))
|
|
|
|
;~(plug (perk %unset ~) ;~(pfix ace setting))
|
|
|
|
::
|
|
|
|
;~(plug (perk %help ~) (easy ~))
|
|
|
|
(stag %number nump)
|
|
|
|
(stag %target ;~(plug para (punt ;~(pfix ace message))))
|
|
|
|
(stag %number (cook lent (star sem)))
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
--
|
|
|
|
++ sh-abet
|
|
|
|
::x applies talk commands (in reverse order, because ++sh-tell adds them
|
|
|
|
::x to coz as [new coz], but you want to apply them in the order
|
|
|
|
::x [coz new]). produces an updated context for the ++sh core.
|
|
|
|
::
|
|
|
|
^+ +> ::x points to ++sh's |_ core's context.
|
|
|
|
=+ zoc=(flop coz)
|
|
|
|
|- ^+ +>+> ::x +> would point to |-'s context. +>+> goes to ++sh |_'s.
|
|
|
|
::x produce context with this shell updated.
|
|
|
|
?~ zoc +>+>.$(shells (~(put by shells) ost.hid she))
|
|
|
|
::x recurse, with context (of |-?) modified.
|
|
|
|
$(zoc t.zoc, +>.$ (sh-deal i.zoc))
|
|
|
|
::
|
|
|
|
++ sh-deal :: apply from shell
|
|
|
|
::x used by ++sh-abet, applies an individual talk command.
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
|= cod/command
|
|
|
|
^+ +>
|
|
|
|
?- -.cod
|
|
|
|
::x the $design command is used for modifying channel configs,
|
|
|
|
::x which is done when joining, leaving or creating channels.
|
|
|
|
$design
|
|
|
|
?~ q.cod
|
|
|
|
::x updates context with new config state.
|
|
|
|
=. +>+>.$ (ra-config p.cod *config)
|
|
|
|
::x produces context with story p.cod deleted.
|
|
|
|
+>.$(stories (~(del by stories) p.cod))
|
|
|
|
::x produces +> with its +> (so, +>+>) updated by ++ra-think.
|
|
|
|
+>(+> (ra-config p.cod u.q.cod))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
::x used for relaying messages (as a station host).
|
|
|
|
$review +>(+> (ra-think | her.she +.cod))
|
|
|
|
::x used for sending messages (as their author).
|
|
|
|
$publish +>(+> (ra-think & her.she +.cod))
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-fact :: send console effect
|
|
|
|
::x adds a console effect to ++ra's moves.
|
|
|
|
::
|
|
|
|
|= fec/sole-effect
|
|
|
|
^+ +>
|
|
|
|
+>(moves :_(moves [ost.hid %diff %sole-effect fec]))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-25 02:24:55 +03:00
|
|
|
++ sh-update
|
|
|
|
::x adds a talk-update to ++ra's moves
|
|
|
|
::
|
|
|
|
|= dup/update
|
|
|
|
^+ +>
|
|
|
|
::TODO is ost.hid okay here? or do we want to store bone of broker?
|
|
|
|
+>(moves :_(moves [ost.hid %diff %talk-update dup]))
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-peep :: peer to path
|
|
|
|
::TODO remove.
|
|
|
|
::
|
|
|
|
|= pax/path
|
|
|
|
^+ +>
|
|
|
|
+>(+> (ra-subscribe her.she pax))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-peer :: subscribe shell
|
|
|
|
::x create a shell, subscribe to default stories.
|
|
|
|
::
|
|
|
|
=< sh-prod
|
|
|
|
%_ .
|
|
|
|
+>
|
|
|
|
=/ typ
|
|
|
|
=+ (ly ~[%a-group %f-grams %x-cabal])
|
|
|
|
(rap 3 (turn - encode:peer-type))
|
|
|
|
::x subscriptions to the shell's ship's default channels.
|
|
|
|
(ra-subscribe:(ra-subscribe her.she ~) her.she [typ man.she ~])
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-prod :: show prompt
|
|
|
|
::x make and store a move to modify the cli prompt, displaying audience.
|
|
|
|
::
|
|
|
|
^+ .
|
|
|
|
%+ sh-fact %pro
|
|
|
|
:+ & %talk-line
|
|
|
|
^- tape
|
|
|
|
=/ rew/(pair (pair @t @t) (set partner))
|
|
|
|
[['[' ']'] u.active.she]
|
|
|
|
=+ cha=(~(get by nik) q.rew)
|
|
|
|
?^ cha ~[u.cha ' ']
|
|
|
|
:: ~& [rew nik nak]
|
|
|
|
=+ por=~(te-prom te man.she q.rew)
|
|
|
|
(weld `tape`[p.p.rew por] `tape`[q.p.rew ' ' ~])
|
|
|
|
::
|
|
|
|
++ sh-pact :: update active aud
|
|
|
|
::x change currently selected audience to lix, updating prompt.
|
|
|
|
::
|
|
|
|
|= lix/(set partner)
|
|
|
|
^+ +>
|
|
|
|
=+ act=(sh-pare lix) ::x ensure we can see what we send.
|
|
|
|
?~ act ~|(%no-audience !!) ::TODO can't happen, remove.
|
|
|
|
?: =(active.she `act) +>.$
|
|
|
|
sh-prod(active.she `act)
|
|
|
|
::
|
|
|
|
++ sh-pare :: adjust target list
|
|
|
|
::x if the audience paz does not contain a partner we're subscribed to,
|
|
|
|
::x add our mailbox to the audience (so that we can see our own message).
|
|
|
|
::
|
|
|
|
|= paz/(set partner)
|
|
|
|
?: (sh-pear paz) paz
|
|
|
|
(~(put in paz) [%& our.hid man.she])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-pear :: hearback
|
|
|
|
::x produces true if any partner is included in our subscriptions,
|
|
|
|
::x aka, if we hear messages sent to paz.
|
|
|
|
::
|
|
|
|
|= paz/(set partner)
|
|
|
|
?~ paz |
|
|
|
|
?| $(paz l.paz)
|
|
|
|
$(paz r.paz)
|
|
|
|
(~(has in sources.shape:(~(got by stories) man.she)) `partner`n.paz)
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-pest :: report listen
|
|
|
|
::x updates audience to be tay, only if tay is not a village/%white.
|
|
|
|
::x? why exclude village (invite-only?) audiences from this?
|
|
|
|
::
|
|
|
|
|= tay/partner
|
|
|
|
^+ +>
|
|
|
|
?. ?=($& -.tay) +> ::x if partner is a passport, do nothing.
|
|
|
|
=+ sib=(~(get by ham.system.she) `station`p.tay) ::x get config for tay
|
|
|
|
?. |(?=($~ sib) !?=($white p.cordon.u.sib))
|
|
|
|
+>.$
|
|
|
|
(sh-pact [tay ~ ~])
|
|
|
|
::
|
|
|
|
++ sh-rend :: print on one line
|
|
|
|
::x renders a telegram as a single line, adds it as a console move,
|
|
|
|
::x and updates the selected audience to match the telegram's.
|
|
|
|
::
|
|
|
|
|= gam/telegram
|
|
|
|
=+ lin=~(tr-line tr man.she settings.she gam)
|
|
|
|
(sh-fact %txt lin)
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-numb :: print msg number
|
|
|
|
::x does as it says on the box.
|
|
|
|
::
|
|
|
|
|= num/@ud
|
|
|
|
^+ +>
|
|
|
|
=+ bun=(scow %ud num)
|
|
|
|
%+ sh-fact %txt
|
|
|
|
(runt [(sub 13 (lent bun)) '-'] "[{bun}]")
|
|
|
|
::
|
|
|
|
++ sh-glyf :: decode glyph
|
|
|
|
::x gets the partner(s) that match a glyph.
|
|
|
|
::x? why (set partner)? it seems like it only ever returns a single one.
|
|
|
|
::TODO should produce a set when ambiguous.
|
|
|
|
::
|
|
|
|
|= cha/char ^- (unit (set partner))
|
|
|
|
=+ lax=(~(get ju nak) cha)
|
|
|
|
?: =(~ lax) ~ ::x no partner.
|
|
|
|
?: ?=({* $~ $~} lax) `n.lax ::x single partner.
|
|
|
|
::x in case of multiple partners, pick the most recently active one.
|
|
|
|
=+ grams=grams:(~(got by stories) man.she)
|
|
|
|
|- ^- (unit (set partner))
|
|
|
|
?~ grams ~
|
|
|
|
::x get first partner from a telegram's audience.
|
|
|
|
=+ pan=(silt (turn (~(tap by q.q.i.grams)) head))
|
|
|
|
?: (~(has in lax) pan) `pan
|
|
|
|
$(grams t.grams)
|
|
|
|
::
|
|
|
|
::TODO we have a stdlib set diff now!
|
|
|
|
++ sh-repo-house-diff
|
|
|
|
::x calculates difference between two shelves (channel definitions).
|
|
|
|
::
|
|
|
|
|= {one/shelf two/shelf}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list (pair knot (pair posture cord)))
|
|
|
|
new/(list (pair knot (pair posture cord)))
|
|
|
|
cha/(list (pair knot (pair posture cord)))
|
|
|
|
==
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
=+ unt=(~(get by two) p.i.eno)
|
|
|
|
?~ unt
|
|
|
|
ret(old [i.eno old.ret])
|
|
|
|
?: =(q.i.eno u.unt) ret
|
|
|
|
ret(cha [[p.i.eno u.unt] cha.ret])
|
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: (~(has by one) p.i.owt)
|
|
|
|
ret
|
|
|
|
ret(new [i.owt new.ret])
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-atlas-diff
|
|
|
|
::x calculates the difference between two atlasses (presence lists).
|
|
|
|
::
|
|
|
|
|= {one/atlas two/atlas}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list (pair ship status))
|
|
|
|
new/(list (pair ship status))
|
|
|
|
cha/(list (pair ship status))
|
|
|
|
==
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
?: =(%gone p.q.i.eno) ret
|
|
|
|
=+ unt=(~(get by two) p.i.eno)
|
|
|
|
?~ unt
|
|
|
|
ret(old [i.eno old.ret])
|
|
|
|
?: =(%gone p.u.unt)
|
|
|
|
ret(old [i.eno old.ret])
|
|
|
|
?: =(q.i.eno u.unt) ret
|
|
|
|
ret(cha [[p.i.eno u.unt] cha.ret])
|
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: =(%gone p.q.i.owt) ret
|
|
|
|
?. (~(has by one) p.i.owt)
|
|
|
|
ret(new [i.owt new.ret])
|
|
|
|
?: =(%gone p:(~(got by one) p.i.owt))
|
|
|
|
ret(new [i.owt new.ret])
|
2017-03-23 03:34:56 +03:00
|
|
|
ret
|
2017-03-24 23:10:27 +03:00
|
|
|
ret
|
|
|
|
::
|
|
|
|
++ sh-repo-cabal-diff
|
|
|
|
::x calculates the difference between two cabals (station configurations)
|
|
|
|
::
|
|
|
|
|= {one/(map station config) two/(map station config)}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list (pair station config))
|
|
|
|
new/(list (pair station config))
|
|
|
|
cha/(list (pair station config))
|
|
|
|
==
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
=+ unt=(~(get by two) p.i.eno)
|
|
|
|
?~ unt
|
|
|
|
ret(old [i.eno old.ret])
|
|
|
|
?: =(q.i.eno u.unt) ret
|
|
|
|
ret(cha [[p.i.eno u.unt] cha.ret])
|
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: (~(has by one) p.i.owt)
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
ret(new [i.owt new.ret])
|
2017-03-24 23:10:27 +03:00
|
|
|
ret
|
|
|
|
::
|
|
|
|
++ sh-repo-rogue-diff
|
|
|
|
::x calculates the difference between two maps of stations and their
|
|
|
|
::x presence lists.
|
|
|
|
::
|
|
|
|
|= {one/(map partner atlas) two/(map partner atlas)}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list (pair partner atlas))
|
|
|
|
new/(list (pair partner atlas))
|
|
|
|
cha/(list (pair partner atlas))
|
|
|
|
==
|
|
|
|
=. one ~(strip timed one)
|
|
|
|
=. two ~(strip timed two)
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
=+ unt=(~(get by two) p.i.eno)
|
|
|
|
?~ unt
|
|
|
|
ret(old [i.eno old.ret])
|
|
|
|
?: =(q.i.eno u.unt) ret
|
|
|
|
ret(cha [[p.i.eno u.unt] cha.ret])
|
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: (~(has by one) p.i.owt)
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
ret(new [i.owt new.ret])
|
|
|
|
ret
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
++ sh-repo-whom-diff
|
|
|
|
::x calculates the difference between two partner sets.
|
|
|
|
::
|
|
|
|
|= {one/(set partner) two/(set partner)}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list partner)
|
|
|
|
new/(list partner)
|
|
|
|
==
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
?: (~(has in two) i.eno)
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
ret(old [i.eno old.ret])
|
2017-03-24 23:10:27 +03:00
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: (~(has in one) i.owt)
|
|
|
|
ret
|
|
|
|
ret(new [i.owt new.ret])
|
|
|
|
ret
|
|
|
|
::
|
|
|
|
++ sh-repo-ship-diff
|
|
|
|
::x calculates the difference between two ship sets.
|
|
|
|
::
|
|
|
|
|= {one/(set ship) two/(set ship)}
|
|
|
|
=| $= ret
|
|
|
|
$: old/(list ship)
|
|
|
|
new/(list ship)
|
|
|
|
==
|
|
|
|
^+ ret
|
|
|
|
=. ret
|
|
|
|
=+ eno=(~(tap by one))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ eno ret
|
|
|
|
=. ret $(eno t.eno)
|
|
|
|
?: (~(has in two) i.eno)
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
ret(old [i.eno old.ret])
|
2017-03-24 23:10:27 +03:00
|
|
|
=. ret
|
|
|
|
=+ owt=(~(tap by two))
|
|
|
|
|- ^+ ret
|
|
|
|
?~ owt ret
|
|
|
|
=. ret $(owt t.owt)
|
|
|
|
?: (~(has in one) i.owt)
|
|
|
|
ret
|
|
|
|
ret(new [i.owt new.ret])
|
|
|
|
ret
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-puss
|
|
|
|
::x posture as text.
|
|
|
|
::
|
|
|
|
|= a/posture ^- tape
|
|
|
|
?- a
|
|
|
|
$black "channel"
|
|
|
|
$brown "mailbox"
|
|
|
|
$white "village"
|
|
|
|
$green "journal"
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-config-exceptions
|
|
|
|
::x used by ++sh-repo-config-show to aid in printing info to cli.
|
|
|
|
::
|
|
|
|
|= {pre/tape por/posture old/(list ship) new/(list ship)}
|
|
|
|
=+ out=?:(?=(?($black $brown) por) "try " "cut ")
|
|
|
|
=+ inn=?:(?=(?($black $brown) por) "ban " "add ")
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ old +>.^$
|
|
|
|
=. +>.^$ $(old t.old)
|
|
|
|
(sh-note :(weld pre out " " (scow %p i.old)))
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new +>.^$
|
|
|
|
=. +>.^$ $(new t.new)
|
|
|
|
(sh-note :(weld pre out " " (scow %p i.new)))
|
|
|
|
+>.$
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-config-sources
|
|
|
|
::x used by ++sh-repo-config-show to aid in printing info to cli,
|
|
|
|
::x pertaining to the un/subscribing to partners.
|
|
|
|
::
|
|
|
|
|= {pre/tape old/(list partner) new/(list partner)}
|
|
|
|
^+ +>
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ old +>.^$
|
|
|
|
=. +>.^$ $(old t.old)
|
|
|
|
(sh-note (weld pre "off {~(ta-full ta man.she i.old)}"))
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new +>.^$
|
|
|
|
=. +>.^$ $(new t.new)
|
|
|
|
(sh-note (weld pre "hey {~(ta-full ta man.she i.new)}"))
|
|
|
|
+>.$
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-config-show
|
|
|
|
::x prints config changes to the cli.
|
|
|
|
::
|
|
|
|
|= {pre/tape laz/config loc/config}
|
|
|
|
^+ +>
|
|
|
|
=. +>.$
|
|
|
|
?: =(caption.loc caption.laz) +>.$
|
|
|
|
(sh-note :(weld pre "cap " (trip caption.loc)))
|
|
|
|
=. +>.$
|
|
|
|
%+ sh-repo-config-sources
|
|
|
|
(weld (trip man.she) ": ")
|
|
|
|
(sh-repo-whom-diff sources.laz sources.loc)
|
|
|
|
?: !=(p.cordon.loc p.cordon.laz)
|
|
|
|
=. +>.$ (sh-note :(weld pre "but " (sh-puss p.cordon.loc)))
|
|
|
|
%^ sh-repo-config-exceptions
|
|
|
|
(weld (trip man.she) ": ")
|
|
|
|
p.cordon.loc
|
|
|
|
[~ (~(tap in q.cordon.loc))]
|
|
|
|
%^ sh-repo-config-exceptions
|
2017-03-23 03:34:56 +03:00
|
|
|
(weld (trip man.she) ": ")
|
|
|
|
p.cordon.loc
|
2017-03-24 23:10:27 +03:00
|
|
|
(sh-repo-ship-diff q.cordon.laz q.cordon.loc)
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-cabal-changes
|
|
|
|
::x used by ++sh-repo-cabal for printing cabal config changes to cli.
|
|
|
|
::
|
|
|
|
|= $: laz/(map station config)
|
|
|
|
old/(list (pair station config))
|
|
|
|
new/(list (pair station config))
|
|
|
|
cha/(list (pair station config))
|
|
|
|
==
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new +>.^$
|
|
|
|
=. +>.^$ $(new t.new)
|
|
|
|
=. +>.^$ (sh-pest [%& p.i.new])
|
|
|
|
%+ sh-repo-config-show
|
|
|
|
(weld ~(sn-phat sn man.she p.i.new) ": ")
|
|
|
|
[*config q.i.new]
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ cha +>.^$
|
|
|
|
=. +>.^$ $(cha t.cha)
|
|
|
|
%+ sh-repo-config-show
|
|
|
|
(weld ~(sn-phat sn man.she p.i.cha) ": ")
|
|
|
|
[(~(got by laz) `station`p.i.cha) q.i.cha]
|
|
|
|
+>.$
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-cabal
|
|
|
|
::x updates the current shell's cabal and prints changes to cli.
|
|
|
|
::
|
|
|
|
|= bal/cabal
|
|
|
|
^+ +>
|
|
|
|
=+ laz=system.she
|
|
|
|
=. system.she bal
|
|
|
|
=. +>.$
|
|
|
|
%+ sh-repo-cabal-changes ham.laz
|
|
|
|
(sh-repo-cabal-diff ham.laz ham.bal)
|
|
|
|
(sh-repo-config-show "" loc.laz loc.bal)
|
|
|
|
::
|
|
|
|
++ sh-repo-house
|
|
|
|
::x applies new shelf ("house"?) and prints changes to cli.
|
|
|
|
::
|
|
|
|
|= awl/(map knot (pair posture cord))
|
|
|
|
^+ +>
|
|
|
|
=+ dif=(sh-repo-house-diff harbor.she awl)
|
|
|
|
=. harbor.she awl
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ old.dif +>.^$
|
|
|
|
=. +>.^$ $(old.dif t.old.dif)
|
|
|
|
(sh-note "cut {(sh-puss p.q.i.old.dif)} %{(trip p.i.old.dif)}")
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new.dif +>.^$
|
|
|
|
=. +>.^$ $(new.dif t.new.dif)
|
|
|
|
=+ :* nam=(trip p.i.new.dif)
|
|
|
|
por=(sh-puss p.q.i.new.dif)
|
|
|
|
des=(trip q.q.i.new.dif)
|
|
|
|
==
|
|
|
|
(sh-note "new {por} %{nam}: {des}")
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ cha.dif +>.^$
|
|
|
|
=. +>.^$ $(cha.dif t.cha.dif)
|
|
|
|
=+ :* nam=(trip p.i.cha.dif)
|
|
|
|
por=(sh-puss p.q.i.cha.dif)
|
|
|
|
des=(trip q.q.i.cha.dif)
|
|
|
|
==
|
|
|
|
(sh-note "mod %{nam}: {por}, {des}")
|
|
|
|
+>.$
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-note :: shell message
|
|
|
|
::x prints a txt to cli in talk's format.
|
|
|
|
::
|
|
|
|
|= txt/tape
|
|
|
|
^+ +>
|
|
|
|
(sh-fact %txt (runt [14 '-'] `tape`['|' ' ' (scag 64 txt)]))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-spaz :: print status
|
|
|
|
::x gets the presence of a status.
|
|
|
|
::
|
|
|
|
|= saz/status
|
|
|
|
^- tape
|
|
|
|
['%' (trip p.saz)]
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-group-diff-here :: print atlas diff
|
|
|
|
::x prints presence notifications.
|
|
|
|
::
|
|
|
|
|= $: pre/tape
|
|
|
|
$= cul
|
|
|
|
$: old/(list (pair ship status))
|
|
|
|
new/(list (pair ship status))
|
|
|
|
cha/(list (pair ship status))
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
?: (~(has in settings.she) %quiet)
|
|
|
|
+>.$
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ old.cul +>.^$
|
|
|
|
=. +>.^$ $(old.cul t.old.cul)
|
|
|
|
(sh-note (weld pre "bye {(scow %p p.i.old.cul)}"))
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new.cul +>.^$
|
|
|
|
=. +>.^$ $(new.cul t.new.cul)
|
|
|
|
%- sh-note
|
|
|
|
(weld pre "met {(scow %p p.i.new.cul)} {(sh-spaz q.i.new.cul)}")
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ cha.cul +>.^$
|
|
|
|
%- sh-note
|
|
|
|
(weld pre "set {(scow %p p.i.cha.cul)} {(sh-spaz q.i.cha.cul)}")
|
2017-03-23 03:34:56 +03:00
|
|
|
+>.$
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-group-here :: update local
|
|
|
|
::x updates local presence store and prints changes.
|
|
|
|
::
|
|
|
|
|= loc/atlas
|
|
|
|
^+ +>
|
|
|
|
=+ cul=(sh-repo-atlas-diff p.owners.she loc)
|
|
|
|
=. p.owners.she loc
|
|
|
|
(sh-repo-group-diff-here "" cul)
|
|
|
|
::
|
|
|
|
++ sh-repo-group-there :: update foreign
|
|
|
|
::x updates remote presences(?) and prints changes.
|
|
|
|
::
|
|
|
|
|= yid/(map partner atlas)
|
|
|
|
=+ day=(sh-repo-rogue-diff q.owners.she yid)
|
|
|
|
=+ dun=q.owners.she
|
|
|
|
=. q.owners.she yid
|
|
|
|
?: (~(has in settings.she) %quiet)
|
|
|
|
+>.$
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ old.day +>.^$
|
|
|
|
=. +>.^$ $(old.day t.old.day)
|
|
|
|
(sh-note (weld "not " (~(ta-show ta man.she p.i.old.day) ~)))
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ new.day +>.^$
|
|
|
|
=. +>.^$ $(new.day t.new.day)
|
|
|
|
=. +>.^$
|
|
|
|
(sh-note (weld "new " (~(ta-show ta man.she p.i.new.day) ~)))
|
|
|
|
(sh-repo-group-diff-here "--" ~ (~(tap by q.i.new.day)) ~)
|
|
|
|
=. +>.$
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ cha.day +>.^$
|
|
|
|
=. +>.^$ $(cha.day t.cha.day)
|
|
|
|
=. +>.^$
|
|
|
|
(sh-note (weld "for " (~(ta-show ta man.she p.i.cha.day) ~)))
|
|
|
|
=+ yez=(~(got by dun) p.i.cha.day)
|
|
|
|
%+ sh-repo-group-diff-here "--"
|
|
|
|
(sh-repo-atlas-diff yez q.i.cha.day)
|
2017-03-23 03:34:56 +03:00
|
|
|
+>.$
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-group
|
|
|
|
::x update local and remote presences.
|
|
|
|
::
|
|
|
|
|= ges/register
|
|
|
|
^+ +>
|
|
|
|
=. +> (sh-repo-group-here p.ges)
|
|
|
|
=. +> (sh-repo-group-there q.ges)
|
|
|
|
+>
|
|
|
|
::
|
|
|
|
++ sh-repo-gram
|
|
|
|
::x renders telegram: increase gram count and print the gram.
|
|
|
|
::x every fifth gram, prints the number.
|
|
|
|
::
|
|
|
|
|= {num/@ud gam/telegram}
|
|
|
|
^+ +>
|
|
|
|
?: =(num count.she)
|
|
|
|
=. +> ?:(=(0 (mod num 5)) (sh-numb num) +>)
|
|
|
|
(sh-rend(count.she +(num)) gam)
|
|
|
|
?: (gth num count.she)
|
|
|
|
=. +> (sh-numb num)
|
|
|
|
(sh-rend(count.she +(num)) gam)
|
|
|
|
+>
|
|
|
|
::
|
|
|
|
++ sh-repo-grams :: apply telegrams
|
|
|
|
::x renders telegrams.
|
|
|
|
::
|
|
|
|
|= {num/@ud gaz/(list telegram)}
|
|
|
|
^+ +>
|
|
|
|
?~ gaz +>
|
|
|
|
$(gaz t.gaz, num +(num), +> (sh-repo-gram num i.gaz))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo-glyph :: apply binding
|
|
|
|
::x updates glyph bindings and lookup, and updates selected audience.
|
|
|
|
::
|
|
|
|
|= nac/(jug char (set partner))
|
|
|
|
^+ +>
|
|
|
|
%_ sh-prod
|
|
|
|
nak nac
|
|
|
|
nik %- ~(gas by *(map (set partner) char))
|
|
|
|
=- (zing `(list (list {(set partner) char}))`-)
|
|
|
|
%+ turn (~(tap by nac))
|
|
|
|
|= {a/char b/(set (set partner))}
|
|
|
|
(turn (~(tap by b)) |=(c/(set partner) [c a]))
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-repo :: apply report
|
|
|
|
::x applies the different kinds of reports using their handler arms above
|
|
|
|
::
|
|
|
|
|= rad/report
|
|
|
|
^+ +>
|
|
|
|
:: ~& [%sh-repo rad]
|
|
|
|
?- -.rad
|
|
|
|
$cabal (sh-repo-cabal +.rad)
|
|
|
|
$grams (sh-repo-grams +.rad)
|
|
|
|
$glyph (sh-repo-glyph +.rad) :: XX ever happens?
|
|
|
|
$group (sh-repo-group +.rad)
|
|
|
|
$house (sh-repo-house +.rad)
|
|
|
|
==
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-sane-chat :: sanitize chatter
|
|
|
|
::x (for chat messages) sanitizes the input buffer and splits it into
|
|
|
|
::x multiple lines ('•').
|
|
|
|
::
|
|
|
|
|= buf/(list @c)
|
|
|
|
^- (list sole-edit)
|
|
|
|
?~ buf ~
|
|
|
|
=+ isa==(i.buf (turf '@'))
|
|
|
|
=+ [[pre=*@c cur=i.buf buf=t.buf] inx=0 brk=0 len=0 new=|]
|
|
|
|
=* txt -<
|
|
|
|
|^ ^- (list sole-edit)
|
|
|
|
?: =(cur (turf '•'))
|
|
|
|
?: =(pre (turf '•'))
|
|
|
|
[[%del inx] ?~(buf ~ $(txt +.txt))]
|
|
|
|
?: new
|
|
|
|
[(fix ' ') $(cur `@c`' ')]
|
|
|
|
newline
|
|
|
|
?: =(cur `@`' ')
|
|
|
|
=. brk ?:(=(pre `@`' ') brk inx)
|
|
|
|
?. =(64 len) advance
|
2017-03-23 03:34:56 +03:00
|
|
|
:- (fix(inx brk) (turf '•'))
|
|
|
|
?: isa
|
2017-03-24 23:10:27 +03:00
|
|
|
[[%ins +(brk) (turf '@')] newline(new &)]
|
|
|
|
newline(new &)
|
|
|
|
?: =(64 len)
|
|
|
|
=+ dif=(sub inx brk)
|
|
|
|
?: (lth dif 64)
|
|
|
|
:- (fix(inx brk) (turf '•'))
|
|
|
|
?: isa
|
|
|
|
[[%ins +(brk) (turf '@')] $(len dif, new &)]
|
|
|
|
$(len dif, new &)
|
|
|
|
[[%ins inx (turf '•')] $(len 0, inx +(inx), new &)]
|
|
|
|
?: |((lth cur 32) (gth cur 126))
|
|
|
|
[(fix '?') advance]
|
|
|
|
?: &((gte cur 'A') (lte cur 'Z'))
|
|
|
|
[(fix (add 32 cur)) advance]
|
|
|
|
advance
|
|
|
|
::
|
|
|
|
++ advance ?~(buf ~ $(len +(len), inx +(inx), txt +.txt))
|
|
|
|
++ newline ?~(buf ~ $(len 0, inx +(inx), txt +.txt))
|
|
|
|
++ fix |=(cha/@ [%mor [%del inx] [%ins inx `@c`cha] ~])
|
|
|
|
--
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-sane :: sanitize input
|
|
|
|
::x parses cli prompt input using ++sh-scad and sanitizes when invalid.
|
|
|
|
::
|
|
|
|
|= {inv/sole-edit buf/(list @c)}
|
|
|
|
^- {lit/(list sole-edit) err/(unit @u)}
|
|
|
|
=+ res=(rose (tufa buf) sh-scad)
|
|
|
|
?: ?=($| -.res) [[inv]~ `p.res]
|
|
|
|
:_ ~
|
|
|
|
?~ p.res ~
|
|
|
|
=+ wok=u.p.res
|
|
|
|
|- ^- (list sole-edit)
|
|
|
|
?+ -.wok ~
|
|
|
|
$target ?~(q.wok ~ $(wok u.q.wok))
|
|
|
|
$say |- :: XX per line
|
|
|
|
?~ p.wok ~
|
|
|
|
?: ?=($lin -.i.p.wok)
|
|
|
|
(sh-sane-chat buf)
|
|
|
|
$(p.wok t.p.wok)
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-slug :: edit to sanity
|
|
|
|
::x corrects invalid prompt input.
|
|
|
|
::
|
|
|
|
|= {lit/(list sole-edit) err/(unit @u)}
|
|
|
|
^+ +>
|
|
|
|
?~ lit +>
|
|
|
|
=^ lic say.she
|
|
|
|
(~(transmit sole say.she) `sole-edit`?~(t.lit i.lit [%mor lit]))
|
|
|
|
(sh-fact [%mor [%det lic] ?~(err ~ [%err u.err]~)])
|
|
|
|
::
|
|
|
|
++ sh-stir :: apply edit
|
|
|
|
::x called when typing into the talk prompt. applies the change and does
|
|
|
|
::x sanitizing.
|
|
|
|
::
|
|
|
|
|= cal/sole-change
|
|
|
|
^+ +>
|
|
|
|
=^ inv say.she (~(transceive sole say.she) cal)
|
|
|
|
=+ fix=(sh-sane inv buf.say.she)
|
|
|
|
?~ lit.fix
|
|
|
|
+>.$
|
|
|
|
?~ err.fix
|
|
|
|
(sh-slug fix) :: just capital correction
|
|
|
|
?. &(?=($del -.inv) =(+(p.inv) (lent buf.say.she)))
|
|
|
|
+>.$ :: allow interior edits, deletes
|
|
|
|
(sh-slug fix)
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-lame :: send error
|
|
|
|
::x just puts some text into the cli.
|
|
|
|
::
|
|
|
|
|= txt/tape
|
|
|
|
(sh-fact [%txt txt])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-whom :: current audience
|
|
|
|
::x produces the currently selected audience for this shell.
|
|
|
|
::
|
|
|
|
^- audience
|
|
|
|
%- ~(gas by *audience)
|
|
|
|
%+ turn (~(tap in u.active.she))
|
|
|
|
|=(a/partner [a *envelope %pending])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-tell :: add command
|
|
|
|
::x adds talk command to core state. these get applied with ++sh-abet.
|
|
|
|
::
|
|
|
|
|= cod/command
|
|
|
|
%_(+> coz [cod coz])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-twig-head ^- vase :: eval data
|
|
|
|
::x makes a vase of environment data to evaluate against (#-messages).
|
|
|
|
::
|
|
|
|
!>(`{our/@p now/@da eny/@uvI}`[our.hid now.hid (shas %eny eny.hid)])
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-work :: do work
|
|
|
|
::x implements worker arms for different talk commands.
|
|
|
|
::x all worker arms must produce updated state/context.
|
|
|
|
::
|
|
|
|
|= job/work
|
|
|
|
^+ +>
|
|
|
|
=+ roy=(~(got by stories) man.she)
|
|
|
|
=< work
|
|
|
|
|%
|
|
|
|
++ work
|
|
|
|
?- -.job
|
|
|
|
$number (number +.job)
|
|
|
|
$leave (leave +.job)
|
|
|
|
$join (join +.job)
|
|
|
|
$eval (eval +.job)
|
|
|
|
$who (who +.job)
|
|
|
|
$what (what +.job)
|
|
|
|
$bind (bind +.job)
|
|
|
|
$invite (invite +.job)
|
|
|
|
$banish (banish +.job)
|
|
|
|
$author (author +.job)
|
|
|
|
$block (block +.job)
|
|
|
|
$create (create +.job)
|
|
|
|
$nick (nick +.job)
|
|
|
|
$set (wo-set +.job)
|
|
|
|
$unset (unset +.job)
|
|
|
|
$target (target +.job)
|
|
|
|
$probe (probe +.job)
|
|
|
|
$help help
|
|
|
|
$say (say +.job)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ activate :: from %number
|
|
|
|
|= gam/telegram
|
|
|
|
^+ ..sh-work
|
|
|
|
=+ tay=~(. tr man.she settings.she gam)
|
|
|
|
=. ..sh-work (sh-fact tr-fact:tay)
|
|
|
|
sh-prod(active.she `tr-pals:tay)
|
|
|
|
::
|
|
|
|
++ help
|
|
|
|
(sh-fact %txt "see http://urbit.org/docs/using/messaging/")
|
|
|
|
::
|
|
|
|
++ glyph
|
|
|
|
|= idx/@
|
|
|
|
=< cha
|
|
|
|
%+ reel glyphs
|
|
|
|
|= {all/tape ole/{cha/char num/@}}
|
|
|
|
=+ new=(snag (mod idx (lent all)) all)
|
|
|
|
=+ num=~(wyt in (~(get ju nak) new))
|
|
|
|
?~ cha.ole [new num]
|
|
|
|
?: (lth num.ole num)
|
|
|
|
ole
|
|
|
|
[new num]
|
|
|
|
::
|
|
|
|
++ set-glyph
|
|
|
|
|= {cha/char lix/(set partner)}
|
|
|
|
=: nik (~(put by nik) lix cha)
|
|
|
|
nak (~(put ju nak) cha lix)
|
|
|
|
==
|
|
|
|
%_ ..sh-work
|
2017-03-25 02:24:55 +03:00
|
|
|
(sh-update %glyph cha lix)
|
2017-03-24 23:10:27 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
++ join :: %join
|
|
|
|
|= pan/(set partner)
|
|
|
|
^+ ..sh-work
|
|
|
|
=. ..sh-work
|
|
|
|
=+ (~(get by nik) pan)
|
|
|
|
?^ - (sh-note "has glyph {<u>}")
|
|
|
|
=+ cha=(glyph (mug pan))
|
|
|
|
(sh-note:(set-glyph cha pan) "new glyph {<cha>}")
|
|
|
|
=+ loc=loc.system.she
|
|
|
|
::x change local mailbox config to include subscription to pan.
|
|
|
|
%^ sh-tell %design man.she
|
|
|
|
`loc(sources (~(uni in sources.loc) pan))
|
|
|
|
::
|
|
|
|
++ leave :: %leave
|
|
|
|
|= pan/(set partner)
|
|
|
|
^+ ..sh-work
|
|
|
|
=+ loc=loc.system.she
|
|
|
|
::x change local mailbox config to exclude subscription to pan.
|
|
|
|
%^ sh-tell %design man.she
|
|
|
|
`loc(sources (~(dif in sources.loc) pan))
|
|
|
|
::
|
|
|
|
++ what :: %what
|
|
|
|
|= qur/$@(char (set partner)) ^+ ..sh-work
|
|
|
|
?^ qur
|
|
|
|
=+ cha=(~(get by nik) qur)
|
|
|
|
(sh-fact %txt ?~(cha "none" [u.cha]~))
|
|
|
|
=+ pan=(~(tap in (~(get ju nak) qur)))
|
|
|
|
?: =(~ pan) (sh-fact %txt "~")
|
|
|
|
=< (sh-fact %mor (turn pan .))
|
|
|
|
|=(a/(set partner) [%txt <a>]) :: XX ~(te-whom te man.she a)
|
|
|
|
::
|
|
|
|
++ who :: %who
|
|
|
|
|= pan/(set partner) ^+ ..sh-work
|
|
|
|
=< (sh-fact %mor (murn (sort (~(tap by q.owners.she) ~) aor) .))
|
|
|
|
|= {pon/partner alt/atlas} ^- (unit sole-effect)
|
|
|
|
?. |(=(~ pan) (~(has in pan) pon)) ~
|
|
|
|
=- `[%tan rose+[", " `~]^- leaf+~(ta-full ta man.she pon) ~]
|
|
|
|
=< (murn (sort (~(tap by alt)) aor) .)
|
|
|
|
|= {a/ship b/presence c/human} ^- (unit tank) :: XX names
|
|
|
|
?- b
|
|
|
|
$gone ~
|
|
|
|
$hear `>a<
|
|
|
|
$talk `>a< :: XX difference
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ bind :: %bind
|
|
|
|
|= {cha/char pan/(unit (set partner))} ^+ ..sh-work
|
|
|
|
?~ pan $(pan [~ u.active.she])
|
|
|
|
=+ ole=(~(get by nik) u.pan)
|
|
|
|
?: =(ole [~ cha]) ..sh-work
|
|
|
|
(sh-note:(set-glyph cha u.pan) "bound {<cha>} {<u.pan>}")
|
|
|
|
::
|
|
|
|
++ invite :: %invite
|
|
|
|
|= {nom/knot tal/(list partner)}
|
|
|
|
^+ ..sh-work
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
++ block :: %block
|
|
|
|
|= {nom/knot tal/(list partner)}
|
|
|
|
^+ ..sh-work
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
++ author :: %author
|
|
|
|
|= {nom/knot tal/(list partner)}
|
|
|
|
^+ ..sh-work
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
++ banish :: %banish
|
|
|
|
|= {nom/knot tal/(list partner)}
|
|
|
|
^+ ..sh-work
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
++ create :: %create
|
|
|
|
|= {por/posture nom/knot txt/cord}
|
|
|
|
^+ ..sh-work
|
|
|
|
?: (~(has in stories) nom)
|
|
|
|
(sh-lame "{(trip nom)}: already exists")
|
|
|
|
=. ..sh-work
|
|
|
|
::x create new config for channel.
|
|
|
|
%^ sh-tell %design nom
|
|
|
|
:- ~
|
|
|
|
:+ *(set partner)
|
|
|
|
(end 3 64 txt)
|
|
|
|
[por ~]
|
|
|
|
(join [[%& our.hid nom] ~ ~])
|
|
|
|
::
|
|
|
|
++ reverse-folks
|
|
|
|
|= nym/knot
|
|
|
|
^- (list ship)
|
|
|
|
%+ murn (~(tap by folks))
|
2017-03-23 03:34:56 +03:00
|
|
|
|= {p/ship q/human}
|
2017-03-24 23:10:27 +03:00
|
|
|
?~ hand.q ~
|
|
|
|
?. =(u.hand.q nym) ~
|
|
|
|
[~ u=p]
|
|
|
|
::
|
|
|
|
++ nick :: %nick
|
|
|
|
|= {her/(unit ship) nym/(unit cord)}
|
|
|
|
^+ ..sh-work
|
|
|
|
?: ?=({$~ $~} +<)
|
|
|
|
%+ sh-fact %mor
|
|
|
|
%+ turn (~(tap by folks))
|
|
|
|
|= {p/ship q/human}
|
|
|
|
:- %txt
|
|
|
|
?~ hand.q
|
|
|
|
"{<p>}:"
|
|
|
|
"{<p>}: {<u.hand.q>}"
|
|
|
|
?~ nym
|
|
|
|
?> ?=(^ her)
|
|
|
|
=+ asc=(~(get by folks) u.her)
|
|
|
|
%+ sh-fact %txt
|
|
|
|
?~ asc "{<u.her>} unbound"
|
|
|
|
?~ hand.u.asc "{<u.her>}:"
|
|
|
|
"{<u.her>}: {<u.hand.u.asc>}"
|
|
|
|
?~ her
|
|
|
|
%+ sh-fact %mor
|
|
|
|
%+ turn (reverse-folks u.nym)
|
|
|
|
|= p/ship
|
|
|
|
[%txt "{<p>}: {<u.nym>}"]
|
|
|
|
%= ..sh-work
|
|
|
|
folks ?~ u.nym
|
2017-03-25 02:24:55 +03:00
|
|
|
(~(del by folks) u.her) ::x unset nickname
|
|
|
|
(~(put by folks) u.her [true=~ hand=nym]) ::x set nickname
|
|
|
|
..sh-work (sh-update %human [true=~ hand=nym])
|
2017-03-24 23:10:27 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
++ wo-set :: %set
|
|
|
|
|= seg/knot
|
|
|
|
^+ ..sh-work
|
|
|
|
?~ seg
|
|
|
|
%+ sh-fact %mor
|
|
|
|
%+ turn (~(tap in settings.she))
|
|
|
|
|= s/knot
|
|
|
|
[%txt (trip s)]
|
|
|
|
%= ..sh-work
|
|
|
|
settings.she (~(put in settings.she) seg)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ unset :: %unset
|
|
|
|
|= neg/knot
|
|
|
|
^+ ..sh-work
|
|
|
|
%= ..sh-work
|
|
|
|
settings.she (~(del in settings.she) neg)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ target :: %target
|
|
|
|
|= {pan/(set partner) woe/(unit ^work)}
|
|
|
|
^+ ..sh-work
|
|
|
|
=. ..sh-pact (sh-pact pan)
|
|
|
|
?~(woe ..sh-work work(job u.woe))
|
|
|
|
::
|
|
|
|
++ number :: %number
|
|
|
|
|= num/$@(@ud {p/@u q/@ud})
|
|
|
|
^+ ..sh-work
|
|
|
|
=+ roy=(~(got by stories) man.she)
|
|
|
|
|-
|
|
|
|
?@ num
|
|
|
|
?: (gte num count.roy)
|
|
|
|
(sh-lame "{(scow %s (new:si | +(num)))}: no such telegram")
|
|
|
|
=. ..sh-fact (sh-fact %txt "? {(scow %s (new:si | +(num)))}")
|
|
|
|
(activate (snag num grams.roy))
|
|
|
|
?. (gth q.num count.roy)
|
|
|
|
?~ count.roy
|
|
|
|
(sh-lame "0: no messages")
|
|
|
|
=+ msg=(deli (dec count.roy) num)
|
|
|
|
=. ..sh-fact (sh-fact %txt "? {(scow %ud msg)}")
|
|
|
|
(activate (snag (sub count.roy +(msg)) grams.roy))
|
|
|
|
(sh-lame "…{(reap p.num '0')}{(scow %ud q.num)}: no such telegram")
|
|
|
|
::
|
|
|
|
++ deli :: find number
|
|
|
|
|= {max/@ud nul/@u fin/@ud} ^- @ud
|
|
|
|
=+ dog=|-(?:(=(0 fin) 1 (mul 10 $(fin (div fin 10)))))
|
|
|
|
=. dog (mul dog (pow 10 nul))
|
|
|
|
=- ?:((lte - max) - (sub - dog))
|
|
|
|
(add fin (sub max (mod max dog)))
|
|
|
|
::
|
|
|
|
++ probe :: inquire
|
|
|
|
|= cuz/station
|
|
|
|
^+ ..sh-work
|
|
|
|
~& [%probe cuz]
|
|
|
|
..sh-work
|
|
|
|
::
|
|
|
|
++ eval :: run
|
|
|
|
|= {txt/cord exe/twig}
|
|
|
|
=> |.([(sell (slap (slop sh-twig-head seed) exe))]~)
|
|
|
|
=+ tan=p:(mule .)
|
|
|
|
(say [%fat tank+tan exp+txt] ~)
|
|
|
|
::
|
|
|
|
++ say :: publish
|
|
|
|
|= sep/(list speech)
|
|
|
|
^+ ..sh-work
|
|
|
|
=- ..sh-work(coz ?~(tot coz :_(coz [%publish tot])))
|
|
|
|
|- ^- tot/(list thought)
|
|
|
|
?~ sep ~
|
|
|
|
=^ sir ..sh-work sh-uniq
|
|
|
|
[[sir sh-whom [now.hid ~ i.sep]] $(sep t.sep)]
|
|
|
|
--
|
|
|
|
::
|
|
|
|
++ sh-done :: apply result
|
|
|
|
::x called upon hitting return in the prompt. if input is invalid,
|
|
|
|
::x ++sh-slug is called. otherwise, the appropriate work is done
|
|
|
|
::x and the entered command (if any) gets displayed to the user.
|
|
|
|
::
|
|
|
|
=+ fix=(sh-sane [%nop ~] buf.say.she)
|
|
|
|
?^ lit.fix
|
|
|
|
(sh-slug fix)
|
|
|
|
=+ jub=(rust (tufa buf.say.she) sh-scad)
|
|
|
|
?~ jub (sh-fact %bel ~)
|
|
|
|
%. u.jub
|
|
|
|
=< sh-work
|
|
|
|
=+ buf=buf.say.she
|
|
|
|
=^ cal say.she (~(transmit sole say.she) [%set ~])
|
|
|
|
%- sh-fact
|
|
|
|
:* %mor
|
|
|
|
[%nex ~]
|
|
|
|
[%det cal]
|
|
|
|
?. ?=({$';' *} buf) ~
|
|
|
|
:_ ~
|
|
|
|
[%txt (runt [14 '-'] `tape`['|' ' ' (tufa `(list @)`buf)])]
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-sole :: apply edit
|
|
|
|
::x applies sole action.
|
|
|
|
::
|
|
|
|
|= act/sole-action
|
|
|
|
^+ +>
|
|
|
|
?- -.act
|
|
|
|
$det (sh-stir +.act)
|
|
|
|
$clr ..sh-sole :: (sh-pact ~) :: XX clear to PM-to-self?
|
|
|
|
$ret sh-done
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ sh-uniq
|
|
|
|
::x generates a new serial.
|
|
|
|
::
|
|
|
|
^- {serial _.}
|
|
|
|
[(shaf %serial eny.hid) .(eny.hid (shax eny.hid))]
|
2017-03-23 03:34:56 +03:00
|
|
|
--
|
|
|
|
--
|
|
|
|
::
|
|
|
|
++ sn :: station render core
|
|
|
|
::x used in both station and ship rendering.
|
|
|
|
::
|
|
|
|
::x man: mailbox.
|
|
|
|
::x one: the station.
|
2017-03-24 23:10:27 +03:00
|
|
|
|_ {man/knot one/station}
|
2017-03-23 03:34:56 +03:00
|
|
|
++ sn-best :: best to show
|
|
|
|
::x returns true if one is better to show, false otherwise.
|
|
|
|
::x prioritizes: our > main > size.
|
2017-03-24 01:07:35 +03:00
|
|
|
::TODO maybe simplify. (lth (xeb (xeb p.one)) (xeb (xeb p.two)))
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
|
|
|
|= two/station
|
|
|
|
^- ?
|
|
|
|
::x the station that's ours is better.
|
|
|
|
?: =(our.hid p.one)
|
|
|
|
?: =(our.hid p.two)
|
|
|
|
?< =(q.one q.two)
|
|
|
|
::x if both stations are ours, the main story is better.
|
|
|
|
?: =((main p.one) q.one) %&
|
|
|
|
?: =((main p.two) q.two) %|
|
|
|
|
::x if neither are, pick the "larger" one.
|
|
|
|
(lth q.one q.two)
|
|
|
|
%&
|
|
|
|
::x if one isn't ours but two is, two is better.
|
|
|
|
?: =(our.hid p.two)
|
|
|
|
%|
|
|
|
|
?: =(p.one p.two)
|
|
|
|
::x if they're from the same ship, pick the "larger" one.
|
|
|
|
(lth q.one q.two)
|
|
|
|
::x when in doubt, pick one if its ship is "smaller" than its channel.
|
|
|
|
::x? i guess you want this to be consistent across (a b) and (b a), but
|
|
|
|
::x this still seems pretty arbitrary.
|
|
|
|
(lth p.one q.one)
|
|
|
|
::
|
|
|
|
++ sn-curt :: render name in 14
|
|
|
|
::x prints a ship name in 14 characters. left-pads with spaces.
|
2017-03-24 01:07:35 +03:00
|
|
|
::x mup signifies "are there other targets besides this one"
|
2017-03-23 03:34:56 +03:00
|
|
|
::
|
|
|
|
|= mup/?
|
|
|
|
^- tape
|
|
|
|
=+ raw=(cite p.one)
|
|
|
|
(runt [(sub 14 (lent raw)) ' '] raw)
|
|
|
|
::
|
|
|
|
++ sn-nick
|
|
|
|
::x get nick for ship, or shortname if no nick. left-pads with spaces.
|
|
|
|
::
|
|
|
|
|. ^- tape
|
|
|
|
=+ nym=(~(get by folks) p.one)
|
|
|
|
?~ nym
|
|
|
|
(sn-curt |)
|
|
|
|
?~ hand.u.nym
|
|
|
|
(sn-curt |)
|
|
|
|
=+ raw=(trip u.hand.u.nym)
|
|
|
|
=+ len=(sub 14 (lent raw))
|
|
|
|
(weld (reap len ' ') raw)
|
|
|
|
::
|
|
|
|
++ sn-phat :: render accurately
|
|
|
|
::x prints a station fully, but still taking "shortcuts" where possible:
|
|
|
|
::x ":" for local mailbox, "~ship" for foreign mailbox,
|
|
|
|
::x "%channel" for local station, "/channel" for parent station.
|
|
|
|
::
|
|
|
|
^- tape
|
|
|
|
?: =(p.one our.hid)
|
|
|
|
?: =(q.one man)
|
|
|
|
":"
|
|
|
|
['%' (trip q.one)]
|
|
|
|
?: =(p.one (sein our.hid))
|
|
|
|
['/' (trip q.one)]
|
|
|
|
=+ wun=(scow %p p.one)
|
|
|
|
?: =(q.one (main p.one))
|
|
|
|
wun
|
|
|
|
:(welp wun "/" (trip q.one))
|
|
|
|
--
|
|
|
|
::
|
|
|
|
++ ta :: partner core
|
|
|
|
::x used primarily for printing partners.
|
|
|
|
::
|
|
|
|
::x man: mailbox.
|
|
|
|
::x one: the partner.
|
|
|
|
|_ {man/knot one/partner}
|
|
|
|
++ ta-beat :: more relevant
|
|
|
|
::x returns true if one is better to show, false otherwise.
|
|
|
|
::x prefers stations over passports. if both are stations, sn-best. if both
|
|
|
|
::x are passports, pick the "larger" one, if they're equal, content hash.
|
|
|
|
::
|
|
|
|
|= two/partner ^- ?
|
|
|
|
?- -.one
|
|
|
|
$&
|
|
|
|
?- -.two
|
|
|
|
$| %&
|
|
|
|
$& (~(sn-best sn man p.one) p.two)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
$|
|
|
|
|
?- -.two
|
|
|
|
$& %|
|
|
|
|
$| ?: =(-.p.two -.p.one)
|
|
|
|
(lth (mug +.p.one) (mug +.p.two))
|
|
|
|
(lth -.p.two -.p.one)
|
|
|
|
==
|
|
|
|
==
|
|
|
|
++ ta-best :: most relevant
|
|
|
|
::x picks the most relevant partner.
|
|
|
|
::
|
|
|
|
|=(two/partner ?:((ta-beat two) two one))
|
|
|
|
::
|
2017-03-24 23:10:27 +03:00
|
|
|
++ ta-sigh :: assemble label
|
|
|
|
::x prepend pre to yiz, omitting characters of yiz to stay within len.
|
|
|
|
::
|
|
|
|
|= {len/@ud pre/tape yiz/cord}
|
|
|
|
^- tape
|
|
|
|
=+ nez=(trip yiz)
|
|
|
|
=+ lez=(lent nez)
|
|
|
|
?> (gth len (lent pre))
|
|
|
|
=. len (sub len (lent pre))
|
|
|
|
?. (gth lez len)
|
|
|
|
=. nez (welp pre nez)
|
|
|
|
?. (lth lez len) nez
|
|
|
|
(runt [(sub len lez) '-'] nez)
|
|
|
|
:(welp pre (scag (dec len) nez) "+")
|
|
|
|
::
|
2017-03-23 03:34:56 +03:00
|
|
|
++ ta-full (ta-show ~) :: render full width
|
|
|
|
++ ta-show :: render partner
|
|
|
|
::x renders a partner as text.
|
|
|
|
::
|
|
|
|
|= moy/(unit ?)
|
|
|
|
^- tape
|
|
|
|
?- -.one
|
|
|
|
::x render station as glyph if we can.
|
|
|
|
$&
|
|
|
|
?~ moy
|
|
|
|
=+ cha=(~(get by nik) one ~ ~)
|
|
|
|
=- ?~(cha - "'{u.cha ~}' {-}")
|
|
|
|
~(sn-phat sn man p.one)
|
|
|
|
(~(sn-curt sn man p.one) u.moy)
|
|
|
|
::
|
|
|
|
::x render passport.
|
|
|
|
$|
|
|
|
|
=+ ^= pre ^- tape
|
|
|
|
?- -.p.one
|
|
|
|
$twitter "@t:"
|
|
|
|
==
|
|
|
|
?~ moy
|
|
|
|
(weld pre (trip p.p.one))
|
|
|
|
=. pre ?.(=(& u.moy) pre ['*' pre])
|
2017-03-24 23:10:27 +03:00
|
|
|
(ta-sigh 14 pre p.p.one)
|
2017-03-23 03:34:56 +03:00
|
|
|
==
|
|
|
|
--
|
|
|
|
::
|
|
|
|
++ te :: audience renderer
|
|
|
|
::x used for representing audiences (sets of partners) as tapes.
|
|
|
|
::
|
|
|
|
:: man: mailbox.
|
|
|
|
:: lix: members of the audience.
|
|
|
|
|_ {man/knot lix/(set partner)}
|
|
|
|
++ te-best ^- (unit partner)
|
|
|
|
::x pick the most relevant partner.
|
|
|
|
::
|
|
|
|
?~ lix ~
|
|
|
|
:- ~
|
|
|
|
|- ^- partner
|
|
|
|
=+ lef=`(unit partner)`te-best(lix l.lix)
|
|
|
|
=+ rit=`(unit partner)`te-best(lix r.lix)
|
|
|
|
=. n.lix ?~(lef n.lix (~(ta-best ta man n.lix) u.lef))
|
|
|
|
=. n.lix ?~(rit n.lix (~(ta-best ta man n.lix) u.rit))
|
|
|
|
n.lix
|
|
|
|
::
|
|
|
|
++ te-deaf ^+ . :: except for self
|
|
|
|
::x remove ourselves from the audience.
|
|
|
|
::
|
|
|
|
.(lix (~(del in lix) `partner`[%& our.hid man]))
|
|
|
|
::
|
|
|
|
++ te-maud ^- ? :: multiple audience
|
|
|
|
::x checks if there's multiple partners in the audience via pattern match.
|
|
|
|
::
|
|
|
|
=. . te-deaf
|
|
|
|
!?=($@($~ {* $~ $~}) lix)
|
|
|
|
::
|
|
|
|
++ te-prom ^- tape :: render targets
|
|
|
|
::x render all partners, ordered by relevance.
|
|
|
|
::
|
|
|
|
=. . te-deaf
|
|
|
|
=+ ^= all
|
|
|
|
%+ sort `(list partner)`(~(tap in lix))
|
|
|
|
|= {a/partner b/partner}
|
|
|
|
(~(ta-beat ta man a) b)
|
|
|
|
=+ fir=&
|
|
|
|
|- ^- tape
|
|
|
|
?~ all ~
|
|
|
|
;: welp
|
|
|
|
?:(fir "" " ")
|
|
|
|
(~(ta-show ta man i.all) ~)
|
|
|
|
$(all t.all, fir |)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ te-whom :: render sender
|
|
|
|
::x render sender as the most relevant partner.
|
|
|
|
::
|
|
|
|
(~(ta-show ta man (need te-best)) ~ te-maud)
|
|
|
|
::
|
|
|
|
++ ta-dire :: direct message
|
|
|
|
::x returns true if partner is a mailbox of ours.
|
|
|
|
::
|
|
|
|
|= pan/partner ^- ?
|
|
|
|
?& ?=($& -.pan)
|
|
|
|
=(p.p.pan our.hid)
|
|
|
|
::
|
|
|
|
=+ sot=(~(get by stories) q.p.pan)
|
|
|
|
&(?=(^ sot) ?=($brown p.cordon.shape.u.sot))
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ te-pref :: audience glyph
|
|
|
|
::x get the glyph that corresponds to the audience, with a space appended.
|
|
|
|
::x if it's a dm to us, use :. if it's a dm by us, use ;. complex, use *.
|
|
|
|
::
|
|
|
|
^- tape
|
|
|
|
=+ cha=(~(get by nik) lix)
|
|
|
|
?^ cha ~[u.cha ' ']
|
|
|
|
?. (lien (~(tap by lix)) ta-dire)
|
|
|
|
"* "
|
|
|
|
?: ?=({{$& ^} $~ $~} lix)
|
|
|
|
": "
|
|
|
|
"; "
|
|
|
|
--
|
|
|
|
::
|
|
|
|
++ tr :: telegram renderer
|
|
|
|
::x responsible for converting telegrams and everything relating to them to
|
|
|
|
::x text to be displayed in the cli.
|
|
|
|
::
|
|
|
|
|_ $: ::x man: story.
|
|
|
|
::x sef: settings flags.
|
|
|
|
::x telegram:
|
|
|
|
::x who: author.
|
|
|
|
::x thought:
|
|
|
|
::x sen: unique identifier.
|
|
|
|
::x aud: audience.
|
|
|
|
::x statement:
|
|
|
|
::x wen: timestamp.
|
|
|
|
::x bou: complete aroma.
|
|
|
|
::x sep: message contents.
|
|
|
|
::
|
|
|
|
man/knot
|
|
|
|
sef/(set knot)
|
|
|
|
who/ship
|
|
|
|
sen/serial
|
|
|
|
aud/audience
|
|
|
|
wen/@da
|
|
|
|
bou/bouquet
|
|
|
|
sep/speech
|
|
|
|
==
|
|
|
|
++ tr-fact ^- sole-effect :: activate effect
|
|
|
|
::x produce sole-effect for printing message details.
|
|
|
|
::
|
|
|
|
~[%mor [%tan tr-meta] tr-body]
|
|
|
|
::
|
|
|
|
++ tr-line ^- tape :: one-line print
|
|
|
|
::x crams a telegram into a single line by displaying a short ship name,
|
|
|
|
::x a short representation of the gram, and an optional timestamp.
|
|
|
|
::
|
|
|
|
=+ txt=(tr-text =(who our.hid))
|
|
|
|
?: =(~ txt) ""
|
|
|
|
=+ ^= baw
|
|
|
|
:: ?: oug
|
|
|
|
:: ~(te-whom te man tr-pals)
|
|
|
|
?. (~(has in sef) %noob)
|
|
|
|
(~(sn-curt sn man [who (main who)]) |)
|
|
|
|
(~(sn-nick sn man [who (main who)]))
|
|
|
|
?: (~(has in sef) %showtime)
|
|
|
|
=+ dat=(yore now.hid)
|
|
|
|
=+ ^= t
|
|
|
|
|= a/@ ^- tape
|
|
|
|
%+ weld
|
|
|
|
?: (lth a 10) "0" ~
|
|
|
|
(scow %ud a)
|
|
|
|
=+ ^= time :(weld "~" (t h.t.dat) "." (t m.t.dat) "." (t s.t.dat))
|
|
|
|
:(weld baw txt (reap (sub 67 (lent txt)) ' ') time)
|
|
|
|
(weld baw txt)
|
|
|
|
::
|
|
|
|
++ tr-meta ^- tang
|
|
|
|
::x build strings that display metadata, including message serial,
|
|
|
|
::x timestamp, author and audience.
|
|
|
|
::
|
|
|
|
=. wen (sub wen (mod wen (div wen ~s0..0001))) :: round
|
|
|
|
=+ hed=leaf+"{(scow %uv sen)} at {(scow %da wen)}"
|
|
|
|
=+ =< paz=(turn (~(tap by aud)) .)
|
|
|
|
|=({a/partner *} leaf+~(ta-full ta man a))
|
|
|
|
=+ bok=(turn (sort (~(tap in bou)) aor) smyt)
|
|
|
|
[%rose [" " ~ ~] [hed >who< [%rose [", " "to " ~] paz] bok]]~
|
|
|
|
::
|
|
|
|
++ tr-body
|
|
|
|
::x long-form display of message contents, specific to each speech type.
|
|
|
|
::
|
|
|
|
|- ^- sole-effect
|
|
|
|
?+ -.sep tan+[>sep<]~
|
|
|
|
$exp tan+~[leaf+"# {(trip p.sep)}"]
|
|
|
|
$lin tan+~[leaf+"{?:(p.sep "" "@ ")}{(trip q.sep)}"]
|
|
|
|
$non tan+~
|
|
|
|
$app tan+~[rose+[": " ~ ~]^~[leaf+"[{(trip p.sep)}]" leaf+(trip q.sep)]]
|
|
|
|
$url url+(crip (earf p.sep))
|
|
|
|
$mor mor+(turn p.sep |=(speech ^$(sep +<)))
|
|
|
|
$fat [%mor $(sep q.sep) tan+(tr-rend-tors p.sep) ~]
|
|
|
|
$api
|
|
|
|
:- %tan
|
|
|
|
:_ ~
|
|
|
|
:+ %rose
|
|
|
|
[": " ~ ~]
|
|
|
|
:~ leaf+"[{(trip id.sep)} on {(trip service.sep)}]"
|
|
|
|
leaf+(trip body.sep)
|
|
|
|
leaf+(earf url.sep)
|
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ tr-rend-tors
|
|
|
|
::x render an attachment.
|
|
|
|
::
|
|
|
|
|= a/torso ^- tang
|
|
|
|
?- -.a
|
|
|
|
$name (welp $(a q.a) leaf+"={(trip p.a)}" ~)
|
|
|
|
$tank +.a
|
|
|
|
$text (turn (flop +.a) |=(b/cord leaf+(trip b)))
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ tr-pals
|
|
|
|
::x strip delivery info from audience, producing a set of partners.
|
|
|
|
::
|
|
|
|
^- (set partner)
|
|
|
|
%- ~(gas in *(set partner))
|
|
|
|
(turn (~(tap by aud)) |=({a/partner *} a))
|
|
|
|
::
|
|
|
|
++ tr-chow
|
|
|
|
::x truncate the txt to be of max len characters. if it does truncate,
|
|
|
|
::x indicates it did so by appending a character.
|
|
|
|
::
|
|
|
|
|= {len/@u txt/tape} ^- tape
|
|
|
|
?: (gth len (lent txt)) txt
|
|
|
|
=. txt (scag len txt)
|
|
|
|
|-
|
|
|
|
?~ txt txt
|
|
|
|
?: =(' ' i.txt)
|
|
|
|
|-(['_' ?.(?=({$' ' *} t.txt) t.txt $(txt t.txt))])
|
|
|
|
?~ t.txt "…"
|
|
|
|
[i.txt $(txt t.txt)]
|
|
|
|
::
|
|
|
|
++ tr-both
|
|
|
|
::x try to fit two tapes into a single line.
|
|
|
|
::
|
|
|
|
|= {a/tape b/tape} ^- tape
|
|
|
|
?: (gth (lent a) 62) (tr-chow 64 a)
|
|
|
|
%+ weld a
|
|
|
|
(tr-chow (sub 64 (lent a)) " {b}")
|
|
|
|
::
|
|
|
|
++ tr-text
|
|
|
|
::x gets a tape representation of a message that fits within a single line.
|
|
|
|
::
|
|
|
|
|= oug/?
|
|
|
|
^- tape
|
|
|
|
?+ -.sep ~&(tr-lost+sep "")
|
|
|
|
$mor
|
|
|
|
?~ p.sep ~&(%tr-mor-empty "")
|
|
|
|
|- ^- tape
|
|
|
|
?~ t.p.sep ^$(sep i.p.sep)
|
|
|
|
(tr-both ^$(sep i.p.sep) $(p.sep t.p.sep))
|
|
|
|
::
|
|
|
|
$fat
|
|
|
|
%+ tr-both $(sep q.sep)
|
|
|
|
?+ -.p.sep "..."
|
|
|
|
$tank ~(ram re %rose [" " `~] +.p.sep)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
$exp (tr-chow 66 '#' ' ' (trip p.sep))
|
|
|
|
$url =+ ful=(earf p.sep)
|
|
|
|
?: (gth 64 (lent ful)) ['/' ' ' ful]
|
|
|
|
:+ '/' '_'
|
|
|
|
=+ hok=r.p.p.p.sep
|
|
|
|
~! hok
|
|
|
|
=- (swag [a=(sub (max 64 (lent -)) 64) b=64] -)
|
|
|
|
^- tape
|
|
|
|
=< ?:(?=($& -.hok) (reel p.hok .) +:(scow %if p.hok))
|
|
|
|
|=({a/knot b/tape} ?~(b (trip a) (welp b '.' (trip a))))
|
|
|
|
::
|
|
|
|
$lin
|
|
|
|
=+ txt=(trip q.sep)
|
|
|
|
?: p.sep
|
|
|
|
=+ pal=tr-pals
|
|
|
|
=. pal ?: =(who our.hid) pal
|
|
|
|
(~(del in pal) [%& who (main who)])
|
|
|
|
(weld ~(te-pref te man pal) txt)
|
|
|
|
(weld " " txt)
|
|
|
|
::
|
|
|
|
$app
|
|
|
|
(tr-chow 64 "[{(trip p.sep)}]: {(trip q.sep)}")
|
|
|
|
::
|
|
|
|
$api
|
|
|
|
(tr-chow 64 "[{(trip id.sep)}@{(trip service.sep)}]: {(trip summary.sep)}")
|
|
|
|
==
|
|
|
|
--
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
::TODO move to lib.
|
|
|
|
++ etch-friend ::
|
|
|
|
::x parse a /friend wire, call gate with resulting data.
|
|
|
|
::
|
|
|
|
|= {way/wire fun/$-({man/knot cuz/station} {(list move) _.})}
|
|
|
|
=+ wer=(etch way)
|
|
|
|
?>(?=($friend -.wer) (fun p.wer q.wer))
|
|
|
|
::
|
|
|
|
++ diff-talk-report :: accept report
|
|
|
|
::x incoming talk-report. process it.
|
|
|
|
::
|
|
|
|
|= {way/wire rad/report}
|
|
|
|
^- (quip move +>)
|
|
|
|
%+ etch-friend way |= {man/knot cuz/station}
|
|
|
|
ra-abet:(ra-diff-talk-report:ra man cuz rad)
|
|
|
|
::
|
|
|
|
++ diff-talk-lowdown
|
|
|
|
::x incoming talk-lowdown. process it.
|
|
|
|
::
|
|
|
|
::TODO would it be tidier to put this into ++ra?
|
|
|
|
|= {way/wire low/lowdown}
|
|
|
|
^- (quip move +>)
|
|
|
|
:- ~
|
|
|
|
?- -.low
|
|
|
|
$glyph
|
|
|
|
%_ +>
|
|
|
|
nak +.rad
|
|
|
|
nik %- ~(gas by *(map (set partner) char))
|
|
|
|
=- (zing `(list (list {(set partner) char}))`-)
|
|
|
|
%+ turn (~(tap by +.rad))
|
|
|
|
|= {a/char b/(set (set partner))}
|
|
|
|
(turn (~(tap by b)) |=(c/(set partner) [c a]))
|
|
|
|
==
|
|
|
|
::TODO sh-prod each shell?
|
|
|
|
$names
|
2017-03-25 02:24:55 +03:00
|
|
|
%= +>
|
|
|
|
folks %- ~(gas by *(map ship human))
|
|
|
|
%+ murn
|
|
|
|
%~ tap by
|
|
|
|
%- ~(uni by +.rad)
|
|
|
|
(~(run by folks) some)
|
|
|
|
|= {s/ship h/(unit human)}
|
|
|
|
?~ h ~
|
|
|
|
[s u.h]
|
|
|
|
==
|
2017-03-24 23:10:27 +03:00
|
|
|
::
|
|
|
|
++ poke-sole-action :: accept console
|
|
|
|
::x incoming sole action. process it.
|
|
|
|
::
|
|
|
|
|= act/sole-action
|
|
|
|
ra-abet:(ra-sole:ra act)
|
|
|
|
::
|
|
|
|
--
|