Skip to main content

Generate random terrain using cellular automata.

Project description

automatagen

Generate random terrain using cellular automata.

Compatibilities

  • Python 3.x
  • Any Operating System

Installation

automatagen is published on PyPi, so you only need to run the following command:

$ pip install automatagen

Usage

Note: TerrainGenerator.generate(width, height) returns a 2d array of boolean values. All visualisations are made using numpy and matplotlib.

Instantiating a new TerrainGenerator:

from automatagen import TerrainGenerator

terrgen = TerrainGenerator()

Generating a random 196x64 size map:

map = terrgen.generate(196, 64)

196x64 default settings

Instantiating a TerrainGenerator with different options:

terrgen = TerrainGenerator(initial_density = 0.25, steps = 10, loneliness_limit = 5)

Generating a random 196x64 map with the new options:

map = terrgen.generate(196, 64)

196x64 different options

Generating a 196x64 map with a specific seed:

map = terrgen.generate(seed = 9001)

196x64 seeded map

And generating another one with the same seed:

map = terrgen.generate(seed = 9001)

196x64 seeded map

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

automatagen-0.2.post3.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

automatagen-0.2.post3-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page