-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathntvdm_vcl.py
More file actions
141 lines (125 loc) · 4.53 KB
/
ntvdm_vcl.py
File metadata and controls
141 lines (125 loc) · 4.53 KB
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
# NatLink macro definitions for NaturallySpeaking
# coding: latin-1
# Generated by vcl2py 2.8.1I+, Fri Oct 31 17:34:49 2014
import natlink
from natlinkutils import *
from VocolaUtils import *
class ThisGrammar(GrammarBase):
gramSpec = """
<folder> = ('Temp' ) ;
<1> = 'Folder' <folder> ;
<2> = 'Copy That' ;
<3> = 'Paste That' ;
<4> = 'Go Up' ;
<5> = 'Go Up' (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20) ;
<any> = <1>|<2>|<3>|<4>|<5>;
<sequence> exported = <any>;
"""
def initialize(self):
self.load(self.gramSpec)
self.currentModule = ("","",0)
self.ruleSet1 = ['sequence']
def gotBegin(self,moduleInfo):
# Return if wrong application
window = matchWindow(moduleInfo,'ntvdm','')
if not window: return None
self.firstWord = 0
# Return if same window and title as before
if moduleInfo == self.currentModule: return None
self.currentModule = moduleInfo
self.deactivateAll()
title = string.lower(moduleInfo[1])
if string.find(title,'') >= 0:
for rule in self.ruleSet1:
try:
self.activate(rule,window)
except natlink.BadWindow:
pass
def convert_number_word(self, word):
if word == '0':
return '0'
else:
return word
def get_folder(self, list_buffer, functional, word):
if word == 'Temp':
list_buffer += 'C:\\Temp'
return list_buffer
# 'Folder' <folder>
def gotResults_1(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += 'cd "'
word = fullResults[1 + self.firstWord][0]
top_buffer = self.get_folder(top_buffer, False, word)
top_buffer += '"{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 2
except Exception, e:
handle_error('ntvdm.vcl', 5, '\'Folder\' <folder>', e)
self.firstWord = -1
# 'Copy That'
def gotResults_2(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_2(words[1:], fullResults)
except Exception, e:
handle_error('ntvdm.vcl', 7, '\'Copy That\'', e)
self.firstWord = -1
# 'Paste That'
def gotResults_3(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+Space}ep'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_3(words[1:], fullResults)
except Exception, e:
handle_error('ntvdm.vcl', 8, '\'Paste That\'', e)
self.firstWord = -1
# 'Go Up'
def gotResults_4(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += 'cd ..{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_4(words[1:], fullResults)
except Exception, e:
handle_error('ntvdm.vcl', 10, '\'Go Up\'', e)
self.firstWord = -1
# 'Go Up' 1..20
def gotResults_5(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += 'cd '
limit = ''
word = fullResults[1 + self.firstWord][0]
limit += self.convert_number_word(word)
for i in range(to_long(limit)):
top_buffer += '..\\'
top_buffer += '{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 2
if len(words) > 2: self.gotResults_5(words[2:], fullResults)
except Exception, e:
handle_error('ntvdm.vcl', 11, '\'Go Up\' 1..20', e)
self.firstWord = -1
thisGrammar = ThisGrammar()
thisGrammar.initialize()
def unload():
global thisGrammar
if thisGrammar: thisGrammar.unload()
thisGrammar = None