Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to work on a game with 3d Blocky worlds. I want to know how and what i would use to make the worlds. So allowing it to randomize each world everytime it is created.

So say. Block1 = grass Block2 = stone Block3 = water

so it will randomly generate a world with those items. but grass being on the top stone being below the grass and water anywhere.

How would i do this?

share|improve this question

closed as not a real question by Bobby, jschoen, Christoph, C. A. McCann, NULL Nov 7 '12 at 15:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Not having any experience with 3d programming, it appears logical to me to reserve a part of the levels(height) for stone. In other words, say you have 5 levels(in height) where you can generate blocks. Then, generate random y-values(using y as height) between 2 and 5(or 1 and 4 if considering it to be 0-indexed). After doing so, traverse the set of grass-/water blocks and put a stone block directly beneath it. I do apologize if I have misunderstood the question and therefore not answered it correctly/precisely.

[ADDED AS REPLY TO COMMENT] For the sake of simplicity, say you have a 3D char array containing your blocks. Furthermore, say you only have two y-values; 0 and 1(0 being the bottom one).

For each (x,z)-cell at y=1 do:
    Create random boolean
    If boolean is true
        place grass in cell
    else
        place water
endfor

For each (x,z)-cell at y=0 do:
    place stone
endfor
share|improve this answer
explain further please – Heloic Nov 7 '12 at 10:21
im one of them people who learn with examples, and learn with interacting. SO a example where i can view the world would be good. – Heloic Nov 7 '12 at 10:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.