-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrols.py
282 lines (251 loc) · 11.4 KB
/
controls.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
# SpaceHack control text generation - York Hackspace December 2013
# Provides text generation for control names and various control type actions
import random
import json
def readWordList(filename):
"""Read a file as a list of words separated by newlines and return a list."""
f=open('words/' + filename)
ret = f.read().replace('\r','').split('\n')
f.close
if '' in ret: ret.remove('')
return ret
def readJSON(filename):
"""Read a file as JSON and return a Python dictionary"""
f=open("words/" + filename)
ret=json.loads(f.read())
f.close()
return ret
#read word lists
adjectives = readWordList('adjectives.txt')
baseparts = readWordList('baseparts.txt')
elements = readWordList('elements.txt')
greekletters = readWordList('greekletters.txt')
letters = readWordList('letters.txt')
nouns = readWordList('nouns.txt')
prefixparts = readWordList('prefixparts.txt')
prefixtoothed = readWordList('prefixtoothed.txt')
suffixtoothed = readWordList('suffixtoothed.txt')
verbs = readWordList('verbs.txt')
onwords = readWordList('onwords.txt')
offwords = readWordList('offwords.txt')
bannedpasswd = readWordList('bannedpasswd.txt')
rawcols = [c.split(',') for c in readWordList('colours.txt')]
colours = [c[0] for c in rawcols]
colourlookup = {c[0]: (int(c[1]), int(c[2]), int(c[3])) for c in rawcols}
allcontrolwords = adjectives + baseparts + elements + nouns + greekletters + verbs + colours + onwords + offwords
allgeneralwords = readWordList('words.txt')
emergencies = readJSON('emergencies.txt')
medals = readJSON('medals.txt')
soundfiles = readJSON('sounds.txt')
blurb = readJSON('blurb.txt')
# Letters that can work on a 7-segment
sevensegletters = ['A','B','C','D','E','F','G','H','I','J','L','N',
'O','P','Q','R','S','T','U','Y']
# Letters which can be used on the 4x4 keypad via password letter substitutions
# (A, B, C and D are on the keypad, plus 1=I, 0=O, 3=E, 5=S)
passwdletters = ['A', 'B', 'C', 'D', 'E', 'I', 'O', 'S']
# Letters which can be used on an 'upside down calculator'
upsidedowncalcletters = ['O', 'I', 'Z', 'E', 'H', 'S', 'G', 'L', 'B']
#Check if a word can be displayed using a subset of letters, e.g. on a 4-digit 7-seg
def checkSafeWord(word, minlen, maxlen, safeletters):
"""Check if a word can be displayed using a subset of letters, e.g. on a 4-digit 7-seg."""
if len(word)>maxlen or len(word) < minlen:
return False
else:
for i in range(len(word)):
if word[i].upper() not in safeletters:
return False
return True
def getSafeWords(wordlist, minlen, maxlen, safeletters):
"""Extract a subset of words from a list which satisfy length restrictions and specified letter subsets."""
return list(set([word for word in wordlist if checkSafeWord(word, minlen, maxlen, safeletters)]))
safewords = getSafeWords(allcontrolwords, 3, 4, sevensegletters)
passwd = list(set(getSafeWords(allgeneralwords, 4, 8, passwdletters)) - set(bannedpasswd))
upsidedowncalc = list(set(getSafeWords(allgeneralwords, 3, 4, upsidedowncalcletters)) - set(bannedpasswd))
# Used to see how many lines a label will take up on a fixed-width
# display without splitting words over line breaks, for instance on
# a 16x2 display, "salination C-crank sonar" will be displayed on
# two lines, like:
# [salination------] or [---salination---] if centred.
# [C-crank sonar---] [-C-crank sonar--]
# This is used to validate the suitability of generated control names for a
# target 16x2 LCD and action instructions for three lines of a target 20x4
# display.
def countLines(control, width):
"""Count the lines needed to display the supplied text on a screen of given width without breaking words over lines."""
lines = 1
linelen=0
for word in control.split(' '):
if linelen + len(word) < width:
linelen += len(word) + 1
else:
lines += 1
linelen = len(word)
return lines
# Generate a random control name
def getControlName(maxwidth, maxlines, minlen):
"""Generate a random control name."""
finished=False
while not finished:
ret = (random.choice(['','',random.choice(adjectives).lower()+' ',
random.choice(adjectives).lower()+' ', random.choice(adjectives).lower()+' ',
random.choice(prefixtoothed).lower() +random.choice(suffixtoothed)+ ' '])
+random.choice(['','',random.choice(letters),
random.choice(greekletters).lower()])+random.choice(baseparts).lower()
+random.choice(['','','',' '+random.choice(baseparts).lower()]))
if countLines(ret, maxwidth) <= maxlines and len(ret) >= minlen and max([len(x) for x in ret.split()]) <= maxwidth:
finished=True
return ret
# Describe an action suitable for a button
def getButtonAction(control):
"""Describe an action suitable for a button."""
finished=False
while not finished:
ret = random.choice(verbs) + ' the ' + control
if countLines(ret, 20) <= 3:
finished = True
return ret
# Describe an action suitable for a toggle
def getToggleAction(control, targetstate):
"""Describe an action suitable for a toggle."""
finished=False
while not finished:
if targetstate:
ret = random.choice(onwords)
else:
ret = random.choice(offwords)
ret += ' the ' + control
if countLines(ret, 20) <= 3:
finished = True
return ret
# Describe an action suitable for a selector
def getSelectorAction(control, numrange, targetnum, currentnum):
"""Describe an action suitable for a selector."""
finished=False
while not finished:
choices = ['Set ' + control + ' to ' + str(targetnum)]
if targetnum > currentnum:
changeword = 'Increase'
else:
changeword = 'Decrease'
choices.append(changeword + ' ' + control + ' to ' + str(targetnum))
if targetnum == max(numrange):
choices.append(random.choice(['Set ','Increase ']) + control + ' to ' + random.choice(['maximum', '100%', 'full power']))
if targetnum == min(numrange):
choices.append(random.choice(['Set ','Decrease ']) + control + ' to ' + random.choice(['minimum', '0%', 'off']))
ret = random.choice(choices)
if countLines(ret, 20) <= 3:
finished = True
return ret
# Describe an action suitable for a colour
def getColourAction(control, targetcolour):
"""Describe an action suitable for a colour."""
finished=False
while not finished:
ret = 'Set ' + control + ' to ' + random.choice(['','','','code ', 'condition ', 'status ']) + targetcolour + random.choice(['','','',' alert'])
if countLines(ret, 20) <= 3:
finished = True
return str(ret)
# Describe an action suitable for a verb list choice
def getVerbListAction(control, targetverb):
"""Describe an action suitable for a verb list choice."""
return targetverb + ' the ' + control
# Describe an action suitable for a word
def getWordAction(control, targetword):
"""Describe an action suitable for a word."""
finished = False
while not finished:
ret = (random.choice(['Set ' + control + ' to \'' + targetword + '\'',
'Select \'' + targetword + '\' on ' + control]))
if countLines(ret, 20) <= 3:
finished = True
return ret
# Describe an action suitable for a numpad password action
def getPasswdAction(control, targetpasswd):
"""Describe an action suitable for a numpad password action."""
finished = False
while not finished:
ret = (random.choice(['Set ' + control + ' to \'' + targetpasswd + '\'',
'Type \'' + targetpasswd + random.choice(['\' on ','\' into ','\' onto ']) + control,
'Key \'' + targetpasswd + '\' into ' + control,
control + ' password is \'' + targetpasswd + '\'']))
if countLines(ret, 20) <= 3:
finished = True
return str(ret)
#Describe a pin entry action
def getPinAction(control, targetpin):
"""Describe a pin entry action."""
finished = False
while not finished:
ret = (random.choice(['Set ' + control + ' to \'' + targetpin + '\'',
'Enter \'' + targetpin + random.choice(['\' on ','\' into ','\' onto ']) + control,
'Key \'' + targetpin + '\' into ' + control,
control + ' pin is \'' + targetpin + '\'']))
if countLines(ret, 20) <= 3:
finished = True
return str(ret)
# Generate a random action
def getRandomAction(control):
"""Generate a random action as a demo."""
return random.choice([getButtonAction(control), getToggleAction(control, random.choice(range(2))),
getSelectorAction(control, range(11), random.choice(range(11)),random.choice(range(11))),
getColourAction(control, random.choice(colours)),
getWordAction(control, random.choice(safewords)),
getPasswdAction(control, random.choice(passwd))])
#Generate a random emergency
def getEmergency():
"""Generate a random emergency."""
finished=False
while not finished:
n = random.choice(range(7))
if n==0: #is {goingto} {badplace}
em = "is " + random.choice(emergencies['goingto']) + " " + random.choice(emergencies['badplace'])
elif n==1: #is {attackedby} {badpeople}
em = "is " + random.choice(emergencies['attackedby']) + " " + random.choice(emergencies['badpeople'])
elif n==2: #is {losing} {neededresource}
em = "is " + random.choice(emergencies['losing']) + " " + random.choice(emergencies['neededresource'])
elif n==3: #is {leaking} {fluid}
em = "is " + random.choice(emergencies['leaking']) + " " + random.choice(emergencies['fluid'])
elif n==4: #has a {broken} {device}
em = "has " + random.choice(emergencies['broken']) + " " + random.choice(emergencies['device'])
elif n==5: #has a {buildupof} {unwantables}
em = random.choice(emergencies['buildingup']) + " " + random.choice(emergencies['unwantables'])
elif n==6: #movie cliches
em = random.choice(emergencies['cliches'])
ret = random.choice(emergencies['emergency']) + " - "
if n < 6:
ret += "the ship "
ret += em + "! Stand by!"
if countLines(ret, 20) <= 4:
finished = True
return ret
def getMedal():
"""Generate a random medal."""
finished = False
while not finished:
ret = "The " + random.choice(medals['adjective']) \
+ " " + random.choice(medals['award']) \
+ " of " + random.choice(medals['name']) + " for your " \
+ random.choice(medals['attribute']) + "."
if countLines(ret, 20) <= 4:
finished = True
return ret
# Get 50 controls
def get50Controls():
"""Get 50 controls, as a demo."""
for i in range(50):
print(getControlName(16,2,12))
# Get 50 actions
def get50Actions():
"""Get 50 actions, as a demo."""
for i in range(50):
print(getRandomAction(getControlName(16,2,12)))
#Get 50 emergencies
def get50Emergencies():
"""Get 50 emergencies, as a demo."""
for i in range(50):
print(getEmergency())
def get50Medals():
"""Get 50 medals, as a demo."""
for i in range(50):
print(getMedal())