2013-03-20 00:52:07 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Input Virtual Channel Extension
|
|
|
|
*
|
|
|
|
* Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-06-09 13:46:10 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2013-03-20 00:52:07 +04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
2013-06-12 00:15:46 +04:00
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
2013-05-09 07:18:42 +04:00
|
|
|
#include <winpr/stream.h>
|
2013-05-14 03:17:25 +04:00
|
|
|
#include <winpr/sysinfo.h>
|
2013-03-20 00:52:07 +04:00
|
|
|
#include <winpr/cmdline.h>
|
2013-06-12 00:15:46 +04:00
|
|
|
#include <winpr/collections.h>
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
#include <freerdp/addin.h>
|
2015-07-15 10:50:35 +03:00
|
|
|
#include <freerdp/freerdp.h>
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2013-05-09 07:18:42 +04:00
|
|
|
#include "rdpei_common.h"
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
#include "rdpei_main.h"
|
|
|
|
|
2013-05-15 01:45:52 +04:00
|
|
|
/**
|
|
|
|
* Touch Input
|
|
|
|
* http://msdn.microsoft.com/en-us/library/windows/desktop/dd562197/
|
|
|
|
*
|
|
|
|
* Windows Touch Input
|
|
|
|
* http://msdn.microsoft.com/en-us/library/windows/desktop/dd317321/
|
|
|
|
*
|
|
|
|
* Input: Touch injection sample
|
|
|
|
* http://code.msdn.microsoft.com/windowsdesktop/Touch-Injection-Sample-444d9bf7
|
|
|
|
*
|
|
|
|
* Pointer Input Message Reference
|
|
|
|
* http://msdn.microsoft.com/en-us/library/hh454916/
|
|
|
|
*
|
|
|
|
* POINTER_INFO Structure
|
|
|
|
* http://msdn.microsoft.com/en-us/library/hh454907/
|
|
|
|
*
|
|
|
|
* POINTER_TOUCH_INFO Structure
|
|
|
|
* http://msdn.microsoft.com/en-us/library/hh454910/
|
|
|
|
*/
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
#define MAX_CONTACTS 64
|
|
|
|
#define MAX_PEN_CONTACTS 4
|
2013-05-14 03:17:25 +04:00
|
|
|
|
|
|
|
struct _RDPEI_CHANNEL_CALLBACK
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2013-05-14 03:17:25 +04:00
|
|
|
IWTSVirtualChannelCallback iface;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
IWTSPlugin* plugin;
|
|
|
|
IWTSVirtualChannelManager* channel_mgr;
|
2013-05-14 03:17:25 +04:00
|
|
|
IWTSVirtualChannel* channel;
|
2013-03-20 00:52:07 +04:00
|
|
|
};
|
2013-05-14 03:17:25 +04:00
|
|
|
typedef struct _RDPEI_CHANNEL_CALLBACK RDPEI_CHANNEL_CALLBACK;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2013-05-14 03:17:25 +04:00
|
|
|
struct _RDPEI_LISTENER_CALLBACK
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2013-05-14 03:17:25 +04:00
|
|
|
IWTSListenerCallback iface;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
IWTSPlugin* plugin;
|
|
|
|
IWTSVirtualChannelManager* channel_mgr;
|
2013-05-14 03:17:25 +04:00
|
|
|
RDPEI_CHANNEL_CALLBACK* channel_callback;
|
2013-03-20 00:52:07 +04:00
|
|
|
};
|
2013-05-14 03:17:25 +04:00
|
|
|
typedef struct _RDPEI_LISTENER_CALLBACK RDPEI_LISTENER_CALLBACK;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
struct _RDPEI_PLUGIN
|
|
|
|
{
|
|
|
|
IWTSPlugin iface;
|
|
|
|
|
2013-05-14 00:07:42 +04:00
|
|
|
IWTSListener* listener;
|
2013-03-20 00:52:07 +04:00
|
|
|
RDPEI_LISTENER_CALLBACK* listener_callback;
|
2013-05-14 03:17:25 +04:00
|
|
|
|
2014-12-27 23:20:29 +03:00
|
|
|
RdpeiClientContext* context;
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
UINT32 version;
|
2021-05-20 15:11:43 +03:00
|
|
|
UINT32 features; /* SC_READY_MULTIPEN_INJECTION_SUPPORTED */
|
2013-05-15 01:45:52 +04:00
|
|
|
UINT16 maxTouchContacts;
|
2013-05-14 03:17:25 +04:00
|
|
|
UINT64 currentFrameTime;
|
|
|
|
UINT64 previousFrameTime;
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPINPUT_CONTACT_POINT contactPoints[MAX_CONTACTS];
|
2013-06-12 00:15:46 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
UINT64 currentPenFrameTime;
|
|
|
|
UINT64 previousPenFrameTime;
|
|
|
|
UINT16 maxPenContacts;
|
|
|
|
RDPINPUT_PEN_CONTACT_POINT penContactPoints[MAX_PEN_CONTACTS];
|
|
|
|
|
|
|
|
CRITICAL_SECTION lock;
|
2015-07-15 10:50:35 +03:00
|
|
|
rdpContext* rdpcontext;
|
2020-08-10 16:36:31 +03:00
|
|
|
BOOL initialized;
|
2020-11-11 10:54:46 +03:00
|
|
|
HANDLE thread;
|
|
|
|
HANDLE event;
|
2013-03-20 00:52:07 +04:00
|
|
|
};
|
2013-05-14 00:07:42 +04:00
|
|
|
typedef struct _RDPEI_PLUGIN RDPEI_PLUGIN;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_send_frame(RdpeiClientContext* context, RDPINPUT_TOUCH_FRAME* frame);
|
2013-06-12 00:15:46 +04:00
|
|
|
|
2020-01-23 12:50:37 +03:00
|
|
|
#ifdef WITH_DEBUG_RDPEI
|
|
|
|
static const char* rdpei_eventid_string(UINT16 event)
|
|
|
|
{
|
|
|
|
switch (event)
|
|
|
|
{
|
|
|
|
case EVENTID_SC_READY:
|
|
|
|
return "EVENTID_SC_READY";
|
|
|
|
case EVENTID_CS_READY:
|
|
|
|
return "EVENTID_CS_READY";
|
|
|
|
case EVENTID_TOUCH:
|
|
|
|
return "EVENTID_TOUCH";
|
|
|
|
case EVENTID_SUSPEND_TOUCH:
|
|
|
|
return "EVENTID_SUSPEND_TOUCH";
|
|
|
|
case EVENTID_RESUME_TOUCH:
|
|
|
|
return "EVENTID_RESUME_TOUCH";
|
|
|
|
case EVENTID_DISMISS_HOVERING_CONTACT:
|
|
|
|
return "EVENTID_DISMISS_HOVERING_CONTACT";
|
2020-11-11 10:54:46 +03:00
|
|
|
case EVENTID_PEN:
|
|
|
|
return "EVENTID_PEN";
|
2020-01-23 12:50:37 +03:00
|
|
|
default:
|
|
|
|
return "EVENTID_UNKNOWN";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2013-05-09 07:18:42 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static RDPINPUT_CONTACT_POINT* rdpei_contact(RDPEI_PLUGIN* rdpei, INT32 externalId, BOOL active)
|
|
|
|
{
|
|
|
|
UINT16 i;
|
|
|
|
|
|
|
|
for (i = 0; i < rdpei->maxTouchContacts; i++)
|
|
|
|
{
|
|
|
|
RDPINPUT_CONTACT_POINT* contactPoint = &rdpei->contactPoints[i];
|
|
|
|
|
|
|
|
if (!contactPoint->active && active)
|
|
|
|
continue;
|
|
|
|
else if (!contactPoint->active && !active)
|
|
|
|
{
|
|
|
|
contactPoint->contactId = i;
|
|
|
|
contactPoint->externalId = externalId;
|
|
|
|
contactPoint->active = TRUE;
|
|
|
|
return contactPoint;
|
|
|
|
}
|
|
|
|
else if (contactPoint->externalId == externalId)
|
|
|
|
{
|
|
|
|
return contactPoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_add_frame(RdpeiClientContext* context)
|
2013-06-12 00:15:46 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
UINT16 i;
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
RDPINPUT_TOUCH_FRAME frame = { 0 };
|
|
|
|
RDPINPUT_CONTACT_DATA contacts[MAX_CONTACTS] = { 0 };
|
|
|
|
|
|
|
|
if (!context || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
frame.contacts = contacts;
|
2013-06-12 00:15:46 +04:00
|
|
|
|
|
|
|
for (i = 0; i < rdpei->maxTouchContacts; i++)
|
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPINPUT_CONTACT_POINT* contactPoint = &rdpei->contactPoints[i];
|
|
|
|
RDPINPUT_CONTACT_DATA* contact = &contactPoint->data;
|
2013-06-12 00:15:46 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (contactPoint->dirty)
|
2013-06-12 00:15:46 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
contacts[frame.contactCount] = *contact;
|
2013-06-12 00:15:46 +04:00
|
|
|
rdpei->contactPoints[i].dirty = FALSE;
|
2020-11-11 10:54:46 +03:00
|
|
|
frame.contactCount++;
|
2013-06-12 00:15:46 +04:00
|
|
|
}
|
2020-11-11 10:54:46 +03:00
|
|
|
else if (contactPoint->active)
|
2013-06-12 00:15:46 +04:00
|
|
|
{
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->contactFlags & RDPINPUT_CONTACT_FLAG_DOWN)
|
2013-06-12 00:15:46 +04:00
|
|
|
{
|
2020-11-30 15:40:15 +03:00
|
|
|
contact->contactFlags = RDPINPUT_CONTACT_FLAG_UPDATE;
|
|
|
|
contact->contactFlags |= RDPINPUT_CONTACT_FLAG_INRANGE;
|
|
|
|
contact->contactFlags |= RDPINPUT_CONTACT_FLAG_INCONTACT;
|
2013-06-12 00:15:46 +04:00
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
contacts[frame.contactCount] = *contact;
|
|
|
|
frame.contactCount++;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->contactFlags & RDPINPUT_CONTACT_FLAG_UP)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
contactPoint->active = FALSE;
|
|
|
|
contactPoint->externalId = 0;
|
|
|
|
contactPoint->contactId = 0;
|
2013-06-12 00:15:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (frame.contactCount > 0)
|
|
|
|
{
|
|
|
|
UINT error = rdpei_send_frame(context, &frame);
|
|
|
|
if (error != CHANNEL_RC_OK)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "rdpei_send_frame failed with error %" PRIu32 "!", error);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-06-12 00:15:46 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_send_pdu(RDPEI_CHANNEL_CALLBACK* callback, wStream* s, UINT16 eventId,
|
|
|
|
UINT32 pduLength)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT status;
|
2021-06-21 14:59:41 +03:00
|
|
|
|
|
|
|
if (!callback || !s || !callback->channel || !callback->channel->Write || !callback->plugin)
|
2020-11-11 10:54:46 +03:00
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
2013-05-09 08:21:33 +04:00
|
|
|
Stream_SetPosition(s, 0);
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, eventId); /* eventId (2 bytes) */
|
2013-05-09 08:21:33 +04:00
|
|
|
Stream_Write_UINT32(s, pduLength); /* pduLength (4 bytes) */
|
|
|
|
Stream_SetPosition(s, Stream_Length(s));
|
2019-11-06 17:24:51 +03:00
|
|
|
status = callback->channel->Write(callback->channel, (UINT32)Stream_Length(s), Stream_Buffer(s),
|
|
|
|
NULL);
|
2013-05-15 03:26:01 +04:00
|
|
|
#ifdef WITH_DEBUG_RDPEI
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG,
|
|
|
|
"rdpei_send_pdu: eventId: %" PRIu16 " (%s) length: %" PRIu32 " status: %" PRIu32 "",
|
2020-01-23 12:50:37 +03:00
|
|
|
eventId, rdpei_eventid_string(eventId), pduLength, status);
|
2013-05-15 03:26:01 +04:00
|
|
|
#endif
|
2013-05-09 08:21:33 +04:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_write_pen_frame(wStream* s, const RDPINPUT_PEN_FRAME* frame)
|
|
|
|
{
|
|
|
|
UINT16 x;
|
|
|
|
if (!s || !frame)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
if (!rdpei_write_2byte_unsigned(s, frame->contactCount))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
if (!rdpei_write_8byte_unsigned(s, frame->frameOffset))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
for (x = 0; x < frame->contactCount; x++)
|
|
|
|
{
|
|
|
|
const RDPINPUT_PEN_CONTACT* contact = &frame->contacts[x];
|
|
|
|
|
|
|
|
if (!Stream_EnsureRemainingCapacity(s, 1))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
Stream_Write_UINT8(s, contact->deviceId);
|
|
|
|
if (!rdpei_write_2byte_unsigned(s, contact->fieldsPresent))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
if (!rdpei_write_4byte_signed(s, contact->x))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
if (!rdpei_write_4byte_signed(s, contact->y))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
if (!rdpei_write_4byte_unsigned(s, contact->contactFlags))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->fieldsPresent & RDPINPUT_PEN_CONTACT_PENFLAGS_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
if (!rdpei_write_4byte_unsigned(s, contact->penFlags))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->fieldsPresent & RDPINPUT_PEN_CONTACT_PRESSURE_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
if (!rdpei_write_4byte_unsigned(s, contact->pressure))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->fieldsPresent & RDPINPUT_PEN_CONTACT_ROTATION_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
if (!rdpei_write_2byte_unsigned(s, contact->rotation))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->fieldsPresent & RDPINPUT_PEN_CONTACT_TILTX_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
if (!rdpei_write_2byte_signed(s, contact->tiltX))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->fieldsPresent & RDPINPUT_PEN_CONTACT_TILTY_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
if (!rdpei_write_2byte_signed(s, contact->tiltY))
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_send_pen_event_pdu(RDPEI_CHANNEL_CALLBACK* callback, UINT32 frameOffset,
|
|
|
|
const RDPINPUT_PEN_FRAME* frames, UINT16 count)
|
|
|
|
{
|
|
|
|
UINT status;
|
|
|
|
wStream* s;
|
|
|
|
UINT16 x;
|
|
|
|
|
|
|
|
if (!frames || (count == 0))
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
s = Stream_New(NULL, 64);
|
|
|
|
|
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_New failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream_Seek(s, RDPINPUT_HEADER_LENGTH);
|
|
|
|
/**
|
|
|
|
* the time that has elapsed (in milliseconds) from when the oldest touch frame
|
|
|
|
* was generated to when it was encoded for transmission by the client.
|
|
|
|
*/
|
|
|
|
rdpei_write_4byte_unsigned(s, frameOffset); /* encodeTime (FOUR_BYTE_UNSIGNED_INTEGER) */
|
|
|
|
rdpei_write_2byte_unsigned(s, count); /* (frameCount) TWO_BYTE_UNSIGNED_INTEGER */
|
|
|
|
|
|
|
|
for (x = 0; x < count; x++)
|
|
|
|
{
|
|
|
|
if ((status = rdpei_write_pen_frame(s, &frames[x])))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "rdpei_write_touch_frame failed with error %" PRIu32 "!", status);
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Stream_SealLength(s);
|
|
|
|
|
|
|
|
status = rdpei_send_pdu(callback, s, EVENTID_PEN, Stream_Length(s));
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_send_pen_frame(RdpeiClientContext* context, RDPINPUT_PEN_FRAME* frame)
|
|
|
|
{
|
|
|
|
const UINT64 currentTime = GetTickCount64();
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
RDPEI_CHANNEL_CALLBACK* callback;
|
|
|
|
UINT error;
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
if (!rdpei || !rdpei->listener_callback)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2021-06-21 14:59:41 +03:00
|
|
|
if (!rdpei || !rdpei->rdpcontext)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
if (freerdp_settings_get_bool(rdpei->rdpcontext->settings, FreeRDP_SuspendInput))
|
|
|
|
return CHANNEL_RC_OK;
|
2020-11-11 10:54:46 +03:00
|
|
|
|
|
|
|
callback = rdpei->listener_callback->channel_callback;
|
2021-05-31 11:08:50 +03:00
|
|
|
/* Just ignore the event if the channel is not connected */
|
|
|
|
if (!callback)
|
|
|
|
return CHANNEL_RC_OK;
|
2020-11-11 10:54:46 +03:00
|
|
|
|
|
|
|
if (!rdpei->previousPenFrameTime && !rdpei->currentPenFrameTime)
|
|
|
|
{
|
|
|
|
rdpei->currentPenFrameTime = currentTime;
|
|
|
|
frame->frameOffset = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rdpei->currentPenFrameTime = currentTime;
|
|
|
|
frame->frameOffset = rdpei->currentPenFrameTime - rdpei->previousPenFrameTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = rdpei_send_pen_event_pdu(callback, frame->frameOffset, frame, 1)))
|
|
|
|
return error;
|
|
|
|
|
|
|
|
rdpei->previousPenFrameTime = rdpei->currentPenFrameTime;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_add_pen_frame(RdpeiClientContext* context)
|
|
|
|
{
|
|
|
|
UINT16 i;
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
RDPINPUT_PEN_FRAME penFrame = { 0 };
|
|
|
|
RDPINPUT_PEN_CONTACT penContacts[MAX_PEN_CONTACTS] = { 0 };
|
|
|
|
|
|
|
|
if (!context || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
|
|
|
|
penFrame.contacts = penContacts;
|
|
|
|
|
|
|
|
for (i = 0; i < rdpei->maxPenContacts; i++)
|
|
|
|
{
|
|
|
|
RDPINPUT_PEN_CONTACT_POINT* contact = &(rdpei->penContactPoints[i]);
|
|
|
|
|
|
|
|
if (contact->dirty)
|
|
|
|
{
|
|
|
|
penContacts[penFrame.contactCount++] = contact->data;
|
|
|
|
contact->dirty = FALSE;
|
|
|
|
}
|
|
|
|
else if (contact->active)
|
|
|
|
{
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->data.contactFlags & RDPINPUT_CONTACT_FLAG_DOWN)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
2020-11-30 15:40:15 +03:00
|
|
|
contact->data.contactFlags = RDPINPUT_CONTACT_FLAG_UPDATE;
|
|
|
|
contact->data.contactFlags |= RDPINPUT_CONTACT_FLAG_INRANGE;
|
|
|
|
contact->data.contactFlags |= RDPINPUT_CONTACT_FLAG_INCONTACT;
|
2020-11-11 10:54:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
penContacts[penFrame.contactCount++] = contact->data;
|
|
|
|
}
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contact->data.contactFlags & RDPINPUT_CONTACT_FLAG_UP)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
|
|
|
contact->externalId = 0;
|
|
|
|
contact->active = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (penFrame.contactCount > 0)
|
|
|
|
return rdpei_send_pen_frame(context, &penFrame);
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_update(RdpeiClientContext* context)
|
|
|
|
{
|
|
|
|
UINT error = rdpei_add_frame(context);
|
|
|
|
if (error != CHANNEL_RC_OK)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "rdpei_add_frame failed with error %" PRIu32 "!", error);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rdpei_add_pen_frame(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD WINAPI rdpei_periodic_update(LPVOID arg)
|
|
|
|
{
|
|
|
|
DWORD status;
|
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)arg;
|
|
|
|
UINT error = CHANNEL_RC_OK;
|
|
|
|
RdpeiClientContext* context;
|
|
|
|
|
|
|
|
if (!rdpei)
|
|
|
|
{
|
|
|
|
error = ERROR_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
context = (RdpeiClientContext*)rdpei->iface.pInterface;
|
|
|
|
|
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
error = ERROR_INVALID_PARAMETER;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (rdpei->initialized)
|
|
|
|
{
|
|
|
|
status = WaitForSingleObject(rdpei->event, 20);
|
|
|
|
|
|
|
|
if (status == WAIT_FAILED)
|
|
|
|
{
|
|
|
|
error = GetLastError();
|
|
|
|
WLog_ERR(TAG, "WaitForMultipleObjects failed with error %" PRIu32 "!", error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
EnterCriticalSection(&rdpei->lock);
|
|
|
|
|
|
|
|
error = rdpei_update(context);
|
|
|
|
if (error != CHANNEL_RC_OK)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "rdpei_add_frame failed with error %" PRIu32 "!", error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status == WAIT_OBJECT_0)
|
|
|
|
ResetEvent(rdpei->event);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&rdpei->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
|
|
|
if (error && rdpei && rdpei->rdpcontext)
|
|
|
|
setChannelError(rdpei->rdpcontext, error, "rdpei_schedule_thread reported an error");
|
|
|
|
|
|
|
|
ExitThread(error);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_send_cs_ready_pdu(RDPEI_CHANNEL_CALLBACK* callback)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT status;
|
2013-05-09 08:21:33 +04:00
|
|
|
wStream* s;
|
2021-05-20 15:11:43 +03:00
|
|
|
UINT32 flags = 0;
|
2013-05-09 08:21:33 +04:00
|
|
|
UINT32 pduLength;
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
|
|
|
|
if (!callback || !callback->plugin)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rdpei = (RDPEI_PLUGIN*)callback->plugin;
|
2021-05-20 15:11:43 +03:00
|
|
|
|
|
|
|
flags |= CS_READY_FLAGS_SHOW_TOUCH_VISUALS & rdpei->context->clientFeaturesMask;
|
2020-11-11 10:54:46 +03:00
|
|
|
if (rdpei->version > RDPINPUT_PROTOCOL_V10)
|
2021-05-20 15:11:43 +03:00
|
|
|
flags |= CS_READY_FLAGS_DISABLE_TIMESTAMP_INJECTION & rdpei->context->clientFeaturesMask;
|
|
|
|
if (rdpei->features & SC_READY_MULTIPEN_INJECTION_SUPPORTED)
|
|
|
|
flags |= CS_READY_FLAGS_ENABLE_MULTIPEN_INJECTION & rdpei->context->clientFeaturesMask;
|
|
|
|
|
2013-05-09 08:21:33 +04:00
|
|
|
pduLength = RDPINPUT_HEADER_LENGTH + 10;
|
|
|
|
s = Stream_New(NULL, pduLength);
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_New failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-05-09 08:21:33 +04:00
|
|
|
|
2016-09-26 13:12:37 +03:00
|
|
|
Stream_Seek(s, RDPINPUT_HEADER_LENGTH);
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT32(s, flags); /* flags (4 bytes) */
|
2020-11-11 10:54:46 +03:00
|
|
|
Stream_Write_UINT32(s, rdpei->version); /* protocolVersion (4 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, rdpei->maxTouchContacts); /* maxTouchContacts (2 bytes) */
|
2013-05-09 08:21:33 +04:00
|
|
|
Stream_SealLength(s);
|
|
|
|
status = rdpei_send_pdu(callback, s, EVENTID_CS_READY, pduLength);
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2019-11-20 13:30:14 +03:00
|
|
|
static void rdpei_print_contact_flags(UINT32 contactFlags)
|
2013-05-15 01:45:52 +04:00
|
|
|
{
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_DOWN)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_DOWN");
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_UPDATE)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_UPDATE");
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_UP)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_UP");
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_INRANGE)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_INRANGE");
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_INCONTACT)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_INCONTACT");
|
2014-09-12 18:19:32 +04:00
|
|
|
|
2020-11-30 15:40:15 +03:00
|
|
|
if (contactFlags & RDPINPUT_CONTACT_FLAG_CANCELED)
|
|
|
|
WLog_DBG(TAG, " RDPINPUT_CONTACT_FLAG_CANCELED");
|
2013-05-15 01:45:52 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_write_touch_frame(wStream* s, RDPINPUT_TOUCH_FRAME* frame)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2014-02-11 07:12:13 +04:00
|
|
|
UINT32 index;
|
2013-07-11 22:04:20 +04:00
|
|
|
int rectSize = 2;
|
2013-05-09 08:21:33 +04:00
|
|
|
RDPINPUT_CONTACT_DATA* contact;
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!s || !frame)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2013-05-15 03:26:01 +04:00
|
|
|
#ifdef WITH_DEBUG_RDPEI
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "contactCount: %" PRIu32 "", frame->contactCount);
|
|
|
|
WLog_DBG(TAG, "frameOffset: 0x%016" PRIX64 "", frame->frameOffset);
|
2013-05-15 03:26:01 +04:00
|
|
|
#endif
|
2016-09-26 13:12:37 +03:00
|
|
|
rdpei_write_2byte_unsigned(s,
|
|
|
|
frame->contactCount); /* contactCount (TWO_BYTE_UNSIGNED_INTEGER) */
|
2013-06-12 00:15:46 +04:00
|
|
|
/**
|
|
|
|
* the time offset from the previous frame (in microseconds).
|
|
|
|
* If this is the first frame being transmitted then this field MUST be set to zero.
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei_write_8byte_unsigned(s, frame->frameOffset *
|
|
|
|
1000); /* frameOffset (EIGHT_BYTE_UNSIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, (size_t)frame->contactCount * 64))
|
2015-06-09 13:46:10 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_EnsureRemainingCapacity failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-05-09 08:21:33 +04:00
|
|
|
|
|
|
|
for (index = 0; index < frame->contactCount; index++)
|
|
|
|
{
|
|
|
|
contact = &frame->contacts[index];
|
2013-07-11 22:04:20 +04:00
|
|
|
contact->fieldsPresent |= CONTACT_DATA_CONTACTRECT_PRESENT;
|
|
|
|
contact->contactRectLeft = contact->x - rectSize;
|
|
|
|
contact->contactRectTop = contact->y - rectSize;
|
|
|
|
contact->contactRectRight = contact->x + rectSize;
|
|
|
|
contact->contactRectBottom = contact->y + rectSize;
|
2013-05-15 03:26:01 +04:00
|
|
|
#ifdef WITH_DEBUG_RDPEI
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "contact[%" PRIu32 "].contactId: %" PRIu32 "", index, contact->contactId);
|
|
|
|
WLog_DBG(TAG, "contact[%" PRIu32 "].fieldsPresent: %" PRIu32 "", index,
|
|
|
|
contact->fieldsPresent);
|
|
|
|
WLog_DBG(TAG, "contact[%" PRIu32 "].x: %" PRId32 "", index, contact->x);
|
|
|
|
WLog_DBG(TAG, "contact[%" PRIu32 "].y: %" PRId32 "", index, contact->y);
|
|
|
|
WLog_DBG(TAG, "contact[%" PRIu32 "].contactFlags: 0x%08" PRIX32 "", index,
|
|
|
|
contact->contactFlags);
|
2013-05-15 01:45:52 +04:00
|
|
|
rdpei_print_contact_flags(contact->contactFlags);
|
2013-05-15 03:26:01 +04:00
|
|
|
#endif
|
2013-05-14 09:06:25 +04:00
|
|
|
Stream_Write_UINT8(s, contact->contactId); /* contactId (1 byte) */
|
|
|
|
/* fieldsPresent (TWO_BYTE_UNSIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_2byte_unsigned(s, contact->fieldsPresent);
|
2013-05-14 09:06:25 +04:00
|
|
|
rdpei_write_4byte_signed(s, contact->x); /* x (FOUR_BYTE_SIGNED_INTEGER) */
|
|
|
|
rdpei_write_4byte_signed(s, contact->y); /* y (FOUR_BYTE_SIGNED_INTEGER) */
|
|
|
|
/* contactFlags (FOUR_BYTE_UNSIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_4byte_unsigned(s, contact->contactFlags);
|
|
|
|
|
|
|
|
if (contact->fieldsPresent & CONTACT_DATA_CONTACTRECT_PRESENT)
|
|
|
|
{
|
2013-05-14 09:06:25 +04:00
|
|
|
/* contactRectLeft (TWO_BYTE_SIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_2byte_signed(s, contact->contactRectLeft);
|
2013-05-14 09:06:25 +04:00
|
|
|
/* contactRectTop (TWO_BYTE_SIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_2byte_signed(s, contact->contactRectTop);
|
2013-05-14 09:06:25 +04:00
|
|
|
/* contactRectRight (TWO_BYTE_SIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_2byte_signed(s, contact->contactRectRight);
|
2013-05-14 09:06:25 +04:00
|
|
|
/* contactRectBottom (TWO_BYTE_SIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_2byte_signed(s, contact->contactRectBottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contact->fieldsPresent & CONTACT_DATA_ORIENTATION_PRESENT)
|
|
|
|
{
|
2013-05-14 09:06:25 +04:00
|
|
|
/* orientation (FOUR_BYTE_UNSIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_4byte_unsigned(s, contact->orientation);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contact->fieldsPresent & CONTACT_DATA_PRESSURE_PRESENT)
|
|
|
|
{
|
2013-05-14 09:06:25 +04:00
|
|
|
/* pressure (FOUR_BYTE_UNSIGNED_INTEGER) */
|
2013-05-09 08:21:33 +04:00
|
|
|
rdpei_write_4byte_unsigned(s, contact->pressure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-05-09 08:21:33 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_send_touch_event_pdu(RDPEI_CHANNEL_CALLBACK* callback,
|
|
|
|
RDPINPUT_TOUCH_FRAME* frame)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT status;
|
2013-05-09 08:21:33 +04:00
|
|
|
wStream* s;
|
|
|
|
UINT32 pduLength;
|
2021-06-21 14:59:41 +03:00
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)callback->plugin->pInterface;
|
|
|
|
if (!rdpei || !rdpei->rdpcontext)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
if (freerdp_settings_get_bool(rdpei->rdpcontext->settings, FreeRDP_SuspendInput))
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!frame)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2021-06-21 14:59:41 +03:00
|
|
|
|
2013-07-11 22:04:20 +04:00
|
|
|
pduLength = 64 + (frame->contactCount * 64);
|
2013-05-14 09:06:25 +04:00
|
|
|
s = Stream_New(NULL, pduLength);
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (!s)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Stream_New failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-05-09 08:21:33 +04:00
|
|
|
|
2016-09-26 13:12:37 +03:00
|
|
|
Stream_Seek(s, RDPINPUT_HEADER_LENGTH);
|
2013-06-12 00:15:46 +04:00
|
|
|
/**
|
|
|
|
* the time that has elapsed (in milliseconds) from when the oldest touch frame
|
|
|
|
* was generated to when it was encoded for transmission by the client.
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei_write_4byte_unsigned(
|
|
|
|
s, (UINT32)frame->frameOffset); /* encodeTime (FOUR_BYTE_UNSIGNED_INTEGER) */
|
|
|
|
rdpei_write_2byte_unsigned(s, 1); /* (frameCount) TWO_BYTE_UNSIGNED_INTEGER */
|
2013-05-09 08:21:33 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((status = rdpei_write_touch_frame(s, frame)))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_write_touch_frame failed with error %" PRIu32 "!", status);
|
2015-06-09 13:46:10 +03:00
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return status;
|
|
|
|
}
|
2013-05-09 08:21:33 +04:00
|
|
|
|
|
|
|
Stream_SealLength(s);
|
|
|
|
pduLength = Stream_Length(s);
|
|
|
|
status = rdpei_send_pdu(callback, s, EVENTID_TOUCH, pduLength);
|
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_recv_sc_ready_pdu(RDPEI_CHANNEL_CALLBACK* callback, wStream* s)
|
2013-05-09 07:18:42 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
UINT32 features = 0;
|
|
|
|
UINT32 size;
|
2013-05-09 07:18:42 +04:00
|
|
|
UINT32 protocolVersion;
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
|
|
|
|
if (!callback || !callback->plugin)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
rdpei = (RDPEI_PLUGIN*)callback->plugin;
|
|
|
|
|
|
|
|
size = Stream_GetRemainingLength(s);
|
|
|
|
if (size < 4)
|
|
|
|
return ERROR_INVALID_DATA;
|
2013-05-09 07:18:42 +04:00
|
|
|
Stream_Read_UINT32(s, protocolVersion); /* protocolVersion (4 bytes) */
|
2020-11-11 10:54:46 +03:00
|
|
|
|
|
|
|
if (protocolVersion >= RDPINPUT_PROTOCOL_V300)
|
|
|
|
{
|
|
|
|
if (size < 8)
|
|
|
|
return ERROR_INVALID_DATA;
|
|
|
|
}
|
2021-05-20 15:11:43 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (size >= 9)
|
|
|
|
Stream_Read_UINT32(s, features);
|
|
|
|
|
|
|
|
if (rdpei->version > protocolVersion)
|
|
|
|
rdpei->version = protocolVersion;
|
|
|
|
rdpei->features = features;
|
2013-07-11 22:04:20 +04:00
|
|
|
#if 0
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2013-07-11 22:04:20 +04:00
|
|
|
if (protocolVersion != RDPINPUT_PROTOCOL_V10)
|
2013-05-09 07:18:42 +04:00
|
|
|
{
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_ERR(TAG, "Unknown [MS-RDPEI] protocolVersion: 0x%08"PRIX32"", protocolVersion);
|
2013-05-09 07:18:42 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-09-26 13:12:37 +03:00
|
|
|
#endif
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-05-09 07:18:42 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_recv_suspend_touch_pdu(RDPEI_CHANNEL_CALLBACK* callback, wStream* s)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error = CHANNEL_RC_OK;
|
2020-11-11 10:54:46 +03:00
|
|
|
RdpeiClientContext* rdpei;
|
|
|
|
|
|
|
|
WINPR_UNUSED(s);
|
|
|
|
|
|
|
|
if (!callback || !callback->plugin)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rdpei = (RdpeiClientContext*)callback->plugin->pInterface;
|
|
|
|
if (!rdpei)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
IFCALLRET(rdpei->SuspendTouch, error, rdpei);
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (error)
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei->SuspendTouch failed with error %" PRIu32 "!", error);
|
2014-02-07 22:16:41 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-05-09 08:21:33 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_recv_resume_touch_pdu(RDPEI_CHANNEL_CALLBACK* callback, wStream* s)
|
2013-05-09 08:21:33 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
RdpeiClientContext* rdpei;
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error = CHANNEL_RC_OK;
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!s || !callback || !callback->plugin)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rdpei = (RdpeiClientContext*)callback->plugin->pInterface;
|
|
|
|
if (!rdpei)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
IFCALLRET(rdpei->ResumeTouch, error, rdpei);
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (error)
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei->ResumeTouch failed with error %" PRIu32 "!", error);
|
2014-02-07 22:16:41 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-05-09 08:21:33 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-20 13:30:14 +03:00
|
|
|
static UINT rdpei_recv_pdu(RDPEI_CHANNEL_CALLBACK* callback, wStream* s)
|
2013-05-09 07:18:42 +04:00
|
|
|
{
|
|
|
|
UINT16 eventId;
|
|
|
|
UINT32 pduLength;
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error;
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!s)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2020-04-15 18:21:46 +03:00
|
|
|
if (Stream_GetRemainingLength(s) < 6)
|
|
|
|
return ERROR_INVALID_DATA;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Read_UINT16(s, eventId); /* eventId (2 bytes) */
|
2013-05-09 07:18:42 +04:00
|
|
|
Stream_Read_UINT32(s, pduLength); /* pduLength (4 bytes) */
|
2013-05-15 03:26:01 +04:00
|
|
|
#ifdef WITH_DEBUG_RDPEI
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "rdpei_recv_pdu: eventId: %" PRIu16 " (%s) length: %" PRIu32 "", eventId,
|
2020-01-23 12:50:37 +03:00
|
|
|
rdpei_eventid_string(eventId), pduLength);
|
2013-05-15 03:26:01 +04:00
|
|
|
#endif
|
2013-05-09 07:18:42 +04:00
|
|
|
|
|
|
|
switch (eventId)
|
|
|
|
{
|
|
|
|
case EVENTID_SC_READY:
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((error = rdpei_recv_sc_ready_pdu(callback, s)))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_recv_sc_ready_pdu failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((error = rdpei_send_cs_ready_pdu(callback)))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_send_cs_ready_pdu failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2013-05-09 07:18:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVENTID_SUSPEND_TOUCH:
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((error = rdpei_recv_suspend_touch_pdu(callback, s)))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_recv_suspend_touch_pdu failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2013-05-09 07:18:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVENTID_RESUME_TOUCH:
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((error = rdpei_recv_resume_touch_pdu(callback, s)))
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_recv_resume_touch_pdu failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2013-05-09 07:18:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-05-09 07:18:42 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
static UINT rdpei_on_data_received(IWTSVirtualChannelCallback* pChannelCallback, wStream* data)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
RDPEI_CHANNEL_CALLBACK* callback = (RDPEI_CHANNEL_CALLBACK*)pChannelCallback;
|
|
|
|
return rdpei_recv_pdu(callback, data);
|
2013-03-20 00:52:07 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_on_close(IWTSVirtualChannelCallback* pChannelCallback)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
RDPEI_CHANNEL_CALLBACK* callback = (RDPEI_CHANNEL_CALLBACK*)pChannelCallback;
|
2021-05-31 11:08:50 +03:00
|
|
|
if (callback)
|
|
|
|
{
|
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)callback->plugin;
|
|
|
|
if (rdpei && rdpei->listener_callback)
|
|
|
|
{
|
|
|
|
if (rdpei->listener_callback->channel_callback == callback)
|
|
|
|
rdpei->listener_callback->channel_callback = NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-03-20 00:52:07 +04:00
|
|
|
free(callback);
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-03-20 00:52:07 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
static UINT rdpei_on_new_channel_connection(IWTSListenerCallback* pListenerCallback,
|
|
|
|
IWTSVirtualChannel* pChannel, BYTE* Data,
|
|
|
|
BOOL* pbAccept, IWTSVirtualChannelCallback** ppCallback)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
|
|
|
RDPEI_CHANNEL_CALLBACK* callback;
|
2019-11-06 17:24:51 +03:00
|
|
|
RDPEI_LISTENER_CALLBACK* listener_callback = (RDPEI_LISTENER_CALLBACK*)pListenerCallback;
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!listener_callback)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2019-11-06 17:24:51 +03:00
|
|
|
callback = (RDPEI_CHANNEL_CALLBACK*)calloc(1, sizeof(RDPEI_CHANNEL_CALLBACK));
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
WINPR_UNUSED(Data);
|
|
|
|
WINPR_UNUSED(pbAccept);
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (!callback)
|
|
|
|
{
|
2016-09-26 13:12:37 +03:00
|
|
|
WLog_ERR(TAG, "calloc failed!");
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
callback->iface.OnDataReceived = rdpei_on_data_received;
|
|
|
|
callback->iface.OnClose = rdpei_on_close;
|
|
|
|
callback->plugin = listener_callback->plugin;
|
|
|
|
callback->channel_mgr = listener_callback->channel_mgr;
|
|
|
|
callback->channel = pChannel;
|
2013-05-14 03:17:25 +04:00
|
|
|
listener_callback->channel_callback = callback;
|
2019-11-06 17:24:51 +03:00
|
|
|
*ppCallback = (IWTSVirtualChannelCallback*)callback;
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-03-20 00:52:07 +04:00
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_plugin_terminated(IWTSPlugin* pPlugin)
|
|
|
|
{
|
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)pPlugin;
|
|
|
|
|
|
|
|
if (!pPlugin)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2021-05-31 11:08:50 +03:00
|
|
|
if (rdpei)
|
2020-11-11 10:54:46 +03:00
|
|
|
{
|
2021-05-31 11:08:50 +03:00
|
|
|
IWTSVirtualChannelManager* mgr = NULL;
|
2020-11-11 10:54:46 +03:00
|
|
|
|
|
|
|
rdpei->initialized = FALSE;
|
|
|
|
if (rdpei->event)
|
|
|
|
SetEvent(rdpei->event);
|
|
|
|
|
|
|
|
if (rdpei->thread)
|
|
|
|
{
|
|
|
|
WaitForSingleObject(rdpei->thread, INFINITE);
|
|
|
|
CloseHandle(rdpei->thread);
|
|
|
|
}
|
|
|
|
if (rdpei->event)
|
|
|
|
CloseHandle(rdpei->event);
|
2021-05-31 11:08:50 +03:00
|
|
|
|
|
|
|
if (rdpei->listener_callback)
|
|
|
|
mgr = rdpei->listener_callback->channel_mgr;
|
|
|
|
|
|
|
|
if (mgr)
|
|
|
|
IFCALL(mgr->DestroyListener, mgr, rdpei->listener);
|
2020-11-11 10:54:46 +03:00
|
|
|
}
|
|
|
|
DeleteCriticalSection(&rdpei->lock);
|
|
|
|
free(rdpei->listener_callback);
|
|
|
|
free(rdpei->context);
|
|
|
|
free(rdpei);
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
static UINT rdpei_plugin_initialize(IWTSPlugin* pPlugin, IWTSVirtualChannelManager* pChannelMgr)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error;
|
2019-11-06 17:24:51 +03:00
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)pPlugin;
|
2020-08-10 16:36:31 +03:00
|
|
|
|
|
|
|
if (rdpei->initialized)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "[%s] channel initialized twice, aborting", RDPEI_DVC_CHANNEL_NAME);
|
|
|
|
return ERROR_INVALID_DATA;
|
|
|
|
}
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei->listener_callback = (RDPEI_LISTENER_CALLBACK*)calloc(1, sizeof(RDPEI_LISTENER_CALLBACK));
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (!rdpei->listener_callback)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "calloc failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-05-14 00:07:42 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei->listener_callback->iface.OnNewChannelConnection = rdpei_on_new_channel_connection;
|
2013-05-14 00:07:42 +04:00
|
|
|
rdpei->listener_callback->plugin = pPlugin;
|
|
|
|
rdpei->listener_callback->channel_mgr = pChannelMgr;
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if ((error = pChannelMgr->CreateListener(pChannelMgr, RDPEI_DVC_CHANNEL_NAME, 0,
|
2020-05-12 11:54:07 +03:00
|
|
|
&rdpei->listener_callback->iface, &(rdpei->listener))))
|
2015-06-09 13:46:10 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "ChannelMgr->CreateListener failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
goto error_out;
|
|
|
|
}
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2013-05-14 00:07:42 +04:00
|
|
|
rdpei->listener->pInterface = rdpei->iface.pInterface;
|
2015-06-09 13:46:10 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
InitializeCriticalSection(&rdpei->lock);
|
|
|
|
rdpei->event = CreateEventA(NULL, TRUE, FALSE, NULL);
|
|
|
|
if (!rdpei->event)
|
|
|
|
goto error_out;
|
|
|
|
rdpei->thread = CreateThread(NULL, 0, rdpei_periodic_update, rdpei, 0, NULL);
|
|
|
|
if (!rdpei->thread)
|
|
|
|
goto error_out;
|
2020-08-10 16:36:31 +03:00
|
|
|
rdpei->initialized = TRUE;
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
error_out:
|
2020-11-11 10:54:46 +03:00
|
|
|
rdpei_plugin_terminated(pPlugin);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-03-20 00:52:07 +04:00
|
|
|
}
|
|
|
|
|
2013-05-14 00:07:42 +04:00
|
|
|
/**
|
|
|
|
* Channel Client Interface
|
|
|
|
*/
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT32 rdpei_get_version(RdpeiClientContext* context)
|
2013-05-14 00:07:42 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
if (!context || !context->handle)
|
|
|
|
return -1;
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
2013-05-14 03:17:25 +04:00
|
|
|
return rdpei->version;
|
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT32 rdpei_get_features(RdpeiClientContext* context)
|
|
|
|
{
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
if (!context || !context->handle)
|
|
|
|
return -1;
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
return rdpei->features;
|
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2020-11-11 10:54:46 +03:00
|
|
|
UINT rdpei_send_frame(RdpeiClientContext* context, RDPINPUT_TOUCH_FRAME* frame)
|
2013-05-14 03:17:25 +04:00
|
|
|
{
|
2021-05-31 11:08:50 +03:00
|
|
|
UINT64 currentTime = GetTickCount64();
|
2019-11-06 17:24:51 +03:00
|
|
|
RDPEI_PLUGIN* rdpei = (RDPEI_PLUGIN*)context->handle;
|
2021-05-31 11:08:50 +03:00
|
|
|
RDPEI_CHANNEL_CALLBACK* callback;
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error;
|
2021-05-31 11:08:50 +03:00
|
|
|
|
|
|
|
callback = rdpei->listener_callback->channel_callback;
|
|
|
|
|
|
|
|
/* Just ignore the event if the channel is not connected */
|
|
|
|
if (!callback)
|
|
|
|
return CHANNEL_RC_OK;
|
2013-05-14 09:06:25 +04:00
|
|
|
|
2013-05-14 03:17:25 +04:00
|
|
|
if (!rdpei->previousFrameTime && !rdpei->currentFrameTime)
|
|
|
|
{
|
2013-05-15 03:26:01 +04:00
|
|
|
rdpei->currentFrameTime = currentTime;
|
2020-11-11 10:54:46 +03:00
|
|
|
frame->frameOffset = 0;
|
2013-05-14 03:17:25 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-15 03:26:01 +04:00
|
|
|
rdpei->currentFrameTime = currentTime;
|
2020-11-11 10:54:46 +03:00
|
|
|
frame->frameOffset = rdpei->currentFrameTime - rdpei->previousFrameTime;
|
2013-05-14 03:17:25 +04:00
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if ((error = rdpei_send_touch_event_pdu(callback, frame)))
|
2015-06-09 13:46:10 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "rdpei_send_touch_event_pdu failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2013-05-14 03:17:25 +04:00
|
|
|
rdpei->previousFrameTime = rdpei->currentFrameTime;
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-05-14 03:17:25 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2019-12-18 13:31:40 +03:00
|
|
|
static UINT rdpei_add_contact(RdpeiClientContext* context, const RDPINPUT_CONTACT_DATA* contact)
|
2013-05-14 03:17:25 +04:00
|
|
|
{
|
2013-06-12 00:15:46 +04:00
|
|
|
RDPINPUT_CONTACT_POINT* contactPoint;
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
if (!context || !contact || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2019-12-18 13:31:40 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
2019-12-18 13:31:40 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
EnterCriticalSection(&rdpei->lock);
|
|
|
|
contactPoint = &rdpei->contactPoints[contact->contactId];
|
|
|
|
contactPoint->data = *contact;
|
|
|
|
contactPoint->dirty = TRUE;
|
|
|
|
SetEvent(rdpei->event);
|
|
|
|
LeaveCriticalSection(&rdpei->lock);
|
2019-12-18 13:31:40 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2013-05-15 01:45:52 +04:00
|
|
|
}
|
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_touch_process(RdpeiClientContext* context, INT32 externalId, UINT32 contactFlags,
|
2021-05-20 15:11:43 +03:00
|
|
|
INT32 x, INT32 y, INT32* contactId, UINT32 fieldFlags, va_list ap)
|
2013-05-15 01:45:52 +04:00
|
|
|
{
|
2019-12-18 13:31:40 +03:00
|
|
|
INT64 contactIdlocal = -1;
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPINPUT_CONTACT_POINT* contactPoint;
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
BOOL begin;
|
2019-11-06 17:24:51 +03:00
|
|
|
UINT error = CHANNEL_RC_OK;
|
2013-05-15 01:45:52 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (!context || !contactId || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
2013-06-07 02:14:59 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
/* Create a new contact point in an empty slot */
|
|
|
|
EnterCriticalSection(&rdpei->lock);
|
2020-11-30 15:40:15 +03:00
|
|
|
begin = contactFlags & RDPINPUT_CONTACT_FLAG_DOWN;
|
2020-11-11 10:54:46 +03:00
|
|
|
contactPoint = rdpei_contact(rdpei, externalId, !begin);
|
|
|
|
if (contactPoint)
|
|
|
|
contactIdlocal = contactPoint->contactId;
|
|
|
|
LeaveCriticalSection(&rdpei->lock);
|
2013-05-14 09:06:25 +04:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (contactIdlocal >= 0)
|
2013-06-07 02:14:59 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
RDPINPUT_CONTACT_DATA contact = { 0 };
|
2013-06-07 02:14:59 +04:00
|
|
|
contact.x = x;
|
|
|
|
contact.y = y;
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.contactId = contactIdlocal;
|
|
|
|
contact.contactFlags = contactFlags;
|
2021-05-20 15:11:43 +03:00
|
|
|
contact.fieldsPresent = fieldFlags;
|
|
|
|
|
|
|
|
if (fieldFlags & CONTACT_DATA_CONTACTRECT_PRESENT)
|
|
|
|
{
|
|
|
|
contact.contactRectLeft = va_arg(ap, INT32);
|
|
|
|
contact.contactRectTop = va_arg(ap, INT32);
|
|
|
|
contact.contactRectRight = va_arg(ap, INT32);
|
|
|
|
contact.contactRectBottom = va_arg(ap, INT32);
|
|
|
|
}
|
|
|
|
if (fieldFlags & CONTACT_DATA_ORIENTATION_PRESENT)
|
|
|
|
{
|
|
|
|
UINT32 p = va_arg(ap, UINT32);
|
|
|
|
if (p >= 360)
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG,
|
|
|
|
"TouchContact %" PRIu32 ": Invalid orientation value %" PRIu32
|
|
|
|
"degree, clamping to 359 degree",
|
|
|
|
contactIdlocal, p);
|
|
|
|
p = 359;
|
|
|
|
}
|
2021-06-01 17:15:41 +03:00
|
|
|
contact.orientation = p;
|
2021-05-20 15:11:43 +03:00
|
|
|
}
|
|
|
|
if (fieldFlags & CONTACT_DATA_PRESSURE_PRESENT)
|
|
|
|
{
|
|
|
|
UINT32 p = va_arg(ap, UINT32);
|
|
|
|
if (p > 1024)
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG,
|
|
|
|
"TouchContact %" PRIu32 ": Invalid pressure value %" PRIu32
|
|
|
|
", clamping to 1024",
|
|
|
|
contactIdlocal, p);
|
|
|
|
p = 1024;
|
|
|
|
}
|
|
|
|
contact.pressure = p;
|
|
|
|
}
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
error = context->AddContact(context, &contact);
|
2013-06-07 02:14:59 +04:00
|
|
|
}
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
if (contactId)
|
|
|
|
*contactId = contactIdlocal;
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-05-15 01:45:52 +04:00
|
|
|
}
|
2020-11-11 10:54:46 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_touch_begin(RdpeiClientContext* context, INT32 externalId, INT32 x, INT32 y,
|
|
|
|
INT32* contactId)
|
|
|
|
{
|
2021-06-16 15:33:26 +03:00
|
|
|
UINT rc;
|
|
|
|
va_list ap = { 0 };
|
|
|
|
rc = rdpei_touch_process(context, externalId,
|
|
|
|
RDPINPUT_CONTACT_FLAG_DOWN | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
|
|
|
x, y, contactId, 0, ap);
|
|
|
|
return rc;
|
2020-11-11 10:54:46 +03:00
|
|
|
}
|
2013-05-14 09:06:25 +04:00
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_touch_update(RdpeiClientContext* context, INT32 externalId, INT32 x, INT32 y,
|
|
|
|
INT32* contactId)
|
2013-05-15 01:45:52 +04:00
|
|
|
{
|
2021-06-16 15:33:26 +03:00
|
|
|
UINT rc;
|
|
|
|
va_list ap = { 0 };
|
|
|
|
rc = rdpei_touch_process(context, externalId,
|
|
|
|
RDPINPUT_CONTACT_FLAG_UPDATE | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
|
|
|
x, y, contactId, 0, ap);
|
|
|
|
return rc;
|
2020-11-11 10:54:46 +03:00
|
|
|
}
|
2013-05-14 09:06:25 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_touch_end(RdpeiClientContext* context, INT32 externalId, INT32 x, INT32 y,
|
|
|
|
INT32* contactId)
|
|
|
|
{
|
2021-06-16 15:33:26 +03:00
|
|
|
UINT error;
|
|
|
|
va_list ap = { 0 };
|
|
|
|
error = rdpei_touch_process(context, externalId,
|
|
|
|
RDPINPUT_CONTACT_FLAG_UPDATE | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
|
|
|
x, y, contactId, 0, ap);
|
2020-11-11 10:54:46 +03:00
|
|
|
if (error != CHANNEL_RC_OK)
|
|
|
|
return error;
|
2021-06-16 15:33:26 +03:00
|
|
|
error =
|
|
|
|
rdpei_touch_process(context, externalId, RDPINPUT_CONTACT_FLAG_UP, x, y, contactId, 0, ap);
|
|
|
|
return error;
|
2021-05-20 15:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_touch_cancel(RdpeiClientContext* context, INT32 externalId, INT32 x, INT32 y,
|
|
|
|
INT32* contactId)
|
|
|
|
{
|
2021-06-16 15:33:26 +03:00
|
|
|
UINT rc;
|
|
|
|
va_list ap = { 0 };
|
|
|
|
rc = rdpei_touch_process(context, externalId,
|
|
|
|
RDPINPUT_CONTACT_FLAG_UP | RDPINPUT_CONTACT_FLAG_CANCELED, x, y,
|
|
|
|
contactId, 0, ap);
|
|
|
|
return rc;
|
2021-05-20 15:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_touch_raw_event(RdpeiClientContext* context, INT32 externalId, INT32 x, INT32 y,
|
|
|
|
INT32* contactId, UINT32 flags, UINT32 fieldFlags, ...)
|
|
|
|
{
|
|
|
|
UINT rc;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fieldFlags);
|
|
|
|
rc = rdpei_touch_process(context, externalId, flags, x, y, contactId, fieldFlags, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return rc;
|
2020-11-11 10:54:46 +03:00
|
|
|
}
|
2013-06-07 02:14:59 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static RDPINPUT_PEN_CONTACT_POINT* rdpei_pen_contact(RDPEI_PLUGIN* rdpei, INT32 externalId,
|
|
|
|
BOOL active)
|
|
|
|
{
|
|
|
|
UINT32 x;
|
|
|
|
if (!rdpei)
|
|
|
|
return NULL;
|
2013-05-15 01:45:52 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
for (x = 0; x < rdpei->maxPenContacts; x++)
|
|
|
|
{
|
|
|
|
RDPINPUT_PEN_CONTACT_POINT* contact = &rdpei->penContactPoints[x];
|
|
|
|
if (active)
|
2013-05-15 01:45:52 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
if (contact->active)
|
|
|
|
{
|
|
|
|
if (contact->externalId == externalId)
|
|
|
|
return contact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!contact->active)
|
|
|
|
{
|
|
|
|
contact->externalId = externalId;
|
|
|
|
contact->active = TRUE;
|
|
|
|
return contact;
|
|
|
|
}
|
2013-05-15 03:26:01 +04:00
|
|
|
}
|
2013-05-14 03:17:25 +04:00
|
|
|
}
|
2020-11-11 10:54:46 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
2013-05-14 03:17:25 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_add_pen(RdpeiClientContext* context, INT32 externalId,
|
|
|
|
const RDPINPUT_PEN_CONTACT* contact)
|
|
|
|
{
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
RDPINPUT_PEN_CONTACT_POINT* contactPoint;
|
|
|
|
|
|
|
|
if (!context || !contact || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
|
|
|
|
|
|
|
EnterCriticalSection(&rdpei->lock);
|
|
|
|
contactPoint = rdpei_pen_contact(rdpei, externalId, TRUE);
|
|
|
|
if (contactPoint)
|
2013-06-07 02:14:59 +04:00
|
|
|
{
|
2020-11-11 10:54:46 +03:00
|
|
|
contactPoint->data = *contact;
|
|
|
|
contactPoint->dirty = TRUE;
|
|
|
|
SetEvent(rdpei->event);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(&rdpei->lock);
|
|
|
|
|
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_pen_process(RdpeiClientContext* context, INT32 externalId, UINT32 contactFlags,
|
|
|
|
UINT32 fieldFlags, INT32 x, INT32 y, va_list ap)
|
|
|
|
{
|
|
|
|
RDPINPUT_PEN_CONTACT_POINT* contactPoint;
|
|
|
|
RDPEI_PLUGIN* rdpei;
|
|
|
|
BOOL begin;
|
|
|
|
UINT error = CHANNEL_RC_OK;
|
|
|
|
|
|
|
|
if (!context || !context->handle)
|
|
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
|
|
|
|
rdpei = (RDPEI_PLUGIN*)context->handle;
|
2020-11-30 15:40:15 +03:00
|
|
|
begin = contactFlags & RDPINPUT_CONTACT_FLAG_DOWN;
|
2020-11-11 10:54:46 +03:00
|
|
|
|
|
|
|
EnterCriticalSection(&rdpei->lock);
|
|
|
|
contactPoint = rdpei_pen_contact(rdpei, externalId, !begin);
|
|
|
|
LeaveCriticalSection(&rdpei->lock);
|
|
|
|
if (contactPoint != NULL)
|
|
|
|
{
|
|
|
|
RDPINPUT_PEN_CONTACT contact = { 0 };
|
|
|
|
|
2013-06-07 02:14:59 +04:00
|
|
|
contact.x = x;
|
|
|
|
contact.y = y;
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.fieldsPresent = fieldFlags;
|
|
|
|
|
|
|
|
contact.contactFlags = contactFlags;
|
2020-11-30 15:40:15 +03:00
|
|
|
if (fieldFlags & RDPINPUT_PEN_CONTACT_PENFLAGS_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.penFlags = va_arg(ap, UINT32);
|
2020-11-30 15:40:15 +03:00
|
|
|
if (fieldFlags & RDPINPUT_PEN_CONTACT_PRESSURE_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.pressure = va_arg(ap, UINT32);
|
2020-11-30 15:40:15 +03:00
|
|
|
if (fieldFlags & RDPINPUT_PEN_CONTACT_ROTATION_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.rotation = va_arg(ap, UINT32);
|
2020-11-30 15:40:15 +03:00
|
|
|
if (fieldFlags & RDPINPUT_PEN_CONTACT_TILTX_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.tiltX = va_arg(ap, INT32);
|
2020-11-30 15:40:15 +03:00
|
|
|
if (fieldFlags & RDPINPUT_PEN_CONTACT_TILTY_PRESENT)
|
2020-11-11 10:54:46 +03:00
|
|
|
contact.tiltY = va_arg(ap, INT32);
|
|
|
|
|
|
|
|
error = context->AddPen(context, externalId, &contact);
|
2013-06-07 02:14:59 +04:00
|
|
|
}
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return error;
|
2013-05-15 01:45:52 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2020-11-11 10:54:46 +03:00
|
|
|
static UINT rdpei_pen_begin(RdpeiClientContext* context, INT32 externalId, UINT32 fieldFlags,
|
|
|
|
INT32 x, INT32 y, ...)
|
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error;
|
2020-11-11 10:54:46 +03:00
|
|
|
va_list ap;
|
2013-05-15 01:45:52 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
va_start(ap, y);
|
|
|
|
error = rdpei_pen_process(context, externalId,
|
2020-11-30 15:40:15 +03:00
|
|
|
RDPINPUT_CONTACT_FLAG_DOWN | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
2020-11-11 10:54:46 +03:00
|
|
|
fieldFlags, x, y, ap);
|
|
|
|
va_end(ap);
|
2013-05-15 01:45:52 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
return error;
|
|
|
|
}
|
2013-06-07 02:14:59 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_pen_update(RdpeiClientContext* context, INT32 externalId, UINT32 fieldFlags,
|
|
|
|
INT32 x, INT32 y, ...)
|
|
|
|
{
|
|
|
|
UINT error;
|
|
|
|
va_list ap;
|
2013-06-07 02:37:52 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
va_start(ap, y);
|
|
|
|
error = rdpei_pen_process(context, externalId,
|
2020-11-30 15:40:15 +03:00
|
|
|
RDPINPUT_CONTACT_FLAG_UPDATE | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
2020-11-11 10:54:46 +03:00
|
|
|
fieldFlags, x, y, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return error;
|
|
|
|
}
|
2013-06-07 02:14:59 +04:00
|
|
|
|
2020-11-11 10:54:46 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
static UINT rdpei_pen_end(RdpeiClientContext* context, INT32 externalId, UINT32 fieldFlags, INT32 x,
|
|
|
|
INT32 y, ...)
|
|
|
|
{
|
|
|
|
UINT error;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, y);
|
|
|
|
error = rdpei_pen_process(context, externalId,
|
2020-11-30 15:40:15 +03:00
|
|
|
RDPINPUT_CONTACT_FLAG_UPDATE | RDPINPUT_CONTACT_FLAG_INRANGE |
|
|
|
|
RDPINPUT_CONTACT_FLAG_INCONTACT,
|
2020-11-11 10:54:46 +03:00
|
|
|
fieldFlags, x, y, ap);
|
2021-06-16 15:33:26 +03:00
|
|
|
va_end(ap);
|
2020-11-11 10:54:46 +03:00
|
|
|
if (error == CHANNEL_RC_OK)
|
2021-06-16 15:33:26 +03:00
|
|
|
{
|
|
|
|
va_start(ap, y);
|
2020-11-30 15:40:15 +03:00
|
|
|
error =
|
|
|
|
rdpei_pen_process(context, externalId, RDPINPUT_CONTACT_FLAG_UP, fieldFlags, x, y, ap);
|
2020-11-11 10:54:46 +03:00
|
|
|
va_end(ap);
|
2021-06-16 15:33:26 +03:00
|
|
|
}
|
2020-11-11 10:54:46 +03:00
|
|
|
return error;
|
2013-05-14 00:07:42 +04:00
|
|
|
}
|
|
|
|
|
2021-05-20 15:11:43 +03:00
|
|
|
static UINT rdpei_pen_cancel(RdpeiClientContext* context, INT32 externalId, UINT32 fieldFlags,
|
|
|
|
INT32 x, INT32 y, ...)
|
|
|
|
{
|
|
|
|
UINT error;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, y);
|
|
|
|
error = rdpei_pen_process(context, externalId,
|
|
|
|
RDPINPUT_CONTACT_FLAG_UP | RDPINPUT_CONTACT_FLAG_CANCELED, fieldFlags,
|
|
|
|
x, y, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT rdpei_pen_raw_event(RdpeiClientContext* context, INT32 externalId, UINT32 contactFlags,
|
|
|
|
UINT32 fieldFlags, INT32 x, INT32 y, ...)
|
|
|
|
{
|
|
|
|
UINT error;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, y);
|
|
|
|
error = rdpei_pen_process(context, externalId, contactFlags, fieldFlags, x, y, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-06-15 14:36:27 +03:00
|
|
|
#ifdef BUILTIN_CHANNELS
|
2019-11-06 17:24:51 +03:00
|
|
|
#define DVCPluginEntry rdpei_DVCPluginEntry
|
2016-02-29 17:18:19 +03:00
|
|
|
#else
|
2019-11-06 17:24:51 +03:00
|
|
|
#define DVCPluginEntry FREERDP_API DVCPluginEntry
|
2013-03-20 00:52:07 +04:00
|
|
|
#endif
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
|
|
|
UINT DVCPluginEntry(IDRDYNVC_ENTRY_POINTS* pEntryPoints)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT error;
|
2015-06-09 13:46:10 +03:00
|
|
|
RDPEI_PLUGIN* rdpei = NULL;
|
|
|
|
RdpeiClientContext* context = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei = (RDPEI_PLUGIN*)pEntryPoints->GetPlugin(pEntryPoints, "rdpei");
|
2013-03-20 00:52:07 +04:00
|
|
|
|
2014-12-27 23:20:29 +03:00
|
|
|
if (!rdpei)
|
2013-03-20 00:52:07 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei = (RDPEI_PLUGIN*)calloc(1, sizeof(RDPEI_PLUGIN));
|
2016-09-26 13:12:37 +03:00
|
|
|
|
|
|
|
if (!rdpei)
|
2015-06-09 13:46:10 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "calloc failed!");
|
|
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
|
|
}
|
2013-03-20 00:52:07 +04:00
|
|
|
|
|
|
|
rdpei->iface.Initialize = rdpei_plugin_initialize;
|
|
|
|
rdpei->iface.Connected = NULL;
|
|
|
|
rdpei->iface.Disconnected = NULL;
|
|
|
|
rdpei->iface.Terminated = rdpei_plugin_terminated;
|
2020-11-11 10:54:46 +03:00
|
|
|
rdpei->version = RDPINPUT_PROTOCOL_V300;
|
2013-05-14 03:17:25 +04:00
|
|
|
rdpei->currentFrameTime = 0;
|
|
|
|
rdpei->previousFrameTime = 0;
|
2020-11-11 10:54:46 +03:00
|
|
|
rdpei->maxTouchContacts = MAX_CONTACTS;
|
|
|
|
rdpei->maxPenContacts = MAX_PEN_CONTACTS;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei->rdpcontext =
|
|
|
|
((freerdp*)((rdpSettings*)pEntryPoints->GetRdpSettings(pEntryPoints))->instance)
|
|
|
|
->context;
|
2015-07-15 10:50:35 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
context = (RdpeiClientContext*)calloc(1, sizeof(RdpeiClientContext));
|
2016-09-26 13:12:37 +03:00
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "calloc failed!");
|
|
|
|
error = CHANNEL_RC_NO_MEMORY;
|
|
|
|
goto error_out;
|
|
|
|
}
|
2013-05-14 00:07:42 +04:00
|
|
|
|
2021-05-20 15:11:43 +03:00
|
|
|
context->clientFeaturesMask = UINT32_MAX;
|
2019-11-06 17:24:51 +03:00
|
|
|
context->handle = (void*)rdpei;
|
2013-05-14 00:07:42 +04:00
|
|
|
context->GetVersion = rdpei_get_version;
|
2020-11-11 10:54:46 +03:00
|
|
|
context->GetFeatures = rdpei_get_features;
|
2013-05-14 03:17:25 +04:00
|
|
|
context->AddContact = rdpei_add_contact;
|
2013-06-07 02:14:59 +04:00
|
|
|
context->TouchBegin = rdpei_touch_begin;
|
|
|
|
context->TouchUpdate = rdpei_touch_update;
|
|
|
|
context->TouchEnd = rdpei_touch_end;
|
2021-05-20 15:11:43 +03:00
|
|
|
context->TouchCancel = rdpei_touch_cancel;
|
|
|
|
context->TouchRawEvent = rdpei_touch_raw_event;
|
2020-11-11 10:54:46 +03:00
|
|
|
context->AddPen = rdpei_add_pen;
|
|
|
|
context->PenBegin = rdpei_pen_begin;
|
|
|
|
context->PenUpdate = rdpei_pen_update;
|
|
|
|
context->PenEnd = rdpei_pen_end;
|
2021-05-20 15:11:43 +03:00
|
|
|
context->PenCancel = rdpei_pen_cancel;
|
|
|
|
context->PenRawEvent = rdpei_pen_raw_event;
|
|
|
|
|
|
|
|
rdpei->context = context;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpei->iface.pInterface = (void*)context;
|
2013-05-14 00:07:42 +04:00
|
|
|
|
2021-05-20 15:11:43 +03:00
|
|
|
if ((error = pEntryPoints->RegisterPlugin(pEntryPoints, "rdpei", &rdpei->iface)))
|
2015-06-09 13:46:10 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "EntryPoints->RegisterPlugin failed with error %" PRIu32 "!", error);
|
2015-06-09 13:46:10 +03:00
|
|
|
error = CHANNEL_RC_NO_MEMORY;
|
|
|
|
goto error_out;
|
|
|
|
}
|
2013-03-20 00:52:07 +04:00
|
|
|
}
|
|
|
|
|
2015-06-09 13:46:10 +03:00
|
|
|
return CHANNEL_RC_OK;
|
|
|
|
error_out:
|
2021-05-20 15:11:43 +03:00
|
|
|
rdpei_plugin_terminated(&rdpei->iface);
|
2013-03-20 00:52:07 +04:00
|
|
|
return error;
|
|
|
|
}
|