Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Script:Random Dungeon Generator

From Roll20 Wiki

Revision as of 13:20, 23 February 2014 by Stephen S. (Talk | contribs)

Jump to: navigation, search

Contents

Use of Geomorphic Map Tiles

Modified Geomorphic Map Tile for personal/private use, and consistent with Terms of Service and Privacy Policy.
  • This API script uses geomorphic map tiles. The set used for this script can be located on the Roll20 Market place: Old School Geomorphic
    • Geomorphic map tiles are a design technique that defines and locates set features on edge of the tile so any tile can connect to any other tile without concern for orientation.
    • These can be downloaded and modified however you choose, so long as it is for personal/private use, and is consistent with Terms of Service and Privacy Policy.
    • To the right, there is an example of a modified geomorphic map tile. It is important to note the modification to the tile do not included modifications to the walls (Dynamic Lighting path information will have to be added to the code for any new wall patterns.)
    • Naming of the tiles is an important factor due to the use of names in the code. Unmodified tiles in the Old School Geomorphic set includes "Geo_Type_A_0001" through "Geo_Type_A_0045." It is recommended user modified tiles be named consistent with that to keep any code modifications required consistent as well.
    • New tiles can be created for this set by the user and more information on that can be found at Geomorphic Map Tiles. However, Dynamic Lighting path information will have to be added to the code for any new wall patterns.









Use of Rollable Tables

Setting Up the Rollable Table for the "Random Dungeon Generator with Dynamic Lighting" script.
The Item Weight for each tile must be set. It can be set to any number between 0 and 100. A value of 0 turns off the tile.
  • The most challenging part is setting up the roll able table. It must be named "GeomorphicTiles" and if should only include "Geo_Type_A_0001" through "Geo_Type_A_0045" with the unmodified API code.
  • Most often errors with the implementation of this script is due to errors with setting up this table.
  • This is used to save users from hard coding URLs and to leverage the "choose side" feature native to Roll20.
  • If you plan to modify the code by adding or removing tiles this roll able table items and names must be in parity with the "geomorphicTilesInformation" array which looks like this in the code (sample of some of the lines of code:)
var geomorphicTilesInformation = 
{tileName: "Geo_Type_A_0001", edge: false, corner: false, entrance: false, type: "d", rotation: 0},
{tileName: "Geo_Type_A_0002", edge: false, corner: false, entrance: false, type: "d", rotation: 0},
  • This array provides information to the API needed to properly place the tile.
  • The Rollable Table must be in parity with the "dynamicLightingArray" array which looks like this (sample of some of the lines of code:)
var dynamicLightingArray = [
{tileName: "Geo_Type_A_0001", path: [[0,105],[105,105],[105,0]]},
{tileName: "Geo_Type_A_0001", path: [[525,0],[525,35],[735, 35],[735,0]]},
  • This array contains the path points that define the locations of walls. Tiles with identical walls can have the same points, however each tile needs points associated with it's own name. For example "Geo_Type_A_0004" through "Geo_Type_A_0007" have the same walls but have different map features.
Geomorphic Tile Wall Example.jpeg
  • The script uses the item weight to determine the probability of a tile being selected or to turn off a tile. The Item Weight for each tile must be set. It can be set to any number between 0 and 100. A value of 0 turns off the tile. All tiles have a equal chance of being initially selected, once selected the tile is checked against its rarity. If the rarity check fails a new tile is selected and the process repeats. Adjacent tiles of like type (more information below) will affect the rarity of a new tile placement.




Setting Up the Map

  • Without modification, the script will be attempting to add map layer tiles to a map named "GeomorphicMap."
    • There should be one and only one map named "GeomorphicMap."
    • The player book mark DOES NOT have to be on it.
    • Set the map width to 36 or any higher multiple of 12 (36, 48, 60, 72, 84, etc. Something reasonable.)
    • Set the map height to 36 or any higher multiple of 12 (36, 48, 60, 72, 84, etc. The map does not have to be "square," a map 36 by 72 works just fine.)
    • Once finished with the map you can create a copy or use the use the Transmogrifier to get the finished map in a active player campaign.


Finishing Setup

  • Check over things and enter the API command "!setup"
    • This will create five macros:
      • Turn-180-Degrees
      • Turn-Left-90-Degrees
      • Turn-Right-90-Degrees
      • Add-Dynamic-Lighting-Paths
      • Create-Map-Layer
    • Check "in Bar" for "Create-Map-Layer" and "Add-Dynamic-Lighting-Paths" and sort them in you macro bar with "Create-Map-Layer" being first.
    • The other macros are token actions and should not be in the macro bar.

Using the the Random Dungeon Generator

  • Make sure there are no images on any of the layers of the map. If you are having trouble clearing the map, simply delete the map and create a new map following the information in the Setting Up the Map section.
  • Click "Create-Map-Layer." The API will check for a number of things before creating the map:
    • "GeomorphicMap is missing."
    • "More than one GeomorphicMap."
    • "GeomorphicMap has images on it."
    • "GeomorphicMap has paths on it on the Dynamic Lighting layer."
    • "Map height must be disible by 12."
    • "Map height must be 36 or larger."
  • If the code successfully runs you will see an randomly generated map.
Successfully_Randomly_Generated_Map.jpeg





Acknowledgement: Big thanks to Alex L. for his effort to write the code that works out all the math needed to rotate and place the Dynamic Lighting paths.