You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
/**************************************************************************** |
|
* |
|
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org> |
|
* |
|
* QGroundControl is licensed according to the terms in the file |
|
* COPYING.md in the root of the source code directory. |
|
* |
|
****************************************************************************/ |
|
|
|
|
|
/** |
|
* @file |
|
* @brief Implementation of audio output |
|
* |
|
* @author Lorenz Meier <mavteam@student.ethz.ch> |
|
* @author Thomas Gubler <thomasgubler@gmail.com> |
|
* |
|
*/ |
|
|
|
#include <QApplication> |
|
#include <QDebug> |
|
|
|
#include "GAudioOutput.h" |
|
#include "QGCApplication.h" |
|
#include "QGC.h" |
|
#include "SettingsManager.h" |
|
|
|
#if defined __android__ |
|
#include <QtAndroidExtras/QtAndroidExtras> |
|
#include <QtAndroidExtras/QAndroidJniObject> |
|
#endif |
|
|
|
GAudioOutput::GAudioOutput(QGCApplication* app, QGCToolbox* toolbox) |
|
: QGCTool(app, toolbox) |
|
#ifndef __android__ |
|
, thread(new QThread()) |
|
, worker(new QGCAudioWorker()) |
|
#endif |
|
{ |
|
#ifndef __android__ |
|
worker->moveToThread(thread); |
|
connect(this, &GAudioOutput::textToSpeak, worker, &QGCAudioWorker::say); |
|
connect(thread, &QThread::finished, thread, &QObject::deleteLater); |
|
connect(thread, &QThread::finished, worker, &QObject::deleteLater); |
|
thread->start(); |
|
#endif |
|
} |
|
|
|
GAudioOutput::~GAudioOutput() |
|
{ |
|
#ifndef __android__ |
|
thread->quit(); |
|
#endif |
|
} |
|
|
|
|
|
bool GAudioOutput::say(const QString& inText) |
|
{ |
|
bool muted = qgcApp()->toolbox()->settingsManager()->appSettings()->audioMuted()->rawValue().toBool(); |
|
muted |= qgcApp()->runningUnitTests(); |
|
if (!muted && !qgcApp()->runningUnitTests()) { |
|
#if defined __android__ |
|
#if defined QGC_SPEECH_ENABLED |
|
static const char V_jniClassName[] {"org/mavlink/qgroundcontrol/QGCActivity"}; |
|
QAndroidJniEnvironment env; |
|
if (env->ExceptionCheck()) { |
|
env->ExceptionDescribe(); |
|
env->ExceptionClear(); |
|
} |
|
QString text = QGCAudioWorker::fixTextMessageForAudio(inText); |
|
QAndroidJniObject javaMessage = QAndroidJniObject::fromString(text); |
|
QAndroidJniObject::callStaticMethod<void>(V_jniClassName, "say", "(Ljava/lang/String;)V", javaMessage.object<jstring>()); |
|
#endif |
|
#else |
|
emit textToSpeak(inText); |
|
#endif |
|
} |
|
return true; |
|
}
|
|
|