-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDesktopDuplication.h
115 lines (77 loc) · 2.99 KB
/
DesktopDuplication.h
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
#pragma once
#include "CommonTypes.h"
#include "d3d11.h"
#include "DuplicationManager.h"
#include <vector>
#include "ReferenceCounter.h"
#include "SmartPtr.h"
using namespace std;
# define D3_D11_DLL _T("d3d11.dll")
typedef HRESULT(WINAPI *D3D11CreateDeviceFunType)(
_In_opt_ IDXGIAdapter* pAdapter,
D3D_DRIVER_TYPE DriverType,
HMODULE Software,
UINT Flags,
_In_reads_opt_(FeatureLevels) CONST D3D_FEATURE_LEVEL* pFeatureLevels,
UINT FeatureLevels,
UINT SDKVersion,
_Out_opt_ ID3D11Device** ppDevice,
_Out_opt_ D3D_FEATURE_LEVEL* pFeatureLevel,
_Out_opt_ ID3D11DeviceContext** ppImmediateContext);
class IImageCapturingModule;
class cImageCapturingModuleId3d11Impl : public IReferenceCounter
{
private:
virtual ~cImageCapturingModuleId3d11Impl();
std::vector<std::pair<std::pair<std::pair<IDXGIAdapter1*, IDXGIOutput*>, MONITOR*>, UINT>> vAdapters_map;
protected:
ID3D11DeviceContext* m_Id3d11DeviceContext;
ID3D11Device* m_Id3d11Device;
CComPtr<ID3D11Texture2D> m_CurrentFrameTexture;
CComPtr<ID3D11Texture2D> pDstTexture = NULL;
ID3D11Texture2D* m_BackUpTexture;
HRESULT m_LastErrorCode;
cDuplicationManager m_DuplicationManager;
D3D_FEATURE_LEVEL m_SelectedFeatureLevel;
D3D11CreateDeviceFunType m_FnD3D11CreateDevice;
HMODULE m_DllHandleD3D11;
protected:
HRESULT initDuplicationManager(IDXGIAdapter *, IDXGIOutput *, int outputNumber);
DWORD loadD3D11FunctionsFromDll();
public:
SmartPtr<BitmapData> _pPreviousFrameImage;
SmartPtr<BitmapData> _pCurrentFrameImage;
IDXGIOutput* _pCurrentOutput;
public:
cImageCapturingModuleId3d11Impl();
std::vector <IDXGIOutput*> EnumMonitors(IDXGIAdapter1* pSelectedAdapter);
std::vector <IDXGIAdapter1*> EnumerateAdapters(void);
BOOL GetAllAvailableMonitors();
bool getBitmapFromTextureId3d11(ID3D11Texture2D* texture, HBITMAP* outputBitmap);
HRESULT initDevice(_In_opt_ IDXGIAdapter *pAdapter = nullptr);
HBITMAP getCurrentFrameAsBitmap();
void releaseBuffer();
virtual int getThisRect(CRect &rect);
virtual int getNonLayeredScreenRect(CRect &rect);
INT getChangedRegions(int timeout, bool &isTimeOut, rectangles &dirtyRects, std::vector <DXGI_OUTDUPL_MOVE_RECT> &moveRects, UINT &rect_count, RECT ScreenRect);
bool InitimageCapturingModule(CRect &monitorRect, int monitorNum = 1);
ID3D11Device* GetD3dDeviceInstance();
bool handleDesktopChange();
void cleanUpCurrentFrameObjects();
virtual void DoCleanup();
virtual void ReleaseAdapters();
bool WaitForVBlank();
virtual SmartPtr<BitmapData>* GetCurrentFrameImage(CRect &rect);
virtual SmartPtr<BitmapData>* GetPreviousImage(bool bCopyCurrentIfNotAvailable = false);
virtual SmartPtr<BitmapData>* GetCurrentImage(CRect &rect, BOOL _bCaptureNew = false);
virtual inline void ResetPreviousImage()
{
_pPreviousFrameImage = NULL;
}
BOOL virtual populateMonitorDetails();
BOOL IsDeviceReady();
HRESULT virtual GetLastError()
{
return m_LastErrorCode;
}
};