mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-14 17:41:33 +03:00
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
/- spider
|
|
/+ *ph-io
|
|
=>
|
|
|%
|
|
++ wait-for-agent-start
|
|
|= [=ship agent=term]
|
|
=/ m (strand:spider ,~)
|
|
^- form:m
|
|
=* loop $
|
|
;< [her=^ship =unix-effect] bind:m take-unix-effect
|
|
?: (is-dojo-output:util ship her unix-effect "activated app home/{(trip agent)}")
|
|
(pure:m ~)
|
|
loop
|
|
::
|
|
++ start-agent
|
|
|= [=ship agent=term]
|
|
=/ m (strand:spider ,~)
|
|
^- form:m
|
|
=* loop $
|
|
;< ~ bind:m (dojo ship "|start {<agent>}")
|
|
;< ~ bind:m (wait-for-agent-start ship agent)
|
|
(pure:m ~)
|
|
::
|
|
++ wait-for-goad
|
|
|= =ship
|
|
=/ m (strand:spider ,~)
|
|
^- form:m
|
|
=* loop $
|
|
;< [her=^ship =unix-effect] bind:m take-unix-effect
|
|
?: (is-dojo-output:util ship her unix-effect "p=%hood q=%bump")
|
|
(pure:m ~)
|
|
loop
|
|
::
|
|
++ start-group-agents
|
|
|= =ship
|
|
=/ m (strand:spider ,~)
|
|
^- form:m
|
|
;< ~ bind:m (start-agent ship %group-store)
|
|
(pure:m ~)
|
|
--
|
|
=, strand=strand:spider
|
|
^- thread:spider
|
|
|= args=vase
|
|
=/ m (strand ,vase)
|
|
;< az=tid:spider
|
|
bind:m start-azimuth
|
|
;< ~ bind:m (spawn az ~bud)
|
|
;< ~ bind:m (spawn az ~marbud)
|
|
;< ~ bind:m (spawn az ~zod)
|
|
;< ~ bind:m (spawn az ~marzod)
|
|
;< ~ bind:m (real-ship az ~bud)
|
|
;< ~ bind:m (real-ship az ~marbud)
|
|
;< ~ bind:m (wait-for-goad ~marbud)
|
|
;< ~ bind:m (real-ship az ~zod)
|
|
;< ~ bind:m (real-ship az ~marzod)
|
|
;< ~ bind:m (wait-for-goad ~marzod)
|
|
;< ~ bind:m (start-group-agents ~marbud)
|
|
;< ~ bind:m (start-group-agents ~marzod)
|
|
;< ~ bind:m (dojo ~marbud ":group-store|create 'test-group'")
|
|
;< ~ bind:m (wait-for-output ~marbud ">=")
|
|
;< ~ bind:m (sleep ~s1)
|
|
;< ~ bind:m (breach-and-hear az ~marzod ~marbud)
|
|
;< ~ bind:m (real-ship az ~marzod)
|
|
;< ~ bind:m (wait-for-goad ~marzod)
|
|
;< ~ bind:m (start-group-agents ~marzod)
|
|
;< ~ bind:m (sleep ~s3)
|
|
;< ~ bind:m end-azimuth
|
|
(pure:m *vase)
|