Temple of The Roguelike Forums

Development => Programming => Topic started by: languard on June 30, 2013, 04:33:34 AM

Title: Cavern generation code
Post 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
Title: Re: Cavern generation code
Post by: tuturto on June 30, 2013, 05:35:34 AM
That's pretty nifty and looks very cavern-like.
Title: Re: Cavern generation code
Post by: Krice on June 30, 2013, 08:29:09 AM
1. Don't have unity web player installed, wont install it
2. If generation creates orphan areas in the first place it sucks
Title: Re: Cavern generation code
Post by: languard on June 30, 2013, 02:37:40 PM
@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)
Title: Re: Cavern generation code
Post by: Darren Grey on June 30, 2013, 03:11:15 PM
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
Title: Re: Cavern generation code
Post by: requerent on July 01, 2013, 03:58:41 AM
Watch those diagonals.

4-way connectivity is nice, but the aesthetic is incomplete when diagonal edges between tiles still exist.
Title: Re: Cavern generation code
Post by: Krice on July 01, 2013, 08:34:19 AM
Looks nice.

Not only doesn't look nice, but it's not even ready yet (no connections).
Title: Re: Cavern generation code
Post by: TheCreator on July 01, 2013, 08:53:35 AM
Yep. Connections are the hardest part.
Title: Re: Cavern generation code
Post by: Vanguard on July 01, 2013, 05:12:05 PM
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.
Title: Re: Cavern generation code
Post by: Krice on July 01, 2013, 07:51:08 PM
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.
Title: Re: Cavern generation code
Post by: Vanguard on July 01, 2013, 08:06:35 PM
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.
Title: Re: Cavern generation code
Post by: languard on July 01, 2013, 08:45:26 PM
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? ;)
Title: Re: Cavern generation code
Post by: requerent on July 02, 2013, 04:35:06 AM
You can fix the diag issue with a clean-up phase.

Yep. Connections are the hardest part.

Eh? Pray tell.
Title: Re: Cavern generation code
Post by: Krice on July 02, 2013, 09:43:48 AM
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.
Title: Re: Cavern generation code
Post by: guest509 on July 05, 2013, 07:40:45 AM
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?  ;)
Title: Re: Cavern generation code
Post by: miki151 on July 08, 2013, 04:51:01 PM
Does anyone know a simple algorithm to create irregular semi-round shapes? Something like a pond or lake.
Title: Re: Cavern generation code
Post by: Anvilfolk on July 08, 2013, 04:57:33 PM
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 :)
Title: Re: Cavern generation code
Post by: miki151 on July 08, 2013, 05:35:58 PM
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.
Title: Re: Cavern generation code
Post by: dscreamer on July 08, 2013, 07:13:41 PM
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.
Title: Re: Cavern generation code
Post by: miki151 on July 08, 2013, 09:18:16 PM
Thanks!
Title: Re: Cavern generation code
Post by: languard on July 11, 2013, 02:20:44 AM
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.
Title: Re: Cavern generation code
Post by: Endorya on July 11, 2013, 11:24:03 AM
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.
Title: Re: Cavern generation code
Post by: guest509 on July 12, 2013, 05:02:17 AM
Can I just say that your Atari/Intellivision/Colecovision presentation is top notch?
Title: Re: Cavern generation code
Post by: Endorya on July 12, 2013, 08:07:17 AM
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.
Title: Re: Cavern generation code
Post by: guest509 on July 13, 2013, 12:03:08 AM
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.
Title: Re: Cavern generation code
Post by: Krice on July 13, 2013, 10:06:42 AM
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.
Title: Re: Cavern generation code
Post by: Endorya on July 13, 2013, 10:12:18 AM
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!
Title: Re: Cavern generation code
Post by: languard on July 14, 2013, 11:49:59 PM
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.
Title: Re: Cavern generation code
Post by: guest509 on July 15, 2013, 05:45:04 AM
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.
Title: Re: Cavern generation code
Post by: Nekoninja on July 18, 2013, 08:05:32 AM
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
Title: Re: Cavern generation code
Post by: languard on July 18, 2013, 04:44:05 PM
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.
Title: Re: Cavern generation code
Post by: guest509 on July 18, 2013, 11:52:28 PM
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.