1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
;;; hacker-romance.scm: extensible romance :p
;;; Copyright (c) 2005, 2006, 2007 Freetalk Core Team
;;; This file is part of GNU Freetalk.
;;;
;;; Freetalk is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; Freetalk is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
(define min-chars 3)
(define max-chars 33)
(define rand-state (seed->random-state (current-time)))
(define (burst-of-romance buddy count message)
"burst of MESSAGEs to BUDDY"
(ft-send-message buddy message)
(if (= count 1)
'()
(begin
(sleep (+ 1 (random 3 (seed->random-state (current-time)))))
(burst-of-romance buddy (- count 1) message)
)))
(define (/burst-of-romance args)
(let ((args-list (string-split args #\ )))
(if (>= (length (string-split args #\ )) 3)
(let
((buddy (car args-list))
(count (string->number (cadr args-list)))
(message (string-join (cddr args-list))))
(if (and (> (string-length message) 0)
(> count 0))
(burst-of-romance buddy count message)))
(ft-display (_ "usage: /burst-of-romance BUDDY COUNT MESSAGE")))))
(add-command! /burst-of-romance "/burst-of-romance"
"/burst-of-romance BUDDY COUNT MESSAGE"
"send COUNT number of MESSAGEs to BUDDY as though you typed by hand")
(define (nstr str count)
"return COUNT number of CHARs"
(if (string=? str " ")
" "
(if (> count 0)
(string-append (nstr str (- count 1)) str)
"")))
(define (burst str min max)
"explode the STR string with MIN and MAX character count"
(if (string-null? str)
""
(begin
(string-append
(nstr (list->string (list (car (string->list str))))
(+ min (random max rand-state)))
(burst (list->string (cdr (string->list str))) min max)))))
(define (/burst args)
"dynamic command interface to burst procedure"
(let* ((args-list (split-discarding-char #\space args (lambda (x y) (list x y))))
(buddy (car args-list))
(message (cadr args-list)))
(if (> (string-length message) 0)
(ft-send-message buddy (burst message min-chars max-chars))
(ft-display (_ "usage: /burst BUDDY MESSAGE")))))
(add-command! /burst "/burst"
"/burst BUDDY MESSAGE"
"Send IRC greeting style MESSAGE")
(define (/greet args)
"IRC style greeting command"
(if (> (string-length args) 0)
(ft-send-message args
(burst (car (string-split args #\@))
min-chars max-chars))
(ft-display (_ "usage: /greet BUDDY"))))
(add-command! /greet "/greet"
"/greet BUDDY"
"greet like in IRC")
|