X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=demos%2Fircbot.scm;h=1c4ae748e0704192a2a4bb0e02be8e111c0d2dc6;hp=bfcd723fca8f9722b014192c75d48e366dd35748;hb=dc2155083a90de90e24f5341b837d4d96ce2898c;hpb=bc24c9f3f29d3396ae9e52f9682914dec868838a diff --git a/demos/ircbot.scm b/demos/ircbot.scm index bfcd723..1c4ae74 100755 --- a/demos/ircbot.scm +++ b/demos/ircbot.scm @@ -22,14 +22,16 @@ (use-modules (8sync) (8sync systems irc) + (8sync repl) (oop goops) (srfi srfi-37) + (ice-9 format) (ice-9 match)) (define-class ()) -(define-method (irc-bot-handle-line (irc-bot ) speaker channel - line emote?) +(define-method (handle-line (irc-bot ) speaker channel + line emote?) (define my-name (irc-bot-username irc-bot)) (define (looks-like-me? str) (or (equal? str my-name) @@ -39,19 +41,19 @@ (match action ;; The classic botsnack! ("botsnack" - (<- irc-bot (actor-id irc-bot) 'send-line channel + (<- (actor-id irc-bot) 'send-line channel "Yippie! *does a dance!*")) ;; Return greeting ((or "hello" "hello!" "hello." "greetings" "greetings." "greetings!" "hei" "hei." "hei!" "hi" "hi!") - (<- irc-bot (actor-id irc-bot) 'send-line channel + (<- (actor-id irc-bot) 'send-line channel (format #f "Oh hi ~a!" speaker))) ;; ---> Add yours here <--- ;; Default (_ - (<- irc-bot (actor-id irc-bot) 'send-line channel + (<- (actor-id irc-bot) 'send-line channel "*stupid puppy look*")))) ;; Otherwise... just spit the output to current-output-port or whatever (_ @@ -85,7 +87,10 @@ (option '("channels") #t #f (lambda (opt name arg result) `(#:channels ,(string-split arg #\,) - ,@result)))) + ,@result))) + (option '("repl") #f #t + (lambda (opt name arg result) + `(#:repl ,(or arg #t) ,@result)))) (lambda (opt name arg result) (format #t "Unrecognized option `~a'\n" name) (exit 1)) @@ -103,8 +108,22 @@ #:username username #:server server #:channels channels)) + (define repl-manager + (cond + ((string? repl) + (hive-create-actor* hive "repl" + #:path repl)) + (repl + (hive-create-actor* hive "repl")))) + + (define initial-messages + (if repl + (list (bootstrap-message hive irc-bot 'init) + (bootstrap-message hive repl-manager 'init)) + (list (bootstrap-message hive irc-bot 'init)))) + ;; TODO: load REPL - (ez-run-hive hive (list (bootstrap-message hive irc-bot 'init)))) + (run-hive hive initial-messages)) (define (main args) (define parsed-args (parse-args "ircbot.scm" args))