Arduboy2/src/Arduboy2.h

366 lines
11 KiB
C
Raw Normal View History

#ifndef ARDUBOY2_H
#define ARDUBOY2_H
#include <Arduino.h>
#include "Arduboy2Core.h"
#include "Sprites.h"
#include <Print.h>
#include <limits.h>
2016-03-01 21:19:27 +00:00
// Library version.
// For a version number in the form of x.y.z the value of the define will be
// ((x * 10000) + (y * 100) + (z)) as a decimal number.
// So, it will read as xxxyyzz, with no leading zeros on x.
#define ARDUBOY_LIB_VER 30000
2016-03-01 21:19:27 +00:00
// EEPROM settings
#define EEPROM_VERSION 0
#define EEPROM_BRIGHTNESS 1
#define EEPROM_AUDIO_ON_OFF 2
// we reserve the first 16 byte of EEPROM for system use
#define EEPROM_STORAGE_SPACE_START 16 // and onward
// eeprom settings above are neded for audio
#include "Arduboy2Audio.h"
#define PIXEL_SAFE_MODE
// pixel colors
#define INVERT 2 //< lit/unlit pixel
#define WHITE 1 //< lit pixel
#define BLACK 0 //< unlit pixel
// compare Vcc to 1.1 bandgap
#define ADC_VOLTAGE (_BV(REFS0) | _BV(MUX4) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1))
// compare temperature to 2.5 internal reference and _BV(MUX5)
#define ADC_TEMP (_BV(REFS0) | _BV(REFS1) | _BV(MUX2) | _BV(MUX1) | _BV(MUX0))
/// Rectangle for collision functions
struct Rect
{
int16_t x;
int16_t y;
uint8_t width;
uint8_t height;
};
/// Point for collision functions
struct Point
{
int16_t x;
int16_t y;
};
//==================================
//========== Arduboy2Base ==========
//==================================
class Arduboy2Base : public Arduboy2Core
{
friend class Sprites;
public:
Arduboy2Base();
Arduboy2Audio audio;
/// Initialize hardware, boot logo, boot utilities, etc.
/**
* To free up some code space for use by the sketch, you can use "boot()"
* instead of "begin()" to eliminate some of the some of the things that
* aren't really required, such as displaying the boot logo.
*
* Look at the source for "begin()" and after calling "boot()" call
* whatever functions "begin()" does that you still want to keep.
* If your sketch uses the speaker, it's probably a good idea to at least
* call "audio.begin()".
*/
void begin();
2016-02-20 19:43:36 +00:00
/// Flashlight mode
/**
* Turn the RGB LED and screen fully on. Called in the begin() function.
*
* Hold the UP button when booting to enable. Press the DOWN button to exit
* or simply turn off your Arduboy. It goes into a tight loop until the
* DOWN button is pressed.
2016-02-20 19:43:36 +00:00
*/
void flashlight();
/// Handle buttons held on startup for system control
/**
* Hold the B button when booting to enter system control mode.
* The B button must be held continuously to remain in this mode.
* Pressing other buttons will perform system control functions:
*
* UP: Set "sound enabled" in EEPROM
* DOWN: Set "sound disabled" (mute) in EEPROM
*/
void systemButtons();
/// Scrolls in the Arduboy logo
void bootLogo();
/// Clears display.
void clear();
/// Copies the contents of the screen buffer to the screen.
/**
* X and Y positions on the display are from the top left corner, thus a Y of 64
* is the bottom of the screen and an X of 128 is the right side of the screen.
* "Color" or "value" means choosing whether a pixel is lit or not - if color is
* 0, the pixel is off (black), if color is 1, the pixel is on (white).
*/
void display();
/// Sets a single pixel on the screen buffer to white or black.
void drawPixel(int16_t x, int16_t y, uint8_t color = WHITE);
/// Returns the state of the given pixel in the screen buffer.
/**
* Return value will be 1 if the pixel is on (white) or 0 if the pixel is off (black).
*/
uint8_t getPixel(uint8_t x, uint8_t y);
/// Draw a circle of a defined radius.
/**
* Draws a circle in white or black. X and Y are the center point of the circle.
*/
void drawCircle(int16_t x0, int16_t y0, uint8_t r, uint8_t color = WHITE);
/// Draws one or more "corners" of a circle.
void drawCircleHelper(int16_t x0, int16_t y0, uint8_t r, uint8_t cornername, uint8_t color = WHITE);
/// Draws a filled-in circle.
void fillCircle(int16_t x0, int16_t y0, uint8_t r, uint8_t color = WHITE);
/// Draws one or both vertical halves of a filled-in circle.
void fillCircleHelper(int16_t x0, int16_t y0, uint8_t r, uint8_t cornername, int16_t delta, uint8_t color = WHITE);
/// Draws a line between two points.
/**
* Uses Bresenham's algorithm.
*/
void drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint8_t color = WHITE);
/// Draws a rectangle of a width and height.
void drawRect(int16_t x, int16_t y, uint8_t w, uint8_t h, uint8_t color = WHITE);
/// Draws vertical line.
void drawFastVLine(int16_t x, int16_t y, uint8_t h, uint8_t color = WHITE);
/// Draws a horizontal line.
void drawFastHLine(int16_t x, int16_t y, uint8_t w, uint8_t color = WHITE);
/// Draws a filled-in rectangle.
void fillRect(int16_t x, int16_t y, uint8_t w, uint8_t h, uint8_t color = WHITE);
/// Fills the screen buffer with white or black.
void fillScreen(uint8_t color = WHITE);
/// Draws a rectangle with rounded edges.
void drawRoundRect(int16_t x, int16_t y, uint8_t w, uint8_t h, uint8_t r, uint8_t color = WHITE);
/// Draws a filled-in rectangle with rounded edges.
void fillRoundRect(int16_t x, int16_t y, uint8_t w, uint8_t h, uint8_t r, uint8_t color = WHITE);
/// Draws the outline of a triangle.
void drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint8_t color = WHITE);
/// Draws a filled-in triangle.
void fillTriangle (int16_t x0, int16_t y0, int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint8_t color = WHITE);
/// Draws a bitmap from program memory to a specific X/Y
void drawBitmap(int16_t x, int16_t y, const uint8_t *bitmap, uint8_t w, uint8_t h, uint8_t color = WHITE);
/// Draws images that are bit-oriented horizontally.
/**
* This requires a lot of additional CPU power and will draw images slower
* than drawBitmap, where the images are stored in a format that
* allows them to be directly written to the screen. It is
* recommended you use drawBitmap when possible.
*/
void drawSlowXYBitmap(int16_t x, int16_t y, const uint8_t *bitmap, uint8_t w, uint8_t h, uint8_t color = WHITE);
/// Draw a compressed bitmap
/**
* Draws a bitmap starting at the given coordinates that has been compressed
* using an algorthm implemented by Team A.R.G.
* For more information see:
* https://github.com/TEAMarg/drawCompressed
* https://github.com/TEAMarg/Cabi
*/
void drawCompressed(int16_t sx, int16_t sy, const uint8_t *bitmap, uint8_t color = WHITE);
/// Get a pointer to the display buffer.
unsigned char* getBuffer();
/// Seeds the random number generator with entropy from the temperature, voltage reading, and microseconds since boot.
/**
* This method is still most effective when called semi-randomly such
* as after a user hits a button to start a game or other semi-random
* events
*/
void initRandomSeed();
/// Swap the references of two pointers.
void swap(int16_t& a, int16_t& b);
/// Sets the frame rate in frames per second.
void setFrameRate(uint8_t rate);
/// Returns "true" if it's time for the next frame.
bool nextFrame();
/// Returns "true" if the current frame number is evenly divisible by the specified number.
/**
* If called with the same value each time, will return "true" if the given
* number of frames has elapsed since the last frame in which it was "true".
*/
bool everyXFrames(uint8_t frames);
2016-02-20 19:43:14 +00:00
/// Returns the load on the CPU as a percentage.
/**
* This is based on how much of the time your app is spending rendering
* frames. This number can be higher than 100 if your app is rendering
* really slowly.
*/
int cpuLoad();
2016-02-20 19:43:14 +00:00
/// useful for getting raw approximate voltage values
uint16_t rawADC(uint8_t adc_bits);
/// Test if the specified buttons are pressed
/**
* Returns "true" if all the buttons in the provided mask are currently pressed.
* (Can be a single button)
* E.g. `if (pressed(LEFT_BUTTON + A_BUTTON))`
*/
bool pressed(uint8_t buttons);
/// Test if the specified buttons are not pressed
/**
* Returns "true" if all the buttons in the provided mask are currently released.
* (Can be a single button)
* E.g. `if (notPressed(LEFT_BUTTON))`
*/
bool notPressed(uint8_t buttons);
/// Poll the hardware buttons and track state over time.
/**
* Should be called either in the main `loop()` or as part of the
* frame system at the start of rendering a frame.
*
* The `justPressed()` and `justReleased()` functions rely on this function.
*/
void pollButtons();
/// Check if a button has just been pressed
/**
* Will return "true" if the given button was pressed between the latest
* call to `pollButtons()` and previous call to `pollButtons()`.
* If the button has been held down over multiple polls this function will
* return "false". This function should only be used to test a single button.
*/
bool justPressed(uint8_t button);
/// Check if a button has just been released
/**
* Will return "true" if the given button was released between the latest
* call to `pollButtons()` and previous call to `pollButtons()`.
* If the button has been released over multiple polls this function will
* return "false". This function should only be used to test a single button.
*/
bool justReleased(uint8_t button);
/// Test if a point is within a rectangle
/**
* Returns "true" if the point is within the rectangle.
*/
bool collide(Point point, Rect rect);
/// Test if a rectangle is intersecting with another rectangle.
/**
* Returns "true" if the first rectangle is intersecting the second.
*/
bool collide(Rect rect1, Rect rect2);
protected:
// helper function for sound enable/disable system control
void sysCtrlSound(uint8_t buttons, uint8_t led, uint8_t eeVal);
// Screen buffer
static uint8_t sBuffer[(HEIGHT*WIDTH)/8];
// For button handling
uint8_t currentButtonState;
uint8_t previousButtonState;
// For frame funcions
uint16_t frameCount;
uint8_t eachFrameMillis;
unsigned long lastFrameStart;
unsigned long nextFrameStart;
bool post_render;
uint8_t lastFrameDurationMs;
};
//==============================
//========== Arduboy2 ==========
//==============================
class Arduboy2 : public Print, public Arduboy2Base
{
public:
Arduboy2();
/// Writes a single ASCII character to the screen.
virtual size_t write(uint8_t);
/// Draws an ASCII character at a point.
void drawChar(int16_t x, int16_t y, unsigned char c, uint8_t color, uint8_t bg, uint8_t size);
/// Sets the location of the text cursor.
void setCursor(int16_t x, int16_t y);
/// Get the text cursor X position
uint16_t getCursorX();
/// Get the text cursor Y position
uint16_t getCursorY();
/// Sets the text foreground color
void setTextColor(uint8_t color);
/// Sets the text background color
void setTextBackground(uint8_t bg);
/// Set the text size
/**
* Individual ASCII characters are 6x8 pixels
* (5x7 with spacing on two edges). The size is a pixel multiplier,
* so a size of 2 means each character will be 12x16, etc.
*/
void setTextSize(uint8_t s);
/// Sets whether text will wrap at screen edges.
void setTextWrap(bool w);
/// Clears the display and sets the cursor to 0, 0
void clear();
protected:
int16_t cursor_x;
int16_t cursor_y;
uint8_t textColor;
uint8_t textBackground;
uint8_t textSize;
bool textWrap;
};
#endif