2015-07-08 11:39:24 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
2017-03-21 23:21:06 -04:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-07-08 11:39:24 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lcd_ili9341.hpp"
|
2017-03-21 23:21:06 -04:00
|
|
|
#include "bmp.hpp"
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
#include "portapack_io.hpp"
|
|
|
|
using namespace portapack;
|
|
|
|
|
|
|
|
#include "utility.hpp"
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
|
2020-08-27 11:07:48 -04:00
|
|
|
#include "file.hpp"
|
|
|
|
|
2015-08-22 23:08:38 -04:00
|
|
|
#include <complex>
|
|
|
|
|
2020-08-27 11:07:48 -04:00
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
namespace lcd {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void lcd_reset() {
|
|
|
|
io.lcd_reset_state(false);
|
|
|
|
chThdSleepMilliseconds(1);
|
|
|
|
io.lcd_reset_state(true);
|
|
|
|
chThdSleepMilliseconds(10);
|
|
|
|
io.lcd_reset_state(false);
|
|
|
|
chThdSleepMilliseconds(120);
|
|
|
|
}
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
void lcd_sleep_in() {
|
|
|
|
io.lcd_data_write_command_and_data(0x10, {});
|
2017-07-18 16:13:13 -04:00
|
|
|
// "It will be necessary to wait 5msec before sending next command,
|
|
|
|
// this is to allow time for the supply voltages and clock circuits
|
|
|
|
// to stabilize."
|
2016-01-31 03:34:24 -05:00
|
|
|
chThdSleepMilliseconds(5);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_sleep_out() {
|
|
|
|
io.lcd_data_write_command_and_data(0x11, {});
|
2017-07-18 16:13:13 -04:00
|
|
|
// "It will be necessary to wait 120msec after sending Sleep Out
|
|
|
|
// command (when in Sleep In Mode) before Sleep In command can be
|
|
|
|
// sent."
|
2016-01-31 03:34:24 -05:00
|
|
|
chThdSleepMilliseconds(120);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_display_on() {
|
|
|
|
io.lcd_data_write_command_and_data(0x29, {});
|
|
|
|
}
|
|
|
|
|
2017-07-18 16:13:13 -04:00
|
|
|
void lcd_display_off() {
|
|
|
|
io.lcd_data_write_command_and_data(0x28, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_sleep() {
|
|
|
|
lcd_display_off();
|
|
|
|
lcd_sleep_in();
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_wake() {
|
|
|
|
lcd_sleep_out();
|
|
|
|
lcd_display_on();
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void lcd_init() {
|
|
|
|
// LCDs are configured for IM[2:0] = 001
|
|
|
|
// 8080-I system, 16-bit parallel bus
|
|
|
|
|
|
|
|
//
|
|
|
|
// 0x3a: DBI[2:0] = 101
|
|
|
|
// MDT[1:0] = XX (if not in 18-bit mode, right?)
|
|
|
|
|
|
|
|
// Power control B
|
|
|
|
// 0
|
|
|
|
// PCEQ=1, DRV_ena=0, Power control=3
|
|
|
|
io.lcd_data_write_command_and_data(0xCF, { 0x00, 0xD9, 0x30 });
|
|
|
|
|
|
|
|
// Power on sequence control
|
|
|
|
io.lcd_data_write_command_and_data(0xED, { 0x64, 0x03, 0x12, 0x81 });
|
|
|
|
|
|
|
|
// Driver timing control A
|
|
|
|
io.lcd_data_write_command_and_data(0xE8, { 0x85, 0x10, 0x78 });
|
|
|
|
|
|
|
|
// Power control A
|
|
|
|
io.lcd_data_write_command_and_data(0xCB, { 0x39, 0x2C, 0x00, 0x34, 0x02 });
|
|
|
|
|
|
|
|
// Pump ratio control
|
|
|
|
io.lcd_data_write_command_and_data(0xF7, { 0x20 });
|
|
|
|
|
|
|
|
// Driver timing control B
|
|
|
|
io.lcd_data_write_command_and_data(0xEA, { 0x00, 0x00 });
|
|
|
|
|
|
|
|
io.lcd_data_write_command_and_data(0xB1, { 0x00, 0x1B });
|
|
|
|
|
|
|
|
// Blanking Porch Control
|
|
|
|
// VFP = 0b0000010 = 2 (number of HSYNC of vertical front porch)
|
|
|
|
// VBP = 0b0000010 = 2 (number of HSYNC of vertical back porch)
|
|
|
|
// HFP = 0b0001010 = 10 (number of DOTCLOCK of horizontal front porch)
|
|
|
|
// HBP = 0b0010100 = 20 (number of DOTCLOCK of horizontal back porch)
|
|
|
|
io.lcd_data_write_command_and_data(0xB5, { 0x02, 0x02, 0x0a, 0x14 });
|
|
|
|
|
|
|
|
// Display Function Control
|
|
|
|
// PT[1:0] = 0b10
|
|
|
|
// PTG[1:0] = 0b10
|
|
|
|
// ISC[3:0] = 0b0010 (scan cycle interval of gate driver: 5 frames)
|
|
|
|
// SM = 0 (gate driver pin arrangement in combination with GS)
|
|
|
|
// SS = 1 (source output scan direction S720 -> S1)
|
|
|
|
// GS = 0 (gate output scan direction G1 -> G320)
|
|
|
|
// REV = 1 (normally white)
|
|
|
|
// NL = 0b100111 (default)
|
|
|
|
// PCDIV = 0b000000 (default?)
|
|
|
|
io.lcd_data_write_command_and_data(0xB6, { 0x0A, 0xA2, 0x27, 0x00 });
|
|
|
|
|
|
|
|
// Power Control 1
|
|
|
|
//VRH[5:0]
|
|
|
|
io.lcd_data_write_command_and_data(0xC0, { 0x1B });
|
|
|
|
|
|
|
|
// Power Control 2
|
|
|
|
//SAP[2:0];BT[3:0]
|
|
|
|
io.lcd_data_write_command_and_data(0xC1, { 0x12 });
|
|
|
|
|
|
|
|
// VCOM Control 1
|
|
|
|
io.lcd_data_write_command_and_data(0xC5, { 0x32, 0x3C });
|
|
|
|
|
|
|
|
// VCOM Control 2
|
|
|
|
io.lcd_data_write_command_and_data(0xC7, { 0x9B });
|
|
|
|
|
|
|
|
// Memory Access Control
|
|
|
|
// Invert X and Y memory access order, so upper-left of
|
|
|
|
// screen is (0,0) when writing to display.
|
|
|
|
io.lcd_data_write_command_and_data(0x36, {
|
|
|
|
(1 << 7) | // MY=1
|
|
|
|
(1 << 6) | // MX=1
|
|
|
|
(0 << 5) | // MV=0
|
|
|
|
(1 << 4) | // ML=1: reverse vertical refresh to simplify scrolling logic
|
|
|
|
(1 << 3) // BGR=1: For Kingtech LCD, BGR filter.
|
|
|
|
});
|
|
|
|
|
|
|
|
// COLMOD: Pixel Format Set
|
|
|
|
// DPI=101 (16 bits/pixel), DBI=101 (16 bits/pixel)
|
|
|
|
io.lcd_data_write_command_and_data(0x3A, { 0x55 });
|
|
|
|
|
|
|
|
//io.lcd_data_write_command_and_data(0xF6, { 0x01, 0x30 });
|
|
|
|
// WEMODE=1 (reset column and page number on overflow)
|
|
|
|
// MDT[1:0]
|
|
|
|
// EPF[1:0]=00 (use channel MSB for LSB)
|
|
|
|
// RIM=0 (If COLMOD[6:4]=101 (65k color), 16-bit RGB interface (1 transfer/pixel))
|
|
|
|
// RM=0 (system interface/VSYNC interface)
|
|
|
|
// DM[1:0]=00 (internal clock operation)
|
|
|
|
// ENDIAN=0 (doesn't matter with 16-bit interface)
|
|
|
|
io.lcd_data_write_command_and_data(0xF6, { 0x01, 0x30, 0x00 });
|
|
|
|
|
|
|
|
// 3Gamma Function Disable
|
|
|
|
io.lcd_data_write_command_and_data(0xF2, { 0x00 });
|
|
|
|
|
|
|
|
// Gamma curve selected
|
|
|
|
io.lcd_data_write_command_and_data(0x26, { 0x01 });
|
|
|
|
|
|
|
|
// Set Gamma
|
|
|
|
io.lcd_data_write_command_and_data(0xE0, {
|
|
|
|
0x0F, 0x1D, 0x19, 0x0E, 0x10, 0x07, 0x4C, 0x63,
|
|
|
|
0x3F, 0x03, 0x0D, 0x00, 0x26, 0x24, 0x04
|
|
|
|
});
|
|
|
|
|
|
|
|
// Set Gamma
|
|
|
|
io.lcd_data_write_command_and_data(0xE1, {
|
|
|
|
0x00, 0x1C, 0x1F, 0x02, 0x0F, 0x03, 0x35, 0x25,
|
|
|
|
0x47, 0x04, 0x0C, 0x0B, 0x29, 0x2F, 0x05
|
|
|
|
});
|
|
|
|
|
2017-07-18 16:13:13 -04:00
|
|
|
lcd_wake();
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
// Turn on Tearing Effect Line (TE) output signal.
|
|
|
|
io.lcd_data_write_command_and_data(0x35, { 0b00000000 });
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_set(const uint_fast8_t command, const uint_fast16_t start, const uint_fast16_t end) {
|
|
|
|
io.lcd_data_write_command_and_data(command, {
|
|
|
|
static_cast<uint8_t>(start >> 8), static_cast<uint8_t>(start & 0xff),
|
|
|
|
static_cast<uint8_t>(end >> 8), static_cast<uint8_t>(end & 0xff)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_ramwr_start() {
|
|
|
|
io.lcd_data_write_command_and_data(0x2c, {});
|
|
|
|
}
|
|
|
|
|
2016-02-19 18:31:56 -05:00
|
|
|
void lcd_ramrd_start() {
|
|
|
|
io.lcd_data_write_command_and_data(0x2e, {});
|
|
|
|
io.lcd_read_word();
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void lcd_caset(const uint_fast16_t start_column, uint_fast16_t end_column) {
|
|
|
|
lcd_set(0x2a, start_column, end_column);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_paset(const uint_fast16_t start_page, const uint_fast16_t end_page) {
|
|
|
|
lcd_set(0x2b, start_page, end_page);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_start_ram_write(
|
|
|
|
const ui::Point p,
|
|
|
|
const ui::Size s
|
|
|
|
) {
|
2016-11-28 13:55:45 -05:00
|
|
|
lcd_caset(p.x(), p.x() + s.width() - 1);
|
|
|
|
lcd_paset(p.y(), p.y() + s.height() - 1);
|
2015-07-08 11:39:24 -04:00
|
|
|
lcd_ramwr_start();
|
|
|
|
}
|
|
|
|
|
2016-02-19 18:31:56 -05:00
|
|
|
void lcd_start_ram_read(
|
|
|
|
const ui::Point p,
|
|
|
|
const ui::Size s
|
|
|
|
) {
|
2016-11-28 13:55:45 -05:00
|
|
|
lcd_caset(p.x(), p.x() + s.width() - 1);
|
|
|
|
lcd_paset(p.y(), p.y() + s.height() - 1);
|
2016-02-19 18:31:56 -05:00
|
|
|
lcd_ramrd_start();
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void lcd_start_ram_write(
|
|
|
|
const ui::Rect& r
|
|
|
|
) {
|
2016-11-28 14:25:27 -05:00
|
|
|
lcd_start_ram_write(r.location(), r.size());
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
|
2016-02-19 18:31:56 -05:00
|
|
|
void lcd_start_ram_read(
|
|
|
|
const ui::Rect& r
|
|
|
|
) {
|
2016-11-28 14:25:27 -05:00
|
|
|
lcd_start_ram_read(r.location(), r.size());
|
2016-02-19 18:31:56 -05:00
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void lcd_vertical_scrolling_definition(
|
|
|
|
const uint_fast16_t top_fixed_area,
|
|
|
|
const uint_fast16_t vertical_scrolling_area,
|
|
|
|
const uint_fast16_t bottom_fixed_area
|
|
|
|
) {
|
|
|
|
io.lcd_data_write_command_and_data(0x33, {
|
|
|
|
static_cast<uint8_t>(top_fixed_area >> 8),
|
|
|
|
static_cast<uint8_t>(top_fixed_area & 0xff),
|
|
|
|
static_cast<uint8_t>(vertical_scrolling_area >> 8),
|
|
|
|
static_cast<uint8_t>(vertical_scrolling_area & 0xff),
|
|
|
|
static_cast<uint8_t>(bottom_fixed_area >> 8),
|
|
|
|
static_cast<uint8_t>(bottom_fixed_area & 0xff)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_vertical_scrolling_start_address(
|
|
|
|
const uint_fast16_t vertical_scrolling_pointer
|
|
|
|
) {
|
|
|
|
io.lcd_data_write_command_and_data(0x37, {
|
|
|
|
static_cast<uint8_t>(vertical_scrolling_pointer >> 8),
|
|
|
|
static_cast<uint8_t>(vertical_scrolling_pointer & 0xff)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ILI9341::init() {
|
|
|
|
lcd_reset();
|
|
|
|
lcd_init();
|
|
|
|
}
|
|
|
|
|
2015-08-01 17:36:27 -04:00
|
|
|
void ILI9341::shutdown() {
|
|
|
|
lcd_reset();
|
|
|
|
}
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
void ILI9341::sleep() {
|
2017-07-18 16:13:13 -04:00
|
|
|
lcd_sleep();
|
2016-01-31 03:34:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void ILI9341::wake() {
|
2017-07-18 16:13:13 -04:00
|
|
|
lcd_wake();
|
2016-01-31 03:34:24 -05:00
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void ILI9341::fill_rectangle(ui::Rect r, const ui::Color c) {
|
|
|
|
const auto r_clipped = r.intersect(screen_rect());
|
|
|
|
if( !r_clipped.is_empty() ) {
|
|
|
|
lcd_start_ram_write(r_clipped);
|
2016-11-28 14:25:27 -05:00
|
|
|
size_t count = r_clipped.width() * r_clipped.height();
|
2015-07-08 11:39:24 -04:00
|
|
|
io.lcd_write_pixels(c, count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-21 13:46:48 -04:00
|
|
|
void ILI9341::fill_rectangle_unrolled8(ui::Rect r, const ui::Color c) {
|
|
|
|
const auto r_clipped = r.intersect(screen_rect());
|
|
|
|
if( !r_clipped.is_empty() ) {
|
|
|
|
lcd_start_ram_write(r_clipped);
|
|
|
|
size_t count = r_clipped.width() * r_clipped.height();
|
|
|
|
io.lcd_write_pixels_unrolled8(c, count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
void ILI9341::render_line(const ui::Point p, const uint8_t count, const ui::Color* line_buffer) {
|
|
|
|
lcd_start_ram_write(p, { count, 1 });
|
|
|
|
io.lcd_write_pixels(line_buffer, count);
|
|
|
|
}
|
|
|
|
|
2016-01-29 18:28:05 -05:00
|
|
|
void ILI9341::render_box(const ui::Point p, const ui::Size s, const ui::Color* line_buffer) {
|
|
|
|
lcd_start_ram_write(p, s);
|
2017-01-15 22:45:44 -05:00
|
|
|
io.lcd_write_pixels(line_buffer, s.width() * s.height());
|
2016-01-29 18:28:05 -05:00
|
|
|
}
|
|
|
|
|
2016-08-01 14:06:17 -04:00
|
|
|
// RLE_4 BMP loader (delta not implemented)
|
2016-05-27 00:48:04 -04:00
|
|
|
void ILI9341::drawBMP(const ui::Point p, const uint8_t * bitmap, const bool transparency) {
|
2016-08-06 02:49:45 -04:00
|
|
|
const bmp_header_t * bmp_header = (const bmp_header_t *)bitmap;
|
2016-08-01 14:06:17 -04:00
|
|
|
uint32_t data_idx;
|
|
|
|
uint8_t by, c, count, transp_idx = 0;
|
|
|
|
ui::Color line_buffer[240];
|
2016-12-05 06:56:41 -05:00
|
|
|
uint16_t px = 0, py;
|
2016-01-03 01:24:30 -05:00
|
|
|
ui::Color palette[16];
|
|
|
|
|
2016-08-01 14:06:17 -04:00
|
|
|
// Abort if bad depth or no RLE
|
|
|
|
if ((bmp_header->bpp != 4) ||
|
|
|
|
(bmp_header->compression != 2)) return;
|
|
|
|
|
|
|
|
data_idx = bmp_header->image_data;
|
2016-08-06 02:49:45 -04:00
|
|
|
const bmp_palette_t * bmp_palette = (const bmp_palette_t *)&bitmap[bmp_header->BIH_size + 14];
|
2016-05-27 00:48:04 -04:00
|
|
|
|
2016-08-01 14:06:17 -04:00
|
|
|
// Convert palette and find pure magenta index (alpha color key)
|
|
|
|
for (c = 0; c < 16; c++) {
|
2016-08-06 02:49:45 -04:00
|
|
|
palette[c] = ui::Color(bmp_palette->color[c].R, bmp_palette->color[c].G, bmp_palette->color[c].B);
|
|
|
|
if ((bmp_palette->color[c].R == 0xFF) &&
|
|
|
|
(bmp_palette->color[c].G == 0x00) &&
|
|
|
|
(bmp_palette->color[c].B == 0xFF)) transp_idx = c;
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
if (!transparency) {
|
2016-08-01 14:06:17 -04:00
|
|
|
py = bmp_header->height + 16;
|
2016-05-27 00:48:04 -04:00
|
|
|
do {
|
2016-08-01 14:06:17 -04:00
|
|
|
by = bitmap[data_idx++];
|
2016-05-27 00:48:04 -04:00
|
|
|
if (by) {
|
2016-08-01 14:06:17 -04:00
|
|
|
count = by >> 1;
|
|
|
|
by = bitmap[data_idx++];
|
|
|
|
for (c = 0; c < count; c++) {
|
|
|
|
line_buffer[px++] = palette[by >> 4];
|
|
|
|
if (px < bmp_header->width) line_buffer[px++] = palette[by & 15];
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
2016-08-01 14:06:17 -04:00
|
|
|
if (data_idx & 1) data_idx++;
|
2016-05-27 00:48:04 -04:00
|
|
|
} else {
|
2016-08-01 14:06:17 -04:00
|
|
|
by = bitmap[data_idx++];
|
2016-05-27 00:48:04 -04:00
|
|
|
if (by == 0) {
|
2017-01-15 22:45:44 -05:00
|
|
|
render_line({p.x(), p.y() + py}, bmp_header->width, line_buffer);
|
2016-05-27 00:48:04 -04:00
|
|
|
py--;
|
|
|
|
px = 0;
|
|
|
|
} else if (by == 1) {
|
|
|
|
break;
|
|
|
|
} else if (by == 2) {
|
|
|
|
// Delta
|
|
|
|
} else {
|
2016-08-01 14:06:17 -04:00
|
|
|
count = by >> 1;
|
|
|
|
for (c = 0; c < count; c++) {
|
|
|
|
by = bitmap[data_idx++];
|
|
|
|
line_buffer[px++] = palette[by >> 4];
|
|
|
|
if (px < bmp_header->width) line_buffer[px++] = palette[by & 15];
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
2016-08-01 14:06:17 -04:00
|
|
|
if (data_idx & 1) data_idx++;
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
} while (1);
|
|
|
|
} else {
|
2016-08-01 14:06:17 -04:00
|
|
|
py = bmp_header->height;
|
2016-05-27 00:48:04 -04:00
|
|
|
do {
|
2016-08-01 14:06:17 -04:00
|
|
|
by = bitmap[data_idx++];
|
2016-05-27 00:48:04 -04:00
|
|
|
if (by) {
|
2016-08-01 14:06:17 -04:00
|
|
|
count = by >> 1;
|
|
|
|
by = bitmap[data_idx++];
|
|
|
|
for (c = 0; c < count; c++) {
|
2017-01-15 22:45:44 -05:00
|
|
|
if ((by >> 4) != transp_idx) draw_pixel({static_cast<ui::Coord>(p.x() + px), static_cast<ui::Coord>(p.y() + py)}, palette[by >> 4]);
|
2016-05-27 00:48:04 -04:00
|
|
|
px++;
|
2016-08-01 14:06:17 -04:00
|
|
|
if (px < bmp_header->width) {
|
2017-01-15 22:45:44 -05:00
|
|
|
if ((by & 15) != transp_idx) draw_pixel({static_cast<ui::Coord>(p.x() + px), static_cast<ui::Coord>(p.y() + py)}, palette[by & 15]);
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
|
|
|
px++;
|
|
|
|
}
|
2016-08-01 14:06:17 -04:00
|
|
|
if (data_idx & 1) data_idx++;
|
2016-05-27 00:48:04 -04:00
|
|
|
} else {
|
2016-08-01 14:06:17 -04:00
|
|
|
by = bitmap[data_idx++];
|
2016-05-27 00:48:04 -04:00
|
|
|
if (by == 0) {
|
|
|
|
py--;
|
|
|
|
px = 0;
|
|
|
|
} else if (by == 1) {
|
|
|
|
break;
|
|
|
|
} else if (by == 2) {
|
|
|
|
// Delta
|
|
|
|
} else {
|
2016-08-01 14:06:17 -04:00
|
|
|
count = by >> 1;
|
|
|
|
for (c = 0; c < count; c++) {
|
|
|
|
by = bitmap[data_idx++];
|
2017-01-15 22:45:44 -05:00
|
|
|
if ((by >> 4) != transp_idx) draw_pixel({static_cast<ui::Coord>(p.x() + px), static_cast<ui::Coord>(p.y() + py)}, palette[by >> 4]);
|
2016-05-27 00:48:04 -04:00
|
|
|
px++;
|
2016-08-01 14:06:17 -04:00
|
|
|
if (px < bmp_header->width) {
|
2017-01-15 22:45:44 -05:00
|
|
|
if ((by & 15) != transp_idx) draw_pixel({static_cast<ui::Coord>(p.x() + px), static_cast<ui::Coord>(p.y() + py)}, palette[by & 15]);
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
|
|
|
px++;
|
|
|
|
}
|
2016-08-01 14:06:17 -04:00
|
|
|
if (data_idx & 1) data_idx++;
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
}
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
|
2020-08-27 11:07:48 -04:00
|
|
|
/*
|
|
|
|
Read a RAW image from SD card. (Mainly for spash screen)
|
|
|
|
RAW image structure:
|
|
|
|
First 3 bytes: file header "RAW"
|
|
|
|
Byte 4: file type, 0: RGB565, 1: RGB, 2: RGBA (alpha ignored)
|
2020-08-27 12:21:09 -04:00
|
|
|
Byte 5-6: height
|
2020-08-27 11:07:48 -04:00
|
|
|
Byte 7-8: width
|
|
|
|
*/
|
|
|
|
bool ILI9341::drawRAW(const ui::Point p, const std::string file) {
|
|
|
|
File rawimage;
|
|
|
|
size_t file_pos = 0;
|
|
|
|
uint16_t pointer = 0;
|
2020-08-27 12:21:09 -04:00
|
|
|
uint16_t px = 0, py, width, height;
|
2020-08-27 11:07:48 -04:00
|
|
|
uint8_t type = 0;
|
|
|
|
char buffer[257];
|
|
|
|
ui::Color line_buffer[240];
|
|
|
|
|
|
|
|
auto result = rawimage.open(file);
|
|
|
|
if(result.is_valid())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
rawimage.seek(file_pos);
|
|
|
|
memset(buffer, 0, 3);
|
|
|
|
auto read_size = rawimage.read(buffer, 3);
|
|
|
|
buffer[3] = '\0';
|
|
|
|
if(strcmp(buffer, "RAW")) {
|
|
|
|
return false; // Not a generated RAW file
|
|
|
|
}
|
|
|
|
|
|
|
|
file_pos += 3;
|
|
|
|
|
|
|
|
rawimage.seek(file_pos);
|
|
|
|
memset(buffer, 0, 5);
|
|
|
|
read_size = rawimage.read(buffer, 5);
|
|
|
|
if (read_size.is_error())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
py = 0;
|
|
|
|
|
|
|
|
type = buffer[0]; // 0: RGB565, 1: RGB, 2: RGBA(Alpha ignored). Default to RGBA.
|
|
|
|
|
2020-08-27 12:21:09 -04:00
|
|
|
height = (uint16_t)buffer[1] + ((uint16_t)buffer[2] << 8);
|
2020-08-27 11:07:48 -04:00
|
|
|
width = (uint16_t)buffer[3] + ((uint16_t)buffer[4] << 8);
|
|
|
|
|
|
|
|
py += 16;
|
|
|
|
|
|
|
|
file_pos += 5;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
while(px < width) {
|
|
|
|
rawimage.seek(file_pos);
|
|
|
|
|
|
|
|
memset(buffer, 0, 257);
|
|
|
|
read_size = rawimage.read(buffer, 256);
|
|
|
|
if (read_size.is_error())
|
|
|
|
return false; // Read error
|
|
|
|
|
|
|
|
pointer = 0;
|
|
|
|
while(pointer < 256) {
|
|
|
|
switch(type) {
|
|
|
|
case 0:
|
2020-08-27 12:21:09 -04:00
|
|
|
line_buffer[px] = ui::Color((uint16_t)buffer[pointer] + ((uint16_t)buffer[pointer + 1] << 8));
|
2020-08-27 11:07:48 -04:00
|
|
|
pointer += 2;
|
|
|
|
file_pos += 2;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
line_buffer[px] = ui::Color(buffer[pointer], buffer[pointer + 1], buffer[pointer + 2]);
|
|
|
|
pointer += 3;
|
|
|
|
file_pos += 3;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
default:
|
|
|
|
line_buffer[px] = ui::Color(buffer[pointer], buffer[pointer + 1], buffer[pointer + 2]);
|
|
|
|
pointer += 4;
|
|
|
|
file_pos += 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
px++;
|
|
|
|
if(px >= width) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(read_size.value() != 256)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
render_line({ p.x(), p.y() + py }, px, line_buffer);
|
|
|
|
px = 0;
|
|
|
|
py++;
|
|
|
|
|
2020-08-27 12:21:09 -04:00
|
|
|
if(read_size.value() < 256 || py > height + 16)
|
2020-08-27 11:07:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-22 23:08:38 -04:00
|
|
|
void ILI9341::draw_line(const ui::Point start, const ui::Point end, const ui::Color color) {
|
2017-01-15 22:45:44 -05:00
|
|
|
int x0 = start.x();
|
|
|
|
int y0 = start.y();
|
|
|
|
int x1 = end.x();
|
|
|
|
int y1 = end.y();
|
2015-08-22 23:08:38 -04:00
|
|
|
|
|
|
|
int dx = std::abs(x1-x0), sx = x0<x1 ? 1 : -1;
|
|
|
|
int dy = std::abs(y1-y0), sy = y0<y1 ? 1 : -1;
|
|
|
|
int err = (dx>dy ? dx : -dy)/2, e2;
|
|
|
|
|
|
|
|
for(;;){
|
|
|
|
draw_pixel({static_cast<ui::Coord>(x0), static_cast<ui::Coord>(y0)}, color);
|
|
|
|
if (x0==x1 && y0==y1) break;
|
|
|
|
e2 = err;
|
|
|
|
if (e2 >-dx) { err -= dy; x0 += sx; }
|
|
|
|
if (e2 < dy) { err += dx; y0 += sy; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void ILI9341::fill_circle(
|
|
|
|
const ui::Point center,
|
|
|
|
const ui::Dim radius,
|
|
|
|
const ui::Color foreground,
|
|
|
|
const ui::Color background
|
|
|
|
) {
|
|
|
|
const uint32_t radius2 = radius * radius;
|
|
|
|
for(int32_t y=-radius; y<radius; y++) {
|
|
|
|
const int32_t y2 = y * y;
|
|
|
|
for(int32_t x=-radius; x<radius; x++) {
|
|
|
|
const int32_t x2 = x * x;
|
|
|
|
const uint32_t d2 = x2 + y2;
|
|
|
|
const bool inside = d2 < radius2;
|
|
|
|
const auto color = inside ? foreground : background;
|
2016-11-29 13:13:56 -05:00
|
|
|
draw_pixel({ x + center.x(), y + center.y() }, color);
|
2015-07-08 11:39:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ILI9341::draw_pixel(
|
|
|
|
const ui::Point p,
|
|
|
|
const ui::Color color
|
|
|
|
) {
|
|
|
|
if( screen_rect().contains(p) ) {
|
|
|
|
lcd_start_ram_write(p, { 1, 1 });
|
|
|
|
io.lcd_write_pixel(color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ILI9341::draw_pixels(
|
|
|
|
const ui::Rect r,
|
|
|
|
const ui::Color* const colors,
|
|
|
|
const size_t count
|
|
|
|
) {
|
|
|
|
/* TODO: Assert that rectangle width x height < count */
|
2016-11-28 14:25:27 -05:00
|
|
|
lcd_start_ram_write(r);
|
2015-07-08 11:39:24 -04:00
|
|
|
io.lcd_write_pixels(colors, count);
|
|
|
|
}
|
|
|
|
|
2016-02-19 18:31:56 -05:00
|
|
|
void ILI9341::read_pixels(
|
|
|
|
const ui::Rect r,
|
|
|
|
ui::ColorRGB888* const colors,
|
|
|
|
const size_t count
|
|
|
|
) {
|
|
|
|
/* TODO: Assert that rectangle width x height < count */
|
|
|
|
lcd_start_ram_read(r);
|
|
|
|
io.lcd_read_bytes(
|
|
|
|
reinterpret_cast<uint8_t*>(colors),
|
|
|
|
count * sizeof(ui::ColorRGB888)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-03 13:33:54 -05:00
|
|
|
void ILI9341::draw_bitmap(
|
2015-07-08 11:39:24 -04:00
|
|
|
const ui::Point p,
|
2016-02-03 13:33:54 -05:00
|
|
|
const ui::Size size,
|
|
|
|
const uint8_t* const pixels,
|
2015-07-08 11:39:24 -04:00
|
|
|
const ui::Color foreground,
|
|
|
|
const ui::Color background
|
|
|
|
) {
|
2016-02-03 13:33:54 -05:00
|
|
|
lcd_start_ram_write(p, size);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-11-28 13:55:45 -05:00
|
|
|
const size_t count = size.width() * size.height();
|
2015-07-08 11:39:24 -04:00
|
|
|
for(size_t i=0; i<count; i++) {
|
|
|
|
const auto pixel = pixels[i >> 3] & (1U << (i & 0x7));
|
|
|
|
io.lcd_write_pixel(pixel ? foreground : background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-03 13:33:54 -05:00
|
|
|
void ILI9341::draw_glyph(
|
|
|
|
const ui::Point p,
|
|
|
|
const ui::Glyph& glyph,
|
|
|
|
const ui::Color foreground,
|
|
|
|
const ui::Color background
|
|
|
|
) {
|
|
|
|
draw_bitmap(p, glyph.size(), glyph.pixels(), foreground, background);
|
|
|
|
}
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
void ILI9341::scroll_set_area(
|
|
|
|
const ui::Coord top_y,
|
|
|
|
const ui::Coord bottom_y
|
|
|
|
) {
|
|
|
|
scroll_state.top_area = top_y;
|
|
|
|
scroll_state.bottom_area = height() - bottom_y;
|
|
|
|
scroll_state.height = bottom_y - top_y;
|
|
|
|
lcd_vertical_scrolling_definition(scroll_state.top_area, scroll_state.height, scroll_state.bottom_area);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::Coord ILI9341::scroll_set_position(
|
|
|
|
const ui::Coord position
|
|
|
|
) {
|
|
|
|
scroll_state.current_position = position % scroll_state.height;
|
|
|
|
const uint_fast16_t address = scroll_state.top_area + scroll_state.current_position;
|
|
|
|
lcd_vertical_scrolling_start_address(address);
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::Coord ILI9341::scroll(const int32_t delta) {
|
|
|
|
return scroll_set_position(scroll_state.current_position + scroll_state.height - delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::Coord ILI9341::scroll_area_y(const ui::Coord y) const {
|
|
|
|
const auto wrapped_y = (scroll_state.current_position + y) % scroll_state.height;
|
|
|
|
return wrapped_y + scroll_state.top_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ILI9341::scroll_disable() {
|
|
|
|
lcd_vertical_scrolling_definition(0, height(), 0);
|
|
|
|
lcd_vertical_scrolling_start_address(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace lcd */
|