portapack-mayhem/firmware/common/ui.hpp

275 lines
4.0 KiB
C++
Raw Normal View History

2015-07-08 15:39:24 +00:00
/*
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
*
* This file is part of PortaPack.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef __UI_H__
#define __UI_H__
#include <cstdint>
namespace ui {
using Coord = int16_t;
using Dim = int16_t;
struct Color {
uint16_t v;
constexpr Color(
) : v { 0 }
{
}
2016-02-08 05:52:36 +00:00
2015-07-08 15:39:24 +00:00
constexpr Color(
uint8_t r,
uint8_t g,
uint8_t b
) : v {
static_cast<uint16_t>(
((r & 0xf8) << 8)
| ((g & 0xfc) << 3)
| ((b & 0xf8) >> 3)
)}
{
}
static constexpr Color black() {
return { 0, 0, 0 };
}
static constexpr Color red() {
return { 255, 0, 0 };
}
static constexpr Color yellow() {
return { 255, 255, 0 };
}
static constexpr Color green() {
return { 0, 255, 0 };
}
static constexpr Color blue() {
return { 0, 0, 255 };
}
static constexpr Color white() {
return { 255, 255, 255 };
}
};
2016-02-08 05:52:36 +00:00
struct ColorRGB888 {
uint8_t r;
uint8_t g;
uint8_t b;
};
2015-07-08 15:39:24 +00:00
struct Point {
2016-11-28 18:39:10 +00:00
private:
Coord _x;
Coord _y;
2015-07-08 15:39:24 +00:00
2016-11-28 18:39:10 +00:00
public:
2015-07-08 15:39:24 +00:00
constexpr Point(
2016-11-28 18:39:10 +00:00
) : _x { 0 },
_y { 0 }
2015-07-08 15:39:24 +00:00
{
}
constexpr Point(
int x,
int y
2016-11-28 18:39:10 +00:00
) : _x { static_cast<Coord>(x) },
_y { static_cast<Coord>(y) }
2015-07-08 15:39:24 +00:00
{
}
2016-11-28 18:39:10 +00:00
constexpr int x() const {
return _x;
2015-07-08 15:39:24 +00:00
}
2016-11-28 18:39:10 +00:00
constexpr int y() const {
return _y;
2015-07-08 15:39:24 +00:00
}
2016-11-28 18:39:10 +00:00
constexpr Point operator-() const {
return { -_x, -_y };
}
constexpr Point operator+(const Point& p) const {
return { _x + p._x, _y + p._y };
}
constexpr Point operator-(const Point& p) const {
return { _x - p._x, _y - p._y };
2015-07-08 15:39:24 +00:00
}
Point& operator+=(const Point& p) {
2016-11-28 18:39:10 +00:00
_x += p._x;
_y += p._y;
return *this;
}
Point& operator-=(const Point& p) {
_x -= p._x;
_y -= p._y;
2015-07-08 15:39:24 +00:00
return *this;
}
};
struct Size {
2016-11-28 18:55:45 +00:00
private:
Dim _w;
Dim _h;
2015-07-08 15:39:24 +00:00
2016-11-28 18:55:45 +00:00
public:
2015-07-08 15:39:24 +00:00
constexpr Size(
2016-11-28 18:55:45 +00:00
) : _w { 0 },
_h { 0 }
2015-07-08 15:39:24 +00:00
{
}
constexpr Size(
int w,
int h
2016-11-28 18:55:45 +00:00
) : _w { static_cast<Dim>(w) },
_h { static_cast<Dim>(h) }
2015-07-08 15:39:24 +00:00
{
}
2016-11-28 18:55:45 +00:00
int width() const {
return _w;
}
int height() const {
return _h;
}
2015-07-08 15:39:24 +00:00
bool is_empty() const {
2016-11-28 18:55:45 +00:00
return (_w < 1) || (_h < 1);
2015-07-08 15:39:24 +00:00
}
};
struct Rect {
Point pos;
Size size;
constexpr Rect(
) : pos { },
size { }
{
}
constexpr Rect(
int x, int y,
int w, int h
2015-07-08 15:39:24 +00:00
) : pos { x, y },
size { w, h }
{
}
constexpr Rect(
Point pos,
Size size
) : pos(pos),
size(size)
{
}
int top() const {
2016-11-28 18:39:10 +00:00
return pos.y();
2015-07-08 15:39:24 +00:00
}
int bottom() const {
2016-11-28 18:55:45 +00:00
return pos.y() + size.height();
2015-07-08 15:39:24 +00:00
}
int left() const {
2016-11-28 18:39:10 +00:00
return pos.x();
2015-07-08 15:39:24 +00:00
}
int right() const {
2016-11-28 18:55:45 +00:00
return pos.x() + size.width();
2015-07-08 15:39:24 +00:00
}
int width() const {
2016-11-28 18:55:45 +00:00
return size.width();
2015-07-08 15:39:24 +00:00
}
int height() const {
2016-11-28 18:55:45 +00:00
return size.height();
2015-07-08 15:39:24 +00:00
}
Point center() const {
2016-11-28 18:55:45 +00:00
return { pos.x() + size.width() / 2, pos.y() + size.height() / 2 };
2015-07-08 15:39:24 +00:00
}
bool is_empty() const {
return size.is_empty();
}
bool contains(const Point p) const;
Rect intersect(const Rect& o) const;
Rect operator+(const Point& p) const {
return { pos + p, size };
}
Rect& operator+=(const Rect& p);
Rect& operator+=(const Point& p);
2016-11-28 18:39:10 +00:00
Rect& operator-=(const Point& p);
2015-07-08 15:39:24 +00:00
operator bool() const {
return !size.is_empty();
}
};
2016-02-03 21:23:23 +00:00
struct Bitmap {
const Size size;
const uint8_t* const data;
};
2015-07-08 15:39:24 +00:00
enum class KeyEvent {
/* Ordinals map to bit positions reported by CPLD */
Right = 0,
Left = 1,
Down = 2,
Up = 3,
Select = 4,
};
using EncoderEvent = int32_t;
struct TouchEvent {
enum class Type : uint32_t {
Start = 0,
Move = 1,
End = 2,
};
Point point;
Type type;
};
} /* namespace ui */
#endif/*__UI_H__*/