-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudy2.py
146 lines (133 loc) · 6.18 KB
/
study2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import speech_recognition as sr
import text_response
import webcam_recognizer as wcr
import emotions
import pandas as pd
import time
import matplotlib.pyplot as plt
import cozmo
import sys
from random import randint
# Warning Suppression
import warnings
warnings.filterwarnings("ignore")
my_runner = wcr.CameraRunner()
bot = text_response.Chatbot()
emot = emotions.EmotionCenter()
emo_df = pd.DataFrame(emot.emotions, index=[0])
rec = sr.Recognizer()
sentiment = ["negative", "positive"]
print(bot.get_started())
bot_response = ''
cozmo_has_response = False
last_spoke = time.time()
start_time = time.time()
mic = sr.Microphone()
with mic as source:
rec.adjust_for_ambient_noise(mic)
def process_audio(recognizer, audio):
print('Cozmo is thinking...')
try:
transcription = rec.recognize_google(audio)
except sr.UnknownValueError:
# API failed
transcription = ""
except sr.RequestError as e:
# Request to API failed
transcription = ""
global bot_response
bot_response = bot.respond_to(transcription)
global cozmo_has_response
cozmo_has_response = True
def run(sdk_conn):
# Lists of animations to randomly pull from
angry_anims = [cozmo.anim._AnimTrigger(name='DriveStartAngry', id=39),
cozmo.anim._AnimTrigger(name='DriveEndAngry', id=33),
cozmo.anim._AnimTrigger(name='DriveLoopAngry', id=36),
cozmo.anim._AnimTrigger(name='FrustratedByFailure', id=57),
cozmo.anim._AnimTrigger(name='FrustratedByFailureMajor', id=58),
cozmo.anim._AnimTrigger(name='KnockOverFailure', id=82),
cozmo.anim._AnimTrigger(name='MajorFail', id=89),
cozmo.anim._AnimTrigger(name='PounceFail', id=162),
cozmo.anim._AnimTrigger(name='RequestGameDrivingFail', id=183),
cozmo.anim._AnimTrigger(name='RequestGamePickupFail', id=208),
cozmo.anim._AnimTrigger(name='CubePounceLoseSession', id=23),
cozmo.anim._AnimTrigger(name='RequestGameDrivingFail', id=183),
cozmo.anim._AnimTrigger(name='CubePounceLoseRound', id=22),
cozmo.anim._AnimTrigger(name='CantHandleTallStack', id=8)
]
sad_anims = [cozmo.anim._AnimTrigger(name='RequestGameKeepAwayDeny0', id=186),
cozmo.anim._AnimTrigger(name='RequestGameKeepAwayDeny1', id=187),
cozmo.anim._AnimTrigger(name='CubeMovedUpset', id=13)
]
happy_anims = [cozmo.anim._AnimTrigger(name='BuildPyramidSuccess', id=7),
cozmo.anim._AnimTrigger(name='CubePounceFake', id=14),
cozmo.anim._AnimTrigger(name='CubePounceWinHand', id=26),
cozmo.anim._AnimTrigger(name='CubePounceWinRound', id=27),
cozmo.anim._AnimTrigger(name='CubePounceWinSession', id=28),
cozmo.anim._AnimTrigger(name='KnockOverSuccess', id=86),
cozmo.anim._AnimTrigger(name='MajorWin', id=90),
cozmo.anim._AnimTrigger(name='OnLearnedPlayerName', id=106),
cozmo.anim._AnimTrigger(name='OnSpeedtapGameCozmoWinLowIntensity', id=120),
cozmo.anim._AnimTrigger(name='OnSpeedtapGameCozmoWinHighIntensity', id=119),
cozmo.anim._AnimTrigger(name='OnSpeedtapRoundCozmoWinHighIntensity', id=127),
cozmo.anim._AnimTrigger(name='OnSpeedtapRoundCozmoWinLowIntensity', id=128),
cozmo.anim._AnimTrigger(name='PounceSuccess', id=166),
cozmo.anim._AnimTrigger(name='RollBlockSuccess', id=227)
]
neutral_anims = [cozmo.anim._AnimTrigger(name='NeutralFace', id=101),
cozmo.anim._AnimTrigger(name='NothingToDoBoredIdle', id=103),
cozmo.anim._AnimTrigger(name='OnboardingIdle', id=143)
]
'''The run method runs once Cozmo is connected.'''
robot = sdk_conn.wait_for_robot()
global last_spoke
global cozmo_has_response
global bot_response
global emo_df
stop_listening = rec.listen_in_background(mic, process_audio)
# Use start_time to get a set amount of time for the conversation (only a set amount will let me plot emotions)
# start_time = time.time()
current_emotion = emot.active_emotion
while time.time() - start_time < 120:
expression = my_runner.run()
emot.add_expression(expression)
if emot.active_emotion != current_emotion:
current_emotion = emot.active_emotion
if emot.active_emotion == 'neutral':
robot.play_anim_trigger(neutral_anims[randint(0, len(neutral_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'happy':
robot.play_anim_trigger(happy_anims[randint(0, len(happy_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'sadness':
robot.play_anim_trigger(sad_anims[randint(0, len(sad_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'angry':
robot.play_anim_trigger(angry_anims[randint(0, len(angry_anims)-1)],
loop_count=1).wait_for_completed()
if time.time() - last_spoke > 15:
last_spoke = time.time()
stop_listening()
print(bot_response)
# robot.say_text(bot_response).wait_for_completed()
if emot.active_emotion == 'neutral':
robot.play_anim_trigger(neutral_anims[randint(0, len(neutral_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'happy':
robot.play_anim_trigger(happy_anims[randint(0, len(happy_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'sadness':
robot.play_anim_trigger(sad_anims[randint(0, len(sad_anims)-1)],
loop_count=1).wait_for_completed()
elif emot.active_emotion == 'angry':
robot.play_anim_trigger(angry_anims[randint(0, len(angry_anims)-1)],
loop_count=1).wait_for_completed()
stop_listening = rec.listen_in_background(mic, process_audio)
emo_df = emo_df.append(emot.emotions, ignore_index=True)
bot.user_feeling = emot.active_emotion
styles = ['rs-', 'go-', 'b^-', 'ro-', 'y^-']
plotter = emo_df.plot(title="Current Emotions", style=styles)
plt.show()
cozmo.setup_basic_logging()
cozmo.connect(run)