sketch
var mushrooms = [];
var capColor
var terrainSpeed = 0.0005;
var terrainDetail = 0.005;
function setup() {
createCanvas(600, 400);
capColor = color(random(100, 180),random(100, 180),random(100, 180))
stemColor = color(random(20, 80),random(20, 80),random(20, 80))
for (var i = 0; i < 10; i++){
var rx = random(width);
mushrooms[i] = makeMushroom(rx);
}
frameRate(10);
}
function draw() {
background(200);
updateAndDisplaymushrooms();
removemushroomsThatHaveSlippedOutOfView();
addNewmushroomsWithSomeRandomProbability();
noFill();
beginShape();
for (var x = 0; x < width; x++) {
var t = (x * terrainDetail) + (millis() * terrainSpeed);
var y = map(noise(t), 0,1, 0, height);
vertex(x, y);
}
endShape();
rect(0, 0, width - 1, height - 1);
displayStatusString();
displayHorizon();
}
function updateAndDisplaymushrooms(){
for (var i = 0; i < mushrooms.length; i++){
mushrooms[i].move();
mushrooms[i].display();
}
}
function removemushroomsThatHaveSlippedOutOfView(){
var mushroomsToKeep = [];
for (var i = 0; i < mushrooms.length; i++){
if (mushrooms[i].x + mushrooms[i].breadth > 0) {
mushroomsToKeep.push(mushrooms[i]);
}
}
mushrooms = mushroomsToKeep;}
function addNewmushroomsWithSomeRandomProbability() {
var newMushroomLikelihood = 0.007;
if (random(0,1) < newMushroomLikelihood) {
mushrooms.push(makeMushroom(width));
}
}
function MushroomMove() {
this.x += this.speed;
}
function MushroomDisplay() {
var floorHeight = 20;
var bHeight = this.nFloors * floorHeight;
fill(255);
strokeWeight(0);
push();
translate(this.x, height - 40);
fill(stemColor);
rect(0, -bHeight, this.breadth, bHeight);
fill(capColor);
arc(5, -bHeight, this.breadth + 100, bHeight / 2, 3.1, 6.2)
pop();
}
function makeMushroom(birthLocationX) {
var bldg = {x: birthLocationX,
breadth: random(10, 20),
speed: -1.0,
nFloors: round(random(2,8)),
move: MushroomMove,
display: MushroomDisplay}
return bldg;
}
function displayHorizon(){
stroke(0);
line (0,height-50, width, height-50);
}