Temple of The Roguelike Forums
Development => Programming => Topic started by: languard on June 30, 2013, 04:33:34 AM
-
Want to get some feedback on this generation method I've been working on. Mainly, does it look cavern-y?
http://languard.koding.com/cave/Build.html
And source for those interested: http://languard.koding.com/cave/CaveGenDropMethod.zip
The general idea behind the algorithm is I drop splats onto the area. To see what I mean, turn drops to 1 and drop size to different values to see what one drop looks like. The more red an area is, the more likely it is to be floor. Clicking convert changes the raw data into dungeon data (floor - white or wall - black) and cleanup does that, it removes the little orphan areas.
I can write more later, but I'm more than just a little time crunched for getting this month's #1GAM done :P
-
That's pretty nifty and looks very cavern-like.
-
1. Don't have unity web player installed, wont install it
2. If generation creates orphan areas in the first place it sucks
-
@Krice:
Fair enough on the unity plugin. If you're truly interested in seeing it run I can build a stand-along version.
I am curious as to why a multi-pass algorithm is inherently worse than a single pass algorithm in your mind. If I left all the tiny one or two space areas in, then I could see it being called inferior, but I don't. They get cleaned up. In fact I would argue the ability to create disconnected zones in the context of cavern generation a strength. Take this cave for instance. Coloring done in GIMP.
(https://lh3.googleusercontent.com/-8kKp2zRsLrs/UdBAqr30EXI/AAAAAAAAAq0/NvDU7GPIxQQ/w614-h390-no/cavess01.png)
You could setup a series of portals, or 'narrow passage' or whatever you would want to call it to connect the different areas. Also, performance is very good. This dungeon is from a 56x34 area with 2500 size 3 drops, and it only took roughly a second to generate. And if I wanted a single continuous, increasing the drops to around 3000 would do it rather nicely.
(https://lh3.googleusercontent.com/-CL9kvjD8n1Y/UdBBGVodLgI/AAAAAAAAAq8/Sg9TIrmVAIE/w900-h549-no/cavess02.png)
-
Looks nice. I like how it uses 4-way connectivity check - this is much better than allowing diagonal connected areas. I also like how it tends to make little islands/pillars.
One problem is it sometimes creates small levels bunched into the corner. When I had a similar algorithm I made it check that its max and min x and y coordinates were within 4 spaces of the map edges, so you'd never get a bunched up level.
Anyway, nice little algo, but go make some gameplay now ;P
-
Watch those diagonals.
4-way connectivity is nice, but the aesthetic is incomplete when diagonal edges between tiles still exist.
-
Looks nice.
Not only doesn't look nice, but it's not even ready yet (no connections).
-
Yep. Connections are the hardest part.
-
Not only doesn't look nice, but it's not even ready yet (no connections).
You are relentlessly pessimistic. Say something nice every once in a while.
-
Say something nice every once in a while.
All I can say is that our culture is not full of pretending. In US everything is always "nice" and you guys "love" each other. What actually happens is that your culture is sick in the inside and you lie all the time.
-
I agree with your premise. I appreciate blunt honesty.
But even so, things aren't all bad all the time. It's one thing to have standards, and another to expect perfection.
-
Looks nice.
Not only doesn't look nice, but it's not even ready yet (no connections).
One hour tops to implement connections. Maybe an extra hour to tiddy it up to make it as generic as possible., so I don't consider that a major hurdle, especially since if you configure the input values correctly you can get very large continuous zones. The main reason behind the speed is how the data is stored, it is trivial to pick a random node in zone 1, a random node in zone 2, and bamf! connection. Assuming you have to enter a command to go through it, as is the case with most rogue-likes. Connections that auto-move you do suddenly become more interesting to place.
Keep in mind my intent with this is to create a general purpose generator that can be used in any C# based rogue-like.
Krice: Could you give me an example or two of algorithms that you consider good as far as cavern generation goes?
I agree with your premise. I appreciate blunt honesty.
But even so, things aren't all bad all the time. It's one thing to have standards, and another to expect perfection.
Some cultures are just like that, doesn't bother me. My wife is from Taiwan, and she's like that (though considerably less...blunt ;) ) On the rare occasion she says good job I know I dun good. The rest of the time is spent pointing out what could have been done better so it can be done better next time :P
Watch those diagonals.
4-way connectivity is nice, but the aesthetic is incomplete when diagonal edges between tiles still exist.
*sigh* Yes, it's something I've been struggling with. I believe a good tileset rather than solid squares would hide this to some extent, but then it looses some of it's general application, since many rogue-likes don't use graphical tilesets. You could of course hide it with a lighting engine, you can only see the area around you, so the player couldn't tell there was a space diagonal. Still not ideal, I agree.
Anyway, nice little algo, but go make some gameplay now ;P
Gameplay? What's that? ;)
-
You can fix the diag issue with a clean-up phase.
Yep. Connections are the hardest part.
Eh? Pray tell.
-
Krice: Could you give me an example or two of algorithms that you consider good as far as cavern generation goes?
It's kind of difficult, because caverns are just blobs, usually connected with corridors. However I think even caverns could be improved by looking at real caves and trying to figure out how they could be more cavernous. One important thing is of course what is in those caverns and how they are related to other structures in the level or game world in general.
However I can say that poor cavern generators create diagonals and loose tiles. Good cavern generators don't just create "random" generic blobs, but caverns can have distinctive, yet random shapes.
-
Say something nice every once in a while.
All I can say is that our culture is not full of pretending. In US everything is always "nice" and you guys "love" each other. What actually happens is that your culture is sick in the inside and you lie all the time.
1. Totally agree.
2. Go fuck yourself
Did I do good? ;)
-
Does anyone know a simple algorithm to create irregular semi-round shapes? Something like a pond or lake.
-
A quick idea would be to generate several intersecting circles of different diameters, and then adding and removing some of the outlying water tiles so it's not obviously just circles. Alternatively, start with circles of large diameters, then add circles of smaller diameters. This might give you something like lake shapes :)
-
I've already tried combining circles and it looks pretty bad ::). Maybe making the edges smooth would help, but here I can't think of anything simple.
-
Does anyone know a simple algorithm to create irregular semi-round shapes? Something like a pond or lake.
Something like this? (http://i.imgur.com/4QGluRG.png http://i.imgur.com/CFSk8bl.png )
If those are the sorts of shapes you want, here's the algorithm:
1. Choose a maximum radius for the shape, so you have a clear stopping point. (You could also experiment with other termination criteria, like the total number of cells, etc.)
2. Start with a single cell of "water" surrounded by plenty of empty space.
3. Choose a cell at random.
4. If the chosen cell is empty space AND is next to water, continue to 5. Otherwise, go back to step 3.
5. Randomly decide whether the chosen cell will become water. The probability should be based on distance from the center (the original water cell). For example, I used (100 - (euclidean_distance * 10))%, for a maximum radius of 10.
6. If you just changed the chosen cell to water AND the chosen cell was at the desired maximum radius, go to 7. Otherwise, the shape isn't finished yet - go back to 3.
7. Finally, smooth it out just once using the "4-5 rule" mentioned here: http://roguebasin.com/index.php?title=Cellular_Automata_Method_for_Generating_Random_Cave-Like_Levels .
Hope this helps.
-
Thanks!
-
Hmm, I think I'll try running the end result through the cellular process, see if that helps with the diags without destroying how the dungeon looks.
-
Though I like your cavern system, I'm planning to implement an another type of cave model as seen bellow:
(http://i.imgur.com/z2tAd5S.jpg)
The reason for this is that I think it adds more sense of depth and tension as the player ventures himself deeper into the cave system, because dangers and rewards will increase with it. I really don't know if this is more realistic or not, but at least for my game it will be better.
-
Can I just say that your Atari/Intellivision/Colecovision presentation is top notch?
-
Can I just say that your Atari/Intellivision/Colecovision presentation is top notch?
Well thanks. Not entirely sure thought if anyone else would find this model appealing. Though my project will be closed source I would gladly share parts of it, like the source code for generating something like this.
-
Did you see my drunken walk algorithm? Using diggers and roomies?
http://forums.roguetemple.com/index.php?topic=2830.0
Krice also got some interesting results with that method, he links in that thread. Dungeon building is fun.
-
Krice also got some interesting results with that method, he links in that thread. Dungeon building is fun.
I think maze generation is a different topic, but in that routine I was able to solve the room problem as well and results can be seen in the next version of Teemu.
In cavern generation I've tried something similar dscreamer described, but I call it a random flood fill routine. Perfect flood fill in void generates a diamond shape, but with random variations it's more or less like a cavern. I think there are better ways to do caverns, but one advantage in flood fill is that you can store the seed distance from the center, making it easy to create ponds or other similar formations simply by filling the required number of seeds with water tile.
-
Did you see my drunken walk algorithm? Using diggers and roomies?
http://forums.roguetemple.com/index.php?topic=2830.0
Krice also got some interesting results with that method, he links in that thread. Dungeon building is fun.
That's impressive! I think I will have sites of exploration base as those. I will call it: Mazed Catacombs. I just need to add a few rooms (which in fact will be the chambers) where the bodies of the deceased remain. Thanks for sharing it!
-
The diggers/roomies approach does look interesting, but as Krice noted maze generation is different from cave generation. Still looks like an interesting approach, and it's been added to my list of generation techniques I want to implement in C#.
Still tweaking data values/experimenting with cleanup code to refine my algorithm.
-
With the diggers you just set them to turn more often and they'll dig you caverns. If you want long corridors, turn them less often. Have them die if they aren't adjacent to a diggable block and they'll build you rooms.
But what is IN the caverns is more important than the layout I think.
-
The link to the source code is broken: http://languard.koding.com/cave/CaveGenDropMethod.zip
Can you fix it so we can learn from your source code?
Thanks
-
Oh well @#$@. Dangers of using a beta service I suppose, but Koding completely redid everything. Again. I'll have to wait until I get home to setup a dropbox dl link until I can figure out the new system.
Thanks for the heads up on this.
-
Has anyone pointed out yet that long dead ends are usually frustrating to the player?
One room dead ends are no biggie as long as it doesn't happen all the time, 2 rooms is bad. You need loops because backtrack sucks. It also helps for strategy, the old 'run in circles' strategy to kite bad guys.