X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=demos%2Fircbot.scm;h=32b0d1fd557ad21bfecaccf6e3acf93af3a8b79c;hb=396e5c62c13c5cec6adf982a36aee4c2b7c1a8e0;hp=ec381f0b83ea3b03b356fdc9e3b6eaed85a270a6;hpb=3e27bb39df3dbaf65bd0581131610bfe6c824720;p=8sync.git diff --git a/demos/ircbot.scm b/demos/ircbot.scm index ec381f0..32b0d1f 100755 --- a/demos/ircbot.scm +++ b/demos/ircbot.scm @@ -1,9 +1,9 @@ -#!/usr/bin/guile \ +#! /usr/bin/env guile \ -e main -s !# ;;; 8sync --- Asynchronous programming for Guile -;;; Copyright (C) 2015 Christopher Allan Webber +;;; Copyright © 2015, 2016, 2017 Christopher Allan Webber ;;; ;;; This file is part of 8sync. ;;; @@ -22,10 +22,16 @@ (use-modules (8sync) (8sync systems irc) + (8sync repl) + (oop goops) (srfi srfi-37) + (ice-9 format) (ice-9 match)) -(define (handle-line irc-bot speaker channel line emote?) +(define-class ()) + +(define-method (handle-line (irc-bot ) message + speaker channel line emote?) (define my-name (irc-bot-username irc-bot)) (define (looks-like-me? str) (or (equal? str my-name) @@ -35,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 (_ @@ -81,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)) @@ -95,17 +104,23 @@ (repl #f)) (define hive (make-hive)) (define irc-bot - (hive-create-actor* hive "irc-bot" - #:line-handler handle-line - ;; TODO: move these to argument parsing - #:username username - #:server server - #:channels channels)) + (bootstrap-actor* hive "irc-bot" + #:username username + #:server server + #:channels channels)) + (define repl-manager + (cond + ((string? repl) + (bootstrap-actor* hive "repl" + #:path repl)) + (repl + (bootstrap-actor* hive "repl")))) + ;; TODO: load REPL - (ez-run-hive hive (list (bootstrap-message hive irc-bot 'init)))) + (run-hive hive '())) (define (main args) - (define parsed-args (parse-args "ircbot.scm" (pk 'args args))) + (define parsed-args (parse-args "ircbot.scm" args)) (apply (lambda* (#:key username #:allow-other-keys) (when (not username) (display "Error: username not specified!")