2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
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.
|
|
|
|
***************************************************************************/
|
2008-09-16 07:42:21 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
2008-09-18 05:12:56 +02:00
|
|
|
#include "images/bg.h"
|
2008-09-22 07:01:57 +02:00
|
|
|
#include "pal60.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-09-26 10:10:36 +02:00
|
|
|
extern unsigned int SMBTimer; // timer to reset SMB connection
|
|
|
|
|
2008-09-16 07:42:21 +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
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
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-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
/*** Texture memory ***/
|
2008-09-26 03:01:08 +02:00
|
|
|
static u8 *texturemem = NULL;
|
2008-09-16 07:42:21 +02:00
|
|
|
static int texturesize;
|
|
|
|
|
|
|
|
GXTexObj texobj;
|
|
|
|
static Mtx view;
|
|
|
|
static int vwidth, vheight, oldvwidth, oldvheight;
|
2008-10-09 08:48:46 +02:00
|
|
|
static int video_vaspect, video_haspect;
|
|
|
|
float zoom_level = 1;
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#define HASPECT 80
|
|
|
|
#define VASPECT 45
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
Think of the output as a -80 x 80 by -60 x 60 graph.
|
|
|
|
***/
|
|
|
|
static s16 square[] ATTRIBUTE_ALIGN(32) = {
|
|
|
|
/*
|
|
|
|
* X, Y, Z
|
|
|
|
* Values set are for roughly 4:3 aspect
|
|
|
|
*/
|
|
|
|
-HASPECT, VASPECT, 0, // 0
|
|
|
|
HASPECT, VASPECT, 0, // 1
|
|
|
|
HASPECT, -VASPECT, 0, // 2
|
|
|
|
-HASPECT, -VASPECT, 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-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-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* StartGX
|
|
|
|
****************************************************************************/
|
|
|
|
void GX_Start()
|
|
|
|
{
|
|
|
|
Mtx p;
|
|
|
|
|
|
|
|
GXColor gxbackground = { 0, 0, 0, 0xff };
|
|
|
|
|
|
|
|
/*** Clear out FIFO area ***/
|
|
|
|
memset(&gp_fifo, 0, DEFAULT_FIFO_SIZE);
|
|
|
|
|
|
|
|
/*** Initialise GX ***/
|
2008-09-26 10:10:36 +02:00
|
|
|
GX_Init(&gp_fifo, DEFAULT_FIFO_SIZE);
|
2008-09-16 07:42:21 +02:00
|
|
|
GX_SetCopyClear(gxbackground, 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);
|
2008-09-26 03:01:08 +02:00
|
|
|
GX_SetCopyFilter(vmode->aa, vmode->sample_pattern, GX_TRUE, vmode->vfilter);
|
2008-09-16 07:42:21 +02:00
|
|
|
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_CopyDisp(xfb[whichfb ^ 1], GX_TRUE);
|
|
|
|
GX_SetDispCopyGamma(GX_GM_1_0);
|
|
|
|
|
|
|
|
guPerspective(p, 60, 1.33F, 10.0F, 1000.0F);
|
|
|
|
GX_LoadProjectionMtx(p, GX_PERSPECTIVE);
|
2008-10-10 06:10:28 +02:00
|
|
|
|
|
|
|
GX_SetTevOp(GX_TEVSTAGE0, GX_DECAL);
|
|
|
|
GX_SetTevOrder(GX_TEVSTAGE0, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR0A0);
|
|
|
|
|
|
|
|
GX_SetZMode(GX_TRUE, GX_LEQUAL, GX_TRUE);
|
|
|
|
GX_SetColorUpdate(GX_TRUE);
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* 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 ()
|
|
|
|
{
|
|
|
|
/*** Start VIDEO Subsystem ***/
|
|
|
|
VIDEO_Init();
|
|
|
|
|
|
|
|
vmode = VIDEO_GetPreferredMode(NULL);
|
|
|
|
VIDEO_Configure(vmode);
|
|
|
|
|
|
|
|
screenheight = vmode->xfbHeight;
|
|
|
|
|
|
|
|
xfb[0] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
|
|
|
|
xfb[1] = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
|
|
|
|
|
|
|
|
VIDEO_SetNextFramebuffer(xfb[0]);
|
|
|
|
VIDEO_SetBlack(FALSE);
|
|
|
|
|
|
|
|
// set timings in VI to PAL60
|
|
|
|
/*u32 *vreg = (u32 *)0xCC002000;
|
|
|
|
for (int i = 0; i < 64; i++ )
|
|
|
|
vreg[i] = vpal60[i];*/
|
|
|
|
|
|
|
|
VIDEO_Flush();
|
|
|
|
VIDEO_WaitVSync();
|
|
|
|
|
|
|
|
if(vmode->viTVMode&VI_NON_INTERLACE)
|
|
|
|
VIDEO_WaitVSync();
|
|
|
|
VIDEO_SetPostRetraceCallback((VIRetraceCallback)UpdatePadsCB);
|
|
|
|
VIDEO_SetNextFramebuffer(xfb[0]);
|
|
|
|
|
|
|
|
GX_Start();
|
2008-10-09 08:48:46 +02:00
|
|
|
clearscreen();
|
2008-09-26 10:10:36 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 07:42:21 +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);
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
/*** Allocate 32byte aligned texture memory ***/
|
|
|
|
texturesize = (width * height) * 2;
|
2008-10-09 08:48:46 +02:00
|
|
|
|
2008-09-26 03:01:08 +02:00
|
|
|
if (texturemem)
|
|
|
|
free(texturemem);
|
2008-10-09 08:48:46 +02:00
|
|
|
|
2008-09-26 03:01:08 +02:00
|
|
|
texturemem = (u8 *) memalign(32, texturesize);
|
2008-09-26 10:10:36 +02:00
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
memset(texturemem, 0, texturesize);
|
|
|
|
|
|
|
|
/*** Setup for first call to scaler ***/
|
2008-09-16 08:35:19 +02:00
|
|
|
vwidth = vheight = oldvwidth = oldvheight = -1;
|
2008-10-09 08:48:46 +02:00
|
|
|
video_vaspect = vaspect;
|
|
|
|
video_haspect = haspect;
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|
2008-10-10 06:10:28 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* MakeTexture
|
|
|
|
*
|
|
|
|
* Proper GNU Asm rendition of the above, converted by shagkur. - Thanks!
|
|
|
|
***************************************************************************/
|
|
|
|
void
|
|
|
|
MakeTexture (const void *src, void *dst, s32 width, s32 height)
|
|
|
|
{
|
|
|
|
register u32 tmp0 = 0, tmp1 = 0, tmp2 = 0, tmp3 = 0;
|
|
|
|
|
|
|
|
__asm__ __volatile__ (" srwi %6,%6,2\n"
|
|
|
|
" srwi %7,%7,2\n"
|
|
|
|
" subi %3,%4,4\n"
|
|
|
|
" mr %4,%3\n"
|
|
|
|
" subi %4,%4,4\n"
|
|
|
|
"2: mtctr %6\n"
|
|
|
|
" mr %0,%5\n"
|
|
|
|
//
|
|
|
|
"1: lwz %1,0(%5)\n"
|
|
|
|
" stwu %1,8(%4)\n"
|
|
|
|
" lwz %2,4(%5)\n"
|
|
|
|
" stwu %2,8(%3)\n"
|
|
|
|
" lwz %1,1024(%5)\n"
|
|
|
|
" stwu %1,8(%4)\n"
|
|
|
|
" lwz %2,1028(%5)\n"
|
|
|
|
" stwu %2,8(%3)\n"
|
|
|
|
" lwz %1,2048(%5)\n"
|
|
|
|
" stwu %1,8(%4)\n"
|
|
|
|
" lwz %2,2052(%5)\n"
|
|
|
|
" stwu %2,8(%3)\n"
|
|
|
|
" lwz %1,3072(%5)\n"
|
|
|
|
" stwu %1,8(%4)\n"
|
|
|
|
" lwz %2,3076(%5)\n"
|
|
|
|
" stwu %2,8(%3)\n"
|
|
|
|
" addi %5,%5,8\n"
|
|
|
|
" bdnz 1b\n"
|
|
|
|
" addi %5,%0,4096\n"
|
|
|
|
" subic. %7,%7,1\n"
|
|
|
|
" bne 2b"
|
|
|
|
// 0 1 2 3 4 5 6 7
|
|
|
|
:"=&r" (tmp0), "=&r" (tmp1), "=&r" (tmp2),
|
|
|
|
"=&r" (tmp3), "+r" (dst):"r" (src), "r" (width),
|
|
|
|
"r" (height));
|
|
|
|
}
|
|
|
|
|
2008-09-16 07:42:21 +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 06:10:28 +02:00
|
|
|
/*int h, w;
|
2008-09-16 07:42:21 +02:00
|
|
|
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 06:10:28 +02:00
|
|
|
char *ra = NULL;*/
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
vwidth = width;
|
|
|
|
vheight = height;
|
|
|
|
|
|
|
|
whichfb ^= 1;
|
|
|
|
|
|
|
|
if ((oldvheight != vheight) || (oldvwidth != vwidth))
|
|
|
|
{
|
2008-10-09 08:48:46 +02:00
|
|
|
// Update scaling
|
|
|
|
int xscale = video_haspect;
|
|
|
|
int yscale = video_vaspect;
|
|
|
|
|
|
|
|
// change zoom
|
|
|
|
xscale *= zoom_level;
|
|
|
|
yscale *= zoom_level;
|
|
|
|
|
|
|
|
// Set new aspect (now with crap AR hack!)
|
|
|
|
square[0] = square[9] = (-xscale - 7);
|
|
|
|
square[3] = square[6] = (xscale + 7);
|
|
|
|
square[1] = square[4] = (yscale + 7);
|
|
|
|
square[7] = square[10] = (-yscale - 7);
|
|
|
|
|
|
|
|
GX_InvVtxCache (); // update vertex cache
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
oldvwidth = vwidth;
|
|
|
|
oldvheight = vheight;
|
|
|
|
draw_init();
|
|
|
|
memset(&view, 0, sizeof(Mtx));
|
|
|
|
guLookAt(view, &cam.pos, &cam.up, &cam.view);
|
|
|
|
GX_SetViewport(0, 0, vmode->fbWidth, vmode->efbHeight, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
GX_InvalidateTexAll();
|
|
|
|
|
2008-10-10 06:10:28 +02:00
|
|
|
MakeTexture ((char *) buffer, (char *) texturemem, vwidth, vheight); // convert image to texture
|
|
|
|
|
|
|
|
/*for (h = 0; h < vheight; h += 4)
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
|
|
|
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 06:10:28 +02:00
|
|
|
}*/
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
DCFlushRange(texturemem, texturesize);
|
|
|
|
|
|
|
|
GX_SetNumChans(1);
|
|
|
|
GX_LoadTexObj(&texobj, GX_TEXMAP0);
|
|
|
|
|
|
|
|
draw_square(view);
|
|
|
|
|
|
|
|
GX_DrawDone();
|
|
|
|
|
|
|
|
GX_CopyDisp(xfb[whichfb], GX_TRUE);
|
|
|
|
GX_Flush();
|
|
|
|
|
|
|
|
VIDEO_SetNextFramebuffer(xfb[whichfb]);
|
|
|
|
VIDEO_Flush();
|
2008-09-26 10:10:36 +02:00
|
|
|
|
|
|
|
SMBTimer++;
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2008-10-09 08:48:46 +02:00
|
|
|
* Zoom Functions
|
2008-09-16 07:42:21 +02:00
|
|
|
***************************************************************************/
|
|
|
|
void
|
2008-10-09 08:48:46 +02:00
|
|
|
zoom (float speed)
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
2008-10-09 08:48:46 +02:00
|
|
|
if (zoom_level > 1)
|
|
|
|
zoom_level += (speed / -100.0);
|
|
|
|
else
|
|
|
|
zoom_level += (speed / -200.0);
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-10-09 08:48:46 +02:00
|
|
|
if (zoom_level < 0.5) zoom_level = 0.5;
|
|
|
|
else if (zoom_level > 10.0) zoom_level = 10.0;
|
|
|
|
|
|
|
|
oldvheight = 0; // update video
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-09 08:48:46 +02:00
|
|
|
zoom_reset ()
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
2008-10-09 08:48:46 +02:00
|
|
|
zoom_level = 1.0;
|
2008-09-26 10:10:36 +02:00
|
|
|
|
2008-10-09 08:48:46 +02:00
|
|
|
oldvheight = 0; // update video
|
|
|
|
}
|