This is a more complex matter than it may seem. The placement of a single forest patch can affect neighboring terrains, not always in an obvious way. Maybe this will be implemented someday, but not anytime soon.
watabou
Creator of
Recent community posts
What does alignment mean when two levels have different shapes? For example, how can you know that these two levels are not aligned:
- https://watabou.github.io/one-page-dungeon/?seed=1532981434&tags=multi-level,com...
- https://watabou.github.io/one-page-dungeon/?seed=951223684&tags=multi-level,compact,dry,medium
?
There is no such problem in general. I mean, if a road is not exported then it's something more specific, than just the "isolated" tag which I tested many times before (especially since it's a default tag now). Here is a very similar village:
https://watabou.github.io/village-generator/?seed=1026162478&tags=isolated,palis...
And that's how its exported version looks:
As you can see, both the regular (solid) part of the road and the trail part (dotted) are present. Anyway, if you will be able to reproduce the bug, please send me the link so can examine the case more closely.
There are many algorithms for dungeon generation. This one is my own invention and as such it's not exactly elegant. Its advantage is that it can produce maps that look kind of human-made, because they are they are "partly symmetrical". Here is how it works:
- First we create a "root" room. Every room incl. this one has an origin/entrance.
- Until some end condition is reached (e.g. we've spawned enough rooms), we pick one of the rooms and add symmetrical children to it: two on both sides from the entrance, one on the opposite end from the entrance or both (three children).
- This way we get a symmetrical tree of connected rooms. Perfect symmetry doesn't look good, so occasionally we spawn children rooms unsymmetrically - of different sizes or just one to the side from entrance etc.
- This gives us a "partly symmetrical" map, but it's still a tree and a decent map needs loops, so we add some loops by connecting adjacent room, adding tunnels etc.
That's it. There are some nuances to make it work and more nuances to make it work adequately, but that's the idea.
Well, if you figure out a way to do it without me giving you the source code, hosting the generator at your place or anything like that, then yes, why not :) But usually people resolve to pregenerating a large enough number of maps without invoking the generator afterwards (like here: https://hexroll.app/).
- There is currently no way to request a building strictly without a basement. But it doesn't always spawn a basement, for a single-storey building the probability is 50%.
- My algorithm tends to produce very unrealistic plans for buildings larger than "large", and I wouldn't like to expose it by offering the "huge" option. However, using the blueprint editor, you can request a significantly larger building than those built with the "large" tag.
If you're looking specifically for building maps (rather than dungeon or cave map) then this generator is preferable as plans produced by Procgen Mansion are pretty useless imo. Dwellings will replace Procgen Mansion on the Arcana soon.
You can try to examine the published js code as @BorisTheBrave did with the cave generator: https://www.boristhebrave.com/2023/11/19/how-does-cave-glade-generator-work/
It is not possible to ask the generator to place the coast on a specific side of the map centre, but you can rotate the map any way you need using the Rotate tool in Warp mode. You can also rotate the compass rose independently.
Currently, there is no way to get more than one fortress and one cathedral on a map, but something like that will become possible in the future.
This is a limitation of the way these two generators reference each other. When Azgaar's generator calls the city generator, it only passes on information about the original map (its seed), but not about the changes made to it. Because of that, the city generator can only restore the original overworld map. This works the same way in the opposite direction when start with a city, switch to the overworld and then try to return to the city.
- The current version of the generator works pretty differently from the one on github and changing the nature of individual parts of a district would be a bit harder. For example, after a district is generated, it's quite difficult to spawn a new plaza or a castle in it. Not impossible of course, but difficult. This is done in favor of more "continuous" street patterns
- I planned to implement something like this long time ago (sort of related: link), but first I am going to rework the whole sea/river subsystem.
- I am not sure I get your idea. Why would we need this? To show more detailed buildings in City Viewer? In any case it is not possible with the current architecture of my generators. They all are purely client-side applications, so MFCG for example can't ask PM to create a building for it.