-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnvirons.Lib.Display.cpp
446 lines (314 loc) · 12.8 KB
/
Environs.Lib.Display.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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
/**
* Environs Native Layer API exposed by the libraries for large display devices
* ------------------------------------------------------------------
* Copyright (c) Chi-Tai Dang
*
* @author Chi-Tai Dang
* @version 1.0
* @remarks
*
* This file is part of the Environs framework developed at the
* Lab for Human Centered Multimedia of the University of Augsburg.
* http://hcm-lab.de/environs
*
* Environ is free software; you can redistribute it and/or modify
* it under the terms of the Eclipse Public License v1.0.
* A copy of the license may be obtained at:
* http://www.eclipse.org/org/documents/epl-v10.html
* --------------------------------------------------------------------
*/
#include "stdafx.h"
#define ENVIRONS_NATIVE_MODULE
/// Compiler flag that enables verbose debug output
#ifndef NDEBUG
//# define DEBUGVERB
//# define DEBUGVERBVerb
#endif
// Import access to the environs native object
#include "Environs.Obj.h"
using namespace environs;
// Import declarations and exports for the API
#include "Environs.Lib.h"
#include "Environs.Utils.h"
#include "Environs.Crypt.h"
#include "Environs.Mobile.h"
#include "Environs.Modules.h"
//#include "Interop/Stat.h"
#include "Core/Async.Worker.h"
#include "Core/Byte.Buffer.h"
#include "Core/Callbacks.h"
#include "Core/Notifications.h"
#include "Device/Device.Controller.h"
#include "Portal/Portal.Device.h"
#ifdef DISPLAYDEVICE
#include "Renderer/Render.OpenCL.h"
#endif
// Preprocs for ASSERT_OBJECT
#define CLASS_NAME "Native.Display . . . . ."
namespace environs
{
#ifdef DISPLAYDEVICE
namespace API
{
ENVIRONSAPI void PreDisposeN ()
{
#ifdef _WIN32
Kernel::DisposeWinSock ();
#endif
}
ENVIRONSAPI int SetMainAppWindowN ( jint hInst, WNDHANDLE hWnd )
{
CVerb ( "SetMainAppWindowN" );
#ifdef ENABLE_INSTANCE_WEAK_REFERENCE
sp ( Instance ) envSP = native.instancesSP [ hInst ].lock ();
#else
LockAcquireVA ( native.instancesSPLock, "SetMainAppWindowN" );
sp ( Instance ) envSP = native.instancesSP [ hInst ];
LockReleaseVA ( native.instancesSPLock, "SetMainAppWindowN" );
#endif
if ( !envSP || !envSP->kernel )
return 0;
return envSP->kernel->SetMainAppWindow ( hWnd );
}
/*
* Method: SetPortalOverlayARGB
* Signature: (I)I;
*/
ENVIRONSAPI EBOOL EnvironsFunc ( SetPortalOverlayARGBN, jint hInst, jint nativeID, jint portalID, jint layerID, jint left, jint top, jint width, jint height, jint stride, void * renderData, jint alpha, bool positionDevice )
{
CVerbIDN ( "SetPortalOverlayARGBN" );
if ( instances[hInst]->environsState < environs::Status::Started ) {
CVerbIDN ( "SetPortalOverlayARGBN: Environs is not started!" );
return false;
}
bool success = false;
PortalDevice * portal = GetLockedPortalDevice ( portalID );
if ( portal ) {
if ( portal->generator )
success = portal->generator->setPortalOverlayARGB ( layerID, left, top, width, height, stride, renderData, alpha, positionDevice );
ReleasePortalDevice ( portal );
}
/*if ( !renderData ) {
CErrID ( "setPortalOverlayARGB: Called with NULL renderData argument." );
return false;
}*/
/*
unsigned int id = PortalID ();
if ( id >= MAX_PORTAL_STREAMS_A_DEVICE )
return false;
bool ret = false;
DeviceBase * device = environs::GetDevice ( nativeID );
if ( !device )
return false;
if ( pthread_mutex_lock ( &device->portalMutex ) ) {
CErrIDN ( "SetPortalOverlayARGB: Failed to acquire lock on mutex." );
}
else {
if ( device->portalGenerators [id] )
ret = device->portalGenerators [id]->setPortalOverlayARGB ( layerID, left, top, width, height, stride, renderData, alpha, positionDevice );
if ( pthread_mutex_unlock ( &device->portalMutex ) ) {
CErrIDN ( "SetPortalOverlayARGB: Failed to release lock on portal mutex." );
}
}
UnlockDevice ( device );
*/
return success;
}
ENVIRONSAPI EBOOL SetPortalSourceWindowN ( WNDHANDLE hWnd, jint nativeID )
{
CVerbIDN ( "SetPortalSourceWindowN" );
if ( !hWnd )
return false;
DeviceController * device = (DeviceController *)environs::GetDevice ( nativeID );
if ( !device )
return false;
device->portalhWnd = hWnd;
UnlockDevice ( device );
return true;
}
ENVIRONSAPI void UpdateAppWindowSizeN ( jint hInst )
{
CVerb ( "UpdateAppWindowSizeN" );
Instance * env = instances [ hInst ];
if ( env )
env->kernel->UpdateAppWindowSize ();
}
ENVIRONSAPI void SetUseTouchInjectionN ( EBOOL enabled )
{
CVerb ( "SetUseTouchInjectionN" );
DeviceController::inject_touch = (enabled ? true : false);
//environs.deviceType = DEVICE_TYPE_SURFACE1;
}
ENVIRONSAPI void DeviceUpdatedN ( jint hInst, jint nativeID, jint portalID, int async, jint x, jint y, float angle )
{
CVerb ( "DeviceUpdatedN" );
Instance * env = instances[hInst];
if ( async )
env->asyncWorker.Push ( nativeID, ASYNCWORK_TYPE_DEVICE_UPDATE_XYANG, portalID, x, y, angle );
else
env->asyncWorker.UpdateDevice ( nativeID, portalID, ASYNCWORK_PARAM_DEVICE_UPDATE_XYANG, x, y, angle, true );
}
ENVIRONSAPI void DevicePositionUpdatedN ( jint hInst, jint nativeID, jint portalID, int async, jint x, jint y )
{
CVerb ( "DevicePositionUpdatedN" );
Instance * env = instances[hInst];
if ( async )
env->asyncWorker.Push ( nativeID, ASYNCWORK_TYPE_DEVICE_UPDATE_XYANG, portalID, x, y, -1 );
else
env->asyncWorker.UpdateDevice ( nativeID, portalID, ASYNCWORK_PARAM_DEVICE_UPDATE_XYANG, x, y, -1, true );
}
ENVIRONSAPI void DeviceAngleUpdatedN ( jint hInst, jint nativeID, jint portalID, int async, float angle )
{
CVerb ( "DeviceAngleUpdatedN" );
Instance * env = instances[hInst];
if ( async )
env->asyncWorker.Push ( nativeID, ASYNCWORK_TYPE_DEVICE_UPDATE_ANG, portalID, angle );
else
env->asyncWorker.UpdateDevice ( nativeID, portalID, ASYNCWORK_TYPE_DEVICE_UPDATE_ANG, 0, 0, angle, true );
}
ENVIRONSAPI void DeviceRemovedN ( jint hInst, jint nativeID, jint portalID, int async, jint x, jint y, float angle )
{
CVerb ( "DeviceRemovedN" );
Instance * env = instances[hInst];
if ( async )
env->asyncWorker.Push ( nativeID, ASYNCWORK_TYPE_DEVICE_REMOVED, portalID, x, y, angle );
else
env->asyncWorker.UpdateDevice ( nativeID, portalID, ASYNCWORK_PARAM_DEVICE_UPDATE_XYANG, x, y, angle, false );
}
ENVIRONSAPI void DeviceRemovedIDN ( jint hInst, jint nativeID, jint portalID, int async )
{
CVerb ( "DeviceRemovedIDN" );
Instance * env = instances[hInst];
if ( async )
env->asyncWorker.Push ( nativeID, ASYNCWORK_TYPE_DEVICE_REMOVED_ID, -1 );
else
env->asyncWorker.UpdateDevice ( nativeID, portalID, ASYNCWORK_PARAM_DEVICE_UPDATE_STATUS, 0, 0, -1, false );
}
ENVIRONSAPI void SetStreamOverUdpN ( int hInst )
{
CVerb ( "SetStreamOverUdpN" );
Instance * env = instances[hInst];
env->streamOverCom = false;
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Now streaming over UDP" );
}
ENVIRONSAPI void SetStreamOverTcpN ( int hInst )
{
CVerb ( "SetStreamOverTcpN" );
Instance * env = instances[hInst];
env->streamOverCom = true;
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Now streaming over TCP" );
}
ENVIRONSAPI void SetStreamJpegsN ( int hInst )
{
CVerb ( "SetStreamJpegsN" );
Instance * env = instances[hInst];
env->usePNG = false;
env->useStream = false;
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Using JPEG for stream" );
}
ENVIRONSAPI void SetStreamPngsN ( int hInst )
{
CVerb ( "SetStreamPngsN" );
Instance * env = instances[hInst];
env->usePNG = true;
env->useStream = false;
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Using PNG for stream" );
}
ENVIRONSAPI EBOOL StreamToggleQualityN ( int hInst )
{
CVerb ( "StreamToggleQualityN" );
Instance * env = instances[hInst];
bool newValue = !env->useStreamUltrafast;
env->useStreamUltrafast = newValue;
if ( newValue )
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Using Stream ultrafast" );
else
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, "Using Stream veryfast" );
return newValue;
}
ENVIRONSAPI EBOOL GetUseOpenCLN ( int hInst )
{
return instances[hInst]->useOCL ? true : false;
}
ENVIRONSAPI void SetUseOpenCLN ( int hInst, EBOOL enable )
{
CVerb ( "SetUseOpenCLN" );
Instance * env = instances[hInst];
bool status = enable ? true : false;
if ( status ) {
RenderOpenCL::InitOpenCL ( );
if ( !RenderOpenCL::ocl_initialized ) {
status = false;
}
}
env->useOCL = status;
onEnvironsMsgNotifier1 ( env, 0, SOURCE_NATIVE, status ? "Enabled OpenCL" : "Disabled OpenCL" );
}
ENVIRONSAPI void SetUseDeviceMarkerAutomaticN ( EBOOL enable )
{
CVerb ( "SetUseDeviceMarkerAutomaticN" );
opt_useDeviceMarkerHandler = (enable ? true : false);
}
ENVIRONSAPI void SetDeviceMarkerReducedPrecisionN ( EBOOL enable )
{
CVerb ( "SetDeviceMarkerReducedPrecisionN" );
opt_useDeviceMarkerReducedPrecision = (enable ? true : false);
}
ENVIRONSAPI void SetUseMouseEmulationN ( jint hInst, EBOOL enable )
{
CVerb ( "SetUseMouseEmulationN" );
bool status = enable ? true : false;
instances[hInst]->simulateMouse = status;
Kernel::SetUseTouchRecognizer("libEnv-RecMouseSimulatorWin" LIBEXTENSION, status);
}
ENVIRONSAPI EBOOL GetUseMouseEmulationN ( jint hInst )
{
CVerb ( "GetUseMouseEmulationN" );
return instances[hInst]->simulateMouse ? 1 : 0;
}
ENVIRONSAPI void SetUseTouchVisualizationN ( jint hInst, EBOOL enable )
{
CVerb ( "SetUseTouchVisualizationN" );
bool status = enable ? true : false;
instances[hInst]->visualizeTouches = status;
Kernel::SetUseTouchRecognizer("libEnv-RecTouchVisualizer" LIBEXTENSION, status);
}
ENVIRONSAPI EBOOL GetUseTouchVisualizationN ( jint hInst )
{
CVerb ( "GetUseTouchVisualizationN" );
return instances[hInst]->visualizeTouches ? 1 : 0;
}
/**
* Method: SetTrackerParams
* Signature: ()V
*/
ENVIRONSAPI EBOOL SetTrackerParamsN ( jint hInst, jint index, jint channels, jint width, jint height, jint stride )
{
CVerb ( "SetTrackerParamsN" );
Instance * env = instances[hInst];
if ( env->kernel ) {
ITracker * tracker = env->kernel->GetTracker ( index );
if ( tracker )
if ( tracker->Init ( width, height, channels, stride ) )
return tracker->Start ();
}
return false;
}
/**
* Method: SetTrackerImage
* Signature: ()Z
*/
ENVIRONSAPI EBOOL SetTrackerImageN ( jint hInst, jint index, void * rawImage, jint size )
{
CVerb ( "SetTrackerImageN" );
Instance * env = instances[hInst];
if ( rawImage && size && env->kernel ) {
ITracker * tracker = env->kernel->GetTracker ( index );
if ( tracker )
return tracker->Perform ( rawImage, size );
}
return false;
}
}
#endif
}