2008-09-07 10:29:46 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// 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/
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
#include <tchar.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <d3dx9.h>
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
2008-07-20 15:36:18 +00:00
|
|
|
#include "svnrev.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "resource.h"
|
|
|
|
#include "main.h"
|
2008-10-22 20:54:40 +00:00
|
|
|
#include "Config.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "Fifo.h"
|
|
|
|
#include "OpcodeDecoding.h"
|
|
|
|
#include "TextureCache.h"
|
|
|
|
#include "BPStructs.h"
|
2008-10-27 21:38:30 +00:00
|
|
|
#include "VertexManager.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "TransformEngine.h"
|
|
|
|
#include "DlgSettings.h"
|
2008-08-26 23:32:54 +00:00
|
|
|
#include "D3DPostprocess.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "D3DTexture.h"
|
|
|
|
#include "D3DUtil.h"
|
2008-08-26 23:32:54 +00:00
|
|
|
#include "W32Util/Misc.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "EmuWindow.h"
|
2008-08-26 23:40:18 +00:00
|
|
|
#include "VideoState.h"
|
2008-10-15 21:29:44 +00:00
|
|
|
#include "XFBConvert.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
|
|
|
|
#include "Utils.h"
|
|
|
|
|
|
|
|
HINSTANCE g_hInstance = NULL;
|
|
|
|
SVideoInitialize g_VideoInitialize;
|
|
|
|
int initCount = 0;
|
|
|
|
|
2008-10-09 18:47:53 +00:00
|
|
|
|
|
|
|
void DllDebugger(HWND _hParent)
|
|
|
|
{
|
|
|
|
// TODO: implement
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
BOOL APIENTRY DllMain( HINSTANCE hinstDLL, // DLL module handle
|
|
|
|
DWORD dwReason, // reason called
|
|
|
|
LPVOID lpvReserved) // reserved
|
|
|
|
{
|
|
|
|
switch (dwReason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hInstance = hinstDLL;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL Callback_PeekMessages()
|
|
|
|
{
|
2008-08-17 19:28:24 +00:00
|
|
|
//TODO: peek message
|
2008-07-12 17:40:22 +00:00
|
|
|
MSG msg;
|
|
|
|
while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
|
|
|
|
{
|
|
|
|
if (msg.message == WM_QUIT)
|
|
|
|
return FALSE;
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-08-17 19:28:24 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
void UpdateFPSDisplay(const char *text)
|
|
|
|
{
|
2008-07-20 15:36:18 +00:00
|
|
|
char temp[512];
|
2008-08-23 03:48:40 +00:00
|
|
|
sprintf_s(temp, 512, "SVN R%i: DX9: %s", SVN_REV, text);
|
2008-08-17 19:28:24 +00:00
|
|
|
SetWindowText( EmuWindow::GetWnd(), temp);
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
|
2008-08-17 19:28:24 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
bool Init()
|
|
|
|
{
|
2008-07-17 09:18:03 +00:00
|
|
|
g_Config.Load();
|
|
|
|
|
2008-08-17 19:28:24 +00:00
|
|
|
if (initCount == 0)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
|
|
|
// create the window
|
2008-08-17 19:28:24 +00:00
|
|
|
if ( !g_Config.renderToMainframe || g_VideoInitialize.pWindowHandle == NULL ) // ignore parent for this plugin
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2008-08-17 19:28:24 +00:00
|
|
|
g_VideoInitialize.pWindowHandle = (void*)EmuWindow::Create(NULL, g_hInstance, "Loading - Please wait.");
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
2008-07-17 09:18:03 +00:00
|
|
|
else
|
|
|
|
{
|
2008-08-17 19:28:24 +00:00
|
|
|
g_VideoInitialize.pWindowHandle = (void*)EmuWindow::Create((HWND)g_VideoInitialize.pWindowHandle, g_hInstance, "Loading - Please wait.");
|
2008-07-17 09:18:03 +00:00
|
|
|
}
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-08-17 19:28:24 +00:00
|
|
|
if ( g_VideoInitialize.pWindowHandle == NULL )
|
|
|
|
{
|
|
|
|
MessageBox(GetActiveWindow(), "An error has occurred while trying to create the window.", "Fatal Error", MB_OK);
|
2008-07-17 09:18:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
EmuWindow::Show();
|
|
|
|
g_VideoInitialize.pPeekMessages = Callback_PeekMessages;
|
|
|
|
g_VideoInitialize.pUpdateFPSDisplay = UpdateFPSDisplay;
|
2008-07-12 17:40:22 +00:00
|
|
|
|
|
|
|
if (FAILED(D3D::Init()))
|
|
|
|
{
|
2008-08-17 19:28:24 +00:00
|
|
|
MessageBox(GetActiveWindow(), "Unable to initialize Direct3D. Please make sure that you have DirectX 9.0c correctly installed.", "Fatal Error", MB_OK);
|
2008-07-12 17:40:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
InitLUTs();
|
2008-10-15 21:29:44 +00:00
|
|
|
InitXFBConvTables();
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
initCount++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DeInit()
|
|
|
|
{
|
|
|
|
initCount--;
|
|
|
|
if (initCount==0)
|
|
|
|
{
|
|
|
|
D3D::Shutdown();
|
|
|
|
EmuWindow::Close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ====================================================================================
|
|
|
|
|
|
|
|
void GetDllInfo (PLUGIN_INFO* _PluginInfo)
|
|
|
|
{
|
|
|
|
_PluginInfo->Version = 0x0100;
|
|
|
|
_PluginInfo->Type = PLUGIN_TYPE_VIDEO;
|
|
|
|
#ifdef DEBUGFAST
|
|
|
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Video Plugin DebugFast (DX9)");
|
|
|
|
#else
|
|
|
|
#ifndef _DEBUG
|
|
|
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Video Plugin (DX9)");
|
|
|
|
#else
|
|
|
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Video Plugin Debug (DX9)");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void DllAbout(HWND _hParent)
|
|
|
|
{
|
|
|
|
DialogBox(g_hInstance,(LPCSTR)IDD_ABOUT,_hParent,(DLGPROC)AboutProc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DllConfig(HWND _hParent)
|
|
|
|
{
|
|
|
|
if (Init())
|
|
|
|
{
|
|
|
|
DlgSettings_Show(g_hInstance,_hParent);
|
|
|
|
DeInit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Video_Initialize(SVideoInitialize* _pVideoInitialize)
|
|
|
|
{
|
2008-08-30 16:24:45 +00:00
|
|
|
if (_pVideoInitialize == NULL)
|
2008-07-12 17:40:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
frameCount = 0;
|
|
|
|
g_VideoInitialize = *_pVideoInitialize;
|
|
|
|
Init();
|
|
|
|
_pVideoInitialize->pPeekMessages = g_VideoInitialize.pPeekMessages;
|
|
|
|
_pVideoInitialize->pUpdateFPSDisplay = g_VideoInitialize.pUpdateFPSDisplay;
|
|
|
|
_pVideoInitialize->pWindowHandle = g_VideoInitialize.pWindowHandle;
|
2008-08-10 21:34:22 +00:00
|
|
|
|
|
|
|
Renderer::AddMessage("Dolphin Direct3D9 Video Plugin.",5000);
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
|
2008-08-30 12:11:25 +00:00
|
|
|
void Video_DoState(unsigned char **ptr, int mode) {
|
2008-08-30 16:24:45 +00:00
|
|
|
// Clear all caches
|
|
|
|
TextureCache::Invalidate();
|
|
|
|
|
2008-08-30 12:11:25 +00:00
|
|
|
PointerWrap p(ptr, mode);
|
|
|
|
VideoCommon_DoState(p);
|
2008-08-28 07:58:04 +00:00
|
|
|
//PanicAlert("Saving/Loading state from DirectX9");
|
2008-08-26 23:40:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-02 17:03:24 +00:00
|
|
|
|
2008-08-21 17:49:06 +00:00
|
|
|
void Video_EnterLoop()
|
|
|
|
{
|
|
|
|
Fifo_EnterLoop(g_VideoInitialize);
|
|
|
|
}
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
void Video_Prepare(void)
|
|
|
|
{
|
|
|
|
Renderer::Init(g_VideoInitialize);
|
|
|
|
|
|
|
|
TextureCache::Init();
|
|
|
|
|
|
|
|
BPInit();
|
2008-10-27 21:38:30 +00:00
|
|
|
VertexManager::Init();
|
2008-07-12 17:40:22 +00:00
|
|
|
Fifo_Init();
|
2008-10-03 22:05:28 +00:00
|
|
|
OpcodeDecoder_Init();
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Video_Shutdown(void)
|
|
|
|
{
|
|
|
|
Fifo_Shutdown();
|
2008-10-27 21:38:30 +00:00
|
|
|
VertexManager::Shutdown();
|
2008-07-12 17:40:22 +00:00
|
|
|
TextureCache::Shutdown();
|
|
|
|
Renderer::Shutdown();
|
|
|
|
OpcodeDecoder_Shutdown();
|
|
|
|
DeInit();
|
|
|
|
}
|
|
|
|
|
2008-10-02 17:03:24 +00:00
|
|
|
void Video_Stop(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-15 14:07:03 +00:00
|
|
|
void Video_UpdateXFB(u8* /*_pXFB*/, u32 /*_dwWidth*/, u32 /*_dwHeight*/, s32 /*_dwYOffset*/)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
ConvertXFB(tempBuffer, _pXFB, _dwWidth, _dwHeight);
|
|
|
|
|
|
|
|
// blubb
|
|
|
|
static LPDIRECT3DTEXTURE9 pTexture = D3D::CreateTexture2D((BYTE*)tempBuffer, _dwWidth, _dwHeight, _dwWidth, D3DFMT_A8R8G8B8);
|
|
|
|
|
|
|
|
D3D::ReplaceTexture2D(pTexture, (BYTE*)tempBuffer, _dwWidth, _dwHeight, _dwWidth, D3DFMT_A8R8G8B8);
|
|
|
|
D3D::dev->SetTexture(0, pTexture);
|
|
|
|
|
|
|
|
D3D::quad2d(0,0,(float)Postprocess::GetWidth(),(float)Postprocess::GetHeight(), 0xFFFFFFFF);
|
|
|
|
|
|
|
|
D3D::EndFrame();
|
|
|
|
D3D::BeginFrame();*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DebugLog(const char* _fmt, ...)
|
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
|
|
|
char Msg[512];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start( ap, _fmt );
|
|
|
|
vsprintf( Msg, _fmt, ap );
|
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
g_VideoInitialize.pLog(Msg, FALSE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Log(int log, const char *format, ...)
|
|
|
|
{
|
|
|
|
// char temp[512];
|
|
|
|
//va_list args;
|
|
|
|
//va_start(args, format);
|
|
|
|
//CharArrayFromFormatV(temp, 512, format, args);
|
|
|
|
//va_end(args);
|
|
|
|
|
|
|
|
DebugLog(format); //"%s", temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT ScreenShot(TCHAR *File)
|
|
|
|
{
|
|
|
|
if (D3D::dev == NULL)
|
|
|
|
return S_FALSE;
|
|
|
|
|
|
|
|
D3DDISPLAYMODE DisplayMode;
|
|
|
|
if (FAILED(D3D::dev->GetDisplayMode(0, &DisplayMode)))
|
|
|
|
return S_FALSE;
|
|
|
|
|
|
|
|
LPDIRECT3DSURFACE9 surf;
|
|
|
|
if (FAILED(D3D::dev->CreateOffscreenPlainSurface(DisplayMode.Width, DisplayMode.Height, D3DFMT_A8R8G8B8, D3DPOOL_SYSTEMMEM, &surf, NULL)))
|
|
|
|
return S_FALSE;
|
|
|
|
|
|
|
|
if (FAILED(D3D::dev->GetFrontBufferData(0, surf)))
|
|
|
|
{
|
|
|
|
surf->Release();
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RECT rect;
|
|
|
|
::GetWindowRect(EmuWindow::GetWnd(), &rect);
|
|
|
|
if (FAILED(D3DXSaveSurfaceToFile(File, D3DXIFF_JPG, surf, NULL, &rect)))
|
|
|
|
{
|
|
|
|
surf->Release();
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
surf->Release();
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL Video_Screenshot(TCHAR* _szFilename)
|
|
|
|
{
|
|
|
|
if (ScreenShot(_szFilename) == S_OK)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-08-10 21:34:22 +00:00
|
|
|
|
|
|
|
void Video_AddMessage(const char* pstr, u32 milliseconds)
|
|
|
|
{
|
|
|
|
Renderer::AddMessage(pstr,milliseconds);
|
|
|
|
}
|