vbagx/source/ngc/video.cpp

608 lines
16 KiB
C++
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
* Tantric September 2008
* softdev 2007
*
* video.cpp
*
* Generic GX Support for Emulators
* NGC GX Video Functions
* These are pretty standard functions to setup and use GX scaling.
***************************************************************************/
#include <gccore.h>
2008-10-10 07:28:16 +02:00
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <wiiuse/wpad.h>
#include "images/bg.h"
2008-10-10 07:28:16 +02:00
#include "vba.h"
#include "menudraw.h"
2008-10-10 07:28:16 +02:00
u32 FrameTimer = 0;
2008-09-26 10:10:36 +02:00
/*** External 2D Video ***/
/*** 2D Video Globals ***/
2008-09-26 03:01:08 +02:00
GXRModeObj *vmode = NULL; // Graphics Mode Object
unsigned int *xfb[2]; // Framebuffers
int whichfb = 0; // Frame buffer toggle
int screenheight;
/*** 3D GX ***/
#define DEFAULT_FIFO_SIZE ( 256 * 1024 )
2008-09-26 10:10:36 +02:00
static u8 gp_fifo[DEFAULT_FIFO_SIZE] ATTRIBUTE_ALIGN(32);
2008-10-10 07:28:16 +02:00
unsigned int copynow = GX_FALSE;
/*** Texture memory ***/
2008-09-26 03:01:08 +02:00
static u8 *texturemem = NULL;
static int texturesize;
GXTexObj texobj;
static Mtx view;
2008-10-25 09:26:02 +02:00
static int vwidth, vheight;
2008-10-09 08:48:46 +02:00
static int video_vaspect, video_haspect;
int updateScaling;
2008-10-25 09:26:02 +02:00
bool progressive = false;
/* New texture based scaler */
typedef struct tagcamera
{
Vector pos;
Vector up;
Vector view;
}
camera;
/*** Square Matrix
This structure controls the size of the image on the screen.
***/
static s16 square[] ATTRIBUTE_ALIGN(32) = {
/*
* X, Y, Z
* Values set are for roughly 4:3 aspect
*/
-200, 200, 0, // 0
200, 200, 0, // 1
200, -200, 0, // 2
-200, -200, 0 // 3
};
static camera cam = { {0.0F, 0.0F, 0.0F},
{0.0F, 0.5F, 0.0F},
{0.0F, 0.0F, -0.5F}
};
2008-10-10 07:28:16 +02:00
/****************************************************************************
* VideoThreading
***************************************************************************/
#define TSTACK 16384
lwpq_t videoblankqueue;
lwp_t vbthread;
static unsigned char vbstack[TSTACK];
/****************************************************************************
* vbgetback
*
* This callback enables the emulator to keep running while waiting for a
* vertical blank.
*
* Putting LWP to good use :)
***************************************************************************/
static void *
vbgetback (void *arg)
{
while (1)
{
VIDEO_WaitVSync (); /**< Wait for video vertical blank */
LWP_SuspendThread (vbthread);
}
return NULL;
}
/****************************************************************************
* InitVideoThread
*
* libOGC provides a nice wrapper for LWP access.
* This function sets up a new local queue and attaches the thread to it.
***************************************************************************/
void
InitVideoThread ()
{
/*** Initialise a new queue ***/
LWP_InitQueue (&videoblankqueue);
/*** Create the thread on this queue ***/
2008-12-20 00:08:24 +01:00
LWP_CreateThread (&vbthread, vbgetback, NULL, vbstack, TSTACK, 150);
2008-10-10 07:28:16 +02:00
}
/****************************************************************************
* copy_to_xfb
*
* Stock code to copy the GX buffer to the current display mode.
* Also increments the frameticker, as it's called for each vb.
***************************************************************************/
static void
copy_to_xfb (u32 arg)
{
if (copynow == GX_TRUE)
{
GX_CopyDisp (xfb[whichfb], GX_TRUE);
GX_Flush ();
copynow = GX_FALSE;
}
FrameTimer++;
}
2008-10-09 08:48:46 +02:00
/****************************************************************************
* Drawing screen
***************************************************************************/
void
clearscreen ()
{
int colour = COLOR_BLACK;
whichfb ^= 1;
VIDEO_ClearFrameBuffer (vmode, xfb[whichfb], colour);
memcpy (xfb[whichfb], &bg, 1280 * 480);
}
void
showscreen ()
{
VIDEO_SetNextFramebuffer (xfb[whichfb]);
VIDEO_Flush ();
VIDEO_WaitVSync ();
}
2008-10-10 07:28:16 +02:00
/****************************************************************************
* Scaler Support Functions
****************************************************************************/
static void draw_init(void)
{
GX_ClearVtxDesc ();
GX_SetVtxDesc (GX_VA_POS, GX_INDEX8);
GX_SetVtxDesc (GX_VA_CLR0, GX_INDEX8);
GX_SetVtxDesc (GX_VA_TEX0, GX_DIRECT);
2008-10-10 07:28:16 +02:00
GX_SetVtxAttrFmt (GX_VTXFMT0, GX_VA_POS, GX_POS_XYZ, GX_S16, 0);
GX_SetVtxAttrFmt (GX_VTXFMT0, GX_VA_CLR0, GX_CLR_RGBA, GX_RGBA8, 0);
GX_SetVtxAttrFmt (GX_VTXFMT0, GX_VA_TEX0, GX_TEX_ST, GX_F32, 0);
2008-10-10 07:28:16 +02:00
GX_SetArray (GX_VA_POS, square, 3 * sizeof (s16));
2008-10-10 07:28:16 +02:00
GX_SetNumTexGens (1);
GX_SetTexCoordGen (GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_IDENTITY);
2008-10-10 07:28:16 +02:00
GX_InvVtxCache (); // update vertex cache
GX_InitTexObj(&texobj, texturemem, vwidth, vheight, GX_TF_RGB565,
GX_CLAMP, GX_CLAMP, GX_FALSE);
if (!(GCSettings.render&1))
GX_InitTexObjLOD(&texobj,GX_NEAR,GX_NEAR_MIP_NEAR,2.5,9.0,0.0,GX_FALSE,GX_FALSE,GX_ANISO_1); // original/unfiltered video mode: force texture filtering OFF
2008-10-10 07:28:16 +02:00
}
static void draw_vert(u8 pos, u8 c, f32 s, f32 t)
{
GX_Position1x8(pos);
GX_Color1x8(c);
GX_TexCoord2f32(s, t);
}
static void draw_square(Mtx v)
{
Mtx m; // model matrix.
Mtx mv; // modelview matrix.
guMtxIdentity(m);
guMtxTransApply(m, m, 0, 0, -100);
guMtxConcat(v, m, mv);
GX_LoadPosMtxImm(mv, GX_PNMTX0);
GX_Begin(GX_QUADS, GX_VTXFMT0, 4);
draw_vert(0, 0, 0.0, 0.0);
draw_vert(1, 0, 1.0, 0.0);
draw_vert(2, 0, 1.0, 1.0);
draw_vert(3, 0, 0.0, 1.0);
GX_End();
}
/****************************************************************************
* StartGX
****************************************************************************/
void GX_Start()
{
Mtx p;
GXColor background = { 0, 0, 0, 0xff };
/*** Clear out FIFO area ***/
memset (gp_fifo, 0, DEFAULT_FIFO_SIZE);
/*** Initialise GX ***/
GX_Init (&gp_fifo, DEFAULT_FIFO_SIZE);
GX_SetCopyClear (background, 0x00ffffff);
GX_SetViewport (0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1);
GX_SetDispCopyYScale ((f32) vmode->xfbHeight / (f32) vmode->efbHeight);
GX_SetScissor (0, 0, vmode->fbWidth, vmode->efbHeight);
GX_SetDispCopySrc (0, 0, vmode->fbWidth, vmode->efbHeight);
GX_SetDispCopyDst (vmode->fbWidth, vmode->xfbHeight);
GX_SetCopyFilter (vmode->aa, vmode->sample_pattern, GX_TRUE, vmode->vfilter);
GX_SetFieldMode (vmode->field_rendering, ((vmode->viHeight == 2 * vmode->xfbHeight) ? GX_ENABLE : GX_DISABLE));
GX_SetPixelFmt (GX_PF_RGB8_Z24, GX_ZC_LINEAR);
GX_SetCullMode (GX_CULL_NONE);
GX_SetDispCopyGamma (GX_GM_1_0);
guOrtho(p, vmode->efbHeight/2, -(vmode->efbHeight/2), -(vmode->fbWidth/2), vmode->fbWidth/2, 10, 1000); // matrix, t, b, l, r, n, f
GX_LoadProjectionMtx (p, GX_ORTHOGRAPHIC);
2008-10-10 06:10:28 +02:00
GX_CopyDisp (xfb[whichfb], GX_TRUE); // reset xfb
GX_Flush();
}
/****************************************************************************
* UpdatePadsCB
*
* called by postRetraceCallback in InitGCVideo - scans gcpad and wpad
***************************************************************************/
void
UpdatePadsCB ()
{
#ifdef HW_RVL
WPAD_ScanPads();
#endif
PAD_ScanPads();
}
2008-09-26 10:10:36 +02:00
/****************************************************************************
* Initialise Video
*
* Before doing anything in libogc, it's recommended to configure a video
* output.
****************************************************************************/
void InitialiseVideo ()
{
2008-10-10 07:28:16 +02:00
/*** Start VIDEO Subsystem ***/
VIDEO_Init();
vmode = VIDEO_GetPreferredMode(NULL);
2008-10-25 09:26:02 +02:00
switch (vmode->viTVMode >> 2)
{
2008-10-29 07:34:15 +01:00
case VI_PAL: // 576 lines (PAL 50Hz)
// force PAL60
2008-11-25 08:13:46 +01:00
//vmode = &TVEurgb60Hz480IntDf;
2008-10-25 09:26:02 +02:00
break;
case VI_NTSC:
// 480 lines (NTSC 60hz)
break;
default:
// 480 lines (PAL 60Hz)
break;
}
#ifdef HW_DOL
2008-11-25 08:13:46 +01:00
/* we have component cables, why don't we switch into progressive?
* on the Wii, the user can do this themselves on their Wii Settings */
2008-11-25 08:13:46 +01:00
if(VIDEO_HaveComponentCable())
vmode = &TVNtsc480Prog;
#endif
2008-10-25 09:26:02 +02:00
// check for progressive scan
if (vmode->viTVMode == VI_TVMODE_NTSC_PROG)
progressive = true;
2008-11-06 08:08:27 +01:00
#ifdef HW_RVL
// widescreen fix
2008-11-05 18:29:49 +01:00
if(CONF_GetAspectRatio())
{
vmode->viWidth = 678;
vmode->viXOrigin = (VI_MAX_WIDTH_PAL - 678) / 2;
}
2008-11-06 08:08:27 +01:00
#endif
2008-10-10 07:28:16 +02:00
VIDEO_Configure(vmode);
screenheight = vmode->xfbHeight;
2008-09-26 10:10:36 +02:00
2008-10-10 07:28:16 +02:00
xfb[0] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
xfb[1] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
2008-09-26 10:10:36 +02:00
// A console is always useful while debugging
console_init (xfb[0], 20, 64, vmode->fbWidth, vmode->xfbHeight, vmode->fbWidth * 2);
2008-10-10 07:28:16 +02:00
// Clear framebuffers etc.
VIDEO_ClearFrameBuffer (vmode, xfb[0], COLOR_BLACK);
VIDEO_ClearFrameBuffer (vmode, xfb[1], COLOR_BLACK);
VIDEO_SetNextFramebuffer (xfb[0]);
2008-09-26 10:10:36 +02:00
2008-10-10 07:28:16 +02:00
// video callbacks
VIDEO_SetPostRetraceCallback ((VIRetraceCallback)UpdatePadsCB);
VIDEO_SetPreRetraceCallback ((VIRetraceCallback)copy_to_xfb);
2008-09-26 10:10:36 +02:00
2008-10-10 07:28:16 +02:00
VIDEO_SetBlack(FALSE);
2008-09-26 10:10:36 +02:00
2008-10-10 07:28:16 +02:00
VIDEO_Flush();
VIDEO_WaitVSync();
2008-10-10 07:28:16 +02:00
if(vmode->viTVMode&VI_NON_INTERLACE)
VIDEO_WaitVSync();
2008-10-10 07:28:16 +02:00
copynow = GX_FALSE;
GX_Start();
2008-10-25 09:26:02 +02:00
draw_init();
2008-10-10 07:28:16 +02:00
InitVideoThread ();
}
2008-10-25 09:26:02 +02:00
void UpdateScaling()
{
int xscale;
int yscale;
2008-11-05 18:29:49 +01:00
// keep correct aspect ratio
// and use entire screen
if(vwidth == 240) // GBA
{
xscale = 320;
yscale = 213;
}
else // GB
{
xscale = 256;
yscale = 230;
}
2008-10-25 09:26:02 +02:00
if (GCSettings.widescreen)
xscale = (3*xscale)/4;
// change zoom
xscale *= GCSettings.ZoomLevel;
yscale *= GCSettings.ZoomLevel;
// Set new aspect
square[0] = square[9] = -xscale;
square[3] = square[6] = xscale;
square[1] = square[4] = yscale;
square[7] = square[10] = -yscale;
2008-11-07 17:49:25 +01:00
DCFlushRange (square, 32); // update memory BEFORE the GPU accesses it!
2008-10-25 09:26:02 +02:00
draw_init ();
2008-10-25 09:26:02 +02:00
memset(&view, 0, sizeof(Mtx));
guLookAt(view, &cam.pos, &cam.up, &cam.view);
GX_SetViewport(0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1);
updateScaling = 0;
2008-10-25 09:26:02 +02:00
}
2008-10-10 07:28:16 +02:00
/****************************************************************************
* ResetVideo_Emu
*
* Reset the video/rendering mode for the emulator rendering
****************************************************************************/
void
ResetVideo_Emu ()
{
GXRModeObj *rmode;
2008-10-25 09:26:02 +02:00
Mtx p;
2008-10-10 07:28:16 +02:00
rmode = vmode; // same mode as menu
// reconfigure VI
2008-10-10 07:28:16 +02:00
VIDEO_Configure (rmode);
2008-10-25 09:26:02 +02:00
VIDEO_ClearFrameBuffer (vmode, xfb[whichfb], COLOR_BLACK);
2008-10-10 07:28:16 +02:00
VIDEO_Flush();
VIDEO_WaitVSync();
2008-10-25 09:26:02 +02:00
if (rmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync();
else
while (VIDEO_GetNextField())
VIDEO_WaitVSync();
2008-10-10 07:28:16 +02:00
// reconfigure GX
2008-10-10 07:28:16 +02:00
GX_SetViewport (0, 0, rmode->fbWidth, rmode->efbHeight, 0, 1);
GX_SetDispCopyYScale ((f32) rmode->xfbHeight / (f32) rmode->efbHeight);
GX_SetScissor (0, 0, rmode->fbWidth, rmode->efbHeight);
2008-10-10 07:28:16 +02:00
GX_SetDispCopySrc (0, 0, rmode->fbWidth, rmode->efbHeight);
GX_SetDispCopyDst (rmode->fbWidth, rmode->xfbHeight);
GX_SetCopyFilter (rmode->aa, rmode->sample_pattern, (GCSettings.render == 1) ? GX_TRUE : GX_FALSE, rmode->vfilter); // deflickering filter only for filtered mode
2008-10-10 07:28:16 +02:00
GX_SetFieldMode (rmode->field_rendering, ((rmode->viHeight == 2 * rmode->xfbHeight) ? GX_ENABLE : GX_DISABLE));
2008-10-10 07:28:16 +02:00
GX_SetPixelFmt (GX_PF_RGB8_Z24, GX_ZC_LINEAR);
GX_SetCullMode (GX_CULL_NONE);
GX_SetDispCopyGamma (GX_GM_1_0);
2008-10-24 08:16:15 +02:00
guOrtho(p, rmode->efbHeight/2, -(rmode->efbHeight/2), -(rmode->fbWidth/2), rmode->fbWidth/2, 10, 1000); // matrix, t, b, l, r, n, f
GX_LoadProjectionMtx (p, GX_ORTHOGRAPHIC);
2008-10-25 09:26:02 +02:00
// reinitialize texture
GX_InvalidateTexAll ();
GX_InitTexObj (&texobj, texturemem, vwidth, vheight, GX_TF_RGB565, GX_CLAMP, GX_CLAMP, GX_FALSE); // initialize the texture obj we are going to use
if (!(GCSettings.render&1))
GX_InitTexObjLOD(&texobj,GX_NEAR,GX_NEAR_MIP_NEAR,2.5,9.0,0.0,GX_FALSE,GX_FALSE,GX_ANISO_1); // original/unfiltered video mode: force texture filtering OFF
GX_Flush();
// set aspect ratio
updateScaling = 1;
2008-10-10 07:28:16 +02:00
}
/****************************************************************************
* ResetVideo_Menu
*
* Reset the video/rendering mode for the menu
****************************************************************************/
void
ResetVideo_Menu ()
{
2008-10-25 09:26:02 +02:00
Mtx p;
2008-10-10 07:28:16 +02:00
VIDEO_Configure (vmode);
VIDEO_ClearFrameBuffer (vmode, xfb[whichfb], COLOR_BLACK);
VIDEO_Flush();
VIDEO_WaitVSync();
2008-10-25 09:26:02 +02:00
if (vmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync();
else
while (VIDEO_GetNextField())
VIDEO_WaitVSync();
2008-10-10 07:28:16 +02:00
GX_SetViewport (0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1);
GX_SetDispCopyYScale ((f32) vmode->xfbHeight / (f32) vmode->efbHeight);
GX_SetScissor (0, 0, vmode->fbWidth, vmode->efbHeight);
GX_SetDispCopySrc (0, 0, vmode->fbWidth, vmode->efbHeight);
GX_SetDispCopyDst (vmode->fbWidth, vmode->xfbHeight);
GX_SetCopyFilter (vmode->aa, vmode->sample_pattern, GX_TRUE, vmode->vfilter);
GX_SetFieldMode (vmode->field_rendering, ((vmode->viHeight == 2 * vmode->xfbHeight) ? GX_ENABLE : GX_DISABLE));
GX_SetPixelFmt (GX_PF_RGB8_Z24, GX_ZC_LINEAR);
guOrtho(p, vmode->efbHeight/2, -(vmode->efbHeight/2), -(vmode->fbWidth/2), vmode->fbWidth/2, 10, 1000); // matrix, t, b, l, r, n, f
GX_LoadProjectionMtx (p, GX_ORTHOGRAPHIC);
}
void GX_Render_Init(int width, int height, int haspect, int vaspect)
{
if (texturemem)
free(texturemem);
/*** Allocate 32byte aligned texture memory ***/
texturesize = (width * height) * 2;
texturemem = (u8 *) memalign(32, texturesize);
memset(texturemem, 0, texturesize);
/*** Setup for first call to scaler ***/
2008-10-11 10:06:36 +02:00
vwidth = width;
vheight = height;
video_vaspect = vaspect;
video_haspect = haspect;
2008-10-10 07:28:16 +02:00
}
/****************************************************************************
* GX_Render
*
* Pass in a buffer, width and height to update as a tiled RGB565 texture
****************************************************************************/
void GX_Render(int width, int height, u8 * buffer, int pitch)
{
2008-10-10 07:28:16 +02:00
int h, w;
long long int *dst = (long long int *) texturemem;
long long int *src1 = (long long int *) buffer;
long long int *src2 = (long long int *) (buffer + pitch);
long long int *src3 = (long long int *) (buffer + (pitch * 2));
long long int *src4 = (long long int *) (buffer + (pitch * 3));
int rowpitch = (pitch >> 3) * 3;
int rowadjust = ( pitch % 8 ) * 4;
2008-10-10 07:28:16 +02:00
char *ra = NULL;
vwidth = width;
vheight = height;
2008-10-10 07:28:16 +02:00
// Ensure previous vb has complete
while ((LWP_ThreadIsSuspended (vbthread) == 0) || (copynow == GX_TRUE))
2008-10-25 09:26:02 +02:00
usleep (50);
2008-10-10 07:28:16 +02:00
whichfb ^= 1;
if(updateScaling)
UpdateScaling();
2008-10-09 08:48:46 +02:00
// clear texture objects
GX_InvVtxCache();
GX_InvalidateTexAll();
GX_SetTevOp(GX_TEVSTAGE0, GX_DECAL);
GX_SetTevOrder(GX_TEVSTAGE0, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR0A0);
2008-10-10 07:28:16 +02:00
for (h = 0; h < vheight; h += 4)
{
for (w = 0; w < (vwidth >> 2); w++)
{
*dst++ = *src1++;
*dst++ = *src2++;
*dst++ = *src3++;
*dst++ = *src4++;
}
src1 += rowpitch;
src2 += rowpitch;
src3 += rowpitch;
src4 += rowpitch;
if ( rowadjust )
{
ra = (char *)src1;
src1 = (long long int *)(ra + rowadjust);
ra = (char *)src2;
src2 = (long long int *)(ra + rowadjust);
ra = (char *)src3;
src3 = (long long int *)(ra + rowadjust);
ra = (char *)src4;
src4 = (long long int *)(ra + rowadjust);
}
2008-10-10 07:28:16 +02:00
}
// load texture into GX
DCFlushRange(texturemem, texturesize);
GX_SetNumChans(1);
GX_LoadTexObj(&texobj, GX_TEXMAP0);
// render textured quad
draw_square(view);
GX_DrawDone();
GX_SetZMode(GX_TRUE, GX_LEQUAL, GX_TRUE);
GX_SetColorUpdate(GX_TRUE);
// EFB is ready to be copied into XFB
VIDEO_SetNextFramebuffer(xfb[whichfb]);
VIDEO_Flush();
2008-10-10 07:28:16 +02:00
copynow = GX_TRUE;
2008-09-26 10:10:36 +02:00
2008-10-10 07:28:16 +02:00
// Return to caller, don't waste time waiting for vb
LWP_ResumeThread (vbthread);
}
/****************************************************************************
2008-10-09 08:48:46 +02:00
* Zoom Functions
***************************************************************************/
void
2008-10-09 08:48:46 +02:00
zoom (float speed)
{
2008-10-24 08:16:15 +02:00
if (GCSettings.ZoomLevel > 1)
GCSettings.ZoomLevel += (speed / -100.0);
2008-10-09 08:48:46 +02:00
else
2008-10-24 08:16:15 +02:00
GCSettings.ZoomLevel += (speed / -200.0);
2008-10-24 08:16:15 +02:00
if (GCSettings.ZoomLevel < 0.5)
GCSettings.ZoomLevel = 0.5;
else if (GCSettings.ZoomLevel > 2.0)
GCSettings.ZoomLevel = 2.0;
2008-10-09 08:48:46 +02:00
updateScaling = 1; // update video
}
void
2008-10-09 08:48:46 +02:00
zoom_reset ()
{
2008-10-24 08:16:15 +02:00
GCSettings.ZoomLevel = 1.0;
updateScaling = 1; // update video
2008-10-09 08:48:46 +02:00
}