/* * BRLTTY - A background process providing access to the console screen (when in * text mode) for a blind person using a refreshable braille display. * * Copyright (C) 1995-2021 by The BRLTTY Developers. * * BRLTTY comes with ABSOLUTELY NO WARRANTY. * * This is free software, placed under the terms of the * GNU Lesser General Public License, as published by the Free Software * Foundation; either version 2.1 of the License, or (at your option) any * later version. Please see the file LICENSE-LGPL for details. * * Web Page: http://brltty.app/ * * This software is maintained by Dave Mielke . */ /* Alva/speech.c - Speech library * For the Alva Delphi. */ #include "prologue.h" #include #include #include #include "spk_driver.h" #include "speech.h" /* for speech definitions */ #include "Drivers/Braille/Alva/braille.h" /* charset conversion table from iso latin-1 == iso 8859-1 to cp437==ibmpc * for chars >=128. */ static unsigned char latin2cp437[0X80] = {199, 252, 233, 226, 228, 224, 229, 231, 234, 235, 232, 239, 238, 236, 196, 197, 201, 181, 198, 244, 247, 242, 251, 249, 223, 214, 220, 243, 183, 209, 158, 159, 255, 173, 155, 156, 177, 157, 188, 21, 191, 169, 166, 174, 170, 237, 189, 187, 248, 241, 253, 179, 180, 230, 20, 250, 184, 185, 167, 175, 172, 171, 190, 168, 192, 193, 194, 195, 142, 143, 146, 128, 200, 144, 202, 203, 204, 205, 206, 207, 208, 165, 210, 211, 212, 213, 153, 215, 216, 217, 218, 219, 154, 221, 222, 225, 133, 160, 131, 227, 132, 134, 145, 135, 138, 130, 136, 137, 141, 161, 140, 139, 240, 164, 149, 162, 147, 245, 148, 246, 176, 151, 163, 150, 129, 178, 254, 152}; static int spk_construct (volatile SpeechSynthesizer *spk, char **parameters) { return 1; } static void spk_say (volatile SpeechSynthesizer *spk, const unsigned char *buffer, size_t len, size_t count, const unsigned char *attributes) { static unsigned char *pre_speech = (unsigned char *)PRE_SPEECH; static unsigned char *post_speech = (unsigned char *)POST_SPEECH; unsigned char buf[256]; unsigned char c; int i; if (pre_speech[0]) { memcpy (buf, pre_speech + 1, pre_speech[0]); AL_writeData (buf, pre_speech[0]); } for (i = 0; i < len; i++) { c = buffer[i]; if (c >= 0X80) c = latin2cp437[c-0X80]; if (c < 33) /* space or control character */ { buf[0] = ' '; AL_writeData (buf, 1); } else if (c > MAX_TRANS) AL_writeData (&c, 1); else { memcpy (buf, vocab[c - 33], strlen (vocab[c - 33])); AL_writeData (buf, strlen (vocab[c - 33])); } } if (post_speech[0]) { memcpy (buf, post_speech + 1, post_speech[0]); AL_writeData (buf, post_speech[0]); } } static void spk_mute (volatile SpeechSynthesizer *spk) { static unsigned char *mute_seq = (unsigned char *)MUTE_SEQ; unsigned char buffer[32]; memcpy (buffer, mute_seq + 1, mute_seq[0]); AL_writeData (buffer, mute_seq[0]); } static void spk_destruct (volatile SpeechSynthesizer *spk) { }