#procgen
Explore tagged Tumblr posts
hashamatic · 2 months ago
Text
Tumblr media
Can you find your way through my maze?
8 notes · View notes
blake447 · 2 years ago
Text
Procedural Dungeon Generation
Alright~ After much work we have finally completed our dungeon generation algorithm. First, we generate the rooms, separate them using a separation steering algorithm.
Second, we generate a graph that represents connections between the various rooms
Tumblr media
Third, we perform what is known as Delaunay Triangulation, in which we evaluate pairs of triangles and swap their shared edge if it fails a test boiled down to a simple matrix determinant evaluation Fourth, we construct a Graph of connectivity from the Delaunay triangulation
Tumblr media
Fifth, we perform an A* pathfinding algorithm to connect points on the delauney triangulation through the neighborhood graph
Tumblr media
Finally, if we didn't traverse through a room, we can remove it to simplify the dungeon into something a little less dense
Tumblr media
There are some extra things we can do here and there, and bugs and edge cases to iron out here and there, but for now, we have a pretty neat little dungeon generator. The next step is to actually procedurally generate the rooms and then use the connectivity graphs to implement game logic and whatnot, but that we will save for another time.
72 notes · View notes
arielcoppes · 2 months ago
Text
Last week I started playing a bit with generating the asteroids shapes for Ship Miner with a bit of procgen and it is super fun and rewarding.
I was already doing procgen for the minerals spots but the asteroid shapes were predefined since I wanted to control that in order to find the core loop of the game. Now that I have some core loop defined, I can create the shapes considering that.
But one difference now is I wanted to have something visual, consistent (control the seed) and be able to do step by step, so if something goes wrong with the generation, I can adjust the logic and test again and see where it is failing, etc.
Next step is to try to integrate the minerals generation into the shape process and also visualize that better since not having visualization and replication makes procgen super harder.
7 notes · View notes
wgwgsa · 5 months ago
Text
"MY GOD, WHAT HAVE THEY DONE TO YOU?"
Tumblr media
8 notes · View notes
stkptr · 3 months ago
Text
I can't find much at all about these systems, just scant references to them in theses about plant development and such. Finding a proof of Turing completeness for 2L was difficult, I'm not sure if anyone's proven a strict 1L like (1, 0)-L Turing complete before me (I would like to be shown wrong though).
The smallest known universal machine has 168,022 replacement rules (compiled from a 19 rule machine).
4 notes · View notes
mtarkovsky · 2 years ago
Text
FUMES has reached another big milestone on its road!
New update is available as free demo on Steam!
WISHLIST ME!
https://store.steampowered.com/app/1920430/FUMES/
36 notes · View notes
rh2log · 6 months ago
Text
Tumblr media
3 notes · View notes
cherryjams · 1 year ago
Text
Tumblr media
Watabou's Cave/Glade Generator
2 notes · View notes
vallentindev · 2 years ago
Text
Tumblr media
I have an interesting relationship with procedural generation. I fix this bug, then a few days later it magically makes an appearance again!
6 notes · View notes
pleasestopthese · 1 year ago
Text
ted chiang calling it applied statistics makes it so much clearer what's going on in each use case, whether that's image and audio compression, nonphotorealistic renders and shaders, markov chain chatbots (their rebrand has been weird) or procgen image boards. the difference really is consent and consent really is all that matters.
Tumblr media
71K notes · View notes
zandyland · 4 months ago
Text
Walk in the Woods
Uhhhhh this is a normal woods, right?
0 notes
hashamatic · 3 months ago
Text
Tumblr media
Look at this space cloud I made.
4 notes · View notes
blake447 · 2 years ago
Text
Alright! Delaunay triangulation is officially, properly implemented. Notable roadblocks: Some boolean logic was terminating early because I one-lined it improperly A random test case was running on update constantly messing up the triangulation, causing me to question my sanity as I desperately figured out why it was flipping things back and forth Swizzling and figuring out the order the elements had to go into the matrix. At the very least, they have to be ordered counterclock wise, and just for good measure I matched the order to this diagram (again, courtesy of wikipedia)
Tumblr media
And finally, we no longer needed a test for convexity as the Delaunay process handles that case as well! meaning it was actively getting in the way of the algorithm and had to be removed! Super excited to move on from this nightmare
53 notes · View notes
wgwgsa · 5 months ago
Text
"I USED UP MY DREAMS AND MY WISHES"
Tumblr media
5 notes · View notes
wgwgsa · 5 months ago
Text
"HIS FINGERS ARE PAPERY ON MY THIGHS"
Tumblr media
5 notes · View notes
hashamatic · 2 months ago
Text
Tumblr media
Can you find your way through my maze?
3 notes · View notes