video changes

This commit is contained in:
dborth 2008-10-10 05:28:16 +00:00
parent 85e1a7093c
commit fb1f522721
7 changed files with 269 additions and 86 deletions

View File

@ -313,6 +313,8 @@ u32 GetJoy()
SaveBatteryOrState(GCSettings.SaveMethod, 0, SILENT); // save battery SaveBatteryOrState(GCSettings.SaveMethod, 0, SILENT); // save battery
SaveBatteryOrState(GCSettings.SaveMethod, 1, SILENT); // save state SaveBatteryOrState(GCSettings.SaveMethod, 1, SILENT); // save state
} }
// change to menu video mode
ResetVideo_Menu ();
MainMenu(3); MainMenu(3);
return 0; return 0;
} }

View File

@ -94,7 +94,7 @@ LoadManager ()
/**************************************************************************** /****************************************************************************
* Preferences Menu * Preferences Menu
***************************************************************************/ ***************************************************************************/
static int prefmenuCount = 10; static int prefmenuCount = 11;
static char prefmenu[][50] = { static char prefmenu[][50] = {
"Load Method", "Load Method",
@ -106,6 +106,7 @@ static char prefmenu[][50] = {
"Auto Save", "Auto Save",
"Verify MC Saves", "Verify MC Saves",
"Enable Zooming", "Enable Zooming",
"Video Rendering",
"Save Preferences", "Save Preferences",
"Back to Main Menu" "Back to Main Menu"
@ -193,6 +194,11 @@ PreferencesMenu ()
sprintf (prefmenu[7], "Enable Zooming %s", sprintf (prefmenu[7], "Enable Zooming %s",
GCSettings.NGCZoom == true ? " ON" : "OFF"); GCSettings.NGCZoom == true ? " ON" : "OFF");
if ( GCSettings.render == 0)
sprintf (prefmenu[8], "Video Rendering Filtered");
if ( GCSettings.render == 1)
sprintf (prefmenu[8], "Video Rendering Unfiltered");
ret = RunMenu (prefmenu, prefmenuCount, (char*)"Preferences", 16); ret = RunMenu (prefmenu, prefmenuCount, (char*)"Preferences", 16);
switch (ret) switch (ret)
@ -232,11 +238,19 @@ PreferencesMenu ()
break; break;
case 8: case 8:
GCSettings.render++;
if (GCSettings.render > 1 )
GCSettings.render = 0;
// reset zoom
zoom_reset ();
break;
case 9:
SavePrefs(GCSettings.SaveMethod, NOTSILENT); SavePrefs(GCSettings.SaveMethod, NOTSILENT);
break; break;
case -1: /*** Button B ***/ case -1: /*** Button B ***/
case 9: case 10:
quit = 1; quit = 1;
break; break;

View File

@ -11,9 +11,9 @@
#define _VBA_H_ #define _VBA_H_
#include <gccore.h> #include <gccore.h>
#define VERSIONNUM "1.0.2" #define VERSIONNUM "1.0.3"
#define VERSIONSTR "VBA GX 1.0.2" #define VERSIONSTR "VBA GX 1.0.3"
#define VERSIONSTRFULL "Visual Boy Advance GX 1.0.2" #define VERSIONSTRFULL "Visual Boy Advance GX 1.0.3"
#define NOTSILENT 0 #define NOTSILENT 0
#define SILENT 1 #define SILENT 1
@ -47,6 +47,7 @@ struct SGCSettings{
char smbshare[20]; char smbshare[20];
int NGCZoom; // 0 - off, 1 - on int NGCZoom; // 0 - off, 1 - on
int VerifySaves; int VerifySaves;
int render; // 0 - filtered, 1 - unfiltered
}; };
extern struct SGCSettings GCSettings; extern struct SGCSettings GCSettings;

View File

@ -47,4 +47,5 @@ DefaultSettings ()
GCSettings.VerifySaves = 0; GCSettings.VerifySaves = 0;
GCSettings.NGCZoom = 0; // zooming default off GCSettings.NGCZoom = 0; // zooming default off
GCSettings.render = 0; // Unfiltered
} }

View File

@ -519,14 +519,14 @@ void systemDrawScreen()
// GB / GBC Have oodles of time - so sync on VSync // GB / GBC Have oodles of time - so sync on VSync
GX_Render( srcWidth, srcHeight, pix, srcPitch ); GX_Render( srcWidth, srcHeight, pix, srcPitch );
#ifdef HW_RVL /*#ifdef HW_RVL
VIDEO_WaitVSync (); VIDEO_WaitVSync ();
#else #else
if ( cartridgeType == 1 ) if ( cartridgeType == 1 )
{ {
VIDEO_WaitVSync(); VIDEO_WaitVSync();
} }
#endif #endif*/
} }
extern bool gbUpdateSizes(); extern bool gbUpdateSizes();

View File

@ -11,15 +11,18 @@
* These are pretty standard functions to setup and use GX scaling. * These are pretty standard functions to setup and use GX scaling.
***************************************************************************/ ***************************************************************************/
#include <gccore.h> #include <gccore.h>
#include <unistd.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <malloc.h> #include <malloc.h>
#include <wiiuse/wpad.h> #include <wiiuse/wpad.h>
#include "images/bg.h" #include "images/bg.h"
#include "pal60.h" #include "vba.h"
//#include "pal60.h"
extern unsigned int SMBTimer; // timer to reset SMB connection extern unsigned int SMBTimer; // timer to reset SMB connection
u32 FrameTimer = 0;
/*** External 2D Video ***/ /*** External 2D Video ***/
/*** 2D Video Globals ***/ /*** 2D Video Globals ***/
@ -32,6 +35,7 @@ int screenheight;
/*** 3D GX ***/ /*** 3D GX ***/
#define DEFAULT_FIFO_SIZE ( 256 * 1024 ) #define DEFAULT_FIFO_SIZE ( 256 * 1024 )
static u8 gp_fifo[DEFAULT_FIFO_SIZE] ATTRIBUTE_ALIGN(32); static u8 gp_fifo[DEFAULT_FIFO_SIZE] ATTRIBUTE_ALIGN(32);
unsigned int copynow = GX_FALSE;
/*** Texture memory ***/ /*** Texture memory ***/
static u8 *texturemem = NULL; static u8 *texturemem = NULL;
@ -75,6 +79,75 @@ static camera cam = { {0.0F, 0.0F, 0.0F},
{0.0F, 0.0F, -0.5F} {0.0F, 0.0F, -0.5F}
}; };
#ifdef VIDEO_THREADING
/****************************************************************************
* 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 ***/
LWP_CreateThread (&vbthread, vbgetback, NULL, vbstack, TSTACK, 80);
}
#endif
/****************************************************************************
* 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++;
SMBTimer++;
}
/**************************************************************************** /****************************************************************************
* Drawing screen * Drawing screen
***************************************************************************/ ***************************************************************************/
@ -96,6 +169,56 @@ showscreen ()
VIDEO_WaitVSync (); VIDEO_WaitVSync ();
} }
/****************************************************************************
* 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);
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);
GX_SetArray(GX_VA_POS, square, 3 * sizeof(s16));
GX_SetNumTexGens(1);
GX_SetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_IDENTITY);
GX_InvalidateTexAll();
GX_InitTexObj(&texobj, texturemem, vwidth, vheight, GX_TF_RGB565,
GX_CLAMP, GX_CLAMP, GX_FALSE);
}
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 * StartGX
****************************************************************************/ ****************************************************************************/
@ -158,85 +281,47 @@ UpdatePadsCB ()
****************************************************************************/ ****************************************************************************/
void InitialiseVideo () void InitialiseVideo ()
{ {
/*** Start VIDEO Subsystem ***/ /*** Start VIDEO Subsystem ***/
VIDEO_Init(); VIDEO_Init();
vmode = VIDEO_GetPreferredMode(NULL); vmode = VIDEO_GetPreferredMode(NULL);
VIDEO_Configure(vmode); VIDEO_Configure(vmode);
screenheight = vmode->xfbHeight; screenheight = vmode->xfbHeight;
xfb[0] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode)); xfb[0] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
xfb[1] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode)); xfb[1] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
VIDEO_SetNextFramebuffer(xfb[0]); // Clear framebuffers etc.
VIDEO_SetBlack(FALSE); VIDEO_ClearFrameBuffer (vmode, xfb[0], COLOR_BLACK);
VIDEO_ClearFrameBuffer (vmode, xfb[1], COLOR_BLACK);
VIDEO_SetNextFramebuffer (xfb[0]);
// set timings in VI to PAL60 // video callbacks
VIDEO_SetPostRetraceCallback ((VIRetraceCallback)UpdatePadsCB);
VIDEO_SetPreRetraceCallback ((VIRetraceCallback)copy_to_xfb);
VIDEO_SetNextFramebuffer(xfb[0]);
VIDEO_SetBlack(FALSE);
// set timings in VI to PAL60
/*u32 *vreg = (u32 *)0xCC002000; /*u32 *vreg = (u32 *)0xCC002000;
for (int i = 0; i < 64; i++ ) for (int i = 0; i < 64; i++ )
vreg[i] = vpal60[i];*/ vreg[i] = vpal60[i];*/
VIDEO_Flush(); VIDEO_Flush();
VIDEO_WaitVSync(); VIDEO_WaitVSync();
if(vmode->viTVMode&VI_NON_INTERLACE) if(vmode->viTVMode&VI_NON_INTERLACE)
VIDEO_WaitVSync(); VIDEO_WaitVSync();
VIDEO_SetPostRetraceCallback((VIRetraceCallback)UpdatePadsCB);
VIDEO_SetNextFramebuffer(xfb[0]);
GX_Start(); copynow = GX_FALSE;
clearscreen(); GX_Start();
} draw_init();
/**************************************************************************** #ifdef VIDEO_THREADING
* Scaler Support Functions InitVideoThread ();
****************************************************************************/ #endif
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);
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);
GX_SetArray(GX_VA_POS, square, 3 * sizeof(s16));
GX_SetNumTexGens(1);
GX_SetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_IDENTITY);
GX_InvalidateTexAll();
GX_InitTexObj(&texobj, texturemem, vwidth, vheight, GX_TF_RGB565,
GX_CLAMP, GX_CLAMP, GX_FALSE);
}
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();
} }
void GX_Render_Init(int width, int height, int haspect, int vaspect) void GX_Render_Init(int width, int height, int haspect, int vaspect)
@ -257,6 +342,73 @@ void GX_Render_Init(int width, int height, int haspect, int vaspect)
video_haspect = haspect; video_haspect = haspect;
} }
/****************************************************************************
* ResetVideo_Emu
*
* Reset the video/rendering mode for the emulator rendering
****************************************************************************/
void
ResetVideo_Emu ()
{
GXRModeObj *rmode;
Mtx p;
rmode = vmode; // same mode as menu
VIDEO_Configure (rmode);
VIDEO_ClearFrameBuffer (rmode, xfb[whichfb], COLOR_BLACK);
VIDEO_Flush();
VIDEO_WaitVSync();
if (rmode->viTVMode & VI_NON_INTERLACE) VIDEO_WaitVSync();
else while (VIDEO_GetNextField()) VIDEO_WaitVSync();
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);
GX_SetDispCopySrc (0, 0, rmode->fbWidth, rmode->efbHeight);
GX_SetDispCopyDst (rmode->fbWidth, rmode->xfbHeight);
GX_SetCopyFilter (rmode->aa, rmode->sample_pattern, (GCSettings.render == 0) ? GX_TRUE : GX_FALSE, rmode->vfilter); // AA on only for filtered mode
GX_SetFieldMode (rmode->field_rendering, ((rmode->viHeight == 2 * rmode->xfbHeight) ? GX_ENABLE : GX_DISABLE));
GX_SetPixelFmt (GX_PF_RGB8_Z24, GX_ZC_LINEAR);
/*
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);*/
}
/****************************************************************************
* ResetVideo_Menu
*
* Reset the video/rendering mode for the menu
****************************************************************************/
void
ResetVideo_Menu ()
{
Mtx p;
VIDEO_Configure (vmode);
VIDEO_ClearFrameBuffer (vmode, xfb[whichfb], COLOR_BLACK);
VIDEO_Flush();
VIDEO_WaitVSync();
if (vmode->viTVMode & VI_NON_INTERLACE) VIDEO_WaitVSync();
else while (VIDEO_GetNextField()) VIDEO_WaitVSync();
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);*/
}
/**************************************************************************** /****************************************************************************
* MakeTexture * MakeTexture
* *
@ -309,7 +461,7 @@ MakeTexture (const void *src, void *dst, s32 width, s32 height)
****************************************************************************/ ****************************************************************************/
void GX_Render(int width, int height, u8 * buffer, int pitch) void GX_Render(int width, int height, u8 * buffer, int pitch)
{ {
/*int h, w; int h, w;
long long int *dst = (long long int *) texturemem; long long int *dst = (long long int *) texturemem;
long long int *src1 = (long long int *) buffer; long long int *src1 = (long long int *) buffer;
long long int *src2 = (long long int *) (buffer + pitch); long long int *src2 = (long long int *) (buffer + pitch);
@ -317,11 +469,21 @@ void GX_Render(int width, int height, u8 * buffer, int pitch)
long long int *src4 = (long long int *) (buffer + (pitch * 3)); long long int *src4 = (long long int *) (buffer + (pitch * 3));
int rowpitch = (pitch >> 3) * 3; int rowpitch = (pitch >> 3) * 3;
int rowadjust = ( pitch % 8 ) * 4; int rowadjust = ( pitch % 8 ) * 4;
char *ra = NULL;*/ char *ra = NULL;
vwidth = width; vwidth = width;
vheight = height; vheight = height;
#ifdef VIDEO_THREADING
// Ensure previous vb has complete
while ((LWP_ThreadIsSuspended (vbthread) == 0) || (copynow == GX_TRUE))
#else
while (copynow == GX_TRUE)
#endif
{
usleep (50);
}
whichfb ^= 1; whichfb ^= 1;
if ((oldvheight != vheight) || (oldvwidth != vwidth)) if ((oldvheight != vheight) || (oldvwidth != vwidth))
@ -330,6 +492,8 @@ void GX_Render(int width, int height, u8 * buffer, int pitch)
int xscale = video_haspect; int xscale = video_haspect;
int yscale = video_vaspect; int yscale = video_vaspect;
ResetVideo_Emu (); // reset video to emulator rendering settings
// change zoom // change zoom
xscale *= zoom_level; xscale *= zoom_level;
yscale *= zoom_level; yscale *= zoom_level;
@ -350,11 +514,9 @@ void GX_Render(int width, int height, u8 * buffer, int pitch)
GX_SetViewport(0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1); GX_SetViewport(0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1);
} }
GX_InvalidateTexAll(); //MakeTexture ((char *) buffer, (char *) texturemem, vwidth, vheight); // convert image to texture
MakeTexture ((char *) buffer, (char *) texturemem, vwidth, vheight); // convert image to texture for (h = 0; h < vheight; h += 4)
/*for (h = 0; h < vheight; h += 4)
{ {
for (w = 0; w < (vwidth >> 2); w++) for (w = 0; w < (vwidth >> 2); w++)
{ {
@ -380,9 +542,10 @@ void GX_Render(int width, int height, u8 * buffer, int pitch)
ra = (char *)src4; ra = (char *)src4;
src4 = (long long int *)(ra + rowadjust); src4 = (long long int *)(ra + rowadjust);
} }
}*/ }
DCFlushRange(texturemem, texturesize); DCFlushRange(texturemem, texturesize);
GX_InvalidateTexAll ();
GX_SetNumChans(1); GX_SetNumChans(1);
GX_LoadTexObj(&texobj, GX_TEXMAP0); GX_LoadTexObj(&texobj, GX_TEXMAP0);
@ -391,13 +554,14 @@ void GX_Render(int width, int height, u8 * buffer, int pitch)
GX_DrawDone(); GX_DrawDone();
GX_CopyDisp(xfb[whichfb], GX_TRUE);
GX_Flush();
VIDEO_SetNextFramebuffer(xfb[whichfb]); VIDEO_SetNextFramebuffer(xfb[whichfb]);
VIDEO_Flush(); VIDEO_Flush();
copynow = GX_TRUE;
SMBTimer++; #ifdef VIDEO_THREADING
// Return to caller, don't waste time waiting for vb
LWP_ResumeThread (vbthread);
#endif
} }
/**************************************************************************** /****************************************************************************

View File

@ -22,5 +22,6 @@ void clearscreen ();
void showscreen (); void showscreen ();
void zoom (float speed); void zoom (float speed);
void zoom_reset (); void zoom_reset ();
void ResetVideo_Menu ();
#endif #endif