Skip to content
Snippets Groups Projects
Commit 81c174dd authored by Armar6's avatar Armar6
Browse files

Merge branch 'master' of gitlab.com:ArmarX/RobotAPI

parents ada012d1 d4a21778
No related branches found
No related tags found
No related merge requests found
......@@ -162,11 +162,6 @@
# ArmarX.Verbosity = Info
# Ice.Config: Custom Property
# Attributes:
# - Default: ::NOT_DEFINED::
# - Case sensitivity: no
# - Required: no
# Ice.Config = ::NOT_DEFINED::
......@@ -55,24 +55,27 @@ void DummyTextToSpeech::onExitComponent()
armarx::PropertyDefinitionsPtr DummyTextToSpeech::createPropertyDefinitions()
{
return armarx::PropertyDefinitionsPtr(new DummyTextToSpeechPropertyDefinitions(
getConfigIdentifier()));
getConfigIdentifier()));
}
void armarx::DummyTextToSpeech::reportText(const std::string&text, const Ice::Current&)
void armarx::DummyTextToSpeech::reportText(const std::string& text, const Ice::Current&)
{
ARMARX_IMPORTANT << "reportState";
//ARMARX_IMPORTANT << "reportState";
textToSpeechStateTopicPrx->reportState(eStartedSpeaking);
ARMARX_IMPORTANT << "sleep";
ARMARX_IMPORTANT << "DummyTTS StartedSpeaking: " << text;
//ARMARX_IMPORTANT << "sleep";
sleep(1);
TimeUtil::SleepMS(text.length() * 10);
ARMARX_IMPORTANT << "reportState";
//ARMARX_IMPORTANT << "reportState";
ARMARX_IMPORTANT << "DummyTTS FinishedSpeaking";
textToSpeechStateTopicPrx->reportState(eFinishedSpeaking);
}
void armarx::DummyTextToSpeech::reportTextWithParams(const std::string&text, const Ice::StringSeq&params, const Ice::Current&)
void armarx::DummyTextToSpeech::reportTextWithParams(const std::string& text, const Ice::StringSeq& params, const Ice::Current&)
{
ARMARX_WARNING << "reportTextWithParams is not implemented";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment