forked from MycroftAI/skill-spelling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
58 lines (45 loc) · 1.81 KB
/
__init__.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
# Copyright 2016 Mycroft AI, Inc.
#
# This file is part of Mycroft Core.
#
# Mycroft Core is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Mycroft Core is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mycroft Core. If not, see <http://www.gnu.org/licenses/>.
import time
from adapt.intent import IntentBuilder
from os.path import dirname, join
from mycroft.skills.core import MycroftSkill
__author__ = 'seanfitz'
# TODO - Localization
class SpellingSkill(MycroftSkill):
SEC_PER_LETTER = 5.0 / 7.0
LETTERS_PER_SCREEN = 7.0
def __init__(self):
super(SpellingSkill, self).__init__(name="SpellingSkill")
def initialize(self):
intent = IntentBuilder("SpellingIntent").require(
"SpellingKeyword").require("Word").build()
self.register_intent(intent, self.handle_intent)
def handle_intent(self, message):
word = message.data.get("Word")
self.emitter.once("recognizer_loop:audio_output_start",
self.enclosure.mouth_text(word))
spelled_word = ', '.join(word).lower()
self.enclosure.deactivate_mouth_events()
self.speak(spelled_word)
time.sleep((self.LETTERS_PER_SCREEN + len(word)) * self.SEC_PER_LETTER)
self.enclosure.activate_mouth_events()
self.enclosure.mouth_reset()
def stop(self):
pass
def create_skill():
return SpellingSkill()