From c876d3bbefe0dc00c27ca0c12d29da5874946962 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Wed, 15 Dec 2021 21:04:28 +0100 Subject: rbutil: Merge rbutil with utils folder. rbutil uses several components from the utils folder, and can be considered part of utils too. Having it in a separate folder is an arbitrary split that doesn't help anymore these days, so merge them. This also allows other utils to easily use libtools.make without the need to navigate to a different folder. Change-Id: I3fc2f4de19e3e776553efb5dea5f779dfec0dc21 --- utils/rbutilqt/base/ttsexes.cpp | 127 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 utils/rbutilqt/base/ttsexes.cpp (limited to 'utils/rbutilqt/base/ttsexes.cpp') diff --git a/utils/rbutilqt/base/ttsexes.cpp b/utils/rbutilqt/base/ttsexes.cpp new file mode 100644 index 0000000000..446725968f --- /dev/null +++ b/utils/rbutilqt/base/ttsexes.cpp @@ -0,0 +1,127 @@ +/*************************************************************************** +* __________ __ ___. +* Open \______ \ ____ ____ | | _\_ |__ _______ ___ +* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +* \/ \/ \/ \/ \/ +* +* Copyright (C) 2007 by Dominik Wenger +* +* All files in this archive are subject to the GNU General Public License. +* See the file COPYING in the source tree root for full license agreement. +* +* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +* KIND, either express or implied. +* +****************************************************************************/ + +#include +#include "ttsexes.h" +#include "utils.h" +#include "rbsettings.h" +#include "Logger.h" + +TTSExes::TTSExes(QObject* parent) : TTSBase(parent) +{ + /* default to espeak */ + m_name = "espeak"; + m_capabilities = TTSBase::CanSpeak; + m_TTSTemplate = "\"%exe\" %options -w \"%wavfile\" -- \"%text\""; + m_TTSSpeakTemplate = "\"%exe\" %options -- \"%text\""; +} + + +TTSBase::Capabilities TTSExes::capabilities() +{ + return m_capabilities; +} + +void TTSExes::generateSettings() +{ + loadSettings(); + insertSetting(eEXEPATH, new EncTtsSetting(this, EncTtsSetting::eSTRING, + tr("Path to TTS engine:"), m_TTSexec, EncTtsSetting::eBROWSEBTN)); + insertSetting(eOPTIONS, new EncTtsSetting(this, EncTtsSetting::eSTRING, + tr("TTS engine options:"), m_TTSOpts)); +} + +void TTSExes::saveSettings() +{ + RbSettings::setSubValue(m_name, RbSettings::TtsPath, + getSetting(eEXEPATH)->current().toString()); + RbSettings::setSubValue(m_name, RbSettings::TtsOptions, + getSetting(eOPTIONS)->current().toString()); + RbSettings::sync(); +} + + +void TTSExes::loadSettings(void) +{ + m_TTSexec = RbSettings::subValue(m_name, RbSettings::TtsPath).toString(); + if(m_TTSexec.isEmpty()) m_TTSexec = Utils::findExecutable(m_name); + m_TTSOpts = RbSettings::subValue(m_name, RbSettings::TtsOptions).toString(); +} + + +bool TTSExes::start(QString *errStr) +{ + loadSettings(); + + QFileInfo tts(m_TTSexec); + if(tts.exists()) + { + return true; + } + else + { + *errStr = tr("TTS executable not found"); + return false; + } +} + +TTSStatus TTSExes::voice(QString text, QString wavfile, QString *errStr) +{ + (void) errStr; + QString execstring; + if(wavfile.isEmpty() && m_capabilities & TTSBase::CanSpeak) { + if(m_TTSSpeakTemplate.isEmpty()) { + LOG_ERROR() << "internal error: TTS announces CanSpeak " + "but template empty!"; + return FatalError; + } + execstring = m_TTSSpeakTemplate; + } + else if(wavfile.isEmpty()) { + LOG_ERROR() << "no output file passed to voice() " + "but TTS can't speak directly."; + return FatalError; + } + else { + execstring = m_TTSTemplate; + } + + execstring.replace("%exe",m_TTSexec); + execstring.replace("%options",m_TTSOpts); + execstring.replace("%wavfile",wavfile); + execstring.replace("%text",text); + + QProcess::execute(execstring); + + if(!wavfile.isEmpty() && !QFileInfo(wavfile).isFile()) { + LOG_ERROR() << "output file does not exist:" << wavfile; + return FatalError; + } + return NoError; + +} + +bool TTSExes::configOk() +{ + loadSettings(); + if (QFileInfo::exists(m_TTSexec)) + return true; + else + return false; +} + -- cgit v1.2.3