hlrc / server / include / Arbiter.h @ 6dee6447
History | View | Annotate | Download (3.257 KB)
1 | 0c286af0 | Simon Schulz | /*
|
---|---|---|---|
2 | * 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 | |||
29 | #pragma once
|
||
30 | #include <string> |
||
31 | 9cb381ec | Robert Haschke | #include <vector> |
32 | 888a909b | Robert Haschke | #include <memory> |
33 | 995b7f4d | Robert Haschke | #include <mutex> |
34 | 0c286af0 | Simon Schulz | #include <humotion/client/client.h> |
35 | #include "EmotionState.h" |
||
36 | #include "EmotionConfig.h" |
||
37 | #include "MouthConfig.h" |
||
38 | #include "Utterance.h" |
||
39 | #include "AudioPlayer.h" |
||
40 | #include "Animation.h" |
||
41 | |||
42 | class Arbiter{ |
||
43 | public:
|
||
44 | Arbiter(std::string audio_output); |
||
45 | ~Arbiter(); |
||
46 | |||
47 | void arbitrate();
|
||
48 | |||
49 | void set_default_emotion(EmotionState e);
|
||
50 | void set_current_emotion(EmotionState e);
|
||
51 | void set_mouth_config(MouthConfig m);
|
||
52 | 888a909b | Robert Haschke | void speak(std::shared_ptr<Utterance> u);
|
53 | 0c286af0 | Simon Schulz | bool speak_active();
|
54 | |||
55 | void set_gaze_target(humotion::GazeState g);
|
||
56 | void set_mouth_target(humotion::MouthState target);
|
||
57 | 888a909b | Robert Haschke | void play_animation(std::shared_ptr<Animation> ani);
|
58 | 0c286af0 | Simon Schulz | |
59 | humotion::GazeState get_gaze_state(); |
||
60 | humotion::MouthState get_mouth_state(); |
||
61 | |||
62 | private:
|
||
63 | void override_by_emotion();
|
||
64 | void override_by_gaze();
|
||
65 | void override_by_animation();
|
||
66 | void override_by_utterance();
|
||
67 | void override_by_mouth();
|
||
68 | |||
69 | efbcb710 | sschulz | humotion::GazeState soft_overblend_gaze(humotion::GazeState gaze_now, |
70 | humotion::GazeState gaze_target, |
||
71 | unsigned int overblend_time); |
||
72 | |||
73 | 0c286af0 | Simon Schulz | EmotionConfig emotion_config_current; |
74 | EmotionConfig emotion_config_default; |
||
75 | |||
76 | humotion::MouthState mouth_state; |
||
77 | humotion::GazeState gaze_state; |
||
78 | |||
79 | efbcb710 | sschulz | |
80 | 9cb381ec | Robert Haschke | std::chrono::time_point<std::chrono::steady_clock> gaze_state_end_time; |
81 | efbcb710 | sschulz | humotion::GazeState gaze_state_old; |
82 | bool gaze_state_animation_restart;
|
||
83 | |||
84 | EmotionConfig *emotion_target; |
||
85 | |||
86 | 0c286af0 | Simon Schulz | MouthConfig mouth_config; |
87 | |||
88 | 888a909b | Robert Haschke | std::shared_ptr<Utterance> utterance; |
89 | 0c286af0 | Simon Schulz | |
90 | humotion::GazeState requested_gaze_state; |
||
91 | humotion::MouthState requested_mouth_state; |
||
92 | |||
93 | |||
94 | 995b7f4d | Robert Haschke | std::mutex emotion_config_default_mutex; |
95 | std::mutex emotion_config_current_mutex; |
||
96 | std::mutex mouth_config_override_mutex; |
||
97 | std::mutex utterance_mutex; |
||
98 | std::mutex requested_gaze_state_mutex; |
||
99 | std::mutex requested_mouth_state_mutex; |
||
100 | std::mutex audio_player_mutex; |
||
101 | 0c286af0 | Simon Schulz | |
102 | 995b7f4d | Robert Haschke | std::mutex animation_mutex; |
103 | 0c286af0 | Simon Schulz | Animation active_animation; |
104 | |||
105 | 888a909b | Robert Haschke | typedef std::vector<std::shared_ptr<Animation>> active_animation_vector_t;
|
106 | 995b7f4d | Robert Haschke | std::mutex active_animation_vector_mutex; |
107 | 0c286af0 | Simon Schulz | active_animation_vector_t active_animation_vector; |
108 | |||
109 | |||
110 | AudioPlayer *audio_player; |
||
111 | }; |