blob: 472bf62700f26433cd94a7db107d14e5b87cc323 (
plain)
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
|
# -*- coding: utf-8-*-
"""
A drop-in replacement for the Mic class used during unit testing.
Designed to take pre-arranged inputs as an argument and store any
outputs for inspection. Requires a populated profile (profile.yml).
"""
class Mic:
def __init__(self, inputs):
self.inputs = inputs
self.idx = 0
self.outputs = []
def passiveListen(self, PERSONA):
return True, "JASPER"
def activeListenToAllOptions(self, THRESHOLD=None, LISTEN=True, MUSIC=False):
return [self.activeListen(THRESHOLD=THRESHOLD, LISTEN=LISTEN, MUSIC=MUSIC)]
def activeListen(self, THRESHOLD=None, LISTEN=True, MUSIC=False):
if not LISTEN:
return self.inputs[self.idx - 1]
input = self.inputs[self.idx]
self.idx += 1
return input
def say(self, phrase, OPTIONS=None):
self.outputs.append(phrase)
|