public
Description: A library to generate 2D maps for use in games like Risk and Diplomacy
Homepage:
Clone URL: git://github.com/irskep/pyworldgen.git
README.txt
PyWorldGen attempts to generate a moderately believable land mass.

REQUIREMENTS
PIL, aggdraw

USAGE
Drop mapgen into your project folder. Copy map_images and images into your project's root directory. (It is not hard to 
change the paths in the code.)
Then...

import mapgen
gen = mapgen.ContinentGenerator()
landmass = gen.generate()
dest = mapgen.save_to_image(landmass)

To run the demo interactively:
python mapgen/__init__.py

The demo script requires the Pyglet library. It generates a new map whenever you press Space.

Further documentation forthcoming.

Stephen Johnson
srj15@case.edu