So I'm using the noise library from pypi to create simplex noise for my tiled map, I am now looking for ways to seed it. I've tried with a 3D simplex noise and used the z axis as seed, it didn't work out too well. Weird nan values and whatnot. Any ideas on how to use seeds with the library?

from noise import snoise2, snoise3

def terrain(h):
    if h > -100 and h < 300:
        return "G"
    elif h > 300:
        return "M"
    else:
        return "W"

def heightmap(size, octaves):
    heightmap = []
    for y in xrange(size):
        heightmap.append([snoise2(x, y, octaves) *500 for x in xrange(size)])

    return heightmap

def worldmap(heightmap):
    worldmap = []
    for i in xrange(len(heightmap[0])): 
        worldmap.append(map(terrain, heightmap[i]))
    return worldmap

heightmap = heightmap(10, 3)
worldmap = worldmap(heightmap)

for row in heightmap:
    print row

for row in worldmap:
    print row

EDIT: I fixed it by using the code over at http://code.google.com/p/caseman/source/browse/trunk/noise/perlin.py?r=616 with a new permutation table.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.