Temple of The Roguelike Forums
Development => Design => Topic started by: Krice on May 05, 2014, 09:36:12 AM
-
I've toyed with this idea so long that I think it's time to try it. I have a plan to use 32x32 tiles with 2x2 or 2x4 (tall) atomic parts to create tiles. Those parts can be stuff like ground, pebbles, grass, sand etc. Then using those parts it's possible to create a set of tiles. Dividing 32x32 tile to 16x16 with 2x2/2x4 atomics is easier and still small enough with variations to types of atomic parts. There is an endless way to combine atomic parts, but the tileset should stay reasonably small to keep memory consumption low. With atomic parts it's easy to create in-between tile types with different terrain and I also like the idea that you only need to draw simple stuff and build tiles from them which reduce the tedious work of drawing tiles.
I don't think I've ever seen this in any roguelike game, but I think it's an idea that has been discussed before.
-
I think some sort of combining is going on in DCSS and ToME 4.
-
You should consider Wang tiles.
-
I think some sort of combining is going on in DCSS and ToME 4.
They're combining stupidity to bad gameplay.
-
You should consider Wang tiles.
How about Dick tiles.
-
Wait...Krice just beat me to a joke! :'(
-
Wait...Krice just beat me to a joke! :'(
It barely qualifies. Perhaps you both like them limp..
-
I might go as far as combine height map generation to soil type which then can be used to growth rate for (small) plants like grass, also checking out nearby tiles in case there is a transition from let's say regular ground to sand (beach). I don't think it's too heavy, just some light simulation stuff.
The height map would dictate the types of tiles generated. I think it could be used to generate "realistic" tileset (much less plants, more rocks and possibly other type of plants/mushroom) in underworld levels, just by using height and possibly sunlight condition in the simulation.