Tools for computational world building
Project description
=========================================
World Build
=========================================
Tools for computational world building (work in progress)
Overview
--------------------------------
Worldbuild contains tools to build worlds and store the metadata around that, including objects, history, animals, vegetation.
You provide a map of your world and annotate it via a YAML file to define towns with locations - the wiki tool extracts subset of the image to for each town.
You can add additional information to build a rich history around your world.
Quick Start
=========================================
Copy your map file (JPG) or scan a hand drawn map.
Create a YAML file with the following sections
wiki: Yes
world_name: Alrona
contents:
- races
- settlements
maps: [alrona-pen-coloured.jpg]
You need to have a root section for each element in contents, and there needs to be a name and desc element at the minimum.
settlements:
- name: Draeton
continent: Sharnia
coords_x_y: [66,58]
desc: >
This is the largest city on the East side of Sharnia. 3,000 men live in this strongly
defended city
- name: Ambyle
continent: Sharnia
coords_x_y: [64,58]
desc: >
Farming town East of Draeton, known for their famous weekend markets selling exotic produce grown in the warm regions north of the Eastern Desert
Then modify the params and run the wiki.py program to generate the HTML version of your world.
The settlements page shows the description from the yaml file, and also a section of the map based on the coords_x_y parameter
You can extend the wiki with as many sections as you like and each entry can include a file section to import a text (or html) file to be included in that page.
Random Grid Generation
============================
Create a random grid as follows
pip install worldbuild
build_random_grid.py
You can convert this grid to a Tiled TMX file for manual editing
convert_grid_to_tiled_map.py
Dungeon Map Generator
============================
Create a randomnly generated rogue like dungeon grid by running
import worldbuild.dungeon_generator as dg
grid = dg.create_dungeon(grid_y=30, grid_x=80, NUM_ROOMS=16, ROOM_SIZE = 3, NUM_HORIZ = 10)
print(dg.grid_as_str(grid))
# optional - make a path through the grid
print(dg.path_find(grid))
# optional - export as TMX file
dg.convert_grid_to_TileEditor_map('dungeon.tmx', 'samples/ascii_runeset.tsx')
It also uses the pathfinding package to make a path through the map
Optionally, you can uncomment the line to save it as a TMX file for use in Tiled.
Doing this will allow you to use the above grid with a tileset to get better graphics.
World Build
=========================================
Tools for computational world building (work in progress)
Overview
--------------------------------
Worldbuild contains tools to build worlds and store the metadata around that, including objects, history, animals, vegetation.
You provide a map of your world and annotate it via a YAML file to define towns with locations - the wiki tool extracts subset of the image to for each town.
You can add additional information to build a rich history around your world.
Quick Start
=========================================
Copy your map file (JPG) or scan a hand drawn map.
Create a YAML file with the following sections
wiki: Yes
world_name: Alrona
contents:
- races
- settlements
maps: [alrona-pen-coloured.jpg]
You need to have a root section for each element in contents, and there needs to be a name and desc element at the minimum.
settlements:
- name: Draeton
continent: Sharnia
coords_x_y: [66,58]
desc: >
This is the largest city on the East side of Sharnia. 3,000 men live in this strongly
defended city
- name: Ambyle
continent: Sharnia
coords_x_y: [64,58]
desc: >
Farming town East of Draeton, known for their famous weekend markets selling exotic produce grown in the warm regions north of the Eastern Desert
Then modify the params and run the wiki.py program to generate the HTML version of your world.
The settlements page shows the description from the yaml file, and also a section of the map based on the coords_x_y parameter
You can extend the wiki with as many sections as you like and each entry can include a file section to import a text (or html) file to be included in that page.
Random Grid Generation
============================
Create a random grid as follows
pip install worldbuild
build_random_grid.py
You can convert this grid to a Tiled TMX file for manual editing
convert_grid_to_tiled_map.py
Dungeon Map Generator
============================
Create a randomnly generated rogue like dungeon grid by running
import worldbuild.dungeon_generator as dg
grid = dg.create_dungeon(grid_y=30, grid_x=80, NUM_ROOMS=16, ROOM_SIZE = 3, NUM_HORIZ = 10)
print(dg.grid_as_str(grid))
# optional - make a path through the grid
print(dg.path_find(grid))
# optional - export as TMX file
dg.convert_grid_to_TileEditor_map('dungeon.tmx', 'samples/ascii_runeset.tsx')
It also uses the pathfinding package to make a path through the map
Optionally, you can uncomment the line to save it as a TMX file for use in Tiled.
Doing this will allow you to use the above grid with a tileset to get better graphics.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
worldbuild-0.0.9.tar.gz
(24.8 MB
view details)
File details
Details for the file worldbuild-0.0.9.tar.gz
.
File metadata
- Download URL: worldbuild-0.0.9.tar.gz
- Upload date:
- Size: 24.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 789a27ca3c4e3a29a66675992cfcb26e2e3faea5b365b49b6289b011a1faedb4 |
|
MD5 | 1df6275a7caf0777a3a68d0daff09115 |
|
BLAKE2b-256 | 34f84248d3abe33ab3cfcabe14a2655248f96e80bb90802a9fd79963b0245cd0 |