-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyboard.py
412 lines (373 loc) · 15.9 KB
/
keyboard.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# Low-level keyboard input module
#
# Based on the work done by the creators of the Dictation Toolbox
# https://github.com/dictation-toolbox/dragonfly-scripts
#
# and _multiedit-en.py found at:
# http://dragonfly-modules.googlecode.com/svn/trunk/command-modules/documentation/mod-_multiedit.html
#
# Modifications by: Tony Grosinger
#
# Licensed under LGPL
from natlink import setMicState
from aenea import (
Grammar,
MappingRule,
Text,
Key,
Mimic,
Function,
Dictation,
Choice,
Window,
Config,
Section,
Item,
IntegerRef,
Alternative,
RuleRef,
Repetition,
CompoundRule,
AppContext,
)
from lettermap import letterMap
from dragonfly.actions.keyboard import keyboard
from dragonfly.actions.typeables import typeables
if 'semicolon' not in typeables:
typeables["semicolon"] = keyboard.get_typeable(char=';')
# Note that this doesn't include the less common keys such as the "window" key.
release = Key("shift:up, ctrl:up, alt:up")
def cancel_and_sleep(text=None, text2=None):
"""Used to cancel an ongoing dictation and puts microphone to sleep.
This method notifies the user that the dictation was in fact canceled,
a message in the Natlink feedback window.
Then the the microphone is put to sleep.
Example:
"'random mumbling go to sleep'" => Microphone sleep.
"""
print("* Dictation canceled. Going to sleep. *")
setMicState("sleeping")
# For repeating of characters.
specialCharMap = {
"pipe": "|",
"minus": "-",
"dot": ".",
"comma": ",",
"backslash": "\\",
"underscore": "_",
"(asterisk|Asterix)": "*",
"colon": ":",
"(semicolon|semi-colon)": ";",
"at symbol": "@",
#"[double] quote": '"',
"quotes": '"',
"single quote": "'",
"apostrophe": "'",
"hash": "#",
"dollar sign": "$",
"percentage": "%",
"ampersand": "&",
"slash": "/",
"equals": "=",
"plus": "+",
"space": " ",
"exclamation mark": "!", # "bang" sounds like "aim" that I might use for "a"
#"bang": "!",
"question mark": "?",
"caret": "^",
"tilde": "~",
"back tick": "`",
# some other symbols I haven't imported yet, lazy sorry
# 'ampersand': Key('ampersand'),
# 'apostrophe': Key('apostrophe'),
# 'asterisk': Key('asterisk'),
# 'at': Key('at'),
# 'backslash': Key('backslash'),
# 'backtick': Key('backtick'),
# 'bar': Key('bar'),
# 'caret': Key('caret'),
# 'colon': Key('colon'),
# 'comma': Key('comma'),
# 'dollar': Key('dollar'),
# #'(dot|period)': Key('dot'),
# 'double quote': Key('dquote'),
# 'equal': Key('equal'),
# 'bang': Key('exclamation'),
# 'hash': Key('hash'),
# 'hyphen': Key('hyphen'),
# 'minus': Key('minus'),
# 'percent': Key('percent'),
# 'plus': Key('plus'),
# 'question': Key('question'),
# # Getting Invalid key name: 'semicolon'
# #'semicolon': Key('semicolon'),
# 'slash': Key('slash'),
# '[single] quote': Key('squote'),
# 'tilde': Key('tilde'),
# 'underscore | score': Key('underscore'),
}
# All the keys that can be pressed with the Window key down.
#windowCharMap = {
# "space": Key("space"),
# "up": Key("up"),
# "down": Key("down"),
# "left": Key("left"),
# "right": Key("right"),
# "enter": Key("enter"),
# "tab": Key("tab"),
# "insert": Key("insert"),
# "1": Text("1"),
# "2": Text("2"),
# "3": Text("3"),
# "4": Text("4"),
# "5": Text("5"),
#}
## Modifiers for the press-command.
#modifierMap = {
# "alt": "a",
# "control": "c",
# "shift": "s",
# "super": "w",
#}
#
## Modifiers for the press-command, if only the modifier is pressed.
#singleModifierMap = {
# "alt": "alt",
# "control": "ctrl",
# "shift": "shift",
# "super": "win",
#}
# letterMap = dictionary in separate "letterMap.py" file, so it can also be used by the "practice_mappings.py" tool.
# generate uppercase versions of every letter
upperLetterMap = {}
for letter in letterMap:
upperLetterMap["maxo " + letter] = letterMap[letter].upper() #
#upperLetterMap["roof " + letter] = letterMap[letter].upper() # My "roof zimeesi" fails
#upperLetterMap["biggie " + letter] = letterMap[letter].upper() # My "biggie" is like video
#upperLetterMap["buzz " + letter] = letterMap[letter].upper() # My "buzz" is like "plus"
#upperLetterMap["fig " + letter] = letterMap[letter].upper() # My "fig char" fails
#upperLetterMap["gross " + letter] = letterMap[letter].upper() # My "gross" is like "quotes"
#upperLetterMap["bam " + letter] = letterMap[letter].upper() # My "bam" is like "end"
#upperLetterMap["big " + letter] = letterMap[letter].upper() # My "big" is pretty good, but usually fails "big yeelax"
#upperLetterMap["case " + letter] = letterMap[letter].upper() # My "case" is too much like "plus"
#upperLetterMap["capital " + letter] = letterMap[letter].upper() # My "cap" is too much like "up"
#upperLetterMap["sky " + letter] = letterMap[letter].upper() # My "sky" is too much like "score" :-(
letterMap.update(upperLetterMap)
def handle_word(text):
#words = map(list, text)
#print text
words = str(text).split()
print 'word (', words, ')'
if len(words) > 0:
Text(words[0]).execute()
if len(words) > 1:
Mimic(' '.join(words[1:])).execute()
grammarCfg = Config("multi edit")
grammarCfg.cmd = Section("Language section")
grammarCfg.cmd.map = Item(
{
# Navigation keys.
"up [<n> times]": Key("up:%(n)d"),
"down [<n> times]": Key("down:%(n)d"),
"left [<n> times]": Key("left:%(n)d"),
"right [<n> times]": Key("right:%(n)d"),
"page up [<n> times]": Key("pgup:%(n)d"),
"page down [<n> times]": Key("pgdown:%(n)d"),
"jump [<n> times]": Key("pgup:%(n)d"),
"drop [<n> times]": Key("pgdown:%(n)d"),
#"up <n> (page|pages)": Key("pgup:%(n)d"),
#"down <n> (page|pages)": Key("pgdown:%(n)d"),
#"left <n> (word|words)": Key("c-left/3:%(n)d/10"),
#"right <n> (word|words)": Key("c-right/3:%(n)d/10"),
"home": Key("home"),
"end": Key("end"),
"insert": Key("insert"),
# Other special keys that could be nice to have, but might not be supported so far:
#Caps_Lock
#Alt_R
#KP_Insert
#Redo
#XF86AudioPlay
#XF86AudioNext
#XF86AudioForward
#XF86AudioPause
#XF86AudioRaiseVolume
#XF86AudioLowerVolume
#XF86Back
#KP_Next
#Scroll_Lock
#XF86MonBrightnessUp
#XF86MonBrightnessDown
#XF86ScrollUp
#XF86ScrollDown
#Insert
#Next
#XF86Next
#XF86AudioMute
#f1 ... f24
#Print
#Pause
#"doc home": Key("c-home/3"),
#"doc end": Key("c-end/3"),
# Functional keys.
#"space": release + Key("space"),
"space [<n> times]": release + Key("space:%(n)d"),
"(enter) [<n> times]": release + Key("enter:%(n)d"),
"tab [<n> times]": Key("tab:%(n)d"),
#"delete this line": Key("home, s-end, del"), # @IgnorePep8
"backspace [<n> times]": release + Key("backspace:%(n)d"),
#"application key": release + Key("apps/3"),
#"paste [that]": Function(paste_command),
#"copy [that]": Function(copy_command),
#"cut [that]": release + Key("c-x/3"),
#"select all": release + Key("c-a/3"),
#"[(hold|press)] met": Key("alt:down/3"),
# Function keys. For some reason the functionKeyMap above isn't working for me.
'F one': Key('f1'),
'F two': Key('f2'),
'F three': Key('f3'),
'F four': Key('f4'),
'F five': Key('f5'),
'F six': Key('f6'),
'F seven': Key('f7'),
'F eight': Key('f8'),
'F nine': Key('f9'),
'F ten': Key('f10'),
'F eleven': Key('f11'),
'F twelve': Key('f12'),
#"window": Key("win:down/3"),
#"win key": release + Key("win/3"),
#"window <windowChars>": Key("win:down") + Text("%(windowChars)s") + Key("win:up"),
#"window run": Key("win:down/3") + Text("r") + Key("win:up"),
#"release window": Key("win:up"),
#"window [<num>]": Key("win:down/3") + Text("%(num)d") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 1": Key("win:down/3") + Text("1") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 2": Key("win:down/3") + Text("2") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 3": Key("win:down/3") + Text("3") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 4": Key("win:down/3") + Text("4") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 5": Key("win:down/3") + Text("5") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 6": Key("win:down/3") + Text("6") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window 7": Key("win:down/3") + Text("7") + Key("win:up"), # Allow to say "window 2" to switch to the 2nd window
"window space": Key("win:down") + Key("space") + Key("win:up"),
"window up": Key("win:down") + Key("up") + Key("win:up"),
"window down": Key("win:down") + Key("down") + Key("win:up"),
"window left": Key("win:down") + Key("left") + Key("win:up"),
"window right": Key("win:down") + Key("right") + Key("win:up"),
"window enter": Key("win:down") + Key("enter") + Key("win:up"),
"window tab": Key("win:down") + Key("tab") + Key("win:up"),
"window insert": Key("win:down") + Key("insert") + Key("win:up"),
"window <letters>": Key("win:down") + Text("%(letters)s") + Key("win:up"),
# Moved to _aenea.py
#"window list": Key("win:down/999, tab") + Key("win:up"),
"meta [<num>]": Key("alt:down/1") + Text("%(num)d") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
#meta": Key("alt:down/3"), # Or do I prefer "alter"?
"meta 1": Key("alt:down/3") + Text("1") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 2": Key("alt:down/3") + Text("2") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 3": Key("alt:down/3") + Text("3") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 4": Key("alt:down/3") + Text("4") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 5": Key("alt:down/3") + Text("5") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 6": Key("alt:down/3") + Text("6") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 7": Key("alt:down/3") + Text("7") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
#"meta 8": Key("alt:down/3") + Text("8") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
"meta 9": Key("alt:down/3") + Text("9") + release, # Allow to say "meta 2" to hit Alt+2 to switch to the 2nd tab of Firefox, etc
#"hold met": Key("alt:down/3"),
#"release met": Key("alt:up"),
# My current aenea proxy system isn't allowing to hold down shift or caps lock, so I'm using Linux AutoKey instead. See "programs.py"
"shift": Key("shift:down/3"),
#"hold shift": Key("shift:down"),
#"release shift": Key("shift:up"),
"control": Key("ctrl:down/3"),
#"hold control": Key("ctrl:down"),
#"release control": Key("ctrl:up"),
"release all": Key("shift:up, ctrl:up, alt:up, win:up, shift:down, shift:up, ctrl:down, ctrl:up, alt:down, alt:up, win:down, win:up"),
#"press key <pressKey>": Key("%(pressKey)s"),
# Closures.
#"angle brackets": Key("langle, rangle, left/3"),
#"[square] brackets": Key("lbracket, rbracket, left/3"),
#"[curly] braces": Key("lbrace, rbrace, left/3"),
#"(parens|parentheses)": Key("lparen, rparen, left/3"),
#"quotes": Key("dquote/3, dquote/3, left/3"),
#"backticks": Key("backtick:2, left"),
#"single quotes": Key("squote, squote, left/3"),
# Shorthand multiple characters.
#"double <char>": Text("%(char)s%(char)s"),
#"triple <char>": Text("%(char)s%(char)s%(char)s"),
#"double escape": Key("escape, escape"), # Exiting menus.
# Punctuation and separation characters, for quick editing.
"colon": Key("colon"),
"semi-colon": Key("semicolon"),
"comma": Key("comma"),
"dot": Key("dot"), # cannot be followed by a repeat count
"full stop": Key("dot"), # cannot be followed by a repeat count
"point <digit> [<digit2>]": Key("dot") + Text("%(digit)d") + Text("%(digit2)d"), # allow to say "number 1.23"
"(dash|minus)": Key("hyphen"),
"underscore": Key("underscore"),
# These are needed by this grammar, otherwise many of these rules won't work!
"<letters>": Text("%(letters)s"),
"<char>": Text("%(char)s"),
'less than': Key('langle'), # angle bracket
#'langle': Key('langle:%(n)d'),
'curly brace': Key('lbrace'), # curly brace
'square bracket': Key('lbracket'), # square bracket
'round bracket': Key('lparen'), # round parenthesis
'greater than': Key('rangle'),
#'rangle': Key('rangle'),
'close curly': Key('rbrace'),
'close square': Key('rbracket'),
'close round': Key('rparen'),
'close bracket': Key('rparen'), # Only included here because otherwise, it causes "Close Dragon"!
"escape": Key("escape"),
"escape 2": Key("escape") + Key("escape"),
'delete [<n> times]': Key('del:%(n)d'),
#'chuck [<n>]': Key('del:%(n)d'),
#'scratch [<n>]': Key('backspace:%(n)d'),
#"visual": Key("v"),
#"visual line": Key("s-v"),
#"visual block": Key("c-v"),
#"doc save": Key("c-s"),
#"(arrow|pointer)": Text("->"),
#'fly [<n>]': Key('pgup:%(n)d'),
#'drop [<n>]': Key('pgdown:%(n)d'),
#'lope [<n>]': Key('c-left:%(n)d'),
#'(yope|rope) [<n>]': Key('c-right:%(n)d'),
#'(hill scratch|hatch) [<n>]': Key('c-backspace:%(n)d'),
#'hexadecimal': Text("0x"),
#'suspend': Key('c-z'),
#'undo': Key('c-z'), # Sounds too much like "end"
"(geez|woopsy) [<n> times]": Key('c-z:%(n)d'),
#'word <text>': Function(handle_word),
'number <num>': Text("%(num)d"),
#'change <text> to <text2>': Key("home, slash") + Text("%(text)s") + Key("enter, c, e") + Text("%(text2)s") + Key("escape"),
# Text corrections.
#"again": Key("ctrl:down/3, shift:down/3, left") + Key("ctrl:up, shift:up"), # Type over a word
#"fix missing space": Key("c-left/3, space, c-right/3"),
#"remove extra space": Key("c-left/3, backspace, c-right/3"), # @IgnorePep8
#"remove extra character": Key("c-left/3, del, c-right/3"), # @IgnorePep8
# Microphone sleep/cancel started dictation.
#"[<text>] (go to sleep|cancel and sleep) [<text2>]": Function(cancel_and_sleep), # @IgnorePep8
},
namespace={
"Key": Key,
"Text": Text,
}
)
class KeystrokeRule(MappingRule):
exported = False
mapping = grammarCfg.cmd.map
extras = [
IntegerRef("n", 1, 101),
IntegerRef("num", 0, 101),
IntegerRef("digit", 0, 10),
IntegerRef("digit2", 0, 10),
Dictation("text"),
#Dictation("text2"),
Choice("char", specialCharMap),
Choice("letters", letterMap),
#Choice("modifier1", modifierMap),
#Choice("modifier2", modifierMap),
#Choice("modifierSingle", singleModifierMap),
#Choice("windowChars", windowCharMap),
]
defaults = {
"n": 1,
}