1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
/* wiidisplay.c: Routines for dealing with the Wii's framebuffer display
Copyright (c) 2008-2009 Bjoern Giesler, Marek Januszewski
$Id: wiidisplay.c 4067 2009-08-30 19:07:21Z specu $
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 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; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: bjoern@giesler.de
*/
#include <config.h>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
/* Wii includes */
#include <gccore.h>
#include <ogcsys.h>
#include "fuse.h"
#include "display.h"
#include "screenshot.h"
#include "ui/ui.h"
#include "ui/uidisplay.h"
#include "settings.h"
#include "ui/wii/wiimouse.h"
/* The size of a 1x1 image in units of
DISPLAY_ASPECT WIDTH x DISPLAY_SCREEN_HEIGHT */
int image_scale;
/* The height and width of a 1x1 image in pixels */
int image_width, image_height;
/* A copy of every pixel on the screen */
libspectrum_word display_image[2 * DISPLAY_SCREEN_HEIGHT][DISPLAY_SCREEN_WIDTH];
/* An RGB image of the Spectrum screen; slightly bigger than the real
screen to handle the smoothing filters which read around each pixel */
static unsigned char rgb_image[ 4 * 2 * ( DISPLAY_SCREEN_HEIGHT + 4 ) *
( DISPLAY_SCREEN_WIDTH + 3 ) ];
static const int rgb_pitch = ( DISPLAY_SCREEN_WIDTH + 3 ) * 4;
/* The scaled image */
static unsigned char scaled_image[ 4 * 3 * DISPLAY_SCREEN_HEIGHT *
(size_t)(1.5 * DISPLAY_SCREEN_WIDTH) ];
static const ptrdiff_t scaled_pitch = 4 * 1.5 * DISPLAY_SCREEN_WIDTH;
static u32 *xfb = NULL;
static GXRModeObj *rmode = NULL;
/* The current size of the window (in units of DISPLAY_SCREEN_*) */
static int wiidisplay_current_size=2;
static int init_colours( void );
static int register_scalers( void );
typedef struct {
u8 r, g, b;
} rgb_t;
rgb_t rgb_colours[16] = {
/* no bright */
{0, 0, 0}, /* BLACK */
{0, 0, 192}, /* BLUE */
{192, 0, 0}, /* RED */
{192, 0, 192}, /* MAGENTA */
{0, 192, 0}, /* GREEN */
{0, 192, 192}, /* CYAN */
{192, 192, 0}, /* YELLOW */
{192, 192, 192}, /* WHITE */
/* bright */
{0, 0, 0}, /* BLACK */
{0, 0, 255}, /* BLUE */
{255, 0, 0}, /* RED */
{255, 0, 255}, /* MAGENTA */
{0, 255, 0}, /* GREEN */
{0, 255, 255}, /* CYAN */
{255, 255, 0}, /* YELLOW */
{255, 255, 255}, /* WHITE */
};
static u32 wiidisplay_colours[16];
static u32 bw_colours[16];
#define MOUSESIZEX 9
#define MOUSESIZEY 9
#define MOUSEHOTX 4
#define MOUSEHOTY 4
static int mousecursor[MOUSESIZEY][MOUSESIZEX] = {
{ 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0xff, 0xff },
{ 0xff, 0xff, 0xff, 0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff },
{ 0xff, 0xff, 0xff, 0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff },
{ 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x0f, 0x0f, 0x0f, 0x0f },
{ 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f },
{ 0x0f, 0x0f, 0x0f, 0x0f, 0x00, 0x0f, 0x0f, 0x0f, 0x0f },
{ 0xff, 0xff, 0xff, 0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff },
{ 0xff, 0xff, 0xff, 0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff },
{ 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0xff, 0xff }
};
static int mousecache[MOUSESIZEY][MOUSESIZEX];
static int mousex = 0, mousey = 0;
u32 convert_rgb (rgb_t rgb1, rgb_t rgb2)
{
int y1, cb1, cr1, y2, cb2, cr2, cb, cr;
y1 = (299 * rgb1.r + 587 * rgb1.g + 114 * rgb1.b) / 1000;
cb1 = (-16874 * rgb1.r - 33126 * rgb1.g + 50000 * rgb1.b + 12800000) / 100000;
cr1 = (50000 * rgb1.r - 41869 * rgb1.g - 8131 * rgb1.b + 12800000) / 100000;
y2 = (299 * rgb2.r + 587 * rgb2.g + 114 * rgb2.b) / 1000;
cb2 = (-16874 * rgb2.r - 33126 * rgb2.g + 50000 * rgb2.b + 12800000) / 100000;
cr2 = (50000 * rgb2.r - 41869 * rgb2.g - 8131 * rgb2.b + 12800000) / 100000;
cb = (cb1 + cb2) >> 1;
cr = (cr1 + cr2) >> 1;
return (y1 << 24) | (cb << 16) | (y2 << 8) | cr;
}
static void put_pixel(int x, int y, int colour, int mouseputpixel)
{
if( machine_current->timex ) {
x <<= 1; y <<= 1;
display_image[y ][x ] = colour;
display_image[y ][x+1] = colour;
display_image[y+1][x ] = colour;
display_image[y+1][x+1] = colour;
} else {
display_image[y][x] = colour;
if(!mouseputpixel &&
x >= mousex && x < mousex+MOUSESIZEX &&
y >= mousey && y < mousey+MOUSESIZEY)
mousecache[y-mousey][x-mousex] = colour;
}
}
static int get_pixel(int x, int y)
{
return display_image[y][x];
}
static int
init_colours( void )
{
size_t i;
for( i = 0; i < 16; i++ ) {
rgb_t colour, grey;
colour = rgb_colours[i];
/* Addition of 0.5 is to avoid rounding errors */
grey.r = grey.g = grey.b =
( 0.299 * colour.r + 0.587 * colour.g + 0.114 * colour.b ) + 0.5;
#ifdef WORDS_BIGENDIAN
wiidisplay_colours[i] = colour.r << 24 | colour.g << 16 | colour.b << 8;
bw_colours[i] = grey.r << 24 | grey.g << 16 | grey.b << 8;
#else /* #ifdef WORDS_BIGENDIAN */
wiidisplay_colours[i] = colour.r | colour.g << 8 | colour.b << 16;
bw_colours[i] = grey.r | grey.g << 8 | grey.b << 16;
#endif /* #ifdef WORDS_BIGENDIAN */
}
return 0;
}
int uidisplay_init(int width, int height)
{
int error;
image_width = width; image_height = height;
image_scale = width / DISPLAY_ASPECT_WIDTH;
error = register_scalers(); if( error ) return error;
display_ui_initialised = 1;
display_refresh_all();
return 0;
}
static int
register_scalers( void )
{
scaler_register_clear();
switch( wiidisplay_current_size ) {
case 1:
switch( image_scale ) {
case 1:
scaler_register( SCALER_NORMAL );
scaler_register( SCALER_PALTV );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_NORMAL );
return 0;
case 2:
scaler_register( SCALER_HALF );
scaler_register( SCALER_HALFSKIP );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_HALF );
return 0;
}
case 2:
switch( image_scale ) {
case 1:
scaler_register( SCALER_DOUBLESIZE );
scaler_register( SCALER_TV2X );
scaler_register( SCALER_ADVMAME2X );
scaler_register( SCALER_2XSAI );
scaler_register( SCALER_SUPER2XSAI );
scaler_register( SCALER_SUPEREAGLE );
scaler_register( SCALER_DOTMATRIX );
scaler_register( SCALER_PALTV2X );
scaler_register( SCALER_HQ2X );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_DOUBLESIZE );
return 0;
case 2:
scaler_register( SCALER_NORMAL );
scaler_register( SCALER_TIMEXTV );
scaler_register( SCALER_PALTV );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_NORMAL );
return 0;
}
case 3:
switch( image_scale ) {
case 1:
scaler_register( SCALER_TRIPLESIZE );
scaler_register( SCALER_TV3X );
scaler_register( SCALER_ADVMAME3X );
scaler_register( SCALER_PALTV3X );
scaler_register( SCALER_HQ3X );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_TRIPLESIZE );
return 0;
case 2:
scaler_register( SCALER_TIMEX1_5X );
if( !scaler_is_supported( current_scaler ) )
scaler_select_scaler( SCALER_TIMEX1_5X );
return 0;
}
}
ui_error( UI_ERROR_ERROR, "Unknown display size/image size %d/%d",
wiidisplay_current_size, image_scale );
return 1;
}
int wiidisplay_init(void)
{
int error;
error = init_colours(); if( error ) return error;
VIDEO_Init();
u32 videoMode = VIDEO_GetCurrentTvMode();
switch(videoMode) {
case VI_NTSC:
rmode = &TVNtsc480IntDf;
break;
case VI_PAL:
rmode = &TVPal528IntDf;
break;
case VI_MPAL:
rmode = &TVMpal480IntDf;
break;
default:
rmode = &TVNtsc480IntDf;
break;
}
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
console_init(xfb, 20, 20, rmode->fbWidth, rmode->xfbHeight,
rmode->fbWidth*VI_DISPLAY_PIX_SZ);
VIDEO_Configure(rmode);
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(FALSE);
VIDEO_Flush();
VIDEO_WaitVSync();
if(rmode->viTVMode & VI_NON_INTERLACE) VIDEO_WaitVSync();
return 0;
}
int
uidisplay_hotswap_gfx_mode( void )
{
return 0;
}
void
uidisplay_frame_end( void )
{
VIDEO_WaitVSync();
if(rmode->viTVMode & VI_NON_INTERLACE) VIDEO_WaitVSync();
return;
}
void wiidisplay_showmouse( float x, float y )
{
int c, r;
if( !fuse_emulation_paused ) return;
int mousenewx = x*(DISPLAY_SCREEN_WIDTH/2-MOUSESIZEX);
int mousenewy = y*(DISPLAY_SCREEN_HEIGHT-MOUSESIZEY);
/* if we had no old mouse and have no new mouse, forget it */
if( (mousex <= 0 || mousey <= 0) &&
(mousenewx <= 0 || mousenewy <= 0) ) return;
/* if we had a mouse pos before, put mousecache at old position into
picture */
if( mousex > 0 && mousey > 0 ) {
for( r=0; r<MOUSESIZEY; r++ )
for( c=0; c<MOUSESIZEX; c++ )
put_pixel( c+mousex, r+mousey, mousecache[r][c], 1 );
}
uidisplay_area( mousex, mousey, MOUSESIZEX, MOUSESIZEY );
/* if we don't have a new mouse, remember that state and leave */
if( mousenewx <= 0 || mousenewy <= 0 ) {
mousex = mousenewx; mousey = mousenewy;
return;
}
/* we had an old mouse and have a new one. read mouse cache from the
picture and draw mouse cursor. */
for( r=0; r<MOUSESIZEY; r++ )
for( c=0; c<MOUSESIZEX; c++ ) {
/* put picture at new position into mouse cache */
mousecache[r][c] = get_pixel( c+mousenewx, r+mousenewy );
/* put mouse cursor into picture */
if( mousecursor[r][c] != 0xff )
put_pixel( mousenewx+c, mousenewy+r, mousecursor[r][c], 1 );
}
mousex = mousenewx; mousey = mousenewy;
uidisplay_area( mousex, mousey, MOUSESIZEX, MOUSESIZEY );
}
void
uidisplay_area( int x, int y, int w, int h )
{
float scale = (float)wiidisplay_current_size / image_scale;
int scaled_x, scaled_y, i, yy;
libspectrum_dword *palette;
/* Extend the dirty region by 1 pixel for scalers
that "smear" the screen, e.g. 2xSAI */
if( scaler_flags & SCALER_FLAGS_EXPAND )
scaler_expander( &x, &y, &w, &h, image_width, image_height );
scaled_x = scale * x; scaled_y = scale * y;
palette = settings_current.bw_tv ? bw_colours : wiidisplay_colours;
/* Create the RGB image */
for( yy = y; yy < y + h; yy++ ) {
libspectrum_dword *rgb; libspectrum_word *display;
rgb = (libspectrum_dword*)( rgb_image + ( yy + 2 ) * rgb_pitch );
rgb += x + 1;
display = &display_image[yy][x];
for( i = 0; i < w; i++, rgb++, display++ ) *rgb = palette[ *display ];
}
/* Create scaled image */
scaler_proc32( &rgb_image[ ( y + 2 ) * rgb_pitch + 4 * ( x + 1 ) ],
rgb_pitch,
&scaled_image[ scaled_y * scaled_pitch + 4 * scaled_x ],
scaled_pitch, w, h );
w *= scale; h *= scale;
/* Blit to the real screen */
int disp_x,disp_y;
long ofs;
u16 fb_pitch = rmode->fbWidth / 2;
/* ystart is an offset to center spectrum screen on wii screen */
int ystart = ( rmode->xfbHeight - 2 * DISPLAY_SCREEN_HEIGHT ) / 4;
u32 *dest, *next_line;
if( scaled_x%2 ) {
scaled_x -= 1;
w += 1;
}
/* FIXME: optimize this procedure and implement double buffering */
next_line = xfb + scaled_x / 2 + ( scaled_y + ystart ) * fb_pitch;
for( disp_y = scaled_y; disp_y < scaled_y + h; disp_y++ ) {
dest = next_line;
for( disp_x = scaled_x; disp_x < scaled_x + w; disp_x++ ) {
ofs = ( 4 * disp_x ) + ( scaled_pitch * disp_y );
rgb_t rgb1, rgb2;
rgb1.b = scaled_image[ ofs + 2 ]; /* blue */
rgb1.g = scaled_image[ ofs + 1 ]; /* green */
rgb1.r = scaled_image[ ofs + 0 ]; /* red */
rgb2.b = scaled_image[ ofs + 2 + 4 ]; /* blue */
rgb2.g = scaled_image[ ofs + 1 + 4 ]; /* green */
rgb2.r = scaled_image[ ofs + 0 + 4 ]; /* red */
*dest = convert_rgb( rgb1, rgb2 );
dest += disp_x%2;
}
next_line += fb_pitch;
}
}
int
uidisplay_end( void )
{
display_ui_initialised = 0;
return 0;
}
int
wiidisplay_end( void )
{
return 0;
}
/* Set one pixel in the display */
void
uidisplay_putpixel( int x, int y, int colour )
{
put_pixel(x, y, colour, 0);
}
/* Print the 8 pixels in `data' using ink colour `ink' and paper
colour `paper' to the screen at ( (8*x) , y ) */
void
uidisplay_plot8( int x, int y, libspectrum_byte data,
libspectrum_byte ink, libspectrum_byte paper )
{
x <<= 3;
if( machine_current->timex ) {
int i;
x <<= 1; y <<= 1;
for( i=0; i<2; i++,y++ ) {
display_image[y][x+ 0] = ( data & 0x80 ) ? ink : paper;
display_image[y][x+ 1] = ( data & 0x80 ) ? ink : paper;
display_image[y][x+ 2] = ( data & 0x40 ) ? ink : paper;
display_image[y][x+ 3] = ( data & 0x40 ) ? ink : paper;
display_image[y][x+ 4] = ( data & 0x20 ) ? ink : paper;
display_image[y][x+ 5] = ( data & 0x20 ) ? ink : paper;
display_image[y][x+ 6] = ( data & 0x10 ) ? ink : paper;
display_image[y][x+ 7] = ( data & 0x10 ) ? ink : paper;
display_image[y][x+ 8] = ( data & 0x08 ) ? ink : paper;
display_image[y][x+ 9] = ( data & 0x08 ) ? ink : paper;
display_image[y][x+10] = ( data & 0x04 ) ? ink : paper;
display_image[y][x+11] = ( data & 0x04 ) ? ink : paper;
display_image[y][x+12] = ( data & 0x02 ) ? ink : paper;
display_image[y][x+13] = ( data & 0x02 ) ? ink : paper;
display_image[y][x+14] = ( data & 0x01 ) ? ink : paper;
display_image[y][x+15] = ( data & 0x01 ) ? ink : paper;
}
} else {
display_image[y][x+ 0] = ( data & 0x80 ) ? ink : paper;
display_image[y][x+ 1] = ( data & 0x40 ) ? ink : paper;
display_image[y][x+ 2] = ( data & 0x20 ) ? ink : paper;
display_image[y][x+ 3] = ( data & 0x10 ) ? ink : paper;
display_image[y][x+ 4] = ( data & 0x08 ) ? ink : paper;
display_image[y][x+ 5] = ( data & 0x04 ) ? ink : paper;
display_image[y][x+ 6] = ( data & 0x02 ) ? ink : paper;
display_image[y][x+ 7] = ( data & 0x01 ) ? ink : paper;
}
}
/* Print the 16 pixels in `data' using ink colour `ink' and paper
colour `paper' to the screen at ( (16*x) , y ) */
void
uidisplay_plot16( int x, int y, libspectrum_word data,
libspectrum_byte ink, libspectrum_byte paper )
{
/* FIXME: what should this do? */
return;
}
void
uidisplay_frame_save( void )
{
/* FIXME: implement */
}
void
uidisplay_frame_restore( void )
{
/* FIXME: implement */
}
|