-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpc.py
650 lines (638 loc) · 24.6 KB
/
npc.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
import room
import quest
import enter
import item
import updater
import random
class NPC:
def __init__(self, name, tradeCondition): #Trade condition is a dictionary with item names as keys and integer quantities as values. The player can make a trade with an npc only if tradeCondition is met.
self.name = name
self.tradeCondition = tradeCondition
self.loc = None
def putInRoom(self, room):
self.loc = room
room.addNPC(self)
def respond(self):
print("Doesn't want to talk to you.")
def getNPCByName(self, name):
for i in room.Room.npcs:
if i.name.lower() == name.lower():
return i
return False
#There are nine NPCs in the game. Their responses defined here, as well as the player's speaking options, mostly depend on the player's current task in a particular quest.
class Hermione(NPC):
def respond(self):
if quest.q1.active and quest.q1.stepNum == 0:
print("(1) Say hi.")
print("(2) Tell her your problem.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("What's up?")
print()
print("(1) Shrug.")
print("(2) Panic.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
print()
print("Well, I'm always here if you want to say hi! And if you need help, type 'help'. Type 'help 2' for page 2 of help.")
commandSuccess2 = True
print()
commandSuccess = True
elif x == "2":
print()
print("Felix Felicis? It would take six months. Are you sure?")
print()
print("(1) Yes.")
print("(2) Yes?")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
print()
print("Ok. You can find the recipe in the library. If you talk to one of the librarians, you probably shouldn't say what you're using it for!")
commandSuccess2 = True
print()
quest.q1.nextStep()
commandSuccess = True
elif x == "3":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
elif quest.q5.active and quest.q5.stepNum == 0:
print("(1) Say hi.")
print("(2) Ask her about finding a murtlap tentacle.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi, Neville.")
print()
commandSuccess = True
elif x == "2":
print()
print("I'm not sure where they're sold. If you're going to fight a murtlap, I would suggest finding some gillyweed.")
print()
quest.q5.nextStep()
commandSuccess = True
elif x == "3":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
else:
print("(1) Say hi.")
print("(2) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi, Neville.")
print()
commandSuccess = True
elif x == "2":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
commandSuccess = False
class Librarian(NPC):
def respond(self):
if quest.q1.active and quest.q1.stepNum == 1:
print("(1) Ask for informaton about Felix Felicis.")
print("(2) Ask about the restricted section.")
print("(3) Run away.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Ah, tricky potion. I believe the 'Book of Potions' has the recipe.")
print()
print("(1) Ask for the book.")
print("(2) Run away.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
if x2 == "1":
print()
print("You now have the 'Book of Potions'.")
quest.q1.nextStep()
commandSuccess2 = True
elif x2 == "2":
commandSuccess2 = True
else:
print()
print("Not a valid number.")
commandSuccess2 = False
commandSuccess = True
print()
if x2 == "1":
return item.b1
elif x == "2":
print()
print("Nope.")
print()
commandSuccess = True
elif x == "3":
print()
print("...")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
else:
print("(1) Ask about the restricted section.")
print("(2) Run away.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Nope.")
print()
commandSuccess = True
elif x == "2":
print()
print("Bye?")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class Umbridge(NPC):
def __init__(self,name,tradeCondition):
super().__init__(name,{})
updater.register(self)
self.active=False
self.timer=40
self.respawntime=40
self.loc=None
def remove(self):
if self.loc!=None:
self.loc.removeNPC(self)
self.loc=None
self.timer=self.respawntime
self.active=False
def update(self):
if self.active==True:
notarget=True
while notarget:
target = self.loc.randomNeighbor()
if target.name.lower()!="hagrid's hut" and target.name.lower()!="water":
notarget=False
self.loc.npcs.remove(self)
self.putInRoom(target)
else:
if self.timer==0:
self.active=True
self.timer=self.respawntime
while True:
i=random.choice(room.rooms)
if i not in room.forestrooms and i.name.lower()!="hagrid's hut" and i.name.lower()!="water":
self.putInRoom(i)
break
else:
self.timer-=1
class Ron(NPC):
def respond(self):
if quest.q4.active and quest.q4.stepNum == 0:
print("(1) Say hi.")
print("(2) Ask if he as a tincture of thyme.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("What are you up to?")
print()
print("(1) Say you're up to absolutely nothing.")
print("(2) Ask him the same question.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
if x == "1":
print()
print("I'm always up to no good.")
commandSuccess2 = True
elif x == "2":
print()
print("Gah, leave me alone.")
commandSuccess2 = True
else:
print()
print("Not a valid number.")
print()
commandSuccess2 = False
commandSuccess = True
elif x == "2":
print()
print("For 50 coins.")
print()
quest.q4.nextStep()
commandSuccess = True
elif x == "3":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
elif quest.q4.active and quest.q4.stepNum == 1:
print("(1) Say hi.")
print("(2) Attempt a trade.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi, Neville.")
print()
commandSuccess = True
elif x == "2":
print()
print("Use the trade command to initiate the trade.")
print()
commandSuccess = True
elif x == "3":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
else:
print("(1) Say hi.")
print("(2) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi, Neville.")
print()
commandSuccess = True
elif x == "2":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class Hagrid(NPC):
def respond(self):
if quest.q3.active and quest.q3.stepNum == 0:
print("(1) Ask for information about occamy eggs.")
print("(2) Talk about the weather.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Occamy eggs are hard to come by. For one, occamies are very protective of their eggs! When I was in India, the bloody--")
print()
print("(1) Interrupt and ask where to find occamy eggshells.")
print("(2) Keep listening.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
if x2 == "1":
print()
print("Hmm. If I remember correctly, Gilderoy Lockhart used the eggshells to make a shampoo. If there were any eggshells around Hogwarts, they would probably have been up in his office. But Umbridge is there now. Don't go near her. She's bad business.")
print()
quest.q3.nextStep()
commandSuccess2 = True
elif x2 == "2":
print()
print("--creature nearly took my head off! I was lucky enough to catch a glimpse of an egg. Pure silver! Beautiful! But listen to me, Neville. Don't mess with them.")
print()
commandSuccess2 = True
else:
print()
print("Not a valid number.")
commandSuccess2 = False
commandSuccess = True
elif x == "2":
print()
print("A fine day.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
commandSuccess = False
else:
print("(1) Talk about the weather.")
print("(2) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("A fine day.")
print()
commandSuccess = True
elif x == "2":
print()
print("Bye?")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class HoodedCreature(NPC):
def respond(self):
if quest.q6.active and quest.q6.stepNum == 1:
print("(1) Approach cautiously.")
print("(2) Run away.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("What do you want?")
print()
print("(1) Ask if he has an ashwinder egg.")
print("(2) Run away.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
if x2 == "1":
print()
print("It comes at a price. You know of unicorn's blood?")
print()
print("(1) Nod.")
print("(2) Run away.")
commandSuccess3 = False
while commandSuccess3 == False:
print()
x3 = input("Choose a number. ")
if x3 == "1":
print()
print("OK. Fetch some for me. It must be around here somewhere. My old bones...")
print()
quest.q6.nextStep()
commandSuccess3 = True
elif x3 == "2":
print()
print("Hey.")
print()
commandSuccess3 = True
else:
print()
print("Not a valid number.")
commandSuccess3 = False
commandSuccess2 = True
elif x2 == "2":
commandSuccess2 = True
else:
print()
print("Not a valid number.")
commandSuccess2 = False
commandSuccess = True
print()
elif x == "2":
print()
print("...")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
else:
print("(1) Introduce yourself.")
print("(2) Run away.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Leave me alone.")
print()
commandSuccess = True
elif x == "2":
print()
print("...")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class Luna(NPC):
def respond(self):
if quest.q6.active and quest.q6.stepNum == 0:
print("(1) Say hi.")
print("(2) Ask if she knows anything about ashwinder eggs.")
print("(3) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi!")
print()
commandSuccess = True
elif x == "2":
print()
print("Ashwinder eggs are extremely rare. There was once this lovely creature I met in the forest. He seemed to be in the business of rare objects. Perhaps you could find him.")
print()
quest.q6.nextStep()
commandSuccess = True
elif x == "3":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
else:
print("(1) Say hi.")
print("(2) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Hi!")
print()
commandSuccess = True
elif x == "2":
print()
print("Bye.")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class Harry(NPC):
def respond(self):
print("(1) Ask him what he's doing.")
print("(2) Leave.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
print("Practicing! We can't beat the dementors if we don't practice!")
print()
print("(1) Say you've been practicing.")
print("(2) Tell him to stop yelling.")
commandSuccess2 = False
while commandSuccess2 == False:
print()
x2 = input("Choose a number. ")
if x2 == "1":
print()
print("Good.")
print()
print("(1) Say you're cooking up something that will change your life forever.")
print("(2) Leave.")
commandSuccess3 = False
while commandSuccess3 == False:
print()
x3 = input("Choose a number. ")
if x3 == "1":
print()
print("Tell me about it later! MUST KEEP PRACTICING!")
commandSuccess3 = True
elif x3 == "2":
commandSuccess3 = True
else:
print()
print("Not a valid number.")
commandSuccess3 = False
commandSuccess2 = True
elif x2 == "2":
print()
print("Sorry.")
print()
commandSuccess2 = True
else:
print()
print("Not a valid number.")
commandSuccess2 = False
commandSuccess = True
print()
elif x == "2":
print()
print("Bye?")
print()
commandSuccess = True
else:
print()
print("Not a valid number.")
print()
commandSuccess = False
class Centaur(NPC):
def __init__(self, name, tradeCondition):
super().__init__(name, tradeCondition)
self.heal=True
self.tradeCondition = tradeCondition
def respond(self):
print("(1) Help, I'm lost.")
print("(2) Help, I'm hurt.")
print("(3) Run away.")
commandSuccess = False
while commandSuccess == False:
print()
x = input("Choose a number. ")
if x == "1":
print()
room=self.loc.getLocation()
maximum=max(abs(room[0]),abs(room[1]))
if maximum==abs(room[0]):
if room[0]>0:
say="west"
else:
say="east"
else:
if room[1]>0:
say="south"
else:
say="north"
print("Hagrid's Hut is to the "+say+".")
print()
commandSuccess=True
elif x == "2":
if self.heal==True:
print()
print("Here, have my last potion.")
self.heal=False
print()
return item.P1
else:
print()
print("Sorry, I have no potions left.")
print()
commandSuccess=True
elif x == "3":
commandSuccess=True