-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdungeoncrawlergame.py
648 lines (550 loc) · 26.2 KB
/
dungeoncrawlergame.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
from tkinter import *
from roomcreator import *
from itemcreator import *
from random import *
from copy import *
from time import *
from threading import *
class Player(object):
def __init__(self, maxhealth, money=0, messages=""):
self.hp = maxhealth
self.maxhealth = maxhealth
self.money = money
if messages == "":
self.messages = "█████████████████████████\nFLOOR 1"
else:
self.messages = messages
self.inventory = []
self.equipped = None
class Enemythread(Thread):
con = True
class Mainscreen(Frame):
def __init__(self, master, endo, bat, openinv, openshp, level=1, player=None, x=None, y=None, floor=None, shopitems=None):
super().__init__(master)
self.grid()
if player == None:
self.player = Player(100)
else:
self.player = player
self.level = level
self.player_x = x
self.player_y = y
self.floor = floor
if shopitems == None and self.level % 2 == 0:
self.shopitems = []
self.itemfile = load_item_file("items.txt")
for x in self.itemfile:
if x.shoplevel != None:
if x.shoplevel <= self.level:
if x.type == "potion":
self.shopitems.append(x)
self.shopitems.append(x)
self.shopitems.append(x)
elif x.type == "weapon":
self.shopitems.append(x)
else:
self.shopitems = shopitems
self.openinv = openinv
self.openshp = openshp
self.create_widgets()
self.endo = endo
self.bat = bat
def create_widgets(self):
# Background
Canvas(self, bg="#cc7130", width=480, height=575, bd=0, highlightthickness=0).grid(row=0, column=0, columnspan=6, rowspan=8)
# Screen
self.playarea = Text(self, width=49, height=13, font="consolas 12 bold")
self.playarea["state"]=DISABLED
self.playarea.grid(row=0, column=0, columnspan=6)
# Movement Buttons
self.upb = Button(self, text=" ▲ ", bg="#8B4513", activebackground="#633310", command=lambda: self.move_player("up"))
self.upb.grid(row=2, column=1)
self.leftb = Button(self, text=" ◀ ", bg="#8B4513", activebackground="#633310", command=lambda: self.move_player("left"))
self.leftb.grid(row=3, column=0, sticky=E)
self.rightb = Button(self, text=" ▶ ", bg="#8B4513", activebackground="#633310", command=lambda: self.move_player("right"))
self.rightb.grid(row=3, column=2, sticky=W)
self.downb = Button(self, text=" ▼ ", bg="#8B4513", activebackground="#633310", command=lambda: self.move_player("down"))
self.downb.grid(row=4, column=1)
self.centerb = Button(self, text=" ▼ ", bg="#8B4513", activebackground="#633310", fg="#8B4513", command=self.open_inv_screen, activeforeground="#633310")
self.centerb.grid(row=3, column=1)
# Message Log
self.message_log_sb = Scrollbar(self)
self.message_log_sb.grid(row=2, column=5, rowspan=6, sticky=NS)
self.message_log = Text(self, width=25, height=17, wrap=WORD, yscrollcommand=self.message_log_sb.set)
self.message_log.grid(row=2, column=4, rowspan=6)
self.message_log_sb["command"] = self.message_log.yview
self.message_log.insert(0.0, self.player.messages)
# Displays
self.health_display = Label(self, text=" ❤ "+str(self.player.hp)+"/"+str(self.player.maxhealth)+" ", font="fixedsys", bg="#960c0c", width=11, relief=SUNKEN)
self.health_display.grid(row=5, column=0, columnspan=3)
self.money_display = Label(self, text=" ¢ " + str(self.player.money) + " ", font="fixedsys", bg="#ce9d0a", width=11, relief=SUNKEN)
self.money_display.grid(row=6, column=0, columnspan=3)
# Load-Bearing Labels (Do not edit)
Label(self, text="", bg="#cc7130", height=1).grid(row=1, column=1)
Label(self, text="", bg="#cc7130", width=18, height=2).grid(row=3, column=3)
Label(self, text="", bg="#cc7130", height=11).grid(row=7, column=0)
def message_leg(self, direction):
if direction == "up":
self.message_log.insert(0.0, "You moved up\n")
if direction == "left":
self.message_log.insert(0.0, "You moved left\n")
if direction == "right":
self.message_log.insert(0.0, "You moved right\n")
if direction == "down":
self.message_log.insert(0.0, "You moved down\n")
def move_player(self, direction):
s = ""
if direction == "up":
if self.floor[self.player_x - 1][self.player_y] == " ":
self.floor[self.player_x - 1][self.player_y] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_x -= 1
#self.message_leg("up")
elif self.floor[self.player_x - 1][self.player_y] == "□":
self.floor[self.player_x - 2][self.player_y] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_x -= 2
#self.message_leg("up")
elif self.floor[self.player_x - 1][self.player_y] == "X":
self.end_gme()
elif self.player_x != 1:
if self.floor[self.player_x - 2][self.player_y] == "$":
self.open_shop_screen()
if direction == "down":
if self.floor[self.player_x + 1][self.player_y] == " ":
self.floor[self.player_x + 1][self.player_y] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_x += 1
#self.message_leg("down")
elif self.floor[self.player_x + 1][self.player_y] == "□":
self.floor[self.player_x + 2][self.player_y] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_x += 2
#self.message_leg("down")
elif self.floor[self.player_x + 1][self.player_y] == "X":
self.end_gme()
if direction == "left":
if self.floor[self.player_x][self.player_y - 1] == " ":
self.floor[self.player_x][self.player_y - 1] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_y -= 1
#self.message_leg("left")
elif self.floor[self.player_x][self.player_y - 1] == "□":
self.floor[self.player_x][self.player_y - 2] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_y -= 2
#self.message_leg("left")
elif self.floor[self.player_x][self.player_y - 1] == "X":
self.end_gme()
if direction == "right":
if self.floor[self.player_x][self.player_y + 1] == " ":
self.floor[self.player_x][self.player_y + 1] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_y += 1
#self.message_leg("right")
elif self.floor[self.player_x][self.player_y + 1] == "□":
self.floor[self.player_x][self.player_y + 2] = "Ü"
self.floor[self.player_x][self.player_y] = " "
self.player_y += 2
#self.message_leg("right")
elif self.floor[self.player_x][self.player_y + 1] == "X":
self.end_gme()
for a in self.floor:
for b in a:
s += b
s += "\n"
self.print_screen()
self.check_for_enemies()
""" self.playarea["state"] = NORMAL
self.playarea.delete(0.0, END)
self.playarea.insert(0.0, s)
self.playarea["state"] = DISABLED """
def check_for_enemies(self):
if self.floor[self.player_x - 1][self.player_y] == "Ö" or self.floor[self.player_x + 1][self.player_y] == "Ö" or self.floor[self.player_x][self.player_y - 1] == "Ö" or self.floor[self.player_x][self.player_y + 1]== "Ö":
self.destroy()
self.do_battle()
def assemble_rooms(self):
# Loads room file and gets the starting room from that file
roomfile = load_room_file("testroom.txt")
base = [deepcopy(roomfile[randint(2, len(roomfile)-1)]), 0, 0]
# !!!! roomgrid.delete(0.0, END)!!!!
# Adds the start room to the list
roomgrid = [base]
# Maximum number of room is that number plus 1
maxrooms = 7 + self.level
# Runs until all the rooms are made
while maxrooms > 1:
# Selects a room and a direction
condition = True
selectedroom = choice(roomgrid)
direction = randint(1, 4)
# Based on the direction, it will place a room in that direction of the selected room
if direction == 1:
# Runs for each room in the list to make sure the room won't overlay another room
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2]-1 == x[2]:
condition = False
# If there isn't a room there, it makes a room there
if condition == True:
roomgrid.append([deepcopy(roomfile[randint(2, len(roomfile)-1)]), selectedroom[1], selectedroom[2] - 1])
if direction == 2:
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2]+1 == x[2]:
condition = False
if condition == True:
roomgrid.append([deepcopy(roomfile[randint(2, len(roomfile)-1)]), selectedroom[1], selectedroom[2]+1])
if direction == 3:
for x in roomgrid:
if selectedroom[1]-1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([deepcopy(roomfile[randint(2, len(roomfile)-1)]), selectedroom[1]-1, selectedroom[2]])
if direction == 4:
for x in roomgrid:
if selectedroom[1]+1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([deepcopy(roomfile[randint(2, len(roomfile)-1)]), selectedroom[1]+1, selectedroom[2]])
if condition == True:
maxrooms -= 1
while maxrooms == 1:
# Selects a room and a direction
condition = True
selectedroom = choice(roomgrid)
direction = randint(1, 4)
# Based on the direction, it will place a room in that direction of the selected room
if direction == 1:
# Runs for each room in the list to make sure the room won't overlay another room
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2] - 1 == x[2]:
condition = False
# If there isn't a room there, it makes a room there
if condition == True:
roomgrid.append([roomfile[0], selectedroom[1], selectedroom[2] - 1])
if direction == 2:
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2] + 1 == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[0], selectedroom[1], selectedroom[2] + 1])
if direction == 3:
for x in roomgrid:
if selectedroom[1] - 1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[0], selectedroom[1] - 1, selectedroom[2]])
if direction == 4:
for x in roomgrid:
if selectedroom[1] + 1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[0], selectedroom[1] + 1, selectedroom[2]])
if condition == True:
break
while self.level % 2 == 0:
# Selects a room and a direction
condition = True
selectedroom = choice(roomgrid)
direction = randint(1, 4)
# Based on the direction, it will place a room in that direction of the selected room
if direction == 1:
# Runs for each room in the list to make sure the room won't overlay another room
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2] - 1 == x[2]:
condition = False
# If there isn't a room there, it makes a room there
if condition == True:
roomgrid.append([roomfile[1], selectedroom[1], selectedroom[2] - 1])
if direction == 2:
for x in roomgrid:
if selectedroom[1] == x[1] and selectedroom[2] + 1 == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[1], selectedroom[1], selectedroom[2] + 1])
if direction == 3:
for x in roomgrid:
if selectedroom[1] - 1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[1], selectedroom[1] - 1, selectedroom[2]])
if direction == 4:
for x in roomgrid:
if selectedroom[1] + 1 == x[1] and selectedroom[2] == x[2]:
condition = False
if condition == True:
roomgrid.append([roomfile[1], selectedroom[1] + 1, selectedroom[2]])
if condition == True:
break
# Creates the lowest number for the coordinates and the maximum number for the coordinates
lowx = 0
lowy = 0
maxx = 0
maxy = 0
# Finds if any rooms are negative
for x in roomgrid:
if x[1] < 0 and x[1] < lowx:
lowx = x[1]
if x[2] < 0 and x[2] < lowy:
lowy = x[2]
if x[1] > 0 and x[1] > maxx:
maxx = x[1]
if x[2] > 0 and x[2] > maxy:
maxy = x[2]
# Adjusts the max to fit the negative numbers
maxx -= lowx
maxy -= lowy
for x in roomgrid:
x[1] -= lowx
x[2] -= lowy
# Creates enemies
numofenemies = 3 + (self.level // 2)
availablerooms = deepcopy(roomgrid)
for a in range(0, numofenemies):
while 1 == 1:
r = randint(0, len(roomgrid)-2)
if availablerooms[r][0] != "used":
break
while 1 == 1:
rx = randint(0, 14)
ry = randint(0, 14)
if roomgrid[r][0].layout[rx][ry] == " ":
roomgrid[r][0].layout[rx][ry] = "Ö"
break
availablerooms[r][0] = "used"
# Creates the top row of blocks
s = ""
for x in range(0, ((maxx+1)*15)+maxx+2):
s += "#"
s += "\n"
templist = []
# Runs for each line
for a in range(0, maxy+1):
# Runs for each thing in the line
for b in range(0, maxx+1):
# Finds if there is a room
con = False
for c in roomgrid:
if c[1] == b and c[2] == a:
con = True
break
# Adds room
if con == True:
templist.append(c)
# Adds a blank
else:
templist.append("blank")
# Starts assembling rooms
for d in range(0, 15):
s += "#"
# Runs for each thing in the list
for e in templist:
# Adds a row of blanks if there is no room
if e == "blank":
s += "###############"
# Adds a row for the room
else:
for f in range(0, 15):
s += e[0].layout[d][f]
s += "#"
s += "\n"
for x in range(0, ((maxx + 1) * 15) + maxx + 2):
s += "#"
s += "\n"
templist = []
print(s)
i = ""
self.floor = [[]]
for t in range(0, len(s)):
if s[t] == "\n":
self.floor.append([])
elif s[t] != "#":
self.floor[-1].append(s[t])
else:
self.floor[-1].append("█")
if t == "Ü":
self.player_x = len(self.floor)-1
self.player_y = len(self.floor[-1])-1
for a in roomgrid:
for b in roomgrid:
if a[1]+1 == b[1] and a[2] == b[2]:
while 1== 1:
dp = randint(0, 14)
if self.floor[16*(a[2])+dp][16*(a[1]+1)+1] == " " and self.floor[16*(a[2])+dp][16*(a[1]+1)-1] == " ":
self.floor[16*(a[2])+dp][16*(a[1]+1)] = "□"
break
if a[1] == b[1] and a[2]+1 == b[2]:
while 1 == 1:
dp = randint(0, 14)
if self.floor[16*(a[2]+1)+1][16*(a[1])+dp] == " " and self.floor[16*(a[2]+1)-1][16*(a[1])+dp] == " ":
self.floor[16*(a[2]+1)][16*(a[1])+dp] = "□"
break
self.spawn_character(self.floor, len(self.floor), len(self.floor[0]))
for a in self.floor:
for b in a:
i += b
i += "\n"
self.print_screen()
def create_enemy_movement(self):
self.thr = Enemythread(target=self.move_enemies)
self.thr.start()
def move_enemies(self):
while 1==1:
if self.thr.con == True:
for a in range(0, len(self.floor)-1):
for b in range(0, len(self.floor[0])-1):
try:
if self.floor[a][b] == "Ö" and self.player_x-8 <= a <= self.player_x+8 and self.player_y-8 <= b <= self.player_y+8:
if a == self.player_x:
if b < self.player_y and self.floor[a][b+1] == " ":
self.floor[a][b] = " "
self.floor[a][b+1] = "Ö"
if b > self.player_y and self.floor[a][b-1] == " ":
self.floor[a][b] = " "
self.floor[a][b-1] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
elif b == self.player_y:
if a < self.player_x and self.floor[a+1][b] == " ":
self.floor[a][b] = " "
self.floor[a+1][b] = "Ö"
if a > self.player_x and self.floor[a-1][b] == " ":
self.floor[a][b] = " "
self.floor[a-1][b] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
elif a < self.player_x and b < self.player_y and self.floor[a + 1][b + 1] == " " and (self.floor[a+1][b] == " " or self.floor[a][b+1] == " "):
self.floor[a][b] = " "
self.floor[a + 1][b + 1] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
elif a > self.player_x and b > self.player_y and self.floor[a - 1][b - 1] == " " and (self.floor[a-1][b] == " " or self.floor[a][b-1] == " "):
self.floor[a][b] = " "
self.floor[a - 1][b - 1] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
elif a > self.player_x and b < self.player_y and self.floor[a - 1][b + 1] == " " and (self.floor[a-1][b] == " " or self.floor[a][b+1] == " "):
self.floor[a][b] = " "
self.floor[a - 1][b + 1] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
elif a < self.player_x and b > self.player_y and self.floor[a + 1][b - 1] == " " and (self.floor[a+1][b] == " " or self.floor[a][b-1] == " "):
self.floor[a][b] = " "
self.floor[a + 1][b - 1] = "Ö"
self.print_screen()
self.check_for_enemies()
sleep(0.2)
except:
pass
else:
break
sleep(0.2)
def print_screen(self):
s = ""
if self.player_x <= 6:
for a in range(0, 13):
if len(self.floor[0]) <= 49:
for b in self.floor[a]:
s += b
s += "\n"
elif self.player_y <= 24:
for b in range(0, 49):
s += self.floor[a][b]
s += "\n"
elif self.player_y >= len(self.floor[0])-25:
for b in range(len(self.floor[0])-49, len(self.floor[0])):
s += self.floor[a][b]
s += "\n"
else:
for b in range(self.player_y-24, self.player_y+25):
s += self.floor[a][b]
s += "\n"
""" for b in self.floor[a]:
s += b
s += "\n" """
elif self.player_x >= len(self.floor)-7:
for a in range(len(self.floor)-14, len(self.floor)-1):
if len(self.floor[0]) <= 49:
for b in self.floor[a]:
s += b
s += "\n"
elif self.player_y <= 24:
for b in range(0, 49):
s += self.floor[a][b]
s += "\n"
elif self.player_y >= len(self.floor[0])-25:
for b in range(len(self.floor[0])-49, len(self.floor[0])):
s += self.floor[a][b]
s += "\n"
else:
for b in range(self.player_y-24, self.player_y+25):
s += self.floor[a][b]
s += "\n"
else:
for a in range(self.player_x-6, self.player_x+7):
if len(self.floor[0]) <= 49:
for b in self.floor[a]:
s += b
s += "\n"
elif self.player_y <= 24:
for b in range(0, 49):
s += self.floor[a][b]
s += "\n"
elif self.player_y >= len(self.floor[0])-25:
for b in range(len(self.floor[0])-49, len(self.floor[0])):
s += self.floor[a][b]
s += "\n"
else:
for b in range(self.player_y-24, self.player_y+25):
s += self.floor[a][b]
s += "\n"
s = s[:-1]
self.playarea["state"] = NORMAL
self.playarea.delete(0.0, END)
self.playarea.insert(0.0, s)
self.playarea["state"] = DISABLED
def kill_nearby_enemies(self):
if self.floor[self.player_x - 1][self.player_y] == "Ö":
self.floor[self.player_x - 1][self.player_y] = " "
if self.floor[self.player_x + 1][self.player_y] == "Ö":
self.floor[self.player_x + 1][self.player_y] = " "
if self.floor[self.player_x][self.player_y - 1] == "Ö":
self.floor[self.player_x][self.player_y - 1] = " "
if self.floor[self.player_x][self.player_y + 1] == "Ö":
self.floor[self.player_x][self.player_y + 1] = " "
def spawn_character(self, room, xl, yl):
while 1==1:
xc = randint(0, xl-2)
yc = randint(0, yl-2)
if room[xc][yc] == " ":
room[xc][yc] = "Ü"
self.player_x = xc
self.player_y = yc
return room
def add_moneydrop(self, enemy):
money = randint(int(enemy.moneydrop[0]), int(enemy.moneydrop[1]))
self.player.money += money
self.money_display["text"] = " ¢ " + str(self.player.money) + " "
self.player.messages += "\n-Bup got " + str(money) + " gold for killing the " + enemy.name + "!"
self.message_log.delete(0.0, END)
self.message_log.insert(0.0, self.player.messages)
self.message_log.yview_pickplace("end")
def end_gme(self):
self.endo(self.level, self.player)
def do_battle(self):
self.thr.con = False
self.bat(self.level, self.player, self.player_x, self.player_y, self.floor, self.shopitems)
def open_inv_screen(self):
self.openinv(self.level, self.player, self.player_x, self.player_y, self.floor, self.shopitems)
def open_shop_screen(self):
self.openshp(self.level, self.player, self.player_x, self.player_y, self.floor, self.shopitems)
# root = Tk()
# root.title("GOI")
# root.geometry("485x568")
# root.configure(bg="#cc7130")
# mainscreen = Mainscreen(root)
# root.mainloop()