-
Notifications
You must be signed in to change notification settings - Fork 1
/
UWP_DX11Main.h
57 lines (45 loc) · 1.63 KB
/
UWP_DX11Main.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
#pragma once
#include "Common\StepTimer.h"
#include "Common\DeviceResources.h"
#include "Content\Sample3DSceneRenderer.h"
#include "Content\SampleFpsTextRenderer.h"
#include "yasio/yasio.hpp"
// Renders Direct2D and 3D content on the screen.
namespace UWP_DX11
{
class UWP_DX11Main : public DX::IDeviceNotify
{
public:
UWP_DX11Main(const std::shared_ptr<DX::DeviceResources>& deviceResources);
~UWP_DX11Main();
void CreateYAsio();
void SendHttpRequest();
void CreateWindowSizeDependentResources();
void StartTracking() { m_sceneRenderer->StartTracking(); }
void TrackingUpdate(float positionX) { m_pointerLocationX = positionX; }
void StopTracking() { m_sceneRenderer->StopTracking(); }
bool IsTracking() { return m_sceneRenderer->IsTracking(); }
void StartRenderLoop();
void StopRenderLoop();
Concurrency::critical_section& GetCriticalSection() { return m_criticalSection; }
// IDeviceNotify
virtual void OnDeviceLost();
virtual void OnDeviceRestored();
private:
void ProcessInput();
void Update();
bool Render();
// Cached pointer to device resources.
std::shared_ptr<DX::DeviceResources> m_deviceResources;
// TODO: Replace with your own content renderers.
std::unique_ptr<Sample3DSceneRenderer> m_sceneRenderer;
std::unique_ptr<SampleFpsTextRenderer> m_fpsTextRenderer;
Windows::Foundation::IAsyncAction^ m_renderLoopWorker;
Concurrency::critical_section m_criticalSection;
// Rendering loop timer.
DX::StepTimer m_timer;
// Track current input pointer position.
float m_pointerLocationX;
yasio::inet::io_service* m_service;
};
}