I'm trying to write the Diamond-Square algorithm in Java to generate a random map but can't figure out the implementation...
Anyone with some Java code (or other language) so i can check how the loop is made would be greatly appreciated!
Thanks!
|
I'm trying to write the Diamond-Square algorithm in Java to generate a random map but can't figure out the implementation... Anyone with some Java code (or other language) so i can check how the loop is made would be greatly appreciated! Thanks! |
||||
|
|
This is an interesting algorithm for generating values. Here is an implementation that I have created based on the explanation give at this page in the references from the wikipedia article. It will create "spherical values" (wrapped at all the edges). There are notes in the comments for how to change it to generate new values on the edges instead of wrapping (though the meaning of average for the edges isn't really correct in these cases).
|
|||||||
|
|
M. Jessup's answer seems to be slightly bugged. Where he had: double avg = data[(x-halfSide+DATA_SIZE)%DATA_SIZE][y] + //left of center data[(x+halfSide)%DATA_SIZE][y] + //right of center data[x][(y+halfSide)%DATA_SIZE] + //below center data[x][(y-halfSide+DATA_SIZE)%DATA_SIZE]; //above center It should instead read: double avg = data[(x-halfSide+DATA_SIZE-1)%(DATA_SIZE-1)][y] + //left of center data[(x+halfSide)%(DATA_SIZE-1)][y] + //right of center data[x][(y+halfSide)%(DATA_SIZE-1)] + //below center data[x][(y-halfSide+DATA_SIZE-1)%(DATA_SIZE-1)]; //above center Otherwise it reads from the wrong locations (which can be uninitialised). |
||||
|
|
Check out this demo done with Processing: http://www.intelegance.net/code/diamondsquare.shtml Also, here's another page with a rough algo written out: http://www.javaworld.com/javaworld/jw-08-1998/jw-08-step.html?page=2 Finally, a slightly more formal paper: http://www.student.math.uwaterloo.ca/~pmat370/PROJECTS/2006/Keith_Stanger_Fractal_Landscapes.pdf Enjoy! |
|||
|