2005-11-07 23:07:19 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Dave Chapman
|
2011-03-08 17:11:56 +00:00
|
|
|
* Copyright (C) 2009 by Karl Kurbjun
|
2005-11-07 23:07:19 +00:00
|
|
|
*
|
|
|
|
* Rockbox driver for 16-bit colour LCDs
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-11-07 23:07:19 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2011-03-08 17:11:56 +00:00
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include <stdlib.h>
|
2010-08-12 13:55:01 +00:00
|
|
|
#include "string-extra.h" /* mem*() */
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "file.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "font.h"
|
2005-12-06 13:27:15 +00:00
|
|
|
#include "rbunicode.h"
|
2005-11-07 23:07:19 +00:00
|
|
|
#include "bidi.h"
|
2007-07-28 08:12:05 +00:00
|
|
|
#include "scroll_engine.h"
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2020-10-31 04:18:57 +00:00
|
|
|
// #define LOGF_ENABLE
|
|
|
|
#include "logf.h"
|
|
|
|
|
2020-10-07 06:01:35 +00:00
|
|
|
#define ROW_INC lcd_current_viewport->buffer->stride
|
2011-12-03 22:19:17 +00:00
|
|
|
#define COL_INC 1
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2014-06-15 16:26:44 +00:00
|
|
|
extern lcd_fastpixelfunc_type* const lcd_fastpixelfuncs_backdrop[];
|
|
|
|
extern lcd_fastpixelfunc_type* const lcd_fastpixelfuncs_bgcolor[];
|
|
|
|
|
|
|
|
static void ICODE_ATTR lcd_alpha_bitmap_part_mix(const fb_data* image,
|
|
|
|
const unsigned char *src, int src_x,
|
|
|
|
int src_y, int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int stride_image, int stride_src);
|
|
|
|
|
|
|
|
#include "lcd-color-common.c"
|
2011-12-03 22:19:17 +00:00
|
|
|
#include "lcd-bitmap-common.c"
|
2014-06-15 16:26:44 +00:00
|
|
|
#include "lcd-16bit-common.c"
|
2006-02-03 21:11:51 +00:00
|
|
|
|
2005-11-07 23:07:19 +00:00
|
|
|
/*** drawing functions ***/
|
|
|
|
|
|
|
|
/* Draw a horizontal line (optimised) */
|
|
|
|
void lcd_hline(int x1, int x2, int y)
|
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
struct viewport *vp = lcd_current_viewport;
|
2022-09-26 07:37:00 +00:00
|
|
|
int width;
|
2006-02-22 01:28:19 +00:00
|
|
|
unsigned bits = 0;
|
|
|
|
enum fill_opt fillopt = OPT_NONE;
|
2005-11-28 10:05:45 +00:00
|
|
|
fb_data *dst, *dst_end;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2022-10-01 23:54:31 +00:00
|
|
|
if (!clip_viewport_hline(vp, &x1, &x2, &y))
|
2007-01-04 11:43:33 +00:00
|
|
|
return;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2009-11-07 18:38:46 +00:00
|
|
|
width = x2 - x1 + 1;
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
/* drawmode and optimisation */
|
2022-10-01 23:54:11 +00:00
|
|
|
if (vp->drawmode & DRMODE_INVERSEVID)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
if (vp->drawmode & DRMODE_BG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
if (!lcd_backdrop)
|
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2022-10-01 23:54:11 +00:00
|
|
|
bits = vp->bg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fillopt = OPT_COPY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
if (vp->drawmode & DRMODE_FG)
|
2006-02-22 01:28:19 +00:00
|
|
|
{
|
|
|
|
fillopt = OPT_SET;
|
2022-10-01 23:54:11 +00:00
|
|
|
bits = vp->fg_pattern;
|
2006-02-22 01:28:19 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-01 23:54:11 +00:00
|
|
|
if (fillopt == OPT_NONE && vp->drawmode != DRMODE_COMPLEMENT)
|
2009-03-08 17:22:17 +00:00
|
|
|
return;
|
|
|
|
|
2012-02-22 10:18:05 +00:00
|
|
|
dst = FBADDR(x1, y);
|
2007-01-04 11:43:33 +00:00
|
|
|
|
2006-02-22 01:28:19 +00:00
|
|
|
switch (fillopt)
|
|
|
|
{
|
|
|
|
case OPT_SET:
|
|
|
|
memset16(dst, bits, width);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPT_COPY:
|
2017-01-15 23:10:38 +00:00
|
|
|
memcpy(dst, PTR_ADD(dst, lcd_backdrop_offset),
|
2006-02-22 01:28:19 +00:00
|
|
|
width * sizeof(fb_data));
|
|
|
|
break;
|
|
|
|
|
2009-03-08 17:22:17 +00:00
|
|
|
case OPT_NONE: /* DRMODE_COMPLEMENT */
|
2006-02-22 01:28:19 +00:00
|
|
|
dst_end = dst + width;
|
|
|
|
do
|
2009-03-08 17:22:17 +00:00
|
|
|
*dst = ~(*dst);
|
|
|
|
while (++dst < dst_end);
|
2006-02-22 01:28:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw a vertical line (optimised) */
|
|
|
|
void lcd_vline(int x, int y1, int y2)
|
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
struct viewport *vp = lcd_current_viewport;
|
2005-11-28 10:05:45 +00:00
|
|
|
fb_data *dst, *dst_end;
|
2020-10-07 06:01:35 +00:00
|
|
|
int stride_dst;
|
2022-10-01 23:54:11 +00:00
|
|
|
lcd_fastpixelfunc_type *pfunc = lcd_fastpixelfuncs[vp->drawmode];
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2022-10-01 23:54:31 +00:00
|
|
|
if (!clip_viewport_vline(vp, &x, &y1, &y2))
|
2007-01-04 11:43:33 +00:00
|
|
|
return;
|
|
|
|
|
2022-09-26 07:37:00 +00:00
|
|
|
dst = FBADDR(x, y1);
|
2022-10-01 23:54:11 +00:00
|
|
|
stride_dst = vp->buffer->stride;
|
2020-10-07 06:01:35 +00:00
|
|
|
dst_end = dst + (y2 - y1) * stride_dst;
|
2005-11-07 23:07:19 +00:00
|
|
|
|
2005-11-14 20:48:34 +00:00
|
|
|
do
|
2005-11-28 10:05:45 +00:00
|
|
|
{
|
|
|
|
pfunc(dst);
|
2020-10-07 06:01:35 +00:00
|
|
|
dst += stride_dst;
|
2005-11-28 10:05:45 +00:00
|
|
|
}
|
|
|
|
while (dst <= dst_end);
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw a partial native bitmap */
|
2008-04-12 07:53:33 +00:00
|
|
|
void ICODE_ATTR lcd_bitmap_part(const fb_data *src, int src_x, int src_y,
|
|
|
|
int stride, int x, int y, int width,
|
|
|
|
int height)
|
2005-11-07 23:07:19 +00:00
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
struct viewport *vp = lcd_current_viewport;
|
2009-10-26 01:35:31 +00:00
|
|
|
fb_data *dst;
|
2020-10-07 06:01:35 +00:00
|
|
|
int stride_dst;
|
2005-11-16 01:41:46 +00:00
|
|
|
|
2022-10-01 23:54:31 +00:00
|
|
|
if (!clip_viewport_rect(vp, &x, &y, &width, &height, &src_x, &src_y))
|
2009-11-07 18:38:46 +00:00
|
|
|
return;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2005-11-16 01:41:46 +00:00
|
|
|
src += stride * src_y + src_x; /* move starting point */
|
2012-02-22 10:18:05 +00:00
|
|
|
dst = FBADDR(x, y);
|
2022-10-01 23:54:11 +00:00
|
|
|
stride_dst = vp->buffer->stride;
|
2005-11-16 01:41:46 +00:00
|
|
|
|
2005-11-28 10:05:45 +00:00
|
|
|
do
|
2005-11-16 01:41:46 +00:00
|
|
|
{
|
2005-11-28 10:05:45 +00:00
|
|
|
memcpy(dst, src, width * sizeof(fb_data));
|
2005-11-16 01:41:46 +00:00
|
|
|
src += stride;
|
2020-10-07 06:01:35 +00:00
|
|
|
dst += stride_dst;
|
2005-11-16 01:41:46 +00:00
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (--height > 0);
|
2005-11-07 23:07:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-26 01:35:31 +00:00
|
|
|
/* Draw a partial native bitmap with transparency and foreground colors */
|
2008-04-12 07:53:33 +00:00
|
|
|
void ICODE_ATTR lcd_bitmap_transparent_part(const fb_data *src, int src_x,
|
|
|
|
int src_y, int stride, int x,
|
|
|
|
int y, int width, int height)
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
2022-10-01 23:54:11 +00:00
|
|
|
struct viewport *vp = lcd_current_viewport;
|
2009-10-26 01:35:31 +00:00
|
|
|
fb_data *dst;
|
2022-10-01 23:54:11 +00:00
|
|
|
unsigned fg = vp->fg_pattern;
|
|
|
|
int stride_dst = vp->buffer->stride;
|
2006-01-28 23:12:20 +00:00
|
|
|
|
2022-10-01 23:54:31 +00:00
|
|
|
if (!clip_viewport_rect(vp, &x, &y, &width, &height, &src_x, &src_y))
|
2009-11-07 18:38:46 +00:00
|
|
|
return;
|
2020-10-26 16:38:22 +00:00
|
|
|
|
2006-01-28 23:12:20 +00:00
|
|
|
src += stride * src_y + src_x; /* move starting point */
|
2012-02-22 10:18:05 +00:00
|
|
|
dst = FBADDR(x, y);
|
2006-01-28 23:12:20 +00:00
|
|
|
|
2009-10-26 01:35:31 +00:00
|
|
|
#ifdef CPU_ARM
|
|
|
|
{
|
|
|
|
int w, px;
|
|
|
|
asm volatile (
|
|
|
|
".rowstart: \n"
|
|
|
|
"mov %[w], %[width] \n" /* Load width for inner loop */
|
|
|
|
".nextpixel: \n"
|
|
|
|
"ldrh %[px], [%[s]], #2 \n" /* Load src pixel */
|
|
|
|
"add %[d], %[d], #2 \n" /* Uncoditionally increment dst */
|
|
|
|
/* done here for better pipelining */
|
|
|
|
"cmp %[px], %[fgcolor] \n" /* Compare to foreground color */
|
|
|
|
"streqh %[fgpat], [%[d], #-2] \n" /* Store foregroud if match */
|
|
|
|
"cmpne %[px], %[transcolor] \n" /* Compare to transparent color */
|
|
|
|
"strneh %[px], [%[d], #-2] \n" /* Store dst if not transparent */
|
|
|
|
"subs %[w], %[w], #1 \n" /* Width counter has run down? */
|
|
|
|
"bgt .nextpixel \n" /* More in this row? */
|
|
|
|
"add %[s], %[s], %[sstp], lsl #1 \n" /* Skip over to start of next line */
|
|
|
|
"add %[d], %[d], %[dstp], lsl #1 \n"
|
|
|
|
"subs %[h], %[h], #1 \n" /* Height counter has run down? */
|
|
|
|
"bgt .rowstart \n" /* More rows? */
|
|
|
|
: [w]"=&r"(w), [h]"+&r"(height), [px]"=&r"(px),
|
|
|
|
[s]"+&r"(src), [d]"+&r"(dst)
|
|
|
|
: [width]"r"(width),
|
|
|
|
[sstp]"r"(stride - width),
|
2020-10-07 06:01:35 +00:00
|
|
|
[dstp]"r"(stride_dst - width),
|
2009-10-26 01:35:31 +00:00
|
|
|
[transcolor]"r"(TRANSPARENT_COLOR),
|
|
|
|
[fgcolor]"r"(REPLACEWITHFG_COLOR),
|
|
|
|
[fgpat]"r"(fg)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#else /* optimized C version */
|
2006-01-28 23:12:20 +00:00
|
|
|
do
|
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
const fb_data *src_row = src;
|
|
|
|
fb_data *dst_row = dst;
|
|
|
|
fb_data *row_end = dst_row + width;
|
|
|
|
do
|
2006-01-28 23:12:20 +00:00
|
|
|
{
|
2009-10-26 01:35:31 +00:00
|
|
|
unsigned data = *src_row++;
|
|
|
|
if (data != TRANSPARENT_COLOR)
|
|
|
|
{
|
|
|
|
if (data == REPLACEWITHFG_COLOR)
|
2009-10-26 01:55:19 +00:00
|
|
|
data = fg;
|
|
|
|
*dst_row = data;
|
2009-10-26 01:35:31 +00:00
|
|
|
}
|
2006-01-28 23:12:20 +00:00
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (++dst_row < row_end);
|
2006-01-28 23:12:20 +00:00
|
|
|
src += stride;
|
2020-10-07 06:01:35 +00:00
|
|
|
dst += stride_dst;
|
2006-01-28 23:12:20 +00:00
|
|
|
}
|
2009-10-26 01:35:31 +00:00
|
|
|
while (--height > 0);
|
|
|
|
#endif
|
2006-01-28 23:12:20 +00:00
|
|
|
}
|