Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.86 KB | None | 0 0
  1. This post explains a technique for generating randomized dungeons that was first described by TinyKeepDev here. I'll go over it in a little more detail than the steps in the original post. The general way the algorithm works is this:
  2.  
  3.  
  4.  
  5. Generate Rooms
  6. First you wanna generate some rooms with some width and height that are placed randomly inside a circle. TKdev's algorithm used the normal distribution for generating room sizes and I think that this is generally a good idea as it gives you more parameters to play with. Picking different ratios between width/height mean and standard deviation will generally result in different looking dungeons.
  7.  
  8. One function you might need to do this is getRandomPointInCircle:
  9. function getRandomPointInCircle(radius)
  10. local t = 2*math.pi*math.random()
  11. local u = math.random()+math.random()
  12. local r = nil
  13. if u > 1 then r = 2-u else r = u end
  14. return radius*r*math.cos(t), radius*r*math.sin(t)
  15. end
  16. You can get more info on how that works exactly here. And after that you should be able to do something like this:
  17.  
  18.  
  19.  
  20. One very important thing that you have to consider is that since you're (at least conceptually) dealing with a grid of tiles you have to snap everything to that same grid. In the gif above the tile size is 4 pixels, meaning that all room positions and sizes are multiples of 4. To do this I wrap position and width/height assignments in a function that rounds the number to the tile size:
  21. function roundm(n, m) return math.floor(((n + m - 1)/m))*m end
  22.  
  23. -- Now we can change the returned value from getRandomPointInCircle to:
  24. function getRandomPointInCircle(radius)
  25. ...
  26. return roundm(radius*r*math.cos(t), tile_size),
  27. roundm(radius*r*math.sin(t), tile_size)
  28. end
  29.  
  30.  
  31. Separate Rooms
  32. Now we can move on to the separation part. There's a lot of rooms mashed together in one place and they should not be overlapping somehow. TKdev used the separation steering behavior to do this but I found that it's much easier to just use a physics engine. After you've added all rooms, simply add solid physics bodies to match each room's position and then just run the simulation until all bodies go back to sleep. In the gif I'm running the simulation normally but when you're doing this between levels you can advance the physics simulation faster.
  33.  
  34.  
  35.  
  36. The physics bodies themselves are not tied to the tile grid in any way, but when setting the room's position you wrap it with the roundm call and then you get rooms that are not overlapping with each other and that also respect the tile grid. The gif below shows this in action as the blue outlines are the physics bodies and there's always a slight mismatch between them and the rooms since their position is always being rounded:
  37.  
  38.  
  39.  
  40. One issue that might come up is when you want to have rooms that are skewed horizontally or vertically. For instance, consider the game I'm working on:
  41.  
  42.  
  43.  
  44. Combat is very horizontally oriented and so I probably want to have most rooms being bigger in width than they are in height. The problem with this lies in how the physics engine decides to resolve its collisions whenever long rooms are near each other:
  45.  
  46.  
  47.  
  48. As you can see, the dungeon becomes very tall, which is not ideal. To fix this we can spawn rooms initially inside a thin strip instead of on a circle. This ensures that the dungeon itself will have a decent width to height ratio:
  49.  
  50.  
  51.  
  52. To spawn randomly inside this strip we can just change the
  53. ≥
  54. t
  55. R
  56. and
  57. o
  58. m
  59. P
  60. ∮
  61. I
  62. n
  63. C
  64. i
  65. r
  66. c
  67. ≤
  68. function to spawn points inside an ellipse instead (in the gif above I used ellipse_width = 400 and ellipse_height = 20):
  69. function getRandomPointInEllipse(ellipse_width, ellipse_height)
  70. local t = 2*math.pi*math.random()
  71. local u = math.random()+math.random()
  72. local r = nil
  73. if u > 1 then r = 2-u else r = u end
  74. return roundm(ellipse_width*r*math.cos(t)/2, tile_size),
  75. roundm(ellipse_height*r*math.sin(t)/2, tile_size)
  76. end
  77.  
  78.  
  79. Main Rooms
  80. The next step simply determines which rooms are main/hub rooms and which ones aren't. TKdev's approach here is pretty solid: just pick rooms that are above some width/height threshold. For the gif below the threshold I used was 1.25*mean, meaning, if width_mean and height_mean are 24 then rooms with width and height bigger than 30 will be selected.
  81.  
  82.  
  83.  
  84.  
  85. Delaunay Triangulation + Graph
  86. Now we take all the midpoints of the selected rooms and feed that into the Delaunay procedure. You either implement this procedure yourself or find someone else who's done it and shared the source. In my case I got lucky and Yonaba already implemented it. As you can see from that interface, it takes in points and spits out triangles:
  87.  
  88.  
  89.  
  90. After you have the triangles you can then generate a graph. This procedure should be fairly simple provided you have a graph data structure/library at hand. In case you weren't doing this already, it's useful that your Room objects/structures have unique ids to them so that you can add those ids to the graph instead of having to copy them around.
  91.  
  92.  
  93. Minimum Spanning Tree
  94. After this we generate a minimum spanning tree from the graph. Again, either implement this yourself or find someone who's done it in your language of choice.
  95.  
  96.  
  97.  
  98. The minimum spanning tree will ensure that all main rooms in the dungeon are reachable but also will make it so that they're not all connected as before. This is useful because by default we usually don't want a super connected dungeon but we also don't want unreachable islands. However, we also usually don't want a dungeon that only has one linear path, so what we do now is add a few edges back from the Delaunay graph:
  99.  
  100.  
  101.  
  102. This will add a few more paths and loops and will make the dungeon more interesting. TKdev arrived at 15% of edges being added back and I found that around 8-10% was a better value. This may vary depending on how connected you want the dungeon to be in the end.
  103.  
  104.  
  105. Hallways
  106. For the final part we want to add hallways to the dungeon. To do this we go through each node in the graph and then for each other node that connects to it we create lines between them. If the nodes are horizontally close enough (their y position is similar) then we create a horizontal line. If the nodes are vertically close enough then we create a vertical line. If the nodes are not close together either horizontally or vertically then we create 2 lines forming an L shape.
  107.  
  108. The test that I used for what ~close enough~ means calculates the midpoint between both nodes' positions and checks to see if that midpoint's x or y attributes are inside the node's boundaries. If they are then I create the line from that midpoint's position. If they aren't then I create two lines, both going from the source's midpoint to the target's midpoint but only in one axis.
  109.  
  110.  
  111.  
  112. In the picture above you can see examples of all cases. Nodes 62 and 47 have a horizontal line between them, nodes 60 and 125 have a vertical one and nodes 118 and 119 have an L shape. It's also important to note that those aren't the only lines I'm creating. They are the only ones I'm drawing but I'm also creating 2 additional lines to the side of each one spaced by tile_size, since I want my corridors to be at least 3 tiles wide in either width or height.
  113.  
  114. Anyway, after this we check to see which rooms that aren't main/hub rooms that collide with each of the lines. Colliding rooms are then added to whatever structure you're using to hold all this by now and they will serve as the skeleton for the hallways:
  115.  
  116.  
  117.  
  118. Depending on the uniformity and size of the rooms that you initially set you'll get different looking dungeons here. If you want your hallways to be more uniform and less weird looking then you should aim for low standard deviation and you should put some checks in place to keep rooms from being too skinny one way or the other.
  119.  
  120. For the last step we simply add 1 tile sized grid cells to make up the missing parts. Note that you don't actually need a grid data structure or anything too fancy, you can just go through each line according to the tile size and add grid rounded positions (that will correspond to a 1 tile sized cell) to some list. This is where having 3 (or more) lines happening instead of only 1 matters.
  121.  
  122.  
  123.  
  124.  
  125.  
  126. And then after this we're done!
  127.  
  128.  
  129. END
  130. The data structures I returned from this entire procedure were: a list of rooms (each room is just a structure with a unique id, x/y positions and width/height); the graph, where each node points to a room id and the edges have the distance between rooms in tiles; and then an actual 2D grid, where each cell can be nothing (meaning its empty), can point to a main/hub room, can point to a hallway room or can be hallway cell. With these 3 structures I think it's possible to get any type of data you could want out of the layout and then you can figure out where to place doors, enemies, items, which rooms should have bosses, and so on.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement