-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.py
56 lines (50 loc) · 1.89 KB
/
map.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
class Map:
width = 0
height = 0
max_lvl = 0
detail = None
def __init__(self):
self.width = 16
self.height = 12
self.max_lvl = 3
self.detail = [[[0 for col in range(self.width)]for row in range(self.height)] for x in range(self.max_lvl)]
self.detail[0] = [[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1],
[1,3,0,0,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1],
[1,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,4,0,0,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]
self.detail[1] = [[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1],
[1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1],
[1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,2,3,1,1,0,0,0,0,0,1],
[1,1,1,1,1,0,0,1,1,1,0,2,0,1,1,1],
[1,1,1,1,1,2,0,0,4,0,0,0,0,1,1,1],
[1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1],
[1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1],
[1,1,1,1,1,1,3,0,1,1,1,1,0,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]
self.detail[2] = [[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,3,0,0,0,1,0,1,1,1],
[1,1,1,0,0,0,0,0,1,0,0,1,0,1,1,1],
[1,1,1,0,1,0,1,0,0,0,1,0,0,1,1,1],
[1,1,1,0,3,0,0,1,0,0,1,0,0,1,1,1],
[1,1,1,0,1,0,0,1,2,1,1,2,0,1,1,1],
[1,1,1,0,0,0,1,0,0,0,0,0,0,1,1,1],
[1,1,1,1,0,0,1,0,4,0,0,0,1,1,1,1],
[1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1],
[1,1,1,0,0,0,2,0,0,0,0,3,0,1,1,1],
[1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]
def get_lvl(self, x):
return self.detial[x]
def get_max_lvl(self):
return self.max_lvl