Arduboy2/examples/ArduBreakout/ArduBreakout.ino

756 lines
17 KiB
Arduino
Raw Permalink Normal View History

2015-05-01 05:17:25 +00:00
/*
Breakout
Copyright (C) 2011 Sebastian Goscik
All rights reserved.
Modifications by Scott Allen 2016, 2018, 2020
after previous changes by person(s) unknown.
2015-05-01 05:17:25 +00:00
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
*/
#include <Arduboy2.h>
// block in EEPROM to save high scores
#define EE_FILE 2
2015-05-01 05:17:25 +00:00
// EEPROM space used: 35 bytes (7*(3+2)) starting at
// EEPROM_STORAGE_SPACE_START + (EE_FILE * 35)
Arduboy2 arduboy;
BeepPin1 beep;
2015-05-01 05:17:25 +00:00
constexpr uint8_t frameRate = 40; // Frame rate in frames per second
// Tone frequencies. Converted to count values for the beep class
constexpr uint16_t tonePaddle = beep.freq(200); // Ball hits paddle
constexpr uint16_t toneBrick = beep.freq(261); // Ball hits a brick
constexpr uint16_t toneEdge = beep.freq(523); // Ball hits top or sides
constexpr uint16_t toneMiss = beep.freq(175); // Ball misses paddle, lose life
constexpr uint16_t toneInitialsChange = beep.freq(523); // Change initials
constexpr uint16_t toneInitialsMove = beep.freq(1046); // Select initials
// Tone durations
constexpr uint8_t toneTimeBeep = 250 / (1000 / frameRate); // Game (frames)
constexpr uint16_t toneTimeMiss = 500; // Miss paddle (milliseconds)
constexpr uint16_t toneTimeInitials = 80; // Initials entry (milliseconds)
constexpr unsigned int columns = 13; //Columns of bricks
constexpr unsigned int rows = 4; //Rows of bricks
2015-05-01 05:17:25 +00:00
int dx = -1; //Initial movement of ball
int dy = -1; //Initial movement of ball
int xb; //Ball's starting position
int yb; //Ball's starting position
2015-05-01 05:17:25 +00:00
boolean released; //If the ball has been released by the player
boolean paused = false; //If the game has been paused
byte xPaddle; //X position of paddle
boolean isHit[rows][columns]; //Array of if bricks are hit or not
2015-05-01 05:17:25 +00:00
boolean bounced=false; //Used to fix double bounce glitch
byte lives = 3; //Amount of lives
byte level = 1; //Current level
unsigned int score=0; //Score for the game
unsigned int brickCount; //Amount of bricks hit
boolean pad, pad2, pad3; //Button press buffer used to stop pause repeating
boolean oldpad, oldpad2, oldpad3;
char text_buffer[16]; //General string buffer
2015-05-01 05:17:25 +00:00
boolean start=false; //If in menu or in game
boolean initialDraw=false;//If the inital draw has happened
char initials[3]; //Initials used in high score
//Ball Bounds used in collision detection
byte leftBall;
byte rightBall;
byte topBall;
byte bottomBall;
//Brick Bounds used in collision detection
byte leftBrick;
byte rightBrick;
byte topBrick;
byte bottomBrick;
byte tick;
2015-05-01 05:17:25 +00:00
void setup()
{
arduboy.begin();
beep.begin();
arduboy.setFrameRate(frameRate);
arduboy.initRandomSeed();
}
2015-05-01 05:17:25 +00:00
void loop()
2015-05-01 05:17:25 +00:00
{
// pause render until it's time for the next frame
if (!(arduboy.nextFrame()))
return;
// Handle the timing and stopping of tones
beep.timer();
//Title screen loop switches from title screen
//and high scores until FIRE is pressed
while (!start)
2015-05-01 05:17:25 +00:00
{
start = titleScreen();
if (!start)
{
start = displayHighScores(EE_FILE);
}
}
//Initial level draw
if (!initialDraw)
{
//Clears the screen
arduboy.clear();
//Selects Font
//Draws the new level
level = 1;
initialDraw=true;
newLevel();
score = 0;
}
if (lives>0)
{
drawPaddle();
//Pause game if FIRE pressed
pad = arduboy.pressed(A_BUTTON) || arduboy.pressed(B_BUTTON);
if(pad == true && oldpad == false && released)
{
oldpad2 = false; //Forces pad loop 2 to run once
pause();
}
oldpad = pad;
drawBall();
if(brickCount == rows * columns)
{
level++;
newLevel();
}
}
else
{
drawGameOver();
if (score > 0)
{
enterHighScore(EE_FILE);
}
arduboy.clear();
initialDraw=false;
start=false;
lives=3;
newLevel();
2015-05-01 05:17:25 +00:00
}
arduboy.display();
2015-05-01 05:17:25 +00:00
}
void movePaddle()
{
//Move right
if(xPaddle < WIDTH - 12)
2015-05-01 05:17:25 +00:00
{
if (arduboy.pressed(RIGHT_BUTTON))
2015-05-01 05:17:25 +00:00
{
xPaddle+=2;
2015-05-01 05:17:25 +00:00
}
}
//Move left
if(xPaddle > 0)
{
if (arduboy.pressed(LEFT_BUTTON))
{
xPaddle-=2;
2015-05-01 05:17:25 +00:00
}
}
2015-05-01 05:17:25 +00:00
}
void moveBall()
{
tick++;
2015-05-01 05:17:25 +00:00
if(released)
{
//Move ball
if (abs(dx)==2)
{
xb += dx/2;
// 2x speed is really 1.5 speed
if (tick%2==0)
xb += dx/2;
}
else
{
xb += dx;
}
2015-05-01 05:17:25 +00:00
yb=yb + dy;
//Set bounds
leftBall = xb;
rightBall = xb + 2;
topBall = yb;
bottomBall = yb + 2;
//Bounce off top edge
if (yb <= 0)
{
yb = 2;
dy = -dy;
playTone(toneEdge, toneTimeBeep);
2015-05-01 05:17:25 +00:00
}
//Lose a life if bottom edge hit
if (yb >= 64)
{
arduboy.drawRect(xPaddle, 63, 11, 1, BLACK);
2015-05-01 05:17:25 +00:00
xPaddle = 54;
yb=60;
2015-05-01 05:17:25 +00:00
released = false;
lives--;
playToneTimed(toneMiss, toneTimeMiss);
2015-05-01 05:17:25 +00:00
if (random(0, 2) == 0)
{
dx = 1;
}
2015-05-01 05:17:25 +00:00
else
{
dx = -1;
}
}
//Bounce off left side
if (xb <= 0)
{
xb = 2;
dx = -dx;
playTone(toneEdge, toneTimeBeep);
2015-05-01 05:17:25 +00:00
}
//Bounce off right side
if (xb >= WIDTH - 2)
2015-05-01 05:17:25 +00:00
{
xb = WIDTH - 4;
2015-05-01 05:17:25 +00:00
dx = -dx;
playTone(toneEdge, toneTimeBeep);
2015-05-01 05:17:25 +00:00
}
//Bounce off paddle
if (xb+1>=xPaddle && xb<=xPaddle+12 && yb+2>=63 && yb<=64)
{
dy = -dy;
dx = ((xb-(xPaddle+6))/3); //Applies spin on the ball
// prevent straight bounce
if (dx == 0)
{
dx = (random(0, 2) == 1) ? 1 : -1;
}
playTone(tonePaddle, toneTimeBeep);
2015-05-01 05:17:25 +00:00
}
//Bounce off Bricks
for (byte row = 0; row < rows; row++)
2015-05-01 05:17:25 +00:00
{
for (byte column = 0; column < columns; column++)
2015-05-01 05:17:25 +00:00
{
if (!isHit[row][column])
{
//Sets Brick bounds
leftBrick = 10 * column;
rightBrick = 10 * column + 10;
topBrick = 6 * row + 1;
bottomBrick = 6 * row + 7;
//If A collision has occurred
2015-05-01 05:17:25 +00:00
if (topBall <= bottomBrick && bottomBall >= topBrick &&
leftBall <= rightBrick && rightBall >= leftBrick)
{
Score();
brickCount++;
isHit[row][column] = true;
arduboy.drawRect(10*column, 2+6*row, 8, 4, BLACK);
2015-05-01 05:17:25 +00:00
//Vertical collision
if (bottomBall > bottomBrick || topBall < topBrick)
{
//Only bounce once each ball move
if(!bounced)
{
dy =- dy;
yb += dy;
bounced = true;
playTone(toneBrick, toneTimeBeep);
}
2015-05-01 05:17:25 +00:00
}
//Horizontal collision
2015-05-01 05:17:25 +00:00
if (leftBall < leftBrick || rightBall > rightBrick)
{
//Only bounce once brick each ball move
if(!bounced)
{
dx =- dx;
xb += dx;
bounced = true;
playTone(toneBrick, toneTimeBeep);
}
2015-05-01 05:17:25 +00:00
}
}
}
}
}
//Reset Bounce
bounced = false;
}
else
{
//Ball follows paddle
xb=xPaddle + 5;
//Release ball if FIRE pressed
pad3 = arduboy.pressed(A_BUTTON) || arduboy.pressed(B_BUTTON);
if (pad3 == true && oldpad3 == false)
{
released = true;
2015-05-01 05:17:25 +00:00
//Apply random direction to ball on release
if (random(0, 2) == 0)
{
dx = 1;
}
2015-05-01 05:17:25 +00:00
else
{
dx = -1;
}
//Makes sure the ball heads upwards
2015-05-01 05:17:25 +00:00
dy = -1;
}
oldpad3 = pad3;
2015-05-01 05:17:25 +00:00
}
}
void drawBall()
{
arduboy.drawPixel(xb, yb, BLACK);
arduboy.drawPixel(xb+1, yb, BLACK);
arduboy.drawPixel(xb, yb+1, BLACK);
arduboy.drawPixel(xb+1, yb+1, BLACK);
moveBall();
arduboy.drawPixel(xb, yb, WHITE);
arduboy.drawPixel(xb+1, yb, WHITE);
arduboy.drawPixel(xb, yb+1, WHITE);
arduboy.drawPixel(xb+1, yb+1, WHITE);
2015-05-01 05:17:25 +00:00
}
void drawPaddle()
{
arduboy.drawRect(xPaddle, 63, 11, 1, BLACK);
2015-05-01 05:17:25 +00:00
movePaddle();
arduboy.drawRect(xPaddle, 63, 11, 1, WHITE);
2015-05-01 05:17:25 +00:00
}
void drawGameOver()
{
arduboy.drawPixel(xb, yb, BLACK);
arduboy.drawPixel(xb+1, yb, BLACK);
arduboy.drawPixel(xb, yb+1, BLACK);
arduboy.drawPixel(xb+1, yb+1, BLACK);
arduboy.setCursor(37, 42);
arduboy.print("Game Over");
arduboy.setCursor(31, 56);
arduboy.print("Score: ");
arduboy.print(score);
arduboy.display();
arduboy.delayShort(4000);
2015-05-01 05:17:25 +00:00
}
void pause()
{
paused = true;
//Stop tone if playing
beep.noTone();
2015-05-01 05:17:25 +00:00
//Draw pause to the screen
arduboy.setCursor(52, 45);
arduboy.print("PAUSE");
arduboy.display();
2015-05-01 05:17:25 +00:00
while (paused)
{
arduboy.delayShort(150);
2015-05-01 05:17:25 +00:00
//Unpause if FIRE is pressed
pad2 = arduboy.pressed(A_BUTTON) || arduboy.pressed(B_BUTTON);
if (pad2 == true && oldpad2 == false && released)
2015-05-01 05:17:25 +00:00
{
arduboy.fillRect(52, 45, 30, 11, BLACK);
2015-05-01 05:17:25 +00:00
paused=false;
}
oldpad2 = pad2;
2015-05-01 05:17:25 +00:00
}
}
void Score()
{
score += (level*10);
}
void newLevel()
{
2015-05-01 05:17:25 +00:00
//Undraw paddle
arduboy.drawRect(xPaddle, 63, 11, 1, BLACK);
2015-05-01 05:17:25 +00:00
//Undraw ball
arduboy.drawPixel(xb, yb, BLACK);
arduboy.drawPixel(xb+1, yb, BLACK);
arduboy.drawPixel(xb, yb+1, BLACK);
arduboy.drawPixel(xb+1, yb+1, BLACK);
2015-05-01 05:17:25 +00:00
//Alter various variables to reset the game
xPaddle = 54;
yb = 60;
brickCount = 0;
released = false;
//Draws new bricks and resets their values
for (byte row = 0; row < 4; row++)
{
2015-05-01 05:17:25 +00:00
for (byte column = 0; column < 13; column++)
{
isHit[row][column] = false;
arduboy.drawRect(10*column, 2+6*row, 8, 4, WHITE);
2015-05-01 05:17:25 +00:00
}
}
if (!initialDraw)
{
arduboy.clear();
}
else
{
arduboy.display();
}
2015-05-01 05:17:25 +00:00
}
//Used to delay images while reading button input
boolean pollFireButton(int n)
{
for(int i = 0; i < n; i++)
{
arduboy.delayShort(15);
pad = arduboy.pressed(A_BUTTON) || arduboy.pressed(B_BUTTON);
if(pad == true && oldpad == false)
2015-05-01 05:17:25 +00:00
{
oldpad3 = true; //Forces pad loop 3 to run once
2015-05-01 05:17:25 +00:00
return true;
}
oldpad = pad;
}
return false;
}
//Function by nootropic design to display high scores
2015-05-01 05:17:25 +00:00
boolean displayHighScores(byte file)
{
byte y = 8;
2015-05-01 05:17:25 +00:00
byte x = 24;
// Each block of EEPROM has 7 high scores, and each high score entry
2015-05-01 05:17:25 +00:00
// is 5 bytes long: 3 bytes for initials and two bytes for score.
int address = file * 7 * 5 + EEPROM_STORAGE_SPACE_START;
2015-05-01 05:17:25 +00:00
byte hi, lo;
arduboy.clear();
arduboy.setCursor(32, 0);
arduboy.print("HIGH SCORES");
arduboy.display();
2015-05-01 05:17:25 +00:00
for(int i = 0; i < 7; i++)
2015-05-01 05:17:25 +00:00
{
sprintf(text_buffer, "%2d", i+1);
arduboy.setCursor(x, y+(i*8));
arduboy.print(text_buffer);
arduboy.display();
2015-05-01 05:17:25 +00:00
hi = EEPROM.read(address + (5*i));
lo = EEPROM.read(address + (5*i) + 1);
if ((hi == 0xFF) && (lo == 0xFF))
{
score = 0;
}
else
{
score = (hi << 8) | lo;
}
initials[0] = (char)EEPROM.read(address + (5*i) + 2);
initials[1] = (char)EEPROM.read(address + (5*i) + 3);
initials[2] = (char)EEPROM.read(address + (5*i) + 4);
if (score > 0)
{
sprintf(text_buffer, "%c%c%c %u", initials[0], initials[1], initials[2], score);
arduboy.setCursor(x + 24, y + (i*8));
arduboy.print(text_buffer);
arduboy.display();
2015-05-01 05:17:25 +00:00
}
}
if (pollFireButton(300))
2015-05-01 05:17:25 +00:00
{
return true;
}
return false;
arduboy.display();
2015-05-01 05:17:25 +00:00
}
boolean titleScreen()
{
//Clears the screen
arduboy.clear();
arduboy.setCursor(16, 22);
arduboy.setTextSize(2);
arduboy.print("BREAKOUT");
arduboy.setTextSize(1);
arduboy.display();
2015-05-01 05:17:25 +00:00
if (pollFireButton(25))
{
return true;
}
//Flash "Press FIRE" 5 times
for(byte i = 0; i < 5; i++)
{
//Draws "Press FIRE"
arduboy.setCursor(31, 53);
arduboy.print("PRESS FIRE!");
arduboy.display();
2015-05-01 05:17:25 +00:00
if (pollFireButton(50))
{
return true;
}
2015-05-01 05:17:25 +00:00
//Removes "Press FIRE"
arduboy.setCursor(31, 53);
arduboy.print(" ");
arduboy.display();
2015-05-01 05:17:25 +00:00
if (pollFireButton(25))
{
return true;
}
}
return false;
}
//Function by nootropic design to add high scores
void enterInitials()
{
byte index = 0;
2015-05-01 05:17:25 +00:00
arduboy.clear();
2015-05-01 05:17:25 +00:00
initials[0] = ' ';
initials[1] = ' ';
initials[2] = ' ';
while (true)
2015-05-01 05:17:25 +00:00
{
arduboy.display();
arduboy.clear();
2015-05-01 05:17:25 +00:00
arduboy.setCursor(16, 0);
arduboy.print("HIGH SCORE");
sprintf(text_buffer, "%u", score);
arduboy.setCursor(88, 0);
arduboy.print(text_buffer);
arduboy.setCursor(56, 20);
arduboy.print(initials[0]);
arduboy.setCursor(64, 20);
arduboy.print(initials[1]);
arduboy.setCursor(72, 20);
arduboy.print(initials[2]);
2015-05-01 05:17:25 +00:00
for(byte i = 0; i < 3; i++)
{
arduboy.drawLine(56 + (i*8), 27, 56 + (i*8) + 6, 27, WHITE);
2015-05-01 05:17:25 +00:00
}
arduboy.drawLine(56, 28, 88, 28, BLACK);
arduboy.drawLine(56 + (index*8), 28, 56 + (index*8) + 6, 28, WHITE);
arduboy.delayShort(70);
2015-05-01 05:17:25 +00:00
if (arduboy.pressed(LEFT_BUTTON) || arduboy.pressed(B_BUTTON))
2015-05-01 05:17:25 +00:00
{
if (index > 0)
2015-05-01 05:17:25 +00:00
{
index--;
playToneTimed(toneInitialsMove, toneTimeInitials);
2015-05-01 05:17:25 +00:00
}
}
if (arduboy.pressed(RIGHT_BUTTON))
2015-05-01 05:17:25 +00:00
{
if (index < 2)
2015-05-01 05:17:25 +00:00
{
index++;
playToneTimed(toneInitialsMove, toneTimeInitials);
2015-05-01 05:17:25 +00:00
}
}
if (arduboy.pressed(UP_BUTTON))
2015-05-01 05:17:25 +00:00
{
initials[index]++;
playToneTimed(toneInitialsChange, toneTimeInitials);
2015-05-01 05:17:25 +00:00
// A-Z 0-9 :-? !-/ ' '
if (initials[index] == '0')
{
initials[index] = ' ';
}
if (initials[index] == '!')
{
initials[index] = 'A';
}
if (initials[index] == '[')
{
initials[index] = '0';
}
if (initials[index] == '@')
{
initials[index] = '!';
}
}
if (arduboy.pressed(DOWN_BUTTON))
2015-05-01 05:17:25 +00:00
{
initials[index]--;
playToneTimed(toneInitialsChange, toneTimeInitials);
if (initials[index] == ' ')
{
2015-05-01 05:17:25 +00:00
initials[index] = '?';
}
if (initials[index] == '/')
{
2015-05-01 05:17:25 +00:00
initials[index] = 'Z';
}
if (initials[index] == 31)
{
2015-05-01 05:17:25 +00:00
initials[index] = '/';
}
if (initials[index] == '@')
{
2015-05-01 05:17:25 +00:00
initials[index] = ' ';
}
}
if (arduboy.pressed(A_BUTTON))
2015-05-01 05:17:25 +00:00
{
playToneTimed(toneInitialsMove, toneTimeInitials);
2015-05-01 05:17:25 +00:00
if (index < 2)
{
index++;
}
else
{
2015-05-01 05:17:25 +00:00
return;
}
}
}
}
void enterHighScore(byte file)
{
// Each block of EEPROM has 7 high scores, and each high score entry
2015-05-01 05:17:25 +00:00
// is 5 bytes long: 3 bytes for initials and two bytes for score.
int address = file * 7 * 5 + EEPROM_STORAGE_SPACE_START;
2015-05-01 05:17:25 +00:00
byte hi, lo;
char tmpInitials[3];
unsigned int tmpScore = 0;
// High score processing
for(byte i = 0; i < 7; i++)
2015-05-01 05:17:25 +00:00
{
hi = EEPROM.read(address + (5*i));
lo = EEPROM.read(address + (5*i) + 1);
if ((hi == 0xFF) && (lo == 0xFF))
{
// The values are uninitialized, so treat this entry
2015-05-01 05:17:25 +00:00
// as a score of 0.
tmpScore = 0;
}
else
2015-05-01 05:17:25 +00:00
{
tmpScore = (hi << 8) | lo;
}
if (score > tmpScore)
{
enterInitials();
for(byte j = i; j < 7; j++)
2015-05-01 05:17:25 +00:00
{
hi = EEPROM.read(address + (5*j));
lo = EEPROM.read(address + (5*j) + 1);
if ((hi == 0xFF) && (lo == 0xFF))
{
tmpScore = 0;
}
2015-05-01 05:17:25 +00:00
else
{
tmpScore = (hi << 8) | lo;
}
tmpInitials[0] = (char)EEPROM.read(address + (5*j) + 2);
tmpInitials[1] = (char)EEPROM.read(address + (5*j) + 3);
tmpInitials[2] = (char)EEPROM.read(address + (5*j) + 4);
// write score and initials to current slot
EEPROM.update(address + (5*j), ((score >> 8) & 0xFF));
EEPROM.update(address + (5*j) + 1, (score & 0xFF));
EEPROM.update(address + (5*j) + 2, initials[0]);
EEPROM.update(address + (5*j) + 3, initials[1]);
EEPROM.update(address + (5*j) + 4, initials[2]);
2015-05-01 05:17:25 +00:00
// tmpScore and tmpInitials now hold what we want to
//write in the next slot.
score = tmpScore;
initials[0] = tmpInitials[0];
initials[1] = tmpInitials[1];
initials[2] = tmpInitials[2];
}
score = 0;
initials[0] = ' ';
initials[1] = ' ';
initials[2] = ' ';
return;
}
}
}
// Play a tone at a frequency corresponding to the specified precomputed count,
// for the specified number of frames.
void playTone(uint16_t count, uint8_t frames)
{
beep.tone(count, frames);
}
// Play a tone at a frequency corresponding to the specified precomputed count,
// for the specified duration in milliseconds, using a delay.
// Used when beep.timer() isn't being called.
void playToneTimed(uint16_t count, uint16_t duration)
{
beep.tone(count);
arduboy.delayShort(duration);
beep.noTone();
}