浏览代码

More bug fixes. Added comments for clarity.

master
Noëlle Anthony 6 年前
父节点
当前提交
7dd8d87e96
共有 1 个文件被更改,包括 32 次插入15 次删除
  1. 32
    15
      procgen.py

+ 32
- 15
procgen.py 查看文件

""" Initializes an x by y grid. """ Initializes an x by y grid.
x is width, y is height x is width, y is height
seed is the chance that a given cell will be "live" and should be an integer between 1-99. seed is the chance that a given cell will be "live" and should be an integer between 1-99.
If True is equivalent to "walkable", then lower seeds make more walls.
If True is equivalent to "wall", then higher seeds make more walls.
""" """
x = 10 if x == None else int(x) x = 10 if x == None else int(x)
y = 10 if y == None else int(y) y = 10 if y == None else int(y)
for j in range(y): for j in range(y):
new_row = [] new_row = []
for i in range(x): for i in range(x):
new_row.append(False if r.randint(1,99) > seed else True)
new_row.append(True if r.randint(1,99) <= seed else False)
new_map.append(new_row) new_map.append(new_row)
return new_map return new_map


x, y = i, j x, y = i, j
n_count = countAliveNeighbors(d_map, x, y) n_count = countAliveNeighbors(d_map, x, y)
if d_map[y][x]: if d_map[y][x]:
if n_count >= a_lmt:
# It's a wall.
if n_count < d_lmt:
# It has too few wall neighbors, so kill it.
new_line.append(False) new_line.append(False)
else: else:
# It has enough wall neighbors, so keep it.
new_line.append(True) new_line.append(True)
else: else:
if n_count <= d_lmt:
# It's a path.
if n_count > a_lmt:
# It has too many wall neighbors, so it becomes a wall.
new_line.append(True) new_line.append(True)
else: else:
# It's not too crowded, so it stays a path.
new_line.append(False) new_line.append(False)
new_map.append(new_line) new_map.append(new_line)
return new_map return new_map
if i == 0 and j == 0: if i == 0 and j == 0:
continue continue
if n_x < 0 or n_x >= len(d_map[j]) or n_y == 0 or n_y >= len(d_map): if n_x < 0 or n_x >= len(d_map[j]) or n_y == 0 or n_y >= len(d_map):
# The target cell is at the edge of the map and this neighbor is off the edge.
# So we make this neighbor count as a wall.
count += 1 count += 1
#pass
elif d_map[n_y][n_x]: elif d_map[n_y][n_x]:
# This neighbor is on the map and is a wall.
count += 1 count += 1
return count return count


wall = "II" if wall == None else wall wall = "II" if wall == None else wall
path = " " if path == None else path path = " " if path == None else path
for line in d_map: for line in d_map:
print("".join([wall if x == True else path for x in line]))
print("".join([wall if x else path for x in line]))
print() print()


def createImage(d_map, color=None, chunky=None):
def createImage(d_map, color=None, chunky=None, fn=None):
color = False if color == None else bool(color) color = False if color == None else bool(color)
chunky = False if chunky == None else bool(chunky) chunky = False if chunky == None else bool(chunky)
fn = filename() if fn == None else fn
x, y = len(d_map[0]), len(d_map) x, y = len(d_map[0]), len(d_map)
if chunky: if chunky:
true_x, true_y = x*2, y*2 true_x, true_y = x*2, y*2
true_x, true_y = x, y true_x, true_y = x, y
img = Image.new("RGB",(true_x,true_y),(0,0,0)) img = Image.new("RGB",(true_x,true_y),(0,0,0))
lst = [] lst = []
# Walls are black by default
c_wall = [r.randint(0,255), r.randint(0,255), r.randint(0,255)] if color else [0,0,0] c_wall = [r.randint(0,255), r.randint(0,255), r.randint(0,255)] if color else [0,0,0]
# Paths are white by default
c_space = [255-x for x in c_wall] c_space = [255-x for x in c_wall]
if chunky: if chunky:
for line in d_map: for line in d_map:
for _ in range(2): for _ in range(2):
for val in line: for val in line:
for _ in range(2): for _ in range(2):
lst.append(tuple(c_space) if val else tuple(c_wall))
lst.append(tuple(c_wall) if val else tuple(c_space))
else: else:
for line in d_map: for line in d_map:
for val in line: for val in line:
lst.append(tuple(c_space) if val else tuple(c_wall))
lst.append(tuple(c_wall) if val else tuple(c_space))
img.putdata(lst) img.putdata(lst)
hexes = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]
a_filename = []
for _ in range(16):
a_filename.append(r.choice(hexes))
filename = "".join(a_filename)
if not os.path.exists("maps"): if not os.path.exists("maps"):
os.makedirs("maps") os.makedirs("maps")
img.save('maps/{}.png'.format(filename))
print("Saved maps/{}.png".format(filename))
img.save('maps/{}.png'.format(fn))
print("Saved maps/{}.png".format(fn))

def filename():
hexes = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]
fn = []
for _ in range(16):
fn.append(r.choice(hexes))
return "".join(fn)



def main(x=None, y=None, seed=None, d_lmt=None, a_lmt=None, reps=None, out=None, color=None, chunky=None): def main(x=None, y=None, seed=None, d_lmt=None, a_lmt=None, reps=None, out=None, color=None, chunky=None):
# Initialize # Initialize
color = False if color == None else bool(color) color = False if color == None else bool(color)
chunky = False if chunky == None else bool(chunky) chunky = False if chunky == None else bool(chunky)
my_map = createDungeon(x,y,seed) my_map = createDungeon(x,y,seed)
fn = filename()
for _ in range(reps): for _ in range(reps):
my_map = refineDungeon(my_map, d_lmt, a_lmt) my_map = refineDungeon(my_map, d_lmt, a_lmt)
if out: if out:

正在加载...
取消
保存