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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
|
/*$Id: tcleci.cpp,v 24.0 2006/05/03 02:54:04 raman Exp $*/
/* Tcl ViaVoiceOutloud Interface program
(c) Copyright 1999 by Paige Phault
The author hereby grants permission to use, copy, modify, distribute, and
license this software for any purpose, provided that existing copyright notices
are retained in all copies and that this notice is included verbatim in any
distributions. No written agreement, license, or royalty fee is required for
any of the authorized uses. Modifications to this software may be copyrighted
by their authors and need not follow the licensing terms described here,
provided that the new terms are clearly indicated on the first page of each
file where they apply.
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF,
EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN
"AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
dynamic loading of eci library contributed by Jeffrey Sorensen
--this allows a compiled version of this
speech server to be distributed without violating the IBM
Viavoice license.
This means that end-users only need install the Viavoice RTK
(Runtime toolkit)
to use Emacspeak with the ViaVoice TTS engine.
*/
/* TCL usage
package require tts
proc index x {
puts "I just played index $x"
}
synth "Hello world"
synth -index 0 "This is some" -index 1 "really wierd"
say -index 2 "text"
say -reset
The only difference bewtween say and synth is that synth calls
eciSynthesize and say doesn't. You can put as many text blocks as
you like after a command.
*/
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <linux/soundcard.h>
#include <sys/ioctl.h>
#include <tcl.h>
#include <dlfcn.h>
#define PACKAGENAME "tts"
#define PACKAGEVERSION "1.0"
#ifdef WIN32
#define EXPORT __declspec(dllexport)
#else
#define EXPORT
#endif
#define ECILIBRARYNAME "libibmeci.so"
#define DSP "/dev/dsp"
int dsp = -1;
//.04 second using 11025k samples.
//note that in the tcl server we select for 0.02 seconds so
//that we dont queue up too many speech samples,
//This is important for stopping speech immediately.
#define BUFSIZE 512
short waveBuffer[BUFSIZE];
/* The following declarations are derived from the publically available
documentation for ViaVoice TTS outloud.
--they are placed here to obviate the need for having the
ViaVoice SDK installed.
*/
typedef enum
{
eciDataNotProcessed, eciDataProcessed
}
ECICallbackReturn;
typedef enum
{
eciWaveformBuffer, eciPhonemeBuffer, eciIndexReply, eciPhonemeIndexReply
}
ECIMessage;
typedef enum
{
eciSynthMode,
eciInputType,
eciTextMode,
eciDictionary,
eciSampleRate = 5,
eciWantPhonemeIndices = 7,
eciRealWorldUnits,
eciLanguageDialect,
eciNumberMode,
eciPhrasePrediction,
eciNumParams
}
ECIParam;
static void (*_eciVersion) (char *);
static void *(*_eciNew) ();
static void (*_eciDelete) (void *);
static int (*_eciReset) (void *);
static int (*_eciStop) (void *);
static int (*_eciClearInput) (void *);
static int (*_eciPause) (void *, int);
static int (*_eciSynthesize) (void *);
static int (*_eciSynchronize) (void *);
static int (*_eciSpeaking) (void *);
static int (*_eciAddText) (void *, char *);
static int (*_eciInsertIndex) (void *, int);
static int (*_eciSetParam) (void *, int, int);
static int (*_eciGetVoiceParam) (void *, int, int);
static int (*_eciSetVoiceParam) (void *, int, int, int);
static int (*_eciSetOutputBuffer) (void *, int, short *);
static int (*_eciSetOutputDevice) (void *, int);
static void (*_eciRegisterCallback) (void *,
int (*)(void *, int, long, void *),
void *);
static int openDSP ();
extern "C" EXPORT int Tcleci_Init (Tcl_Interp * interp);
int SetRate (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int GetRate (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int getTTSVersion (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int Say (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int Stop (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int SpeakingP (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int Synchronize (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int Pause (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int Resume (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int setOutput (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int closeDSP (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
int eciCallback (void *, int, long, void *);
int playWaveFile (ClientData, Tcl_Interp *, int, Tcl_Obj * CONST[]);
void
TclEciFree (ClientData eciHandle)
{
_eciDelete (eciHandle);
close (dsp);
dsp = -1;
}
int
Tcleci_Init (Tcl_Interp * interp)
{
int rc;
void *eciHandle;
void *eciLib;
//< configure shared library symbols
eciLib = dlopen (ECILIBRARYNAME, RTLD_LAZY);
if (eciLib == NULL)
{
Tcl_AppendResult (interp, "Could not load ",
ECILIBRARYNAME,
"Error was: ",
dlerror (),
"\nPlease install the IBM ViaVoice Outloud RTK",
NULL);
return TCL_ERROR;
}
_eciVersion = (void (*)(char *)) dlsym (eciLib, "eciVersion");
_eciNew = (void *(*)()) dlsym (eciLib, "eciNew");
_eciDelete = (void (*)(void *)) dlsym (eciLib, "eciDelete");
_eciReset = (int (*)(void *)) dlsym (eciLib, "eciReset");
_eciStop = (int (*)(void *)) dlsym (eciLib, "eciStop");
_eciClearInput = (int (*)(void *)) dlsym (eciLib, "eciClearInput");
_eciPause = (int (*)(void *, int)) dlsym (eciLib, "eciPause");
_eciSynthesize = (int (*)(void *)) dlsym (eciLib, "eciSynthesize");
_eciSynchronize = (int (*)(void *)) dlsym (eciLib, "eciSynchronize");
_eciSpeaking = (int (*)(void *)) dlsym (eciLib, "eciSpeaking");
_eciInsertIndex = (int (*)(void *, int)) dlsym (eciLib, "eciInsertIndex");
_eciAddText = (int (*)(void *, char *)) dlsym (eciLib, "eciAddText");
_eciSetParam = (int (*)(void *, int, int)) dlsym (eciLib, "eciSetParam");
_eciGetVoiceParam = (int (*)(void *, int, int))
dlsym (eciLib, "eciGetVoiceParam");
_eciSetVoiceParam = (int (*)(void *, int, int, int))
dlsym (eciLib, "eciSetVoiceParam");
_eciRegisterCallback = (void
(*)(void *, int (*)(void *, int, long, void *),
void *)) dlsym (eciLib, "eciRegisterCallback");
_eciSetOutputBuffer =
(int (*)(void *, int, short *)) dlsym (eciLib, "eciSetOutputBuffer");
_eciSetOutputDevice =
(int (*)(void *, int)) dlsym (eciLib, "eciSetOutputDevice");
//>
//< check for needed symbols
int okay = 1;
if (!_eciNew)
{
okay = 0;
Tcl_AppendResult (interp, "eciNew undef\n", NULL);
}
if (!_eciDelete)
{
okay = 0;
Tcl_AppendResult (interp, "eciDelete undef\n", NULL);
}
if (!_eciReset)
{
okay = 0;
Tcl_AppendResult (interp, "eciReset undef\n", NULL);
}
if (!_eciStop)
{
okay = 0;
Tcl_AppendResult (interp, "eciStop undef\n", NULL);
}
if (!_eciClearInput)
{
okay = 0;
Tcl_AppendResult (interp, "eciClearInput undef\n", NULL);
}
if (!_eciPause)
{
okay = 0;
Tcl_AppendResult (interp, "eciPause undef\n", NULL);
}
if (!_eciSynthesize)
{
okay = 0;
Tcl_AppendResult (interp, "eciSynthesize undef\n", NULL);
}
if (!_eciSpeaking)
{
okay = 0;
Tcl_AppendResult (interp, "eciSpeaking undef\n", NULL);
}
if (!_eciInsertIndex)
{
okay = 0;
Tcl_AppendResult (interp, "eciInsertIndex undef\n", NULL);
}
if (!_eciAddText)
{
okay = 0;
Tcl_AppendResult (interp, "eciAddText undef\n", NULL);
}
if (!_eciSetParam)
{
okay = 0;
Tcl_AppendResult (interp, "eciSetParam undef\n", NULL);
}
if (!_eciSetParam)
{
okay = 0;
Tcl_AppendResult (interp, "eciSetParam undef\n", NULL);
}
if (!_eciGetVoiceParam)
{
okay = 0;
Tcl_AppendResult (interp, "eciGetVoiceParam undef\n", NULL);
}
if (!_eciSetVoiceParam)
{
okay = 0;
Tcl_AppendResult (interp, "eciSetVoiceParam undef\n", NULL);
}
if (!_eciRegisterCallback)
{
okay = 0;
Tcl_AppendResult (interp, "eciRegisterCallback undef\n", NULL);
}
if (!_eciSetOutputBuffer)
{
okay = 0;
Tcl_AppendResult (interp, "eciSetOutputBuffer undef\n", NULL);
}
if (!_eciSetOutputDevice)
{
okay = 0;
Tcl_AppendResult (interp, "eciSetOutputDevice undef\n", NULL);
}
if (!okay)
{
Tcl_AppendResult (interp, "Missing symbols from ", ECILIBRARYNAME,
NULL);
return TCL_ERROR;
}
//>
if (Tcl_PkgProvide (interp, PACKAGENAME, PACKAGEVERSION) != TCL_OK)
{
Tcl_AppendResult (interp, "Error loading ", PACKAGENAME, NULL);
return TCL_ERROR;
}
eciHandle = _eciNew ();
if (eciHandle == 0)
{
Tcl_AppendResult (interp, "Could not open text-to-speech engine", NULL);
return TCL_ERROR;
}
//<initialize TTS
if ((_eciSetParam (eciHandle, eciInputType, 1) == -1)
|| (_eciSetParam (eciHandle, eciSynthMode, 1) == -1)
|| (_eciSetParam (eciHandle, eciSampleRate, 1) == -1)
//|| (_eciSetParam(eciHandle,8/*eciRealWorldUnits*/, 1) == -1)
)
{
Tcl_AppendResult (interp, "Could not initialized tts", NULL);
_eciDelete (eciHandle);
return TCL_ERROR;
}
_eciRegisterCallback (eciHandle, eciCallback, interp);
//>
//<register tcl commands
Tcl_CreateObjCommand (interp, "setRate", SetRate,
(ClientData) eciHandle, TclEciFree);
Tcl_CreateObjCommand (interp, "getRate", GetRate, (ClientData) eciHandle,
TclEciFree);
Tcl_CreateObjCommand (interp, "ttsVersion", getTTSVersion,
(ClientData) eciHandle, TclEciFree);
Tcl_CreateObjCommand (interp, "say", Say, (ClientData) eciHandle,
TclEciFree);
Tcl_CreateObjCommand (interp, "synth", Say, (ClientData) eciHandle, NULL);
Tcl_CreateObjCommand (interp, "synchronize", Synchronize,
(ClientData) eciHandle, TclEciFree);
Tcl_CreateObjCommand (interp, "stop", Stop, (ClientData) eciHandle,
TclEciFree);
Tcl_CreateObjCommand (interp, "speakingP", SpeakingP,
(ClientData) eciHandle, TclEciFree);
Tcl_CreateObjCommand (interp, "pause", Pause, (ClientData) eciHandle,
TclEciFree);
Tcl_CreateObjCommand (interp, "resume", Resume, (ClientData) eciHandle,
TclEciFree);
Tcl_CreateObjCommand (interp, "setOutput", setOutput,
(ClientData) eciHandle, TclEciFree);
Tcl_CreateObjCommand (interp, "playWave", playWaveFile, (ClientData) NULL,
NULL);
Tcl_CreateObjCommand (interp, "closeDSP", closeDSP, (ClientData) eciHandle,
TclEciFree);
//>
rc = Tcl_Eval (interp, "proc index x {global tts; \
set tts(last_index) $x}");
return TCL_OK;
}
int
playWaveFile (ClientData unused, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
int length;
char *cmd;
char *filename;
char command[256];
if (objc != 3)
{
Tcl_AppendResult (interp, "Usage: playWave cmd filename", NULL);
return TCL_ERROR;
}
cmd = Tcl_GetStringFromObj (objv[1], &length);
filename = Tcl_GetStringFromObj (objv[2], &length);
sprintf (command, "%s %s", cmd, filename);
close (dsp);
dsp = -1;
system (command);
fprintf (stderr, "Played %s\n", filename);
return TCL_OK;
}
int
playTTS (int samples)
{
int i;
//Use BUFSIZE here since we dont want a variable sized array
short stereo[2 * BUFSIZE];//we will get BUFSIZE or less samples
/* mono to stereo */
for (i = 0; i < samples; i++)
{
stereo[2 * i] = waveBuffer[i];
stereo[2 * i + 1] = waveBuffer[i];
}
if (dsp == -1)
openDSP ();
write (dsp, stereo, 4 * samples);
return eciDataProcessed;
}
int
eciCallback (void *eciHandle, int msg, long lparam, void *data)
{
int rc;
Tcl_Interp *interp = (Tcl_Interp *) data;
if (msg == eciIndexReply /* eciIndexReply */ )
{
char buffer[128];
sprintf (buffer, "index %ld", lparam);
rc = Tcl_Eval (interp, buffer);
if (rc != TCL_OK)
Tcl_BackgroundError (interp);
}
else if ((msg == eciWaveformBuffer) && (lparam > 0))
{
playTTS (lparam);
}
return 1;
}
int
GetRate (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
int rc, rate, voice;
if (objc != 2)
{
Tcl_AppendResult (interp, "Usage: getRate voiceCode ", TCL_STATIC);
return TCL_ERROR;
}
rc = Tcl_GetIntFromObj (interp, objv[1], &voice);
if (rc != TCL_OK)
return rc;
rate = _eciGetVoiceParam (eciHandle, voice, 6 /*eciSpeed */ );
Tcl_SetObjResult (interp, Tcl_NewIntObj (rate));
return TCL_OK;
}
int
SetRate (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
int rc, rate, voice;
if (objc != 3)
{
Tcl_AppendResult (interp, "Usage: setRate voiceCode speechRate ",
TCL_STATIC);
return TCL_ERROR;
}
rc = Tcl_GetIntFromObj (interp, objv[1], &voice);
if (rc != TCL_OK)
return rc;
rc = Tcl_GetIntFromObj (interp, objv[2], &rate);
if (rc != TCL_OK)
return rc;
rc = _eciSetVoiceParam (eciHandle, voice, 6 /*eciSpeed */ , rate);
if (rc == -1)
{
Tcl_AppendResult (interp, "Could not set rate", TCL_STATIC);
return TCL_ERROR;
}
//fprintf(stderr, "setRate returned %d\n", rc);
rate = _eciGetVoiceParam (eciHandle, voice, 6 /*eciSpeed */ );
fprintf (stderr, "eciGetVoiceParam returned %d for voice %d \n",
rate, voice);
return TCL_OK;
}
int
Say (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
int i, rc, index, length;
for (i = 1; i < objc; i++)
{
// if string begins with -, assume it is an index value
char *txt = Tcl_GetStringFromObj (objv[i], &length);
if (Tcl_StringMatch (txt, "-reset"))
{
_eciReset (eciHandle);
if ((_eciSetParam (eciHandle, 1 /*eciInputType */ , 1) == -1)
|| (_eciSetParam (eciHandle, 0 /*eciSynthMode */ , 1) == -1))
{
Tcl_AppendResult (interp, "Could not initialized tts", NULL);
return TCL_ERROR;
}
}
else if (Tcl_StringMatch (txt, "-index"))
{
i++;
if (i == objc)
{
Tcl_AppendResult (interp, "missing index parameter",
TCL_STATIC);
return TCL_ERROR;
}
rc = Tcl_GetIntFromObj (interp, objv[i], &index);
if (rc != TCL_OK)
return rc;
rc = _eciInsertIndex (eciHandle, index);
if (!rc)
{
Tcl_AppendResult (interp, "Could not insert index", TCL_STATIC);
return TCL_ERROR;
}
}
else
{
// assume objv[i] is text to synthesize...
rc = _eciAddText (eciHandle, Tcl_GetStringFromObj (objv[i], NULL));
if (!rc)
{
Tcl_SetResult (interp, "Internal tts error", TCL_STATIC);
return TCL_ERROR;
}
}
}
if (Tcl_StringMatch (Tcl_GetStringFromObj (objv[0], NULL), "synth"))
{
rc = _eciSynthesize (eciHandle);
if (!rc)
{
Tcl_SetResult (interp, "Internal tts synth error", TCL_STATIC);
return TCL_ERROR;
}
}
return TCL_OK;
}
int
Synchronize (ClientData eciHandle, Tcl_Interp * interp,
int objc, Tcl_Obj * CONST objv[])
{
int rc = _eciSynchronize (eciHandle);
if (!rc)
{
Tcl_SetResult (interp, "Internal tts synth error", TCL_STATIC);
return TCL_ERROR;
}
if (dsp != -1)
{
close (dsp);
dsp = -1;
}
return TCL_OK;
}
int
Stop (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
if (_eciStop (eciHandle))
{
if (dsp != -1)
{
close (dsp);
dsp = -1;
}
return TCL_OK;
}
Tcl_SetResult (interp, "Could not stop synthesis", TCL_STATIC);
return TCL_ERROR;
}
int
SpeakingP (ClientData eciHandle, Tcl_Interp * interp, int
objc, Tcl_Obj * CONST objv[])
{
if (_eciSpeaking (eciHandle))
{
Tcl_SetObjResult (interp, Tcl_NewIntObj (1));
}
else
{
Tcl_SetObjResult (interp, Tcl_NewIntObj (0));
}
return TCL_OK;
}
int
Pause (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
if (_eciPause (eciHandle, 1))
return TCL_OK;
Tcl_SetResult (interp, "Could not pause synthesis", TCL_STATIC);
return TCL_ERROR;
}
int
Resume (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
if (_eciPause (eciHandle, 0))
return TCL_OK;
Tcl_SetResult (interp, "Could not resume synthesis", TCL_STATIC);
return TCL_ERROR;
}
int
openDSP ()
{
int tmp, _dsp;
_dsp = open (DSP, O_WRONLY);
if (_dsp == -1)
{
return -1;
}
dsp = _dsp;
ioctl (dsp, SNDCTL_DSP_RESET, 0);
tmp = 11025;
ioctl (dsp, SNDCTL_DSP_SPEED, &tmp);
tmp = 1;
ioctl (dsp, SNDCTL_DSP_STEREO, &tmp);
tmp = 16;
ioctl (dsp, SNDCTL_DSP_SAMPLESIZE, &tmp);
tmp = 11025;
ioctl (dsp, SNDCTL_DSP_GETBLKSIZE, &tmp);
return dsp;
}
int
closeDSP (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
close (dsp);
dsp = -1;
return TCL_OK;
}
int
setOutput (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
int rc, length;
char *output;
if (objc != 2)
{
Tcl_AppendResult (interp, "Usage: setOutput [buffer | default] ",
TCL_STATIC);
return TCL_ERROR;
}
output = Tcl_GetStringFromObj (objv[1], &length);
if (Tcl_StringMatch (output, "buffer"))
{
fprintf (stderr, "setting output to buffer\n");
//<set output wave buffer
rc = _eciSynchronize (eciHandle);
if (!rc)
{
Tcl_AppendResult (interp, "Error resetting TTS engine.\n", NULL);
return TCL_ERROR;
}
rc = _eciSetOutputBuffer (eciHandle, BUFSIZE, waveBuffer);
if (!rc)
{
Tcl_AppendResult (interp, "Error setting output buffer.\n", NULL);
return TCL_ERROR;
}
openDSP ();
if (dsp == -1)
{
Tcl_AppendResult (interp, "Could not open output device ",
DSP, NULL);
return (TCL_ERROR);
}
//>
}
else if (Tcl_StringMatch (output, "default"))
{
//stop using wave buffers
fprintf (stderr, "switching to default device.\n");
rc = _eciSetOutputDevice (eciHandle, -1);
if (!rc)
{
Tcl_AppendResult (interp,
"Failed to set output to default device. \n",
NULL);
return TCL_ERROR;
}
rc = _eciSetOutputBuffer (eciHandle, 0, NULL);
if (!rc)
{
Tcl_AppendResult (interp, "Error unsetting output buffer.\n", NULL);
return TCL_OK;
}
close (dsp);
}
else
{
Tcl_AppendResult (interp, "Usage: setOutput [buffer | default] ",
TCL_STATIC);
return TCL_ERROR;
}
fprintf (stderr, "Set output to %s\n", output);
return TCL_OK;
}
int
getTTSVersion (ClientData eciHandle, Tcl_Interp * interp, int objc,
Tcl_Obj * CONST objv[])
{
char *version = (char *) malloc (16);
if (objc != 1)
{
Tcl_AppendResult (interp, "Usage: ttsVersion ", TCL_STATIC);
return TCL_ERROR;
}
_eciVersion (version);
Tcl_SetResult (interp, version, TCL_STATIC);
return TCL_OK;
}
//<end of file
//local variables:
//folded-file: t
//end:
//>
|