Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
81c174dd
Commit
81c174dd
authored
6 years ago
by
Armar6
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.com:ArmarX/RobotAPI
parents
ada012d1
d4a21778
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scenarios/SpeechObserver/config/DummyTextToSpeechApp.cfg
+1
-6
1 addition, 6 deletions
scenarios/SpeechObserver/config/DummyTextToSpeechApp.cfg
source/RobotAPI/components/DummyTextToSpeech/DummyTextToSpeech.cpp
+9
-6
9 additions, 6 deletions
...botAPI/components/DummyTextToSpeech/DummyTextToSpeech.cpp
with
10 additions
and
12 deletions
scenarios/SpeechObserver/config/DummyTextToSpeechApp.cfg
+
1
−
6
View file @
81c174dd
...
...
@@ -162,11 +162,6 @@
# ArmarX.Verbosity = Info
# Ice.Config: Custom Property
# Attributes:
# - Default: ::NOT_DEFINED::
# - Case sensitivity: no
# - Required: no
# Ice.Config = ::NOT_DEFINED::
This diff is collapsed.
Click to expand it.
source/RobotAPI/components/DummyTextToSpeech/DummyTextToSpeech.cpp
+
9
−
6
View file @
81c174dd
...
...
@@ -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"
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment