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-06-06 13:36:33 +00:00
|
|
|
|
2009-06-15 06:39:26 +00:00
|
|
|
|
2011-02-14 02:18:03 +00:00
|
|
|
// OpenGL Backend Documentation
|
2009-06-15 06:39:26 +00:00
|
|
|
/*
|
2009-06-06 13:36:33 +00:00
|
|
|
|
|
|
|
1.1 Display settings
|
2009-06-15 06:39:26 +00:00
|
|
|
|
2009-09-09 19:52:45 +00:00
|
|
|
Internal and fullscreen resolution: Since the only internal resolutions allowed
|
|
|
|
are also fullscreen resolution allowed by the system there is only need for one
|
|
|
|
resolution setting that applies to both the internal resolution and the
|
|
|
|
fullscreen resolution. - Apparently no, someone else doesn't agree
|
2009-06-06 13:36:33 +00:00
|
|
|
|
2009-09-09 19:52:45 +00:00
|
|
|
Todo: Make the internal resolution option apply instantly, currently only the
|
|
|
|
native and 2x option applies instantly. To do this we need to be able to change
|
|
|
|
the reinitialize FramebufferManager:Init() while a game is running.
|
2009-06-06 13:36:33 +00:00
|
|
|
|
2009-06-07 11:51:53 +00:00
|
|
|
1.2 Screenshots
|
2009-06-15 06:39:26 +00:00
|
|
|
|
2009-06-07 11:51:53 +00:00
|
|
|
|
2009-09-09 19:52:45 +00:00
|
|
|
The screenshots should be taken from the internal representation of the picture
|
|
|
|
regardless of what the current window size is. Since AA and wireframe is
|
|
|
|
applied together with the picture resizing this rule is not currently applied
|
|
|
|
to AA or wireframe pictures, they are instead taken from whatever the window
|
|
|
|
size is.
|
2009-06-07 11:51:53 +00:00
|
|
|
|
2009-09-09 19:52:45 +00:00
|
|
|
Todo: Render AA and wireframe to a separate picture used for the screenshot in
|
|
|
|
addition to the one for display.
|
2009-06-07 11:51:53 +00:00
|
|
|
|
|
|
|
1.3 AA
|
2009-06-15 06:39:26 +00:00
|
|
|
|
2009-06-07 11:51:53 +00:00
|
|
|
Make AA apply instantly during gameplay if possible
|
|
|
|
|
2009-06-15 06:39:26 +00:00
|
|
|
*/
|
2009-06-06 13:36:33 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "Globals.h"
|
2009-07-13 05:38:34 +00:00
|
|
|
#include "Atomic.h"
|
2010-09-30 15:24:34 +00:00
|
|
|
#include "Thread.h"
|
|
|
|
#include "LogManager.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-01-11 13:37:13 +00:00
|
|
|
#include <cstdarg>
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
#ifdef _WIN32
|
2010-12-19 19:43:18 +00:00
|
|
|
#include "EmuWindow.h"
|
2011-01-14 15:09:30 +00:00
|
|
|
#include "IniFile.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-11-15 09:54:07 +00:00
|
|
|
#include "VideoConfigDiag.h"
|
2011-02-13 06:06:32 +00:00
|
|
|
#include "Debugger/DebuggerPanel.h"
|
2009-07-26 09:52:35 +00:00
|
|
|
#endif // HAVE_WX
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
#include "MainBase.h"
|
2009-09-13 09:23:30 +00:00
|
|
|
#include "VideoConfig.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "LookUpTables.h"
|
|
|
|
#include "ImageWrite.h"
|
|
|
|
#include "Render.h"
|
|
|
|
#include "GLUtil.h"
|
|
|
|
#include "Fifo.h"
|
|
|
|
#include "OpcodeDecoding.h"
|
2010-09-28 02:15:02 +00:00
|
|
|
#include "TextureCache.h"
|
2009-06-22 09:31:30 +00:00
|
|
|
#include "BPStructs.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "VertexLoader.h"
|
|
|
|
#include "VertexLoaderManager.h"
|
|
|
|
#include "VertexManager.h"
|
2008-12-26 11:23:59 +00:00
|
|
|
#include "PixelShaderCache.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "PixelShaderManager.h"
|
2008-12-26 11:23:59 +00:00
|
|
|
#include "VertexShaderCache.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "VertexShaderManager.h"
|
2009-10-10 21:19:39 +00:00
|
|
|
#include "CommandProcessor.h"
|
|
|
|
#include "PixelEngine.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "TextureConverter.h"
|
2009-06-08 19:42:25 +00:00
|
|
|
#include "PostProcessing.h"
|
2009-02-21 12:53:10 +00:00
|
|
|
#include "OnScreenDisplay.h"
|
2009-02-22 04:24:53 +00:00
|
|
|
#include "Setup.h"
|
2009-08-09 11:03:58 +00:00
|
|
|
#include "DLCache.h"
|
2010-11-18 02:21:26 +00:00
|
|
|
#include "FramebufferManager.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
#include "Core.h"
|
2011-03-15 23:09:12 +00:00
|
|
|
#include "Host.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
#include "VideoState.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
#include "VideoBackend.h"
|
|
|
|
#include "ConfigManager.h"
|
2008-12-14 23:52:01 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
namespace OGL
|
2010-12-19 19:43:18 +00:00
|
|
|
{
|
2009-01-08 12:12:15 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
std::string VideoBackend::GetName()
|
2009-07-02 17:11:27 +00:00
|
|
|
{
|
2011-01-31 01:28:32 +00:00
|
|
|
return "OpenGL";
|
2009-09-09 19:52:45 +00:00
|
|
|
}
|
2009-02-22 04:24:53 +00:00
|
|
|
|
2010-11-15 09:54:07 +00:00
|
|
|
void GetShaders(std::vector<std::string> &shaders)
|
|
|
|
{
|
|
|
|
shaders.clear();
|
2011-03-01 03:06:14 +00:00
|
|
|
if (File::IsDirectory(File::GetUserPath(D_SHADERS_IDX)))
|
2010-11-15 09:54:07 +00:00
|
|
|
{
|
|
|
|
File::FSTEntry entry;
|
2011-03-01 03:06:14 +00:00
|
|
|
File::ScanDirectoryTree(File::GetUserPath(D_SHADERS_IDX), entry);
|
2010-11-15 09:54:07 +00:00
|
|
|
for (u32 i = 0; i < entry.children.size(); i++)
|
|
|
|
{
|
|
|
|
std::string name = entry.children[i].virtualName.c_str();
|
|
|
|
if (!strcasecmp(name.substr(name.size() - 4).c_str(), ".txt"))
|
|
|
|
name = name.substr(0, name.size() - 4);
|
|
|
|
shaders.push_back(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-02-28 20:40:15 +00:00
|
|
|
File::CreateDir(File::GetUserPath(D_SHADERS_IDX).c_str());
|
2010-11-15 09:54:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 22:17:35 +00:00
|
|
|
void InitBackendInfo()
|
2009-09-09 19:52:45 +00:00
|
|
|
{
|
2010-11-21 14:47:28 +00:00
|
|
|
g_Config.backend_info.APIType = API_OPENGL;
|
|
|
|
g_Config.backend_info.bUseRGBATextures = false;
|
|
|
|
g_Config.backend_info.bSupportsEFBToRAM = true;
|
|
|
|
g_Config.backend_info.bSupportsRealXFB = true;
|
2010-11-24 17:13:12 +00:00
|
|
|
g_Config.backend_info.bSupports3DVision = false;
|
2010-11-21 14:47:28 +00:00
|
|
|
g_Config.backend_info.bAllowSignedBytes = true;
|
2010-12-05 14:15:36 +00:00
|
|
|
g_Config.backend_info.bSupportsDualSourceBlend = false; // supported, but broken
|
2010-12-27 21:56:20 +00:00
|
|
|
g_Config.backend_info.bSupportsFormatReinterpretation = false;
|
2011-01-09 14:13:24 +00:00
|
|
|
g_Config.backend_info.bSupportsPixelLighting = true;
|
2010-11-22 22:17:35 +00:00
|
|
|
}
|
2009-09-09 19:52:45 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
void VideoBackend::ShowConfig(void *_hParent)
|
2010-11-22 22:17:35 +00:00
|
|
|
{
|
2010-11-21 14:47:28 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-11-22 22:17:35 +00:00
|
|
|
InitBackendInfo();
|
|
|
|
|
|
|
|
// aamodes
|
|
|
|
const char* caamodes[] = {"None", "2x", "4x", "8x", "8x CSAA", "8xQ CSAA", "16x CSAA", "16xQ CSAA"};
|
|
|
|
g_Config.backend_info.AAModes.assign(caamodes, caamodes + sizeof(caamodes)/sizeof(*caamodes));
|
|
|
|
|
|
|
|
// pp shaders
|
|
|
|
GetShaders(g_Config.backend_info.PPShaders);
|
|
|
|
|
2011-01-20 03:02:51 +00:00
|
|
|
VideoConfigDiag *const diag = new VideoConfigDiag((wxWindow*)_hParent, "OpenGL", "gfx_opengl");
|
2010-11-15 09:54:07 +00:00
|
|
|
diag->ShowModal();
|
|
|
|
diag->Destroy();
|
2009-07-02 17:11:27 +00:00
|
|
|
#endif
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 21:14:13 +00:00
|
|
|
bool VideoBackend::Initialize(void *&window_handle)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2010-11-22 22:17:35 +00:00
|
|
|
InitBackendInfo();
|
|
|
|
|
2010-02-25 06:12:35 +00:00
|
|
|
frameCount = 0;
|
2009-09-09 19:52:45 +00:00
|
|
|
|
2011-02-28 20:40:15 +00:00
|
|
|
g_Config.Load((File::GetUserPath(D_CONFIG_IDX) + "gfx_opengl.ini").c_str());
|
2011-01-31 01:28:32 +00:00
|
|
|
g_Config.GameIniLoad(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strGameIni.c_str());
|
2009-03-20 11:51:22 +00:00
|
|
|
|
2009-08-01 18:31:25 +00:00
|
|
|
g_Config.UpdateProjectionHack();
|
2011-02-02 16:34:12 +00:00
|
|
|
|
2009-09-13 08:21:35 +00:00
|
|
|
UpdateActiveConfig();
|
2009-07-31 01:55:26 +00:00
|
|
|
|
2011-02-25 21:14:13 +00:00
|
|
|
if (!OpenGL_Create(window_handle))
|
|
|
|
return false;
|
2009-02-21 12:25:43 +00:00
|
|
|
|
2011-02-14 02:18:03 +00:00
|
|
|
OSD::AddMessage("Dolphin OpenGL Video Backend.", 5000);
|
|
|
|
s_BackendInitialized = true;
|
2011-02-25 21:14:13 +00:00
|
|
|
|
2011-03-02 15:13:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is called after Initialize() from the Core
|
|
|
|
// Run from the graphics thread
|
|
|
|
void VideoBackend::Video_Prepare()
|
|
|
|
{
|
|
|
|
OpenGL_MakeCurrent();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
g_renderer = new Renderer;
|
2010-09-30 15:24:34 +00:00
|
|
|
|
2011-02-02 17:09:39 +00:00
|
|
|
s_efbAccessRequested = false;
|
|
|
|
s_FifoShuttingDown = false;
|
|
|
|
s_swapRequested = false;
|
2010-09-30 15:24:34 +00:00
|
|
|
|
2010-09-30 16:11:31 +00:00
|
|
|
CommandProcessor::Init();
|
|
|
|
PixelEngine::Init();
|
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
g_texture_cache = new TextureCache;
|
2010-09-30 16:11:31 +00:00
|
|
|
|
2010-09-30 15:24:34 +00:00
|
|
|
BPInit();
|
2011-01-31 01:28:32 +00:00
|
|
|
g_vertex_manager = new VertexManager;
|
2010-09-30 16:11:31 +00:00
|
|
|
Fifo_Init(); // must be done before OpcodeDecoder_Init()
|
2010-09-30 15:24:34 +00:00
|
|
|
OpcodeDecoder_Init();
|
2011-01-31 01:28:32 +00:00
|
|
|
VertexShaderCache::Init();
|
2010-09-30 15:24:34 +00:00
|
|
|
VertexShaderManager::Init();
|
2011-01-31 01:28:32 +00:00
|
|
|
PixelShaderCache::Init();
|
2010-09-30 15:24:34 +00:00
|
|
|
PixelShaderManager::Init();
|
2011-01-31 01:28:32 +00:00
|
|
|
PostProcessing::Init();
|
2010-09-30 16:11:31 +00:00
|
|
|
GL_REPORT_ERRORD();
|
|
|
|
VertexLoaderManager::Init();
|
2011-01-31 01:28:32 +00:00
|
|
|
TextureConverter::Init();
|
2010-09-30 15:24:34 +00:00
|
|
|
DLCache::Init();
|
|
|
|
|
2011-02-14 02:18:03 +00:00
|
|
|
// Notify the core that the video backend is ready
|
2011-03-15 23:09:12 +00:00
|
|
|
Host_Message(WM_USER_CREATE);
|
2010-09-30 15:24:34 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
void VideoBackend::Shutdown()
|
2010-09-30 15:24:34 +00:00
|
|
|
{
|
2011-02-14 02:18:03 +00:00
|
|
|
s_BackendInitialized = false;
|
2010-09-30 15:24:34 +00:00
|
|
|
|
2011-03-02 15:13:13 +00:00
|
|
|
if (g_renderer)
|
|
|
|
{
|
|
|
|
s_efbAccessRequested = false;
|
|
|
|
s_FifoShuttingDown = false;
|
|
|
|
s_swapRequested = false;
|
|
|
|
DLCache::Shutdown();
|
|
|
|
Fifo_Shutdown();
|
|
|
|
PostProcessing::Shutdown();
|
|
|
|
|
|
|
|
// The following calls are NOT Thread Safe
|
|
|
|
// And need to be called from the video thread
|
|
|
|
TextureConverter::Shutdown();
|
|
|
|
VertexLoaderManager::Shutdown();
|
|
|
|
VertexShaderCache::Shutdown();
|
|
|
|
VertexShaderManager::Shutdown();
|
|
|
|
PixelShaderManager::Shutdown();
|
|
|
|
PixelShaderCache::Shutdown();
|
|
|
|
delete g_vertex_manager;
|
|
|
|
delete g_texture_cache;
|
|
|
|
OpcodeDecoder_Shutdown();
|
|
|
|
delete g_renderer;
|
|
|
|
g_renderer = NULL;
|
|
|
|
}
|
2010-09-30 15:24:34 +00:00
|
|
|
OpenGL_Shutdown();
|
|
|
|
}
|
2011-01-31 01:28:32 +00:00
|
|
|
|
|
|
|
}
|