-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotify_vcl.py
More file actions
162 lines (145 loc) · 5.39 KB
/
spotify_vcl.py
File metadata and controls
162 lines (145 loc) · 5.39 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# NatLink macro definitions for NaturallySpeaking
# coding: latin-1
# Generated by vcl2py 2.8.1I+, Fri Oct 31 17:34:50 2014
import natlink
from natlinkutils import *
from VocolaUtils import *
class ThisGrammar(GrammarBase):
gramSpec = """
<dgndictation> imported;
<1> = 'Search bar' ;
<2> = 'Search for' <dgndictation> ;
<next_back> = ('next' | 'back' ) ;
<3> = <next_back> 'track' ;
<4> = ('play' | 'pause' ) ;
<5> = 'volume' ('Up' | 'Down' ) ;
<6> = 'large artwork toggle' ;
<any> = <1>|<2>|<3>|<4>|<5>|<6>;
<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,'spotify','')
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
# 'Search bar'
def gotResults_1(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Ctrl+l}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_1(words[1:], fullResults)
except Exception, e:
handle_error('spotify.vcl', 5, '\'Search bar\'', e)
self.firstWord = -1
# 'Search for' <_anything>
def gotResults_2(self, words, fullResults):
if self.firstWord<0:
return
fullResults = combineDictationWords(fullResults)
opt = 1 + self.firstWord
if opt >= len(fullResults) or fullResults[opt][1] != 'converted dgndictation':
fullResults.insert(opt, ['', 'converted dgndictation'])
try:
top_buffer = ''
top_buffer += '{Ctrl+l}'
word = fullResults[1 + self.firstWord][0]
top_buffer += word
top_buffer += '{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 2
except Exception, e:
handle_error('spotify.vcl', 6, '\'Search for\' <_anything>', e)
self.firstWord = -1
def get_next_back(self, list_buffer, functional, word):
if word == 'next':
list_buffer += 'Right'
elif word == 'back':
list_buffer += 'Left'
return list_buffer
# <next_back> 'track'
def gotResults_3(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Esc}{Ctrl+'
word = fullResults[0 + self.firstWord][0]
top_buffer = self.get_next_back(top_buffer, False, word)
top_buffer += '}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 2
except Exception, e:
handle_error('spotify.vcl', 10, '<next_back> \'track\'', e)
self.firstWord = -1
# ('play' | 'pause')
def gotResults_4(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += ' '
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('spotify.vcl', 12, '(\'play\' | \'pause\')', e)
self.firstWord = -1
# 'volume' ('Up' | 'Down')
def gotResults_5(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Ctrl+'
word = fullResults[1 + self.firstWord][0]
top_buffer += word
top_buffer += '}'
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('spotify.vcl', 13, '\'volume\' (\'Up\' | \'Down\')', e)
self.firstWord = -1
# 'large artwork toggle'
def gotResults_6(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{alt+v}l'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_6(words[1:], fullResults)
except Exception, e:
handle_error('spotify.vcl', 14, '\'large artwork toggle\'', e)
self.firstWord = -1
thisGrammar = ThisGrammar()
thisGrammar.initialize()
def unload():
global thisGrammar
if thisGrammar: thisGrammar.unload()
thisGrammar = None