From: Christopher Allan Webber Date: Tue, 26 Apr 2016 18:27:05 +0000 (-0500) Subject: demos: robotscanner: Add comment explaining what the demo does. X-Git-Tag: v0.2.0~33 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=c3beb2929546c0deb1b6a6398b2439cfc7ae00a7 demos: robotscanner: Add comment explaining what the demo does. * demos/actors/robotscanner.scm: New toplevel comment. --- diff --git a/demos/actors/robotscanner.scm b/demos/actors/robotscanner.scm index 361324b..f2d1d93 100644 --- a/demos/actors/robotscanner.scm +++ b/demos/actors/robotscanner.scm @@ -16,6 +16,23 @@ ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with 8sync. If not, see . +;;; ===================================================================== +;;; Robot Scanner test demo (from XUDD, originally). +;;; +;;; Here's the premise. There's a warehouse full of droids, some +;;; infected, and some not. The SecurityRobot is being sent in to clean +;;; up the mess. It's capable of sending a message that infected droids +;;; are susceptible to responding in a predictable way. Once it has +;;; identified that a droid is infected, it shoots it full of holes till +;;; the droid is terminated. The SecurityRobot goes from room to room +;;; till things are cleared out. +;;; +;;; Overseeing the operation is the "overseer". The security robot keeps +;;; the overseer up to date on its progress as it goes. (For this demo, +;;; the overseer is also responsible for initializing the world and +;;; reporting info back to the user.) +;;; ===================================================================== + (use-modules (8sync systems actors) (oop goops) (ice-9 match))