hlrc / server / include / Arbiter.h @ f150aab5
History | View | Annotate | Download (3.102 KB)
1 | 0c286af0 | Simon Schulz | /*
|
---|---|---|---|
2 | f150aab5 | Robert Haschke | * This file is part of hlrc_server
|
3 | *
|
||
4 | * Copyright(c) sschulz <AT> techfak.uni-bielefeld.de
|
||
5 | * http://opensource.cit-ec.de/projects/hlrc_server
|
||
6 | *
|
||
7 | * This file may be licensed under the terms of the
|
||
8 | * GNU General Public License Version 3 (the ``GPL''),
|
||
9 | * or (at your option) any later version.
|
||
10 | *
|
||
11 | * Software distributed under the License is distributed
|
||
12 | * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
|
||
13 | * express or implied. See the GPL for the specific language
|
||
14 | * governing rights and limitations.
|
||
15 | *
|
||
16 | * You should have received a copy of the GPL along with this
|
||
17 | * program. If not, go to http://www.gnu.org/licenses/gpl.html
|
||
18 | * or write to the Free Software Foundation, Inc.,
|
||
19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
20 | *
|
||
21 | * The development of this software was supported by the
|
||
22 | * Excellence Cluster EXC 277 Cognitive Interaction Technology.
|
||
23 | * The Excellence Cluster EXC 277 is a grant of the Deutsche
|
||
24 | * Forschungsgemeinschaft (DFG) in the context of the German
|
||
25 | * Excellence Initiative.
|
||
26 | *
|
||
27 | */
|
||
28 | 0c286af0 | Simon Schulz | |
29 | #pragma once
|
||
30 | #include <string> |
||
31 | #include <humotion/client/client.h> |
||
32 | #include "EmotionState.h" |
||
33 | #include "EmotionConfig.h" |
||
34 | #include "MouthConfig.h" |
||
35 | #include "Utterance.h" |
||
36 | #include "AudioPlayer.h" |
||
37 | #include "Animation.h" |
||
38 | #include <boost/shared_ptr.hpp> |
||
39 | #include <vector> |
||
40 | |||
41 | f150aab5 | Robert Haschke | class Arbiter { |
42 | 0c286af0 | Simon Schulz | public:
|
43 | f150aab5 | Robert Haschke | Arbiter(std::string audio_output); |
44 | ~Arbiter(); |
||
45 | 0c286af0 | Simon Schulz | |
46 | f150aab5 | Robert Haschke | void arbitrate();
|
47 | 0c286af0 | Simon Schulz | |
48 | f150aab5 | Robert Haschke | void set_default_emotion(EmotionState e);
|
49 | void set_current_emotion(EmotionState e);
|
||
50 | void set_mouth_config(MouthConfig m);
|
||
51 | void speak(boost::shared_ptr<Utterance> u);
|
||
52 | bool speak_active();
|
||
53 | 0c286af0 | Simon Schulz | |
54 | f150aab5 | Robert Haschke | void set_gaze_target(humotion::GazeState g);
|
55 | void set_mouth_target(humotion::MouthState target);
|
||
56 | void play_animation(boost::shared_ptr<Animation> ani);
|
||
57 | 0c286af0 | Simon Schulz | |
58 | f150aab5 | Robert Haschke | humotion::GazeState get_gaze_state(); |
59 | humotion::MouthState get_mouth_state(); |
||
60 | 0c286af0 | Simon Schulz | |
61 | private:
|
||
62 | f150aab5 | Robert Haschke | void override_by_emotion();
|
63 | void override_by_gaze();
|
||
64 | void override_by_animation();
|
||
65 | void override_by_utterance();
|
||
66 | void override_by_mouth();
|
||
67 | 0c286af0 | Simon Schulz | |
68 | f150aab5 | Robert Haschke | humotion::GazeState soft_overblend_gaze(humotion::GazeState gaze_now, humotion::GazeState gaze_target, |
69 | unsigned int overblend_time); |
||
70 | efbcb710 | sschulz | |
71 | f150aab5 | Robert Haschke | EmotionConfig emotion_config_current; |
72 | EmotionConfig emotion_config_default; |
||
73 | 0c286af0 | Simon Schulz | |
74 | f150aab5 | Robert Haschke | humotion::MouthState mouth_state; |
75 | humotion::GazeState gaze_state; |
||
76 | 0c286af0 | Simon Schulz | |
77 | f150aab5 | Robert Haschke | boost::posix_time::ptime gaze_state_end_time; |
78 | humotion::GazeState gaze_state_old; |
||
79 | bool gaze_state_animation_restart;
|
||
80 | efbcb710 | sschulz | |
81 | f150aab5 | Robert Haschke | EmotionConfig* emotion_target; |
82 | efbcb710 | sschulz | |
83 | f150aab5 | Robert Haschke | MouthConfig mouth_config; |
84 | efbcb710 | sschulz | |
85 | f150aab5 | Robert Haschke | boost::shared_ptr<Utterance> utterance; |
86 | 0c286af0 | Simon Schulz | |
87 | f150aab5 | Robert Haschke | humotion::GazeState requested_gaze_state; |
88 | humotion::MouthState requested_mouth_state; |
||
89 | 0c286af0 | Simon Schulz | |
90 | f150aab5 | Robert Haschke | boost::mutex emotion_config_default_mutex; |
91 | boost::mutex emotion_config_current_mutex; |
||
92 | boost::mutex mouth_config_override_mutex; |
||
93 | boost::mutex utterance_mutex; |
||
94 | boost::mutex requested_gaze_state_mutex; |
||
95 | boost::mutex requested_mouth_state_mutex; |
||
96 | boost::mutex audio_player_mutex; |
||
97 | 0c286af0 | Simon Schulz | |
98 | f150aab5 | Robert Haschke | boost::mutex animation_mutex; |
99 | Animation active_animation; |
||
100 | 0c286af0 | Simon Schulz | |
101 | f150aab5 | Robert Haschke | typedef std::vector<boost::shared_ptr<Animation>> active_animation_vector_t;
|
102 | boost::mutex active_animation_vector_mutex; |
||
103 | active_animation_vector_t active_animation_vector; |
||
104 | 0c286af0 | Simon Schulz | |
105 | f150aab5 | Robert Haschke | AudioPlayer* audio_player; |
106 | 0c286af0 | Simon Schulz | }; |