samiam
Mini-Member
Posts: 91
Registered: 04-05 |
Thanks for the long explanation explaining the reason for 192x192 seeds. Yes, I think the rooms are much better with 192x192 seeds; they still feel a little sparse but prefabs should fix that.
I also really like the caverns, as I mentioned before. The “pits of death” would be more consistent with Doom/Heretic mapping style if there was always some way out of them (either a teleport in the middle to pop you back to the entrance to the cavern or a hidden switch that pops up a ramp to leave the pit of death), but they are fine right now. My issues with the caverns is that water does damage the player (this is not consistent with Doom and Heretic’s style in the maps included with the games), and I don’t like how items end up the cracks, making them sometimes difficult or impossible to pick up. Then again, I understand “in sector #x” is non-trivial math; if, however, Oblige 3 has a function like that, we can have something like this:
for(a=0;a<500;a++) {
if(insector(crevice,x,y) || insector(wall,x,y)) {
x += rand(100 + a) - (50 + (a/2));
y += rand(100 + a) - (50 + (a/2));
}
}
(Of course, Oblige uses the twister for random numbers, but it would be the same idea)
|