forked from gras64/skill-autogui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
181 lines (143 loc) · 6.79 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# 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/>.
from adapt.intent import IntentBuilder
from mycroft.skills.core import MycroftSkill
from mycroft.util.log import getLogger
import pyautogui
import platform
from num2words import num2words
__author__ = 'eClarity'
LOGGER = getLogger(__name__)
class AutoguiSkill(MycroftSkill):
def __init__(self):
super(AutoguiSkill, self).__init__(name="AutoguiSkill")
def initialize(self):
type_intent = IntentBuilder("TypeIntent"). \
require("TypeKeyword").require("Text").build()
self.register_intent(type_intent, self.handle_type_intent)
mouse_absolute_intent = IntentBuilder("MouseAbsoluteIntent"). \
require("MouseAbsoluteKeyword").require("X").require("Y").build()
self.register_intent(mouse_absolute_intent, self.handle_mouse_absolute_intent)
mouse_scroll_down_intent = IntentBuilder("MouseScrollDownIntent"). \
require("MouseScrollDownKeyword").require("Scroll").build()
self.register_intent(mouse_scroll_down_intent, self.handle_mouse_scroll_down_intent)
mouse_scroll_up_intent = IntentBuilder("MouseScrollUpIntent"). \
require("MouseScrollUpKeyword").require("Scroll").build()
self.register_intent(mouse_scroll_up_intent, self.handle_mouse_scroll_up_intent)
mouse_scroll_right_intent = IntentBuilder("MouseScrollRightIntent"). \
require("MouseScrollRightKeyword").require("Scroll").build()
self.register_intent(mouse_scroll_right_intent, self.handle_mouse_scroll_right_intent)
screen_res_intent = IntentBuilder("ScreenResIntent"). \
require("ScreenResKeyword").build()
self.register_intent(screen_res_intent, self.handle_screen_res_intent)
press_key_intent = IntentBuilder("PressKeyIntent"). \
require("PressKeyKeyword").require("Key").build()
self.register_intent(press_key_intent, self.handle_press_key_intent)
hold_key_intent = IntentBuilder("HoldKeyIntent"). \
require("HoldKeyKeyword").require("Key").build()
self.register_intent(hold_key_intent, self.handle_hold_key_intent)
release_key_intent = IntentBuilder("ReleaseKeyIntent"). \
require("ReleaseKeyKeyword").require("Key").build()
self.register_intent(release_key_intent, self.handle_release_key_intent)
select_combination_intent = IntentBuilder("SelectCombinationIntent"). \
require("SelectAllKeyword").optionally("CopyKeyword"). \
optionally("CutKeyword"). \
optionally("PasteKeyword").\
optionally("DeleteKeyword").build()
self.register_intent(select_combination_intent, self.handle_select_combination_intent)
copy_intent = IntentBuilder("CopyIntent"). \
require("CopyKeyword").build()
self.register_intent(copy_intent, self.handle_copy_intent)
cut_intent = IntentBuilder("CutIntent"). \
require("CutKeyword").build()
self.register_intent(cut_intent, self.handle_cut_intent)
paste_intent = IntentBuilder("PasteIntent"). \
require("PasteKeyword").build()
self.register_intent(paste_intent, self.handle_paste_intent)
def handle_type_intent(self, message):
self.speak_dialog("typing")
text = message.data.get('Text')
pyautogui.typewrite(text, interval=0.05)
def handle_mouse_absolute_intent(self, message):
self.speak('moving mouse now')
#X = message.data.get('X')
#Y = message.data.get('Y')
#pyautogui.moveTo(X, Y)
def handle_mouse_scroll_down_intent(self, message):
self.speak('scrolling down now')
scroll = message.data.get('Scroll')
scroll_down = int(scroll) * -1
pyautogui.scroll(scroll_down)
def handle_mouse_scroll_up_intent(self, message):
self.speak('scrolling up now')
scroll = message.data.get('Scroll')
scroll_up = int(scroll)
pyautogui.scroll(scroll_up)
def handle_mouse_scroll_right_intent(self, message):
if platform.system().lower().startswith('lin'):
self.speak('scrolling right now')
scroll = message.data.get('Scroll')
scroll_right = int(scroll)
pyautogui.hscroll(scroll_right)
else:
self.speak('Sorry, I cannot scroll right on your current operating system')
def handle_screen_res_intent(self, message):
screen = pyautogui.size()
resx = screen[0]
resy = screen[1]
responsex = num2words(resx)
responsey = num2words(resy)
self.speak("Your screen resolution is %s by %s" % (responsex, responsey))
def handle_press_key_intent(self, message):
key = message.data.get('Key')
self.speak("Pressing %s" % key)
pyautogui.keyDown(key)
pyautogui.keyUp(key)
def handle_hold_key_intent(self, message):
key = message.data.get('Key')
self.speak("Holding down %s key" % key)
pyautogui.keyDown(key)
def handle_release_key_intent(self, message):
key = message.data.get('Key')
self.speak("Releasing %s key" % key)
pyautogui.keyUp(key)
def handle_copy_intent(self, message):
pyautogui.hotkey("ctrl", "c")
self.speak("Okay Copied!")
def handle_cut_intent(self, message):
self.speak("Cutting to clipboard")
pyautogui.hotkey("ctrl", "x")
def handle_paste_intent(self, message):
self.speak("Pasting from clipboard")
pyautogui.hotkey("ctrl", "v")
def handle_select_combination_intent(self, message):
self.speak("Selecting all")
pyautogui.hotkey("ctrl", "a")
if message.data.get("PasteKeyword"):
self.handle_paste_intent(message)
elif message.data.get("CopyKeyword"):
self.handle_copy_intent(message)
elif message.data.get("CutKeyword"):
self.handle_cut_intent(message)
elif message.data.get("DeleteKeyword"):
self.speak("deleting")
pyautogui.keyDown("delete")
pyautogui.keyUp("delete")
def stop(self):
pass
def create_skill():
return AutoguiSkill()