forked from AmazingAmpharos/OoT-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hints.py
336 lines (283 loc) · 14.2 KB
/
Hints.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
import io
import hashlib
import logging
import os
import struct
import random
from HintList import getHint, getHintGroup, Hint
from ItemList import eventlocations
from Messages import update_message_by_id
from TextBox import lineWrap
def buildHintString(hintString):
if len(hintString) < 77:
hintString = "They say that " + hintString
elif len(hintString) < 82:
hintString = "They say " + hintString
# captitalize the sentance
hintString = hintString[:1].upper() + hintString[1:]
return hintString
def getItemGenericName(item):
if item.type == 'Map' or item.type == 'Compass' or item.type == 'BossKey' or item.type == 'SmallKey' or item.type == 'FortressSmallKey':
return item.type
else:
return item.name
def isDungeonItem(item):
return item.type == 'Map' or item.type == 'Compass' or item.type == 'BossKey' or item.type == 'SmallKey'
def add_hint(world, id, text):
world.spoiler.hints[id] = lineWrap(text)
def writeGossipStoneHintsHints(world, messages):
for id,text in world.spoiler.hints.items():
update_message_by_id(messages, id, get_raw_text(text))
def filterTrailingSpace(text):
if text.endswith('& '):
return text[:-1]
else:
return text
hintPrefixes = [
'a few ',
'some ',
'plenty of ',
'a ',
'an ',
'the ',
'',
]
def getSimpleHintNoPrefix(item):
hint = getHint(item.name, True).text
for prefix in hintPrefixes:
if hint.startswith(prefix):
# return without the prefix
return hint[len(prefix):]
# no prefex
return hint
def colorText(text, color):
colorMap = {
'White': '\x40',
'Red': '\x41',
'Green': '\x42',
'Blue': '\x43',
'Light Blue': '\x44',
'Pink': '\x45',
'Yellow': '\x46',
'Black': '\x47',
}
colorTags = False
while True:
splitText = text.split('#', 2)
if len(splitText) == 3:
splitText[1] = '\x05' + colorMap[color] + splitText[1] + '\x05\x40'
text = ''.join(splitText)
colorTags = True
else:
text = '#'.join(splitText)
break
if not colorTags:
for prefix in hintPrefixes:
if text.startswith(prefix):
text = text[:len(prefix)] + '\x05' + colorMap[color] + text[len(prefix):] + '\x05\x40'
break
return text
#builds out general hints based on location and whether an item is required or not
def buildGossipHints(world):
stoneIDs = [0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407, 0x0408,
0x0409, 0x040A, 0x040B, 0x040C, 0x040D, 0x040E, 0x040F, 0x0410,
0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418,
0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0420]
#shuffles the stone addresses for randomization, always locations will be placed first
random.shuffle(stoneIDs)
# Add trial hints
if world.trials < 6 and world.trials > 3:
for trial,skipped in world.skipped_trials.items():
if skipped:
add_hint(world, stoneIDs.pop(0), buildHintString("the " + colorText(trial + " Trial", 'Yellow') + " was dispelled by Sheik."))
elif world.trials <= 3 and world.trials > 0:
for trial,skipped in world.skipped_trials.items():
if not skipped:
add_hint(world, stoneIDs.pop(0), buildHintString("the " + colorText(trial + " Trial", 'Pink') + " protects Ganon's Tower."))
# add required items locations for hints (good hints)
requiredSample = world.spoiler.required_locations[world.id]
if len(requiredSample) >= 5:
requiredSample = random.sample(requiredSample, random.randint(3,4))
for location in requiredSample:
if location.parent_region.dungeon:
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(location.parent_region.dungeon.name, world.clearer_hints).text, 'Light Blue') + \
" is on the way of the hero."))
else:
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(location.hint, 'Light Blue') + " is on the way of the hero."))
# Don't repeat hints
checkedLocations = []
# Add required location hints
alwaysLocations = getHintGroup('alwaysLocation', world)
for hint in alwaysLocations:
for locationWorld in world.get_locations():
if hint.name == locationWorld.name:
checkedLocations.append(hint.name)
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(locationWorld.name, world.clearer_hints).text, 'Green') + " " + \
colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + "."))
# Add good location hints
sometimesLocations = getHintGroup('location', world)
if sometimesLocations:
for _ in range(0, random.randint(11,12) - len(alwaysLocations)):
hint = random.choice(sometimesLocations)
# Repick if location isn't new
while hint.name in checkedLocations or hint.name in alwaysLocations:
hint = random.choice(sometimesLocations)
for locationWorld in world.get_locations():
if hint.name == locationWorld.name:
checkedLocations.append(locationWorld.name)
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(locationWorld.name, world.clearer_hints).text, 'Green') + " " + \
colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + "."))
# add bad dungeon locations hints
for dungeon in random.sample(world.dungeons, random.randint(3,4)):
# Choose a randome dungeon location that is a non-dungeon item
dungeon_locations = [location for region in dungeon.regions for location in region.locations
if location.item.type != 'Event' and \
location.item.type != 'Shop' and \
not location.locked and \
not isDungeonItem(location.item) and \
(world.tokensanity != 'off' or location.item.type != 'Token') and\
location.item.type != 'Song']
if (len(dungeon_locations) == 0):
continue
locationWorld = random.choice(dungeon_locations)
checkedLocations.append(locationWorld.name)
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(dungeon.name, world.clearer_hints).text, 'Green') + \
" hoards " + colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + "."))
# add bad overworld locations hints
# only choose location if it is new and a proper item from the overworld
overworldlocations = [locationWorld for locationWorld in world.get_locations()
if not locationWorld.name in checkedLocations and \
not locationWorld.name in alwaysLocations and \
not locationWorld.name in sometimesLocations and \
locationWorld.item.type != 'Event' and \
locationWorld.item.type != 'Shop' and \
not locationWorld.locked and \
(world.tokensanity == 'all' or locationWorld.item.type != 'Token') and \
not locationWorld.parent_region.dungeon]
overworldSample = overworldlocations
if len(overworldSample) >= 3:
# Use this hint type to balance hints given via trials
if world.trials == 3:
overworldSample = random.sample(overworldlocations, random.randint(1,2))
elif world.trials in [2, 4]:
overworldSample = random.sample(overworldlocations, random.randint(1,3))
elif world.trials in [1, 5]:
overworldSample = random.sample(overworldlocations, random.randint(2,3))
else:
overworldSample = random.sample(overworldlocations, random.randint(2,4))
for locationWorld in overworldSample:
checkedLocations.append(locationWorld.name)
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + \
" can be found at " + colorText(locationWorld.hint, 'Green') + "."))
# add good item hints
# only choose location if it is new and a good item
gooditemlocations = [locationWorld for locationWorld in world.get_locations()
if not locationWorld.name in checkedLocations and \
locationWorld.item.advancement and \
locationWorld.item.type != 'Event' and \
locationWorld.item.type != 'Shop' and \
not locationWorld.locked and \
locationWorld.item.type != 'Token' and \
not locationWorld.item.key]
gooditemSample = gooditemlocations
if len(gooditemSample) >= 6:
gooditemSample = random.sample(gooditemlocations, random.randint(4,6))
for locationWorld in gooditemSample:
checkedLocations.append(locationWorld.name)
if locationWorld.parent_region.dungeon:
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(locationWorld.parent_region.dungeon.name, world.clearer_hints).text, 'Green') + \
" hoards " + colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + "."))
else:
add_hint(world, stoneIDs.pop(0), buildHintString(colorText(getHint(getItemGenericName(locationWorld.item), world.clearer_hints).text, 'Red') + \
" can be found at " + colorText(locationWorld.hint, 'Green') + "."))
# fill the remaining hints with junk
junkHints = getHintGroup('junkHint', world)
random.shuffle(junkHints)
while stoneIDs:
add_hint( world, stoneIDs.pop(0), junkHints.pop().text )
# builds boss reward text that is displayed at the temple of time altar for child and adult, pull based off of item in a fixed order.
def buildBossRewardHints(world, messages):
bossRewardsSpiritualStones = ['Kokiri Emerald', 'Goron Ruby', 'Zora Sapphire']
bossRewardsMedallions = ['Forest Medallion', 'Fire Medallion', 'Water Medallion', 'Shadow Medallion', 'Spirit Medallion', 'Light Medallion']
# text that appears at altar as a child.
text = '\x08'
text += get_raw_text(getHint('Spiritual Stone Text Start', world.clearer_hints).text)
for reward in bossRewardsSpiritualStones:
text += buildBossString(reward, world)
text = setRewardColor(text)
text += get_raw_text(getHint('Spiritual Stone Text End', world.clearer_hints).text)
text += '\x0B'
update_message_by_id(messages, 0x707a, text, 0x20)
# text that appears at altar as an adult.
start = '\x08When evil rules all, an awakening\x01voice from the Sacred Realm will\x01call those destined to be Sages,\x01who dwell in the \x05\x41five temples\x05\x40.\x04'
text = ''
for reward in bossRewardsMedallions:
text += buildBossString(reward, world)
text = setRewardColor(text)
text += get_raw_text(getHint('Medallion Text End', world.clearer_hints).text)
text += '\x0B'
update_message_by_id(messages, 0x7057, start + text, 0x20)
# pulls text string from hintlist for reward after sending the location to hintlist.
def buildBossString(reward, world):
text = ''
for location in world.get_locations():
if location.item.name == reward:
text += '\x08' + get_raw_text(getHint(location.name, world.clearer_hints).text)
return text
# alternates through color set commands in child and adult boss reward hint strings setting the colors at the start of the string to correspond with the reward found at the location.
# skips over color commands at the end of stings to set color back to white.
def setRewardColor(text):
rewardColors = ['\x42', '\x41', '\x43', '\x45', '\x46', '\x44']
colorWhite = True
for i, char in enumerate(text):
if char == '\x05' and colorWhite:
text = text[:i + 1] + rewardColors.pop(0) + text[i + 2:]
colorWhite = False
elif char == '\x05' and not colorWhite:
colorWhite = True
return text
# fun new lines for Ganon during the final battle
def buildGanonText(world, messages):
# empty now unused messages to make space for ganon lines
update_message_by_id(messages, 0x70C8, " ")
update_message_by_id(messages, 0x70C9, " ")
update_message_by_id(messages, 0x70CA, " ")
# lines before battle
text = '\x08'
ganonLines = getHintGroup('ganonLine', world)
random.shuffle(ganonLines)
text = get_raw_text(ganonLines.pop().text)
update_message_by_id(messages, 0x70CB, text)
# light arrow hint or validation chest item
text = '\x08'
if world.trials == 0:
for location in world.get_locations():
if location.item.name == 'Light Arrows':
text = get_raw_text(getHint('Light Arrow Location', world.clearer_hints).text)
location_hint = location.hint.replace('Ganon\'s Castle', 'my castle')
location_hint = location.hint.replace('Ganon\'s Tower', 'my tower')
text += get_raw_text(location_hint)
text += '!'
break
else:
text = get_raw_text(getHint('Validation Line', world.clearer_hints).text)
for location in world.get_locations():
if location.name == 'Ganons Tower Boss Key Chest':
text += get_raw_text(getHint(getItemGenericName(location.item), world.clearer_hints).text)
text += '!'
break
update_message_by_id(messages, 0x70CC, text)
def get_raw_text(string):
text = ''
for char in string:
if char == '^':
text += '\x04' # box break
elif char == '&':
text += '\x01' #new line
elif char == '@':
text += '\x0F' #print player name
elif char == '#':
text += '\x05\x40' #sets color to white
else:
text += char
return text