2020-07-13 23:44:05 +02:00
|
|
|
#include <atomic>
|
2018-07-17 20:46:38 +02:00
|
|
|
#include <memory>
|
2018-03-17 21:40:00 +01:00
|
|
|
#include <vector>
|
2015-12-31 00:01:28 +01:00
|
|
|
|
2020-07-13 23:44:05 +02:00
|
|
|
#include <Common/CompatPtr.h>
|
|
|
|
#include <Common/Hook.h>
|
|
|
|
#include <Common/Time.h>
|
|
|
|
#include <Config/Config.h>
|
|
|
|
#include <D3dDdi/Device.h>
|
|
|
|
#include <D3dDdi/KernelModeThunks.h>
|
|
|
|
#include <DDraw/DirectDraw.h>
|
|
|
|
#include <DDraw/DirectDrawSurface.h>
|
|
|
|
#include <DDraw/IReleaseNotifier.h>
|
|
|
|
#include <DDraw/RealPrimarySurface.h>
|
|
|
|
#include <DDraw/ScopedThreadLock.h>
|
|
|
|
#include <DDraw/Surfaces/PrimarySurface.h>
|
|
|
|
#include <DDraw/Types.h>
|
|
|
|
#include <Gdi/Caret.h>
|
|
|
|
#include <Gdi/Gdi.h>
|
|
|
|
#include <Gdi/VirtualScreen.h>
|
|
|
|
#include <Gdi/Window.h>
|
|
|
|
#include <Win32/DisplayMode.h>
|
2015-12-25 01:57:44 +01:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
void onRelease();
|
|
|
|
|
2016-05-16 18:16:13 +02:00
|
|
|
CompatWeakPtr<IDirectDrawSurface7> g_frontBuffer;
|
2016-05-16 22:31:58 +02:00
|
|
|
CompatWeakPtr<IDirectDrawClipper> g_clipper;
|
2016-05-16 18:16:13 +02:00
|
|
|
DDSURFACEDESC2 g_surfaceDesc = {};
|
2016-08-27 22:39:28 +02:00
|
|
|
DDraw::IReleaseNotifier g_releaseNotifier(onRelease);
|
2015-12-25 01:57:44 +01:00
|
|
|
|
2016-04-19 23:57:35 +02:00
|
|
|
bool g_stopUpdateThread = false;
|
2015-12-25 01:57:44 +01:00
|
|
|
HANDLE g_updateThread = nullptr;
|
2018-10-03 20:49:50 +02:00
|
|
|
bool g_isFullScreen = false;
|
|
|
|
DDraw::Surface* g_lastFlipSurface = nullptr;
|
2020-07-13 23:44:05 +02:00
|
|
|
|
|
|
|
bool g_isUpdatePending = false;
|
|
|
|
bool g_waitingForPrimaryUnlock = false;
|
|
|
|
std::atomic<long long> g_qpcLastUpdate = 0;
|
|
|
|
long long g_qpcFlipEnd = 0;
|
|
|
|
UINT g_flipEndVsyncCount = 0;
|
|
|
|
UINT g_presentEndVsyncCount = 0;
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
CompatPtr<IDirectDrawSurface7> getBackBuffer();
|
|
|
|
CompatPtr<IDirectDrawSurface7> getLastSurface();
|
2015-12-31 00:01:28 +01:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
void bltToPrimaryChain(CompatRef<IDirectDrawSurface7> src)
|
2017-11-12 16:12:58 +01:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
if (!g_isFullScreen)
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2020-12-27 17:08:44 +01:00
|
|
|
Gdi::Window::present(*g_frontBuffer, src, *g_clipper);
|
2018-10-03 20:49:50 +02:00
|
|
|
return;
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
auto backBuffer(getBackBuffer());
|
|
|
|
if (backBuffer)
|
2018-03-17 21:40:00 +01:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
backBuffer->Blt(backBuffer, nullptr, &src, nullptr, DDBLT_WAIT, nullptr);
|
2018-03-17 21:40:00 +01:00
|
|
|
}
|
2016-12-19 19:25:15 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
CompatPtr<IDirectDrawSurface7> getBackBuffer()
|
2016-05-16 18:16:13 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDSCAPS2 caps = {};
|
|
|
|
caps.dwCaps = DDSCAPS_BACKBUFFER;
|
2016-05-22 11:09:44 +02:00
|
|
|
CompatPtr<IDirectDrawSurface7> backBuffer;
|
2018-10-03 20:49:50 +02:00
|
|
|
if (g_frontBuffer)
|
2016-05-16 18:16:13 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
g_frontBuffer->GetAttachedSurface(g_frontBuffer, &caps, &backBuffer.getRef());
|
2016-05-16 18:16:13 +02:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
return backBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompatPtr<IDirectDrawSurface7> getLastSurface()
|
|
|
|
{
|
|
|
|
DDSCAPS2 caps = {};
|
|
|
|
caps.dwCaps = DDSCAPS_FLIP;;
|
|
|
|
CompatPtr<IDirectDrawSurface7> backBuffer(getBackBuffer());
|
|
|
|
CompatPtr<IDirectDrawSurface7> lastSurface;
|
|
|
|
if (backBuffer)
|
2017-11-12 16:12:58 +01:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
backBuffer->GetAttachedSurface(backBuffer, &caps, &lastSurface.getRef());
|
2017-11-12 16:12:58 +01:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
return lastSurface;
|
|
|
|
}
|
2016-05-16 18:16:13 +02:00
|
|
|
|
2020-07-13 23:44:05 +02:00
|
|
|
UINT getFlipInterval(DWORD flags)
|
2018-10-03 20:49:50 +02:00
|
|
|
{
|
|
|
|
if (flags & DDFLIP_NOVSYNC)
|
2017-05-17 20:41:05 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
if (flags & (DDFLIP_INTERVAL2 | DDFLIP_INTERVAL3 | DDFLIP_INTERVAL4))
|
|
|
|
{
|
|
|
|
UINT flipInterval = (flags & (DDFLIP_INTERVAL2 | DDFLIP_INTERVAL3 | DDFLIP_INTERVAL4)) >> 24;
|
|
|
|
if (flipInterval < 2 || flipInterval > 4)
|
|
|
|
{
|
|
|
|
flipInterval = 1;
|
|
|
|
}
|
|
|
|
return flipInterval;
|
2017-05-17 20:41:05 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2016-05-16 18:16:13 +02:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
bool isFlipPending()
|
2016-04-15 00:08:22 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
return static_cast<INT>(D3dDdi::KernelModeThunks::getVsyncCounter() - g_flipEndVsyncCount) < 0;
|
2017-05-17 20:41:05 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
bool isPresentPending()
|
2017-05-17 20:41:05 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
return static_cast<INT>(D3dDdi::KernelModeThunks::getVsyncCounter() - g_presentEndVsyncCount) < 0;
|
2016-04-15 00:08:22 +02:00
|
|
|
}
|
|
|
|
|
2015-12-25 01:57:44 +01:00
|
|
|
void onRelease()
|
|
|
|
{
|
2018-11-03 01:36:38 +01:00
|
|
|
LOG_FUNC("RealPrimarySurface::onRelease");
|
2015-12-29 15:40:28 +01:00
|
|
|
|
2015-12-25 01:57:44 +01:00
|
|
|
g_frontBuffer = nullptr;
|
2017-11-12 16:12:58 +01:00
|
|
|
g_clipper.release();
|
2015-12-31 00:01:28 +01:00
|
|
|
g_isFullScreen = false;
|
2018-10-03 20:49:50 +02:00
|
|
|
g_waitingForPrimaryUnlock = false;
|
|
|
|
g_surfaceDesc = {};
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
void onRestore()
|
2016-04-15 00:08:22 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDSURFACEDESC2 desc = {};
|
|
|
|
desc.dwSize = sizeof(desc);
|
|
|
|
g_frontBuffer->GetSurfaceDesc(g_frontBuffer, &desc);
|
2016-04-15 00:08:22 +02:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
g_clipper.release();
|
|
|
|
|
|
|
|
const bool isFlippable = 0 != (desc.ddsCaps.dwCaps & DDSCAPS_FLIP);
|
|
|
|
if (!isFlippable)
|
|
|
|
{
|
2019-01-12 12:32:57 +01:00
|
|
|
CALL_ORIG_PROC(DirectDrawCreateClipper)(0, &g_clipper.getRef(), nullptr);
|
2018-10-03 20:49:50 +02:00
|
|
|
g_frontBuffer->SetClipper(g_frontBuffer, g_clipper);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_surfaceDesc = desc;
|
|
|
|
g_isFullScreen = isFlippable;
|
|
|
|
g_isUpdatePending = false;
|
|
|
|
g_qpcLastUpdate = Time::queryPerformanceCounter() - Time::msToQpc(Config::delayedFlipModeTimeout);
|
|
|
|
|
|
|
|
if (isFlippable)
|
2017-05-17 20:41:05 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
g_frontBuffer->Flip(g_frontBuffer, getLastSurface(), DDFLIP_WAIT);
|
|
|
|
g_flipEndVsyncCount = D3dDdi::KernelModeThunks::getVsyncCounter() + 1;
|
|
|
|
g_presentEndVsyncCount = g_flipEndVsyncCount;
|
|
|
|
D3dDdi::KernelModeThunks::waitForVsyncCounter(g_flipEndVsyncCount);
|
2016-04-15 00:08:22 +02:00
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
void presentToPrimaryChain(CompatWeakPtr<IDirectDrawSurface7> src)
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2019-07-19 19:56:21 +02:00
|
|
|
LOG_FUNC("RealPrimarySurface::presentToPrimaryChain", src);
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
Gdi::VirtualScreen::update();
|
|
|
|
|
|
|
|
if (!g_frontBuffer || !src || DDraw::RealPrimarySurface::isLost())
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2020-12-27 17:08:44 +01:00
|
|
|
Gdi::Window::present(nullptr);
|
2018-10-03 20:49:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-27 17:08:44 +01:00
|
|
|
RECT monitorRect = D3dDdi::KernelModeThunks::getMonitorRect();
|
|
|
|
Gdi::Region excludeRegion(monitorRect);
|
|
|
|
Gdi::Window::present(excludeRegion);
|
2018-10-03 20:49:50 +02:00
|
|
|
|
2021-01-16 12:42:56 +01:00
|
|
|
D3dDdi::KernelModeThunks::setDcPaletteOverride(true);
|
|
|
|
bltToPrimaryChain(*src);
|
|
|
|
D3dDdi::KernelModeThunks::setDcPaletteOverride(false);
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
if (g_isFullScreen && src == DDraw::PrimarySurface::getGdiSurface())
|
|
|
|
{
|
2020-12-27 17:08:44 +01:00
|
|
|
auto backBuffer(getBackBuffer());
|
|
|
|
if (backBuffer)
|
|
|
|
{
|
|
|
|
POINT offset = { -monitorRect.left, -monitorRect.top };
|
|
|
|
Gdi::Window::presentLayered(*backBuffer, offset);
|
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateNow(CompatWeakPtr<IDirectDrawSurface7> src, UINT flipInterval)
|
|
|
|
{
|
|
|
|
presentToPrimaryChain(src);
|
|
|
|
g_isUpdatePending = false;
|
2020-07-13 23:44:05 +02:00
|
|
|
g_waitingForPrimaryUnlock = false;
|
2018-10-03 20:49:50 +02:00
|
|
|
|
2020-07-13 23:44:05 +02:00
|
|
|
if (g_isFullScreen)
|
2018-10-03 20:49:50 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
g_frontBuffer->Flip(g_frontBuffer, getBackBuffer(), DDFLIP_WAIT);
|
2018-10-03 20:49:50 +02:00
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
g_presentEndVsyncCount = D3dDdi::KernelModeThunks::getVsyncCounter() + max(flipInterval, 1);
|
2018-10-03 20:49:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void updateNowIfNotBusy()
|
|
|
|
{
|
|
|
|
auto primary(DDraw::PrimarySurface::getPrimary());
|
|
|
|
RECT emptyRect = {};
|
|
|
|
HRESULT result = primary ? primary->BltFast(primary, 0, 0, primary, &emptyRect, DDBLTFAST_WAIT) : DD_OK;
|
|
|
|
g_waitingForPrimaryUnlock = DDERR_SURFACEBUSY == result || DDERR_LOCKEDSURFACES == result;
|
|
|
|
|
2019-07-29 19:12:37 +02:00
|
|
|
if (!g_waitingForPrimaryUnlock)
|
2018-10-03 20:49:50 +02:00
|
|
|
{
|
|
|
|
const auto msSinceLastUpdate = Time::qpcToMs(Time::queryPerformanceCounter() - g_qpcLastUpdate);
|
|
|
|
updateNow(primary, msSinceLastUpdate > Config::delayedFlipModeTimeout ? 0 : 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI updateThreadProc(LPVOID /*lpParameter*/)
|
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
bool skipWaitForVsync = false;
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
while (!g_stopUpdateThread)
|
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
if (!skipWaitForVsync)
|
2015-12-28 13:54:11 +01:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
D3dDdi::KernelModeThunks::waitForVsync();
|
2015-12-28 13:54:11 +01:00
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
skipWaitForVsync = false;
|
|
|
|
Gdi::Caret::blink();
|
2020-04-23 20:22:00 +02:00
|
|
|
Sleep(1);
|
2020-07-13 23:44:05 +02:00
|
|
|
|
|
|
|
DDraw::ScopedThreadLock lock;
|
|
|
|
if (g_isUpdatePending && !isPresentPending())
|
|
|
|
{
|
|
|
|
if (Time::qpcToMs(Time::queryPerformanceCounter() - g_qpcFlipEnd) < 1)
|
|
|
|
{
|
|
|
|
skipWaitForVsync = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
updateNowIfNotBusy();
|
|
|
|
}
|
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
return 0;
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
namespace DDraw
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2016-08-27 22:39:28 +02:00
|
|
|
template <typename DirectDraw>
|
|
|
|
HRESULT RealPrimarySurface::create(CompatRef<DirectDraw> dd)
|
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
2016-12-19 19:25:15 +01:00
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
typename Types<DirectDraw>::TSurfaceDesc desc = {};
|
|
|
|
desc.dwSize = sizeof(desc);
|
|
|
|
desc.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
|
|
|
|
desc.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_COMPLEX | DDSCAPS_FLIP;
|
2018-10-03 20:49:50 +02:00
|
|
|
desc.dwBackBufferCount = 2;
|
2016-08-27 22:39:28 +02:00
|
|
|
|
|
|
|
CompatPtr<typename Types<DirectDraw>::TCreatedSurface> surface;
|
2021-01-16 12:42:56 +01:00
|
|
|
HRESULT result = dd->CreateSurface(&dd, &desc, &surface.getRef(), nullptr);
|
2016-08-27 22:39:28 +02:00
|
|
|
|
|
|
|
if (DDERR_NOEXCLUSIVEMODE == result)
|
|
|
|
{
|
|
|
|
desc.dwFlags = DDSD_CAPS;
|
|
|
|
desc.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
|
|
|
|
desc.dwBackBufferCount = 0;
|
|
|
|
result = dd->CreateSurface(&dd, &desc, &surface.getRef(), nullptr);
|
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
if (FAILED(result))
|
|
|
|
{
|
2019-01-10 22:16:23 +01:00
|
|
|
Compat::Log() << "ERROR: Failed to create the real primary surface: " << Compat::hex(result);
|
2016-08-27 22:39:28 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
g_frontBuffer = CompatPtr<IDirectDrawSurface7>::from(surface.get()).detach();
|
|
|
|
g_frontBuffer->SetPrivateData(g_frontBuffer, IID_IReleaseNotifier,
|
|
|
|
&g_releaseNotifier, sizeof(&g_releaseNotifier), DDSPD_IUNKNOWNPOINTER);
|
|
|
|
onRestore();
|
|
|
|
|
|
|
|
return DD_OK;
|
2016-08-27 22:39:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template HRESULT RealPrimarySurface::create(CompatRef<IDirectDraw>);
|
|
|
|
template HRESULT RealPrimarySurface::create(CompatRef<IDirectDraw2>);
|
|
|
|
template HRESULT RealPrimarySurface::create(CompatRef<IDirectDraw4>);
|
|
|
|
template HRESULT RealPrimarySurface::create(CompatRef<IDirectDraw7>);
|
2015-12-25 01:57:44 +01:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
HRESULT RealPrimarySurface::flip(CompatPtr<IDirectDrawSurface7> surfaceTargetOverride, DWORD flags)
|
2016-08-27 22:39:28 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
const DWORD flipInterval = getFlipInterval(flags);
|
|
|
|
if (0 == flipInterval)
|
|
|
|
{
|
|
|
|
g_isUpdatePending = true;
|
|
|
|
return DD_OK;
|
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
const auto msSinceLastUpdate = Time::qpcToMs(Time::queryPerformanceCounter() - g_qpcLastUpdate);
|
|
|
|
const bool isFlipDelayed = msSinceLastUpdate >= 0 && msSinceLastUpdate <= Config::delayedFlipModeTimeout;
|
|
|
|
if (isFlipDelayed)
|
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
if (!isPresentPending())
|
|
|
|
{
|
|
|
|
CompatPtr<IDirectDrawSurface7> prevPrimarySurface(
|
|
|
|
surfaceTargetOverride ? surfaceTargetOverride : PrimarySurface::getLastSurface());
|
|
|
|
updateNow(prevPrimarySurface, 0);
|
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
g_isUpdatePending = true;
|
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
else
|
2018-10-03 20:49:50 +02:00
|
|
|
{
|
2019-07-19 19:46:01 +02:00
|
|
|
updateNow(PrimarySurface::getPrimary(), flipInterval);
|
2018-10-03 20:49:50 +02:00
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
g_flipEndVsyncCount = D3dDdi::KernelModeThunks::getVsyncCounter() + flipInterval;
|
|
|
|
g_presentEndVsyncCount = g_flipEndVsyncCount;
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
if (0 != flipInterval)
|
|
|
|
{
|
|
|
|
g_lastFlipSurface = Surface::getSurface(
|
|
|
|
surfaceTargetOverride ? *surfaceTargetOverride : *PrimarySurface::getLastSurface());
|
|
|
|
}
|
2020-07-13 23:44:05 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
g_lastFlipSurface = nullptr;
|
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
return DD_OK;
|
2016-04-17 22:56:25 +02:00
|
|
|
}
|
|
|
|
|
2020-04-23 20:22:00 +02:00
|
|
|
void RealPrimarySurface::flush()
|
|
|
|
{
|
|
|
|
DDraw::ScopedThreadLock lock;
|
2020-07-13 23:44:05 +02:00
|
|
|
if (g_isUpdatePending && !isPresentPending())
|
2020-04-23 20:22:00 +02:00
|
|
|
{
|
|
|
|
updateNowIfNotBusy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-27 23:53:25 +02:00
|
|
|
HRESULT RealPrimarySurface::getGammaRamp(DDGAMMARAMP* rampData)
|
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
2017-05-27 23:53:25 +02:00
|
|
|
auto gammaControl(CompatPtr<IDirectDrawGammaControl>::from(g_frontBuffer.get()));
|
|
|
|
if (!gammaControl)
|
|
|
|
{
|
|
|
|
return DDERR_INVALIDPARAMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gammaControl->GetGammaRamp(gammaControl, 0, rampData);
|
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
CompatWeakPtr<IDirectDrawSurface7> RealPrimarySurface::getSurface()
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2016-08-27 22:39:28 +02:00
|
|
|
return g_frontBuffer;
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
|
2018-07-17 20:46:38 +02:00
|
|
|
void RealPrimarySurface::init()
|
|
|
|
{
|
|
|
|
g_updateThread = CreateThread(nullptr, 0, &updateThreadProc, nullptr, 0, nullptr);
|
|
|
|
SetThreadPriority(g_updateThread, THREAD_PRIORITY_TIME_CRITICAL);
|
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
bool RealPrimarySurface::isFullScreen()
|
2016-04-10 17:12:36 +02:00
|
|
|
{
|
2016-08-27 22:39:28 +02:00
|
|
|
return g_isFullScreen;
|
2016-04-10 17:12:36 +02:00
|
|
|
}
|
2016-08-27 22:39:28 +02:00
|
|
|
|
|
|
|
bool RealPrimarySurface::isLost()
|
2016-04-10 17:12:36 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
2016-08-27 22:39:28 +02:00
|
|
|
return g_frontBuffer && DDERR_SURFACELOST == g_frontBuffer->IsLost(g_frontBuffer);
|
2016-04-10 17:12:36 +02:00
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
void RealPrimarySurface::release()
|
2016-04-19 23:57:35 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
2016-08-27 22:39:28 +02:00
|
|
|
g_frontBuffer.release();
|
2016-04-19 23:57:35 +02:00
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
void RealPrimarySurface::removeUpdateThread()
|
2016-04-19 23:57:35 +02:00
|
|
|
{
|
2016-08-27 22:39:28 +02:00
|
|
|
if (!g_updateThread)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2016-04-19 23:57:35 +02:00
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
g_stopUpdateThread = true;
|
|
|
|
if (WAIT_OBJECT_0 != WaitForSingleObject(g_updateThread, 1000))
|
|
|
|
{
|
|
|
|
TerminateThread(g_updateThread, 0);
|
|
|
|
Compat::Log() << "The update thread was terminated forcefully";
|
|
|
|
}
|
|
|
|
g_updateThread = nullptr;
|
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
HRESULT RealPrimarySurface::restore()
|
2015-12-25 01:57:44 +01:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
|
|
|
HRESULT result = g_frontBuffer->Restore(g_frontBuffer);
|
|
|
|
if (SUCCEEDED(result))
|
|
|
|
{
|
|
|
|
onRestore();
|
|
|
|
}
|
|
|
|
return result;
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|
|
|
|
|
2020-07-13 23:44:05 +02:00
|
|
|
void RealPrimarySurface::scheduleUpdate()
|
|
|
|
{
|
|
|
|
g_qpcLastUpdate = Time::queryPerformanceCounter();
|
|
|
|
g_isUpdatePending = true;
|
|
|
|
}
|
|
|
|
|
2017-05-27 23:53:25 +02:00
|
|
|
HRESULT RealPrimarySurface::setGammaRamp(DDGAMMARAMP* rampData)
|
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
2017-05-27 23:53:25 +02:00
|
|
|
auto gammaControl(CompatPtr<IDirectDrawGammaControl>::from(g_frontBuffer.get()));
|
|
|
|
if (!gammaControl)
|
|
|
|
{
|
|
|
|
return DDERR_INVALIDPARAMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gammaControl->SetGammaRamp(gammaControl, 0, rampData);
|
|
|
|
}
|
|
|
|
|
2016-08-27 22:39:28 +02:00
|
|
|
void RealPrimarySurface::update()
|
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
DDraw::ScopedThreadLock lock;
|
|
|
|
g_qpcLastUpdate = Time::queryPerformanceCounter();
|
|
|
|
g_isUpdatePending = true;
|
|
|
|
if (g_waitingForPrimaryUnlock)
|
2017-07-16 20:35:31 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
updateNowIfNotBusy();
|
2017-07-16 20:35:31 +02:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
}
|
2017-07-16 20:35:31 +02:00
|
|
|
|
2018-10-03 20:49:50 +02:00
|
|
|
bool RealPrimarySurface::waitForFlip(Surface* surface, bool wait)
|
|
|
|
{
|
|
|
|
auto primary(DDraw::PrimarySurface::getPrimary());
|
|
|
|
if (!surface || !primary ||
|
|
|
|
surface != g_lastFlipSurface &&
|
|
|
|
surface != Surface::getSurface(*DDraw::PrimarySurface::getPrimary()))
|
|
|
|
{
|
|
|
|
return true;
|
2016-04-15 00:08:22 +02:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
|
|
|
|
if (!wait)
|
2017-07-16 20:35:31 +02:00
|
|
|
{
|
2018-10-03 20:49:50 +02:00
|
|
|
return !isFlipPending();
|
2017-07-16 20:35:31 +02:00
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
|
2020-07-13 23:44:05 +02:00
|
|
|
if (D3dDdi::KernelModeThunks::waitForVsyncCounter(g_flipEndVsyncCount))
|
2016-08-27 22:39:28 +02:00
|
|
|
{
|
2020-07-13 23:44:05 +02:00
|
|
|
g_qpcFlipEnd = Time::queryPerformanceCounter();
|
2016-08-27 22:39:28 +02:00
|
|
|
}
|
2018-10-03 20:49:50 +02:00
|
|
|
return true;
|
2016-05-15 17:59:35 +02:00
|
|
|
}
|
2015-12-25 01:57:44 +01:00
|
|
|
}
|