X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=8sync%2Fsystems%2Firc.scm;h=aa43624389bd0705acf3827c689e34830fde158c;hb=5df9f19127858a1b32df6ef543b4b10e49f1aa57;hp=e6ad361ae322cfa7bc8308629c24840f8f3b173d;hpb=68472a819457ce0e6053b59b2b9a1657669e8801;p=8sync.git diff --git a/8sync/systems/irc.scm b/8sync/systems/irc.scm old mode 100755 new mode 100644 index e6ad361..aa43624 --- a/8sync/systems/irc.scm +++ b/8sync/systems/irc.scm @@ -1,9 +1,6 @@ -#!/usr/bin/guile \ --e main -s -!# - ;;; 8sync --- Asynchronous programming for Guile -;;; Copyright (C) 2015 Christopher Allan Webber +;;; Copyright © 2015, 2016, 2017 Christopher Allan Webber +;;; Copyright © 2023 Janneke Nieuwenhuizen ;;; ;;; This file is part of 8sync. ;;; @@ -136,13 +133,13 @@ #f))))) ;;; A goofy default -(define (echo-message irc-bot speaker channel-name - line-text emote?) - "Simply echoes the message to the current-output-port." +(define* (echo-message irc-bot speaker channel-name + line-text emote? #:key (port (current-output-port))) + "Simply echoes the message to the PORT." (if emote? - (format #t "~a emoted ~s in channel ~a\n" + (format port "~a emoted ~s in channel ~a\n" speaker line-text channel-name) - (format #t "~a said ~s in channel ~a\n" + (format port "~a said ~s in channel ~a\n" speaker line-text channel-name))) @@ -163,10 +160,11 @@ #:getter irc-bot-port) (socket #:accessor irc-bot-socket) (actions #:allocation #:each-subclass - #:init-value (build-actions + #:init-thunk (build-actions (*init* irc-bot-init) (*cleanup* irc-bot-cleanup) (main-loop irc-bot-main-loop) + (handle-line handle-line) (send-line irc-bot-send-line-action)))) (define (irc-bot-realname irc-bot) @@ -244,13 +242,15 @@ irc-bot-send-line." (receive (channel-name line-text emote?) (condense-privmsg-line line-params) (let ((username (irc-line-username line-prefix))) - (handle-line irc-bot username channel-name - line-text emote?)))) + (<- (actor-id irc-bot) 'handle-line + username channel-name + line-text emote?)))) (_ (handle-misc-input irc-bot raw-line))))) -(define-method (handle-line (irc-bot ) username channel-name - line-text emote?) - (echo-message irc-bot username channel-name line-text emote?)) +(define-method (handle-line (irc-bot ) message + username channel-name line-text emote?) + (echo-message irc-bot username channel-name line-text emote? + #:port (current-error-port))) (define-method (handle-misc-input (irc-bot ) raw-line) (display raw-line)