I'm trying to create a perlin / simplex / value noise function in JavaScript that will give results similar to the following:

enter image description here (Note: this image has already had a treshold applied. I want it without the treshold.)

I've been looking all over the internet for 2 days now. There are plenty of links explaining noise and a lot of code, but none in JavaScript, and whenever I try to convert it, I get weird results. Here are some of my attemps:

I think part of the problem might stem from the use of the bitwise operators in JavaScript, where it is difficult to enforce the type of a number.

What I'm looking for is an example of working, JavaScript noise (whatever type).

I'd also be willing to grant a bounty for any information pertaining to the parameters that could lead to a pattern similar to the image I posted (before threshold) or any optimization tips since I'll need this to run as fast as possible (in JavaScript nonetheless).

link|improve this question

feedback

2 Answers

I did something like this a while back, however I used midpoint displacement. If you can figure out whats going on it could be helpful,

http://www.somethinghitme.com/projects/canvasterrain/

Its also here

https://github.com/loktar00/Javascript-Canvas-Terrain-Generator

And here is a fiddle with just the noise part implemented with some cool lighting,

http://jsfiddle.net/loktar/4qAxZ/

Good luck :).

link|improve this answer
Thanks for the answer. Sadly, your solution seems to rely heavily on canvas to work, and I do not have access to a canvas in my situation. – Xeon06 Dec 8 '11 at 13:51
@Xeon06 Not really :? It only uses canvas to draw the data points. How do you plan on handling the drawing if not using canvas.. your fiddles are using canvas as well, and at that point why not just pick something faster on the server side instead of JS (unless you are using Node to do this already)? – Loktar Dec 8 '11 at 14:06
I'm sorry, I just went through your code very fast. I thought I had seen you were scaling it over itself. I'll give it another proper read soon. – Xeon06 Dec 8 '11 at 14:40
So I checked into it more. You seem to be using the midpoint displacement algorithm. The problem I have with it is that I can't seem to configure it to my needs. I need to generate something like this upload.wikimedia.org/wikipedia/commons/d/da/Perlin_noise.jpg – Xeon06 Dec 8 '11 at 15:31
Ah yeah your right :? it probably wont give the results you want – Loktar Dec 8 '11 at 17:18
feedback
up vote 0 down vote accepted

I will be using the code found on this Gist.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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