/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Pacbox - a Pacman Emulator for Rockbox * * Based on PIE - Pacman Instructional Emulator * * Copyright (c) 1997-2003,2004 Alessandro Scotti * * 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. * * 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_SCALE==100 && LCD_ROTATE==0 /* Native resolution = 224x288 */ (void)next_dst; dst=&lcd_framebuffer[YOFS*LCD_WIDTH+XOFS]; for (y=0;y=0; y-- ) { dst = (next_dst--); for( x=0; x=0; x-- ) { *dst = palette[*(vbuf++)]; dst-=LCD_WIDTH; } } #elif LCD_SCALE==75 && LCD_ROTATE==1 /* 0.75 scaling - display 3 out of 4 pixels - rotated = 216x168 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= 0; y--) { dst = (next_dst--); for (x=0;x= 0; y--) { dst = (next_dst--); for (x=0;x= 0; y--) { dst = (next_dst--); for (x=0;x