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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
;;; tts.jl -- Sawfish interface to Emacspeak speech servers
;;; $Id: tts.jl 4047 2006-08-11 19:11:17Z tv.raman.tv $
;;; $Author: tv.raman.tv $
;;; Description: Interface REP/Sawfish to Emacspeak TTS servers
;;; Keywords: Sawfish, Emacspeak, Audio Desktop
;;{{{ LCD Archive entry:
;;; LCD Archive Entry:
;;; emacspeak| T. V. Raman |raman@cs.cornell.edu
;;; A speech interface to Emacs |
;;; $Date: 2006-08-11 12:11:17 -0700 (Fri, 11 Aug 2006) $ |
;;; $Revision: 4047 $ |
;;; Location undetermined
;;;
;;}}}
;;{{{ Copyright:
;;; Copyright (C) 2000 -- 2002, T. V. Raman<raman@cs.cornell.edu>
;;; All Rights Reserved.
;;;
;;; This file is not part of GNU Emacs, but the same permissions apply.
;;;
;;; GNU Emacs 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 2, or (at your option)
;;; any later version.
;;;
;;; GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;}}}
;;{{{ Introduction:
;;; Commentary:
;;; Interface REP/Sawfish to Emacspeak TTS servers
;;}}}
;; Customise options.
(defgroup tts "Speech synthesis")
(defcustom tts-client "telnet"
"TTS cleint "
:group tts
:type string
:allow-nil nil)
(defcustom tts-host "localhost"
"Host running TTS "
:group tts
:type string
:allow-nil nil)
(defcustom tts-port "2222"
"TTS port on server "
:group tts
:type string
:allow-nil nil)
(defvar emacspeak "/home/raman/emacs/lisp/emacspeak"
"Root of Emacspeak installation.")
(defvar tts-process nil
"Handle to tts server connection.")
(defun tts-open-connection ()
"Open a TTS session."
(interactive)
(setq tts-process (make-process))
(start-process tts-process tts-client tts-host
tts-port))
(defvar tts-tcl "/usr/bin/tcl"
"TCL interpreter")
(defvar tts-dtk
(expand-file-name "servers/dtk-exp" emacspeak)
"DTK tcl server")
(defvar tts-outloud
(expand-file-name "servers/outloud" emacspeak)
"DTK tcl server")
(defun tts-open ()
"Open a TTS session."
(interactive)
(setq tts-process (make-process))
(start-process tts-process tts-tcl tts-dtk))
(defun tts-close ()
"Close a TTS session."
(interactive)
(when(and (processp tts-process)
(process-running-p tts-process))
(kill-process tts-process))
(setq tts-process nil))
(defun tts-running-p ()
"Is there a tts process up and running?"
(and (processp tts-process) (process-running-p
tts-process)))
(defvar tts-stop-immediately t
"Non nil means previous speech is flushed immediately.")
(defun tts-say (text)
"Say some text."
(unless (and tts-process
(process-running-p tts-process))
(tts-open))
(when tts-stop-immediately
(format tts-process "s\n"))
(format tts-process "q {%s}; d\n" text))
(defun tts-say-workspace ()
"Say the name of the current workspace."
(interactive)
(tts-say (or (nth current-workspace workspace-names)
(format nil "Workspace %d"
current-workspace))))
(defvar tts-say-window-details-p nil
"Non-nil means we also speak the window's position and dimensions.")
(defun tts-say-window (window)
"Say the name of window W."
(interactive "%W")
(when window
(let ((title (window-name window))
(position (window-position window))
(dimensions (window-dimensions window)))
(if tts-say-window-details-p
(tts-say
(format nil "%s at %s with dimensions %s"
title position dimensions))
(tts-say title)))))
(defun tts-say-current-window ()
"Say the name of the current window."
(interactive)
(tts-say-window (input-focus)))
(defun tts-say-workspace-on-change (enable)
"Enable/disable the reading of a workspace's name when you change to it."
(if enable
(unless (in-hook-p 'enter-workspace-hook tts-say-workspace)
(add-hook 'enter-workspace-hook tts-say-workspace))
(remove-hook 'enter-workspace-hook tts-say-workspace)))
(defun tts-say-window-on-focus (enable)
"Enable/disable the reading of a window's name when it receives focus."
(if enable
(unless (in-hook-p 'focus-in-hook tts-say-window)
(add-hook 'focus-in-hook tts-say-window))
(remove-hook 'focus-in-hook tts-say-window)))
(provide 'tts)
(message "Loaded tts.jl")
;;; tts.jl ends here
;;{{{ end of file
;;; local variables:
;;; folded-file: t
;;; byte-compile-dynamic: t
;;; end:
;;}}}
|