2006-03-13 01:42:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Pacbox - a Pacman Emulator for Rockbox
|
|
|
|
*
|
|
|
|
* Based on PIE - Pacman Instructional Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 1997-2003,2004 Alessandro Scotti
|
|
|
|
*
|
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.
|
2006-03-13 01:42:11 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "pacbox.h"
|
|
|
|
#include "pacbox_lcd.h"
|
|
|
|
#include "arcade.h"
|
|
|
|
#include "hardware.h"
|
|
|
|
|
|
|
|
void blit_display(fb_data* lcd_framebuffer, unsigned char* vbuf)
|
|
|
|
{
|
|
|
|
fb_data* dst;
|
|
|
|
fb_data* next_dst;
|
|
|
|
int x,y;
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
#if (LCD_WIDTH >= 224) && (LCD_HEIGHT >= 288)
|
|
|
|
/* Native resolution = 224x288 */
|
|
|
|
(void)next_dst;
|
|
|
|
dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS];
|
|
|
|
for (y=0;y<ScreenHeight;y++) {
|
|
|
|
for (x=0;x<ScreenWidth;x++) {
|
|
|
|
*(dst++) = palette[*(vbuf++)];
|
|
|
|
}
|
|
|
|
dst += XOFS*2;
|
|
|
|
}
|
|
|
|
#elif (LCD_WIDTH >= 288) && (LCD_HEIGHT >= 224)
|
|
|
|
/* Native resolution - rotated 90 degrees = 288x224 */
|
|
|
|
next_dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS+ScreenHeight-1];
|
|
|
|
for( y=ScreenHeight-1; y>=0; y-- ) {
|
|
|
|
dst = (next_dst--);
|
|
|
|
for( x=0; x<ScreenWidth; x++ ) {
|
|
|
|
*dst = palette[*(vbuf++)];
|
|
|
|
dst+=LCD_WIDTH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#elif (LCD_WIDTH >= 216) && (LCD_HEIGHT >= 168)
|
2007-05-26 08:48:44 +00:00
|
|
|
/* 0.75 scaling - display 3 out of 4 pixels - rotated = 216x168
|
2006-03-13 01:42:11 +00:00
|
|
|
Skipping pixel #2 out of 4 seems to give the most legible display
|
|
|
|
*/
|
|
|
|
next_dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS+((ScreenHeight*3)/4)-1];
|
|
|
|
for (y=ScreenHeight-1;y >= 0; y--) {
|
|
|
|
if ((y & 3) != 1) {
|
|
|
|
dst = (next_dst--);
|
|
|
|
for (x=0;x<ScreenWidth;x++) {
|
|
|
|
if ((x & 3) == 1) { vbuf++; }
|
|
|
|
else {
|
|
|
|
*dst = palette[*(vbuf++)];
|
|
|
|
dst+=LCD_WIDTH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
vbuf+=ScreenWidth;
|
|
|
|
}
|
|
|
|
}
|
2007-05-26 08:48:44 +00:00
|
|
|
#elif (LCD_WIDTH >= 168) && (LCD_HEIGHT >= 216)
|
|
|
|
/* 0.75 scaling - display 3 out of 4 pixels - = 168x216
|
|
|
|
Skipping pixel #2 out of 4 seems to give the most legible display
|
|
|
|
*/
|
|
|
|
(void)next_dst;
|
|
|
|
dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS];
|
|
|
|
for (y=0;y<ScreenHeight;y++) {
|
|
|
|
if ((y & 3) != 1) {
|
|
|
|
for (x=0;x<ScreenWidth;x++) {
|
|
|
|
if ((x & 3) == 1) { vbuf++; }
|
|
|
|
else {
|
|
|
|
*(dst++) = palette[*(vbuf++)];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst += XOFS*2;
|
|
|
|
} else {
|
|
|
|
vbuf+=ScreenWidth;
|
|
|
|
}
|
|
|
|
}
|
2006-03-13 01:42:11 +00:00
|
|
|
#elif (LCD_WIDTH >= 144) && (LCD_HEIGHT >= 112)
|
2007-05-26 08:48:44 +00:00
|
|
|
/* 0.5 scaling - display every other pixel - rotated = 144x112 */
|
2006-03-13 01:42:11 +00:00
|
|
|
next_dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS+ScreenHeight/2-1];
|
|
|
|
for (y=(ScreenHeight/2)-1;y >= 0; y--) {
|
|
|
|
dst = (next_dst--);
|
|
|
|
for (x=0;x<ScreenWidth/2;x++) {
|
|
|
|
*dst = palette[*(vbuf)];
|
|
|
|
vbuf+=2;
|
|
|
|
dst+=LCD_WIDTH;
|
|
|
|
}
|
|
|
|
vbuf+=ScreenWidth;
|
|
|
|
}
|
2006-10-13 20:23:53 +00:00
|
|
|
#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128)
|
2011-01-25 19:28:40 +00:00
|
|
|
/* 0.5 scaling - display every other pixel
|
|
|
|
* LCD_HEIGHT < 144: 112x144, crop to 112x128
|
|
|
|
* else center vertically without clipping */
|
2006-10-13 20:23:53 +00:00
|
|
|
(void)next_dst;
|
2011-01-25 19:28:40 +00:00
|
|
|
dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS];
|
2006-10-13 20:23:53 +00:00
|
|
|
|
2011-01-25 19:28:40 +00:00
|
|
|
/* Skip first YCLIP lines */
|
2006-10-13 20:23:53 +00:00
|
|
|
vbuf+=ScreenWidth*YCLIP;
|
|
|
|
|
|
|
|
/* Show regular screen */
|
|
|
|
for (y=0;y<(ScreenHeight/2-YCLIP);y++) {
|
|
|
|
for (x=0;x<ScreenWidth/2;x++) {
|
|
|
|
*(dst++) = palette[*(vbuf)];
|
|
|
|
vbuf+=2;
|
|
|
|
}
|
|
|
|
dst += XOFS*2;
|
|
|
|
vbuf+=ScreenWidth;
|
|
|
|
}
|
2006-03-13 01:42:11 +00:00
|
|
|
#endif
|
|
|
|
#else /* Greyscale LCDs */
|
|
|
|
#if (LCD_WIDTH >= 144) && (LCD_HEIGHT >= 112)
|
|
|
|
#if LCD_PIXELFORMAT == VERTICAL_PACKING
|
|
|
|
/* 0.5 scaling - display every other pixel = 144x112 */
|
|
|
|
next_dst=&lcd_framebuffer[YOFS/4*LCD_WIDTH+XOFS+ScreenHeight/2-1];
|
|
|
|
for (y=(ScreenHeight/2)-1;y >= 0; y--) {
|
|
|
|
dst = (next_dst--);
|
|
|
|
for (x=0;x<ScreenWidth/8;x++) {
|
|
|
|
*dst = (palette[*(vbuf+6)]<<6) | (palette[*(vbuf+4)] << 4) | (palette[*(vbuf+2)] << 2) | palette[*(vbuf)];
|
|
|
|
vbuf+=8;
|
|
|
|
dst+=LCD_WIDTH;
|
|
|
|
}
|
|
|
|
vbuf+=ScreenWidth;
|
|
|
|
}
|
|
|
|
#endif /* Vertical Packing */
|
|
|
|
#endif /* Size >= 144x112 */
|
|
|
|
#endif /* Not Colour */
|
|
|
|
}
|