2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
#include <list>
|
2008-12-08 05:25:12 +00:00
|
|
|
#include <d3dx9.h>
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
#include "Statistics.h"
|
|
|
|
|
|
|
|
#include "Config.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "VertexManager.h"
|
|
|
|
#include "Render.h"
|
|
|
|
#include "OpcodeDecoding.h"
|
2009-06-22 09:31:30 +00:00
|
|
|
#include "BPStructs.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "XFStructs.h"
|
|
|
|
#include "D3DPostprocess.h"
|
|
|
|
#include "D3DUtil.h"
|
2008-12-25 15:56:36 +00:00
|
|
|
#include "VertexShaderManager.h"
|
|
|
|
#include "PixelShaderManager.h"
|
2009-02-28 22:10:38 +00:00
|
|
|
#include "VertexShaderCache.h"
|
2008-12-26 19:39:12 +00:00
|
|
|
#include "PixelShaderCache.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "TextureCache.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
#include "EmuWindow.h"
|
2009-03-28 21:07:16 +00:00
|
|
|
#include "AVIDump.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-09-02 06:33:41 +00:00
|
|
|
#include "debugger/debugger.h"
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
float Renderer::m_x;
|
|
|
|
float Renderer::m_y;
|
|
|
|
float Renderer::m_width;
|
|
|
|
float Renderer::m_height;
|
|
|
|
float Renderer::xScale;
|
|
|
|
float Renderer::yScale;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-03-28 21:07:16 +00:00
|
|
|
int Renderer::m_recordWidth;
|
|
|
|
int Renderer::m_recordHeight;
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
std::vector<LPDIRECT3DBASETEXTURE9> Renderer::m_Textures;
|
2008-12-26 17:02:46 +00:00
|
|
|
|
|
|
|
DWORD Renderer::m_RenderStates[MaxRenderStates+46];
|
2008-12-08 05:25:12 +00:00
|
|
|
DWORD Renderer::m_TextureStageStates[MaxTextureStages][MaxTextureTypes];
|
|
|
|
DWORD Renderer::m_SamplerStates[MaxSamplerSize][MaxSamplerTypes];
|
|
|
|
|
2009-03-28 21:07:16 +00:00
|
|
|
bool Renderer::m_LastFrameDumped;
|
|
|
|
bool Renderer::m_AVIDumping;
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
#define NUMWNDRES 6
|
|
|
|
extern int g_Res[NUMWNDRES][2];
|
|
|
|
|
|
|
|
struct Message
|
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
Message(const std::string &msg, u32 dw) : message(msg), dwTimeStamp(dw) { }
|
2008-12-08 05:25:12 +00:00
|
|
|
std::string message;
|
|
|
|
u32 dwTimeStamp;
|
|
|
|
};
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
static std::list<Message> s_listMsgs;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
void Renderer::Init(SVideoInitialize &_VideoInitialize)
|
|
|
|
{
|
|
|
|
EmuWindow::SetSize(g_Res[g_Config.iWindowedRes][0], g_Res[g_Config.iWindowedRes][1]);
|
|
|
|
|
|
|
|
D3D::Create(g_Config.iAdapter, EmuWindow::GetWnd(), g_Config.bFullscreen, g_Config.iFSResolution, g_Config.iMultisampleMode);
|
2009-03-01 01:09:32 +00:00
|
|
|
|
2009-03-01 12:07:34 +00:00
|
|
|
float width = (float)D3D::GetDisplayWidth();
|
|
|
|
float height = (float)D3D::GetDisplayHeight();
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
m_x = 0;
|
|
|
|
m_y = 0;
|
2009-03-01 12:07:34 +00:00
|
|
|
m_width = width;
|
|
|
|
m_height = height;
|
2009-09-02 04:10:40 +00:00
|
|
|
xScale = m_width / (float)EFB_WIDTH;
|
|
|
|
yScale = m_height / (float)EFB_HEIGHT;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-03-28 21:07:16 +00:00
|
|
|
m_LastFrameDumped = false;
|
|
|
|
m_AVIDumping = false;
|
|
|
|
|
2009-03-01 12:07:34 +00:00
|
|
|
// We're not using much fixed function. Let's just set the matrices to identity.
|
2009-02-28 22:10:38 +00:00
|
|
|
D3DXMATRIX mtx;
|
|
|
|
D3DXMatrixIdentity(&mtx);
|
|
|
|
D3D::dev->SetTransform(D3DTS_VIEW, &mtx);
|
|
|
|
D3D::dev->SetTransform(D3DTS_WORLD, &mtx);
|
|
|
|
|
2009-03-01 12:07:34 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
D3D::font.Init();
|
|
|
|
Initialize();
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::Shutdown()
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
D3D::font.Shutdown();
|
|
|
|
D3D::EndFrame();
|
|
|
|
D3D::Close();
|
2009-03-28 21:07:16 +00:00
|
|
|
|
|
|
|
if(m_AVIDumping) {
|
|
|
|
AVIDump::Stop();
|
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::Initialize()
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
m_Textures.reserve(MaxTextureStages);
|
|
|
|
for (int i = 0; i < MaxTextureStages; i++)
|
|
|
|
m_Textures.push_back(NULL);
|
|
|
|
for (int i = 0; i < 8; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
D3D::dev->SetSamplerState(i, D3DSAMP_MAXANISOTROPY, 16);
|
2009-03-01 12:07:34 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
Postprocess::Initialize();
|
|
|
|
Postprocess::BeginFrame();
|
|
|
|
D3D::BeginFrame(true, 0);
|
|
|
|
VertexManager::BeginFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Renderer::AddMessage(const std::string &message, u32 ms)
|
|
|
|
{
|
|
|
|
s_listMsgs.push_back(Message(message, timeGetTime()+ms));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Renderer::ProcessMessages()
|
|
|
|
{
|
2009-03-01 12:07:34 +00:00
|
|
|
if (s_listMsgs.size() > 0)
|
|
|
|
{
|
2008-12-08 05:25:12 +00:00
|
|
|
int left = 25, top = 15;
|
|
|
|
std::list<Message>::iterator it = s_listMsgs.begin();
|
|
|
|
|
2009-03-01 12:07:34 +00:00
|
|
|
while (it != s_listMsgs.end())
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
int time_left = (int)(it->dwTimeStamp - timeGetTime());
|
|
|
|
int alpha = 255;
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
if (time_left<1024)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
alpha=time_left>>2;
|
2009-02-28 22:10:38 +00:00
|
|
|
if (time_left<0) alpha=0;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
alpha <<= 24;
|
|
|
|
|
|
|
|
RenderText(it->message, left+1, top+1, 0x000000|alpha);
|
|
|
|
RenderText(it->message, left, top, 0xffff30|alpha);
|
|
|
|
top += 15;
|
|
|
|
|
|
|
|
if (time_left <= 0)
|
|
|
|
it = s_listMsgs.erase(it);
|
|
|
|
else ++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Renderer::RenderText(const std::string &text, int left, int top, u32 color)
|
|
|
|
{
|
|
|
|
D3D::font.DrawTextScaled((float)left, (float)top, 20, 20, 0.0f, color, text.c_str(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dumpMatrix(D3DXMATRIX &mtx)
|
|
|
|
{
|
2009-03-01 12:07:34 +00:00
|
|
|
for (int y = 0; y < 4; y++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
char temp[256];
|
|
|
|
sprintf(temp,"%4.4f %4.4f %4.4f %4.4f",mtx.m[y][0],mtx.m[y][1],mtx.m[y][2],mtx.m[y][3]);
|
|
|
|
g_VideoInitialize.pLog(temp, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-28 21:07:16 +00:00
|
|
|
void formatBufferDump(char *in, char *out, int w, int h, int p)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < h; i++) {
|
|
|
|
char *line = in + (h - i - 1) * p;
|
|
|
|
|
|
|
|
for (int j = 0; j < w; j++) {
|
|
|
|
memcpy(out, line, 3);
|
|
|
|
out += 3;
|
|
|
|
line += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SwapBuffers()
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
// Center window again.
|
2008-12-08 05:25:12 +00:00
|
|
|
if (EmuWindow::GetParentWnd())
|
|
|
|
{
|
|
|
|
RECT rcWindow;
|
|
|
|
GetWindowRect(EmuWindow::GetParentWnd(), &rcWindow);
|
|
|
|
|
|
|
|
int width = rcWindow.right - rcWindow.left;
|
|
|
|
int height = rcWindow.bottom - rcWindow.top;
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
::MoveWindow(EmuWindow::GetWnd(), 0, 0, width, height, FALSE);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2009-03-28 21:07:16 +00:00
|
|
|
// Frame dumping routine
|
|
|
|
if (g_Config.bDumpFrames) {
|
|
|
|
D3DDISPLAYMODE DisplayMode;
|
|
|
|
if (SUCCEEDED(D3D::dev->GetDisplayMode(0, &DisplayMode))) {
|
|
|
|
LPDIRECT3DSURFACE9 surf;
|
|
|
|
if (SUCCEEDED(D3D::dev->CreateOffscreenPlainSurface(DisplayMode.Width, DisplayMode.Height, D3DFMT_A8R8G8B8, D3DPOOL_SCRATCH, &surf, NULL))) {
|
|
|
|
if (!m_LastFrameDumped) {
|
|
|
|
RECT windowRect;
|
|
|
|
GetWindowRect(EmuWindow::GetWnd(), &windowRect);
|
|
|
|
m_recordWidth = windowRect.right - windowRect.left;
|
|
|
|
m_recordHeight = windowRect.bottom - windowRect.top;
|
|
|
|
m_AVIDumping = AVIDump::Start(EmuWindow::GetParentWnd(), m_recordWidth, m_recordHeight);
|
|
|
|
if (!m_AVIDumping) {
|
|
|
|
PanicAlert("Error dumping frames to AVI.");
|
|
|
|
} else {
|
|
|
|
char msg [255];
|
|
|
|
sprintf(msg, "Dumping Frames to \"%s/framedump0.avi\" (%dx%d RGB24)", FULL_FRAMES_DIR, m_recordWidth, m_recordHeight);
|
|
|
|
AddMessage(msg, 2000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_AVIDumping) {
|
|
|
|
if (SUCCEEDED(D3D::dev->GetFrontBufferData(0, surf))) {
|
|
|
|
RECT windowRect;
|
|
|
|
GetWindowRect(EmuWindow::GetWnd(), &windowRect);
|
|
|
|
D3DLOCKED_RECT rect;
|
|
|
|
if (SUCCEEDED(surf->LockRect(&rect, &windowRect, D3DLOCK_NO_DIRTY_UPDATE | D3DLOCK_NOSYSLOCK | D3DLOCK_READONLY))) {
|
|
|
|
char *data = (char *) malloc(3 * m_recordWidth * m_recordHeight);
|
|
|
|
formatBufferDump((char *) rect.pBits, data, m_recordWidth, m_recordHeight, rect.Pitch);
|
|
|
|
AVIDump::AddFrame(data);
|
|
|
|
free(data);
|
|
|
|
surf->UnlockRect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_LastFrameDumped = true;
|
|
|
|
surf->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(m_LastFrameDumped && m_AVIDumping) {
|
|
|
|
AVIDump::Stop();
|
|
|
|
m_AVIDumping = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_LastFrameDumped = false;
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
//Finish up the current frame, print some stats
|
|
|
|
Postprocess::FinalizeFrame();
|
|
|
|
if (g_Config.bOverlayStats)
|
|
|
|
{
|
|
|
|
char st[2048];
|
|
|
|
char *p = st;
|
2008-12-25 15:56:36 +00:00
|
|
|
p+=sprintf(p,"textures created: %i\n",stats.numTexturesCreated);
|
|
|
|
p+=sprintf(p,"textures alive: %i\n",stats.numTexturesAlive);
|
|
|
|
p+=sprintf(p,"pshaders created: %i\n",stats.numPixelShadersCreated);
|
|
|
|
p+=sprintf(p,"pshaders alive: %i\n",stats.numPixelShadersAlive);
|
|
|
|
p+=sprintf(p,"vshaders created: %i\n",stats.numVertexShadersCreated);
|
|
|
|
p+=sprintf(p,"vshaders alive: %i\n",stats.numVertexShadersAlive);
|
|
|
|
p+=sprintf(p,"dlists called: %i\n",stats.numDListsCalled);
|
|
|
|
p+=sprintf(p,"dlists created: %i\n",stats.numDListsCreated);
|
|
|
|
p+=sprintf(p,"dlists alive: %i\n",stats.numDListsAlive);
|
|
|
|
p+=sprintf(p,"primitives: %i\n",stats.thisFrame.numPrims);
|
|
|
|
p+=sprintf(p,"primitive joins: %i\n",stats.thisFrame.numPrimitiveJoins);
|
|
|
|
p+=sprintf(p,"primitives (DL): %i\n",stats.thisFrame.numDLPrims);
|
|
|
|
p+=sprintf(p,"XF loads: %i\n",stats.thisFrame.numXFLoads);
|
|
|
|
p+=sprintf(p,"XF loads (DL): %i\n",stats.thisFrame.numXFLoadsInDL);
|
|
|
|
p+=sprintf(p,"CP loads: %i\n",stats.thisFrame.numCPLoads);
|
|
|
|
p+=sprintf(p,"CP loads (DL): %i\n",stats.thisFrame.numCPLoadsInDL);
|
|
|
|
p+=sprintf(p,"BP loads: %i\n",stats.thisFrame.numBPLoads);
|
|
|
|
p+=sprintf(p,"BP loads (DL): %i\n",stats.thisFrame.numBPLoadsInDL);
|
2009-03-08 23:19:02 +00:00
|
|
|
p+=sprintf(p,"Vertex Loaders: %i\n",stats.numVertexLoaders);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
D3D::font.DrawTextScaled(0,30,20,20,0.0f,0xFF00FFFF,st,false);
|
|
|
|
|
|
|
|
//end frame
|
|
|
|
}
|
|
|
|
|
2009-03-08 23:46:47 +00:00
|
|
|
if (g_Config.bOverlayProjStats)
|
|
|
|
{
|
|
|
|
char st[2048];
|
|
|
|
char *p = st;
|
|
|
|
|
|
|
|
p+=sprintf(p,"Projection #: X for Raw 6=0 (X for Raw 6!=0)\n\n");
|
|
|
|
p+=sprintf(p,"Projection 0: %f (%f) Raw 0: %f\n", stats.gproj_0, stats.g2proj_0, stats.proj_0);
|
|
|
|
p+=sprintf(p,"Projection 1: %f (%f)\n", stats.gproj_1, stats.g2proj_1);
|
|
|
|
p+=sprintf(p,"Projection 2: %f (%f) Raw 1: %f\n", stats.gproj_2, stats.g2proj_2, stats.proj_1);
|
|
|
|
p+=sprintf(p,"Projection 3: %f (%f)\n\n", stats.gproj_3, stats.g2proj_3);
|
|
|
|
p+=sprintf(p,"Projection 4: %f (%f)\n", stats.gproj_4, stats.g2proj_4);
|
|
|
|
p+=sprintf(p,"Projection 5: %f (%f) Raw 2: %f\n", stats.gproj_5, stats.g2proj_5, stats.proj_2);
|
|
|
|
p+=sprintf(p,"Projection 6: %f (%f) Raw 3: %f\n", stats.gproj_6, stats.g2proj_6, stats.proj_3);
|
|
|
|
p+=sprintf(p,"Projection 7: %f (%f)\n\n", stats.gproj_7, stats.g2proj_7);
|
|
|
|
p+=sprintf(p,"Projection 8: %f (%f)\n", stats.gproj_8, stats.g2proj_8);
|
|
|
|
p+=sprintf(p,"Projection 9: %f (%f)\n", stats.gproj_9, stats.g2proj_9);
|
|
|
|
p+=sprintf(p,"Projection 10: %f (%f) Raw 4: %f\n\n", stats.gproj_10, stats.g2proj_10, stats.proj_4);
|
|
|
|
p+=sprintf(p,"Projection 11: %f (%f) Raw 5: %f\n\n", stats.gproj_11, stats.g2proj_11, stats.proj_5);
|
|
|
|
p+=sprintf(p,"Projection 12: %f (%f)\n", stats.gproj_12, stats.g2proj_12);
|
|
|
|
p+=sprintf(p,"Projection 13: %f (%f)\n", stats.gproj_13, stats.g2proj_13);
|
|
|
|
p+=sprintf(p,"Projection 14: %f (%f)\n", stats.gproj_14, stats.g2proj_14);
|
|
|
|
p+=sprintf(p,"Projection 15: %f (%f)\n", stats.gproj_15, stats.g2proj_15);
|
|
|
|
|
|
|
|
D3D::font.DrawTextScaled(0,30,20,20,0.0f,0xFF00FFFF,st,false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
ProcessMessages();
|
|
|
|
|
|
|
|
#if defined(DVPROFILE)
|
2009-02-28 22:10:38 +00:00
|
|
|
if (g_bWriteProfile) {
|
2008-12-08 05:25:12 +00:00
|
|
|
//g_bWriteProfile = 0;
|
|
|
|
static int framenum = 0;
|
|
|
|
const int UPDATE_FRAMES = 8;
|
2009-02-28 22:10:38 +00:00
|
|
|
if (++framenum >= UPDATE_FRAMES) {
|
2008-12-08 05:25:12 +00:00
|
|
|
DVProfWrite("prof.txt", UPDATE_FRAMES);
|
|
|
|
DVProfClear();
|
|
|
|
framenum = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
D3D::EndFrame();
|
2009-09-02 06:33:41 +00:00
|
|
|
|
|
|
|
DEBUGGER_PAUSE_COUNT_N_WITHOUT_UPDATE(NEXT_FRAME);
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
//D3D frame is now over
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
//clean out old stuff from caches
|
|
|
|
frameCount++;
|
2009-02-28 22:10:38 +00:00
|
|
|
PixelShaderCache::Cleanup();
|
|
|
|
VertexShaderCache::Cleanup();
|
2008-12-08 05:25:12 +00:00
|
|
|
TextureCache::Cleanup();
|
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
//Begin new frame
|
|
|
|
//Set default viewport and scissor, for the clear to work correctly
|
|
|
|
stats.ResetFrame();
|
|
|
|
D3DVIEWPORT9 vp;
|
|
|
|
vp.X = 0;
|
|
|
|
vp.Y = 0;
|
|
|
|
vp.Width = (DWORD)m_width;
|
|
|
|
vp.Height = (DWORD)m_height;
|
|
|
|
vp.MinZ = 0;
|
2009-03-08 23:46:47 +00:00
|
|
|
vp.MaxZ = 1.0f;
|
2008-12-08 05:25:12 +00:00
|
|
|
D3D::dev->SetViewport(&vp);
|
|
|
|
RECT rc;
|
|
|
|
rc.left = 0;
|
|
|
|
rc.top = 0;
|
|
|
|
rc.right = (LONG)m_width;
|
|
|
|
rc.bottom = (LONG)m_height;
|
|
|
|
D3D::dev->SetScissorRect(&rc);
|
2009-03-01 12:07:34 +00:00
|
|
|
D3D::dev->SetRenderState(D3DRS_SCISSORTESTENABLE, false);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-09-02 18:55:36 +00:00
|
|
|
// We probably shouldn't clear here.
|
|
|
|
D3D::dev->Clear(0, 0, D3DCLEAR_TARGET, 0x00000000, 0, 0);
|
|
|
|
|
2009-06-22 09:31:30 +00:00
|
|
|
u32 clearColor = (bpmem.clearcolorAR << 16) | bpmem.clearcolorGB;
|
2008-12-08 05:25:12 +00:00
|
|
|
// clearColor |= 0x003F003F;
|
|
|
|
// D3D::BeginFrame(true,clearColor,1.0f);
|
2008-12-25 15:56:36 +00:00
|
|
|
D3D::BeginFrame(false, clearColor, 1.0f);
|
2009-09-02 18:55:36 +00:00
|
|
|
|
|
|
|
// This probably causes problems, and the visual difference is tiny anyway.
|
|
|
|
// So let's keep it commented out.
|
|
|
|
// D3D::EnableAlphaToCoverage();
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
Postprocess::BeginFrame();
|
|
|
|
VertexManager::BeginFrame();
|
|
|
|
|
|
|
|
if (g_Config.bOldCard)
|
|
|
|
D3D::font.SetRenderStates(); //compatibility with low end cards
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
/*
|
2008-12-08 05:25:12 +00:00
|
|
|
void Renderer::SetViewport(float* _Viewport)
|
|
|
|
{
|
|
|
|
Viewport* pViewport = (Viewport*)_Viewport;
|
|
|
|
D3DVIEWPORT9 vp;
|
|
|
|
float x=(pViewport->xOrig-662)*2;
|
|
|
|
float y=(pViewport->yOrig-582)*2; //something is wrong, but what??
|
|
|
|
y-=16;
|
|
|
|
|
|
|
|
float w=pViewport->wd*2; //multiply up to real size
|
|
|
|
float h=pViewport->ht*-2; //why is this negative? oh well..
|
|
|
|
|
|
|
|
if (x < 0.0f) x = 0.0f;
|
|
|
|
if (y < 0.0f) y = 0.0f;
|
|
|
|
if (x > 640.0f) x = 639.0f;
|
|
|
|
if (y > 480.0f) y = 479.0f;
|
2009-02-28 22:10:38 +00:00
|
|
|
if (w < 0) w = 0;
|
|
|
|
if (h < 0) h = 0;
|
2008-12-08 05:25:12 +00:00
|
|
|
if (x+w > 640.0f) w=640-x;
|
|
|
|
if (y+h > 480.0f) h=480-y;
|
|
|
|
//x=y=0;
|
2009-02-28 22:10:38 +00:00
|
|
|
//if (w>0.0f) w=0.0f;
|
|
|
|
//if (h<0.0f) h=0.0f;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
vp.X = (DWORD)(x*xScale);
|
|
|
|
vp.Y = (DWORD)(y*yScale);
|
|
|
|
vp.Width = (DWORD)(w*xScale);
|
|
|
|
vp.Height = (DWORD)(h*yScale);
|
|
|
|
vp.MinZ = 0.0f;
|
|
|
|
vp.MaxZ = 1.0f;
|
|
|
|
|
|
|
|
// char temp[256];
|
|
|
|
// sprintf(temp,"Viewport: %i %i %i %i %f %f",vp.X,vp.Y,vp.Width,vp.Height,vp.MinZ,vp.MaxZ);
|
|
|
|
// g_VideoInitialize.pLog(temp, FALSE);
|
|
|
|
|
|
|
|
D3D::dev->SetViewport(&vp);
|
|
|
|
}
|
2009-02-28 22:10:38 +00:00
|
|
|
*/
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SetScissorRect()
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-06-22 09:31:30 +00:00
|
|
|
int xoff = bpmem.scissorOffset.x * 2 - 342;
|
|
|
|
int yoff = bpmem.scissorOffset.y * 2 - 342;
|
2009-03-08 18:45:39 +00:00
|
|
|
RECT rc;
|
2009-06-22 09:31:30 +00:00
|
|
|
rc.left = (int)((float)bpmem.scissorTL.x - xoff - 342);
|
|
|
|
rc.top = (int)((float)bpmem.scissorTL.y - yoff - 342);
|
|
|
|
rc.right = (int)((float)bpmem.scissorBR.x - xoff - 341);
|
|
|
|
rc.bottom = (int)((float)bpmem.scissorBR.y - yoff - 341);
|
2009-03-08 18:45:39 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
rc.left = (int)(rc.left * xScale);
|
|
|
|
rc.top = (int)(rc.top * yScale);
|
|
|
|
rc.right = (int)(rc.right * xScale);
|
|
|
|
rc.bottom = (int)(rc.bottom * yScale);
|
|
|
|
if (rc.right >= rc.left && rc.bottom >= rc.top)
|
|
|
|
D3D::dev->SetScissorRect(&rc);
|
|
|
|
else
|
2009-03-08 18:45:39 +00:00
|
|
|
g_VideoInitialize.pLog("SCISSOR ERROR", FALSE);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
/*
|
2008-12-08 05:25:12 +00:00
|
|
|
void Renderer::SetProjection(float* pMatrix, int constantIndex)
|
|
|
|
{
|
|
|
|
D3DXMATRIX mtx;
|
2009-02-22 03:49:50 +00:00
|
|
|
if (pMatrix[6] == 0) // Perspective
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
mtx.m[0][0] = pMatrix[0];
|
|
|
|
mtx.m[0][1] = 0.0f;
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[0][2] = pMatrix[1];
|
|
|
|
mtx.m[0][3] = 0; // -0.5f/m_height; <-- fix d3d pixel center?
|
|
|
|
|
|
|
|
mtx.m[1][0] = 0.0f;
|
2008-12-08 05:25:12 +00:00
|
|
|
mtx.m[1][1] = pMatrix[2];
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[1][2] = pMatrix[3];
|
|
|
|
mtx.m[1][3] = 0; // +0.5f/m_height; <-- fix d3d pixel center?
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
<<<<<<< .mine
|
|
|
|
mtx.m[0][2] = 0.0f;
|
|
|
|
mtx.m[1][2] = 0.0f;
|
|
|
|
mtx.m[2][2] = -(1 - pMatrix[4]);
|
|
|
|
mtx.m[3][2] = pMatrix[5];
|
|
|
|
=======
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[2][0] = 0.0f;
|
|
|
|
mtx.m[2][1] = 0.0f;
|
|
|
|
mtx.m[2][2] = -(1.0f - pMatrix[4]);
|
|
|
|
mtx.m[2][3] = pMatrix[5]; // Problematic in OGL
|
2009-02-28 22:10:38 +00:00
|
|
|
>>>>>>> .r2480
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[3][0] = 0.0f;
|
|
|
|
mtx.m[3][1] = 0.0f;
|
|
|
|
// donkopunchstania: GC GPU rounds differently?
|
|
|
|
// -(1 + epsilon) so objects are clipped as they are on the real HW
|
|
|
|
mtx.m[3][2] = -1.00000011921f;
|
2008-12-08 05:25:12 +00:00
|
|
|
mtx.m[3][3] = 0.0f;
|
|
|
|
}
|
2009-02-22 03:49:50 +00:00
|
|
|
else // Orthographic Projection
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
mtx.m[0][0] = pMatrix[0];
|
|
|
|
mtx.m[0][1] = 0.0f;
|
|
|
|
mtx.m[0][2] = 0.0f;
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[0][3] = pMatrix[1]; // -0.5f/m_width; <-- fix d3d pixel center?
|
|
|
|
|
|
|
|
mtx.m[1][0] = 0.0f;
|
|
|
|
mtx.m[1][1] = pMatrix[2];
|
2008-12-08 05:25:12 +00:00
|
|
|
mtx.m[1][2] = 0.0f;
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[1][3] = pMatrix[3]; // +0.5f/m_height; <-- fix d3d pixel center?
|
|
|
|
|
|
|
|
mtx.m[2][0] = 0.0f;
|
|
|
|
mtx.m[2][1] = 0.0f;
|
2008-12-08 05:25:12 +00:00
|
|
|
mtx.m[2][2] = pMatrix[4];
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[2][3] = -(-1.0f - pMatrix[5]);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-21 17:17:24 +00:00
|
|
|
mtx.m[3][0] = 0;
|
|
|
|
mtx.m[3][1] = 0;
|
|
|
|
mtx.m[3][2] = 0.0f;
|
2008-12-08 05:25:12 +00:00
|
|
|
mtx.m[3][3] = 1.0f;
|
|
|
|
}
|
|
|
|
D3D::dev->SetVertexShaderConstantF(constantIndex, mtx, 4);
|
2009-02-28 22:10:38 +00:00
|
|
|
}*/
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SetTexture(DWORD Stage, LPDIRECT3DBASETEXTURE9 pTexture)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
if (m_Textures[Stage] != pTexture)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
m_Textures[Stage] = pTexture;
|
2009-02-28 22:10:38 +00:00
|
|
|
D3D::dev->SetTexture(Stage, pTexture);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SetRenderState(D3DRENDERSTATETYPE State, DWORD Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
if (m_RenderStates[State] != Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
m_RenderStates[State] = Value;
|
2009-02-28 22:10:38 +00:00
|
|
|
D3D::dev->SetRenderState(State, Value);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SetTextureStageState(DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
if (m_TextureStageStates[Stage][Type] != Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
m_TextureStageStates[Stage][Type] = Value;
|
2009-02-28 22:10:38 +00:00
|
|
|
D3D::dev->SetTextureStageState(Stage, Type, Value);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
void Renderer::SetSamplerState(DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-02-28 22:10:38 +00:00
|
|
|
if (m_SamplerStates[Sampler][Type] != Value)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
m_SamplerStates[Sampler][Type] = Value;
|
2009-02-28 22:10:38 +00:00
|
|
|
D3D::dev->SetSamplerState(Sampler, Type, Value);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-28 22:10:38 +00:00
|
|
|
|
2009-03-08 18:45:39 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
// Called from VertexShaderManager
|
|
|
|
void UpdateViewport()
|
|
|
|
{
|
2009-09-02 04:10:40 +00:00
|
|
|
// TODO : remove this HACK: Update viewport is still a bit wrong and causes the
|
|
|
|
// image to be y-offset for some reason though.
|
2009-03-06 18:13:33 +00:00
|
|
|
return;
|
2009-02-28 22:10:38 +00:00
|
|
|
// reversed gxsetviewport(xorig, yorig, width, height, nearz, farz)
|
|
|
|
// [0] = width/2
|
|
|
|
// [1] = height/2
|
|
|
|
// [2] = 16777215 *(farz - nearz)
|
|
|
|
// [3] = xorig + width/2 + 342
|
|
|
|
// [4] = yorig + height/2 + 342
|
|
|
|
// [5] = 16777215 * farz
|
|
|
|
|
|
|
|
/*INFO_LOG("view: topleft=(%f,%f), wh=(%f,%f), z=(%f,%f)\n",
|
|
|
|
rawViewport[3]-rawViewport[0]-342, rawViewport[4]+rawViewport[1]-342,
|
|
|
|
2 * rawViewport[0], 2 * rawViewport[1],
|
|
|
|
(rawViewport[5] - rawViewport[2]) / 16777215.0f, rawViewport[5] / 16777215.0f);*/
|
|
|
|
|
|
|
|
D3DVIEWPORT9 vp;
|
2009-09-02 04:10:40 +00:00
|
|
|
|
2009-06-22 09:31:30 +00:00
|
|
|
int scissorXOff = bpmem.scissorOffset.x * 2 - 342;
|
|
|
|
int scissorYOff = bpmem.scissorOffset.y * 2 - 342;
|
2009-02-28 22:10:38 +00:00
|
|
|
|
2009-09-02 04:10:40 +00:00
|
|
|
vp.X = (int)((xfregs.rawViewport[3] - xfregs.rawViewport[0] - 342 - scissorXOff) * Renderer::GetXScale());
|
|
|
|
vp.Y = (int)(Renderer::GetTargetHeight() - (xfregs.rawViewport[4] - xfregs.rawViewport[1] - 342 - scissorYOff) * Renderer::GetYScale());
|
|
|
|
|
|
|
|
vp.Width = (int)ceil(fabs(2 * xfregs.rawViewport[0]) * Renderer::GetXScale());
|
|
|
|
vp.Height = (int)ceil(fabs(2 * xfregs.rawViewport[1]) * Renderer::GetYScale());
|
|
|
|
|
|
|
|
vp.MinZ = (xfregs.rawViewport[5] - xfregs.rawViewport[2]) / 16777215.0f; // NearZ
|
|
|
|
vp.MaxZ = xfregs.rawViewport[5] / 16777215.0f; // FarZ
|
2009-02-28 22:10:38 +00:00
|
|
|
|
|
|
|
D3D::dev->SetViewport(&vp);
|
2009-09-02 04:10:40 +00:00
|
|
|
}
|
|
|
|
|