/* * _03_Catch_The_Apple * * Create the game step-by-step, adding complexity as you move along. * The aim is for Newton to collect points by getting bumped on the head * by as many apples as possible in half a minute. * * (c) 2013-2016 Arduino LLC. */ int nX = 0; int nY = 0; float aY = 0; // Make aY into a float int aX = 15; float aV = 3; // Apple's falling speed void setup() { size(400, 400); nY = height - 25; } void draw() { background(200); // Apple's movement aY = aY + aV; // Introduce the speed as an increment if (aY > height) { aY = 15; aX = int(random(width - 20)); } fill(255); // Collision detection if (aY + 10 > nY && aY - 10 < nY + 20) { if (aX + 10 > nX && aX - 10 < nX + 20) { fill(255, 0, 0); } } ellipse(aX, aY, 20, 20); rect(nX, nY, 20, 20); } void keyPressed() { // Increase the coordinates in 3 pixels if (keyCode == RIGHT) { nX = nX + 3; } // Decrease the coordinates in 3 pixels if (keyCode == LEFT) { nX = nX - 3; } // Limit the X coordinates if (nX < 0) { nX = 0; } if (nX > width - 20) { nX = width - 20; } }