how to make a game with randomly genarating map
#2 Members - Reputation: 5885
Posted 16 December 2012 - 08:19 AM
#4 Members - Reputation: 152
Posted 18 December 2012 - 12:34 AM
like diablo?
mostly people use block to matching each others..
^^ but I need more detail
Beauty is only skin deep , ugly goes to bones
World's only 3D engine tunner and 3D engine guru.
and real genius inventor
but very kind warm heart .. and having serious depression for suffering in Korea
www.polygonart.co.kr ( currently out dated and only Korean will change to English and new stuff when I get better condition
sorry for that)
#5 Members - Reputation: 173
Posted 19 December 2012 - 01:01 AM
#6 Members - Reputation: 160
Posted 19 December 2012 - 05:55 AM
Edited by darkhaven3, 19 December 2012 - 05:55 AM.
#7 Members - Reputation: 942
Posted 19 December 2012 - 09:50 AM
#8 Members - Reputation: 1566
Posted 19 December 2012 - 12:45 PM
If you want to be lazy, and if you're using a language like C or C++, you could use rand() or an equivalent if you really wanted, but that's not a particularly robust way to do it. One possible way I've found is to use pseudo-random number generation and just iterate through a fixed-size array that way, but you may or may not need that kind of implementation depending on your uses. Good part about that kind of thing is that it's blazing fast, and it's virtually random as far as the user cares since you're not revealing the deterministic logic to them directly.
FWIW, rand() is a pseudo-random number generator. When used with the same seed, it will generate the same random numbers over and over. However, in saying that, I still don't think your post makes any sense at all and doesn't cover how to create a random world at all.
---(Old Blog, still has good info): 2dGameMaking
-----
"No one ever posts on that message board; it's too crowded." - Yoga Berra (sorta)
This topic is locked






