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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
/************************************************************************************
Filename : Util_ImageWindow.h
Content : An output object for windows that can display raw images for testing
Created : March 13, 2014
Authors : Dean Beeler
Copyright : Copyright 2014 Oculus, Inc. All Rights reserved.
Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License");
you may not use the Oculus VR Rift SDK except in compliance with the License,
which is provided at the time of installation or download, or which
otherwise accompanies this software in either electronic or hard copy form.
You may obtain a copy of the License at
http://www.oculusvr.com/licenses/LICENSE-3.2
Unless required by applicable law or agreed to in writing, the Oculus VR SDK
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*************************************************************************************/
#ifndef OVR_Util_ImageWindow_h
#define OVR_Util_ImageWindow_h
#if defined(OVR_OS_WIN32)
#include "Kernel/OVR_Win32_IncludeWindows.h"
#include <d2d1.h>
#include <dwrite.h>
#endif
#include "Kernel/OVR_Hash.h"
#include "Kernel/OVR_Array.h"
#include "Kernel/OVR_Threads.h"
#include "Kernel/OVR_Deque.h"
#include <stdint.h>
namespace OVR { namespace Util {
typedef struct
{
float x;
float y;
float radius;
float r;
float g;
float b;
bool fill;
} CirclePlot;
typedef struct
{
float x;
float y;
float r;
float g;
float b;
OVR::String text;
} TextPlot;
class Frame : virtual public RefCountBaseV<Frame>
{
public:
Frame( int frame ) :
frameNumber( frame ),
plots(),
textLines(),
imageData( NULL ),
colorImageData( NULL ),
width( 0 ),
height( 0 ),
colorPitch( 0 ),
ready( false )
{
}
~Frame()
{
if( imageData )
free( imageData );
if( colorImageData )
free( colorImageData );
plots.ClearAndRelease();
textLines.ClearAndRelease();
}
int frameNumber;
Array<CirclePlot> plots;
Array<TextPlot> textLines;
void* imageData;
void* colorImageData;
int width;
int height;
int colorPitch;
bool ready;
};
#if defined(OVR_OS_WIN32)
class ImageWindow
{
HWND hWindow;
ID2D1RenderTarget* pRT;
D2D1_SIZE_U resolution;
Mutex* frontBufferMutex;
InPlaceMutableDeque< Ptr<Frame> > frames;
ID2D1Bitmap* greyBitmap;
ID2D1Bitmap* colorBitmap;
public:
// constructors
ImageWindow();
ImageWindow( uint32_t width, uint32_t height );
virtual ~ImageWindow();
void GetResolution( size_t& width, size_t& height ) { width = resolution.width; height = resolution.height; }
void OnPaint(); // Called by Windows when it receives a WM_PAINT message
void UpdateImage( const uint8_t* imageData, uint32_t width, uint32_t height ) { UpdateImageBW( imageData, width, height ); }
void UpdateImageBW( const uint8_t* imageData, uint32_t width, uint32_t height );
void UpdateImageRGBA( const uint8_t* imageData, uint32_t width, uint32_t height, uint32_t pitch );
void Complete(); // Called by drawing thread to submit a frame
void Process(); // Called by rendering thread to do window processing
void AssociateSurface( void* surface );
void addCircle( float x , float y, float radius, float r, float g, float b, bool fill );
void addText( float x, float y, float r, float g, float b, OVR::String text );
static ImageWindow* GlobalWindow( int window ) { return globalWindow[window]; }
static int WindowCount() { return windowCount; }
private:
Ptr<Frame> lastUnreadyFrame();
static const int MaxWindows = 4;
static ImageWindow* globalWindow[MaxWindows];
static int windowCount;
static ID2D1Factory* pD2DFactory;
static IDWriteFactory* pDWriteFactory;
static HINSTANCE hInstD2d1;
static HINSTANCE hInstDwrite;
};
#else
class ImageWindow
{
public:
// constructors
ImageWindow() {}
ImageWindow( uint32_t width, uint32_t height ) { OVR_UNUSED( width ); OVR_UNUSED( height ); }
virtual ~ImageWindow() { }
void GetResolution( size_t& width, size_t& height ) { width = 0; height = 0; }
void OnPaint() { }
void UpdateImage( const uint8_t* imageData, uint32_t width, uint32_t height ) { UpdateImageBW( imageData, width, height ); }
void UpdateImageBW( const uint8_t* imageData, uint32_t width, uint32_t height ) { OVR_UNUSED( imageData ); OVR_UNUSED( width ); OVR_UNUSED( height ); }
void UpdateImageRGBA( const uint8_t* imageData, uint32_t width, uint32_t height, uint32_t pitch ) { OVR_UNUSED( imageData ); OVR_UNUSED( width ); OVR_UNUSED( height ); OVR_UNUSED( pitch ); }
void Complete() { }
void Process() { }
void AssociateSurface( void* surface ) { OVR_UNUSED(surface); }
void addCircle( float x , float y, float radius, float r, float g, float b, bool fill ) { OVR_UNUSED( x ); OVR_UNUSED( y ); OVR_UNUSED( radius ); OVR_UNUSED( r ); OVR_UNUSED( g ); OVR_UNUSED( b ); OVR_UNUSED( fill ); }
void addText( float x, float y, float r, float g, float b, OVR::String text ) { OVR_UNUSED( x ); OVR_UNUSED( y ); OVR_UNUSED( r ); OVR_UNUSED( g ); OVR_UNUSED( b ); OVR_UNUSED( text ); }
static ImageWindow* GlobalWindow( int window ) { return globalWindow[window]; }
static int WindowCount() { return windowCount; }
private:
static const int MaxWindows = 4;
static ImageWindow* globalWindow[4];
static int windowCount;
};
#endif
}} // namespace OVR::Util
#endif
|