-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWrappers.cpp
137 lines (106 loc) · 4.78 KB
/
Wrappers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#include "stdafx.h"
#include "Wrappers.hpp"
#include "Error.hpp"
#include "d3dx9.h"
Mutex::Mutex() {
InitializeCriticalSection(&data);
}
void Mutex::lock() {
EnterCriticalSection(&data);
}
void Mutex::unlock() {
LeaveCriticalSection(&data);
}
D3D9Context::D3D9Context() {}
D3D9Context::D3D9Context(HWND hWnd) : hWnd(hWnd) {
hrAssert(Direct3DCreate9Ex(D3D_SDK_VERSION, &pD3D9), ASSERT_WARNING, TEXT("D3D9Context->Direct3DCreate9Ex"));
D3DPRESENT_PARAMETERS params;
ZeroMemory(¶ms, sizeof(D3DPRESENT_PARAMETERS));
params.Windowed = TRUE;
params.SwapEffect = D3DSWAPEFFECT_DISCARD;
params.hDeviceWindow = hWnd;
params.Flags = D3DPRESENTFLAG_LOCKABLE_BACKBUFFER;
hrAssert(pD3D9->CreateDeviceEx(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, hWnd, D3DCREATE_HARDWARE_VERTEXPROCESSING | D3DCREATE_MULTITHREADED, ¶ms, nullptr, &pD3D9Device), ASSERT_WARNING, TEXT("D3D9Context->CreateDeviceEx"));
D3DSURFACE_DESC desc;
hrAssert(pD3D9Device->GetBackBuffer(0, 0, D3DBACKBUFFER_TYPE_MONO, &backBuf.pData), ASSERT_WARNING, TEXT("D3D9Context->GetBackBuffer"));
hrAssert(backBuf.pData->GetDesc(&desc), ASSERT_WARNING, TEXT("D3D9Context->GetDesc"));
backBuf.width = desc.Width;
backBuf.height = desc.Height;
}
D3D9Context::~D3D9Context() {
}
D3D9Surface* D3D9Context::createSurface(unsigned int width, unsigned int height, PixelFmt format) {
HRESULT hr;
D3D9Surface* pSurface = new D3D9Surface(width, height, format);
hrAssert(pD3D9Device->CreateOffscreenPlainSurface(width, height, pixFmtD3D[format], D3DPOOL_DEFAULT, &pSurface->pData, nullptr), ASSERT_WARNING, TEXT("createSurface->CreateOffscreenPlainSurface"));
return pSurface;
}
D3D9Surface* D3D9Context::createSurfaceFromFile(LPCTSTR lpFile) {
D3DSURFACE_DESC desc;
D3D9Surface* pSurface = new D3D9Surface();
hrAssert(D3DXCreateTextureFromFileEx(pD3D9Device, lpFile, D3DX_DEFAULT_NONPOW2, D3DX_DEFAULT_NONPOW2, 1, 0, D3DFMT_UNKNOWN, D3DPOOL_DEFAULT, D3DX_FILTER_POINT, D3DX_FILTER_POINT, 0, nullptr, nullptr, &pSurface->pParentTexture), ASSERT_WARNING, TEXT("createSurfaceFromFile->D3DXCreateTextureFromFile"));
hrAssert(pSurface->pParentTexture->GetSurfaceLevel(0, &pSurface->pData), ASSERT_WARNING, TEXT("createSurfaceFromFile->GetSurfaceLevel"));
hrAssert(pSurface->pData->GetDesc(&desc), ASSERT_WARNING, TEXT("createSurfaceFromFile->GetDesc"));
pSurface->width = desc.Width;
pSurface->height = desc.Height;
return pSurface;
}
void D3D9Context::present()
{
pD3D9Device->Present(nullptr, nullptr, nullptr, nullptr);
}
// Optionally clip the source buffer to the target aspect ratio
bool D3D9Context::blit(D3D9Surface* pSrc, D3D9Surface* pDest, bool clip) {
RECT rect;
RECT* pRect = nullptr;
if (clip) {
LONG hOffset = 0;
LONG vOffset = 0;
float aspectRatio = ((float)pSrc->width / (float)pSrc->height) / ((float)pDest->width / (float)pDest->height);
if (aspectRatio > 1.f + FLT_EPSILON)
hOffset = (LONG)((((float)pSrc->width - ((float)pSrc->width / aspectRatio)) / 2.f) + 0.5f);
else if (aspectRatio < 1.f - FLT_EPSILON)
vOffset = (LONG)((((float)pSrc->height - ((float)pSrc->height * aspectRatio)) / 2.f) + 0.5f);
rect = { hOffset, vOffset, (LONG)pSrc->width - hOffset, (LONG)pSrc->height - vOffset };
pRect = ▭
}
return hrAssert(pD3D9Device->StretchRect(pSrc->pData, pRect, pDest->pData, nullptr, D3DTEXF_LINEAR), ASSERT_WARNING, TEXT("D3D9Context::blit->StretchRect"));
}
D3D9Surface::D3D9Surface(unsigned int width, unsigned int height, PixelFmt format)
: width(width), height(height), pixFormat(format), pBuffer(nullptr), pParentTexture(nullptr), pData(nullptr) {
HDC hDC = GetDC(nullptr);
bmpInfo.bmiHeader.biWidth = width;
bmpInfo.bmiHeader.biHeight = height;
bmpInfo.bmiHeader.biBitCount = pixFmtBpp[format];
bmpInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmpInfo.bmiHeader.biPlanes = 1;
bmpInfo.bmiHeader.biCompression = pixFmtFCC[format];
bmpInfo.bmiHeader.biSizeImage = 0;
bmpInfo.bmiHeader.biXPelsPerMeter = 3000;
bmpInfo.bmiHeader.biYPelsPerMeter = 3000;
bmpInfo.bmiHeader.biClrUsed = 0;
bmpInfo.bmiHeader.biClrImportant = 0;
bmpInfo.bmiHeader.biSizeImage = width * height * pixFmtBpp[format] / 8;
memcpy(&bmpInfo.bmiColors, &pixFmtMask[format], sizeof(pixFmtMask[format]));
hBitmap = CreateDIBSection(hDC, &bmpInfo, DIB_RGB_COLORS, &pBuffer, nullptr, 0);
}
D3D9Surface::D3D9Surface()
: pParentTexture(nullptr), pData(nullptr), hBitmap(nullptr) {
}
D3D9Surface::~D3D9Surface() {
if (pData)
pData->Release();
if (pParentTexture)
pParentTexture->Release();
if (hBitmap)
DeleteObject(hBitmap);
}
void D3D9Surface::map() {
D3DLOCKED_RECT lockedRect;
hrAssert(pData->LockRect(&lockedRect, nullptr, D3DLOCK_DISCARD | D3DLOCK_NOSYSLOCK), ASSERT_NOTICE);
pBuffer = lockedRect.pBits;
bmpInfo.bmiHeader.biSizeImage = lockedRect.Pitch * height;
}
void D3D9Surface::unmap() {
hrAssert(pData->UnlockRect(), ASSERT_NOTICE);
}