public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ni, Ray" <ray.ni@intel.com>
To: "Marvin Häuser" <Marvin.Haeuser@outlook.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Justen, Jordan L" <jordan.l.justen@intel.com>,
	Andrew Fish <afish@apple.com>
Subject: Re: [PATCH] WinHost: Add SimplePointer support
Date: Wed, 25 Sep 2019 22:32:54 +0000	[thread overview]
Message-ID: <734D49CCEBEEF84792F5B80ED585239D5C2F2205@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <AM0PR07MB43860A8426E6B250FC105D5880840@AM0PR07MB4386.eurprd07.prod.outlook.com>

Marvin,
Can you kindly share what unit test you've done?

> -----Original Message-----
> From: Marvin Häuser <Marvin.Haeuser@outlook.com>
> Sent: Tuesday, September 24, 2019 5:46 AM
> To: devel@edk2.groups.io
> Cc: Justen, Jordan L <jordan.l.justen@intel.com>; Andrew Fish <afish@apple.com>; Ni, Ray <ray.ni@intel.com>
> Subject: [PATCH] WinHost: Add SimplePointer support
> 
> From: Marvin Haeuser <mhaeuser@outlook.de>
> 
> Catch WM mouse events and expose them via the SimplePointer protocol.
> 
> Cc: Jordan Justen <jordan.l.justen@intel.com>
> Cc: Andrew Fish <afish@apple.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Signed-off-by: Marvin Haeuser <mhaeuser@outlook.de>
> ---
>  EmulatorPkg/Win/Host/WinGopInput.c  | 25 ++++++++++--
>  EmulatorPkg/Win/Host/WinGopScreen.c | 41 ++++++++++++++++++++
>  EmulatorPkg/Win/Host/WinGop.h       |  5 +++
>  EmulatorPkg/Win/Host/WinInclude.h   |  1 +
>  4 files changed, 69 insertions(+), 3 deletions(-)
> 
> diff --git a/EmulatorPkg/Win/Host/WinGopInput.c b/EmulatorPkg/Win/Host/WinGopInput.c
> index 0e8d11fc57ac..312a549847c5 100644
> --- a/EmulatorPkg/Win/Host/WinGopInput.c
> +++ b/EmulatorPkg/Win/Host/WinGopInput.c
> @@ -409,9 +409,12 @@ WinNtWndCheckPointer (
> 
> 
>    Private = GRAPHICS_PRIVATE_DATA_FROM_THIS (GraphicsIo);
> 
> 
> 
> -  return EFI_NOT_READY;
> 
> -}
> 
> +  if (!Private->PointerStateChanged) {
> 
> +    return EFI_NOT_READY;
> 
> +  }
> 
> 
> 
> +  return EFI_SUCCESS;
> 
> +}
> 
> 
> 
>  EFI_STATUS
> 
>  EFIAPI
> 
> @@ -424,5 +427,21 @@ WinNtWndGetPointerState (
> 
> 
>    Private = GRAPHICS_PRIVATE_DATA_FROM_THIS (GraphicsIo);
> 
> 
> 
> -  return EFI_NOT_READY;
> 
> +  if (!Private->PointerStateChanged) {
> 
> +    return EFI_NOT_READY;
> 
> +  }
> 
> +
> 
> +  State->RelativeMovementX = Private->PointerState.RelativeMovementX;
> 
> +  State->RelativeMovementY = Private->PointerState.RelativeMovementY;
> 
> +  State->RelativeMovementZ = Private->PointerState.RelativeMovementZ;
> 
> +  State->LeftButton        = Private->PointerState.LeftButton;
> 
> +  State->RightButton       = Private->PointerState.RightButton;
> 
> +
> 
> +  Private->PointerState.RelativeMovementX = 0;
> 
> +  Private->PointerState.RelativeMovementY = 0;
> 
> +  Private->PointerState.RelativeMovementZ = 0;
> 
> +
> 
> +  Private->PointerStateChanged = FALSE;
> 
> +
> 
> +  return EFI_SUCCESS;
> 
>  }
> 
> diff --git a/EmulatorPkg/Win/Host/WinGopScreen.c b/EmulatorPkg/Win/Host/WinGopScreen.c
> index 8f42606823f1..fa34596497f8 100644
> --- a/EmulatorPkg/Win/Host/WinGopScreen.c
> +++ b/EmulatorPkg/Win/Host/WinGopScreen.c
> @@ -399,6 +399,8 @@ WinNtGopThreadWindowProc (
>    LPARAM                Index;
> 
>    EFI_INPUT_KEY         Key;
> 
>    BOOLEAN               AltIsPress;
> 
> +  INT32                 PosX;
> 
> +  INT32                 PosY;
> 
> 
> 
>    //
> 
>    // Use mTlsIndex global to get a Thread Local Storage version of Private.
> 
> @@ -527,6 +529,45 @@ WinNtGopThreadWindowProc (
>      WinNtGopConvertParamToEfiKeyShiftState (Private, &wParam, &lParam, FALSE);
> 
>      return 0;
> 
> 
> 
> +  case WM_MOUSEMOVE:
> 
> +    PosX = GET_X_LPARAM (lParam);
> 
> +    PosY = GET_Y_LPARAM (lParam);
> 
> +
> 
> +    if (Private->PointerPreviousX != PosX) {
> 
> +      Private->PointerState.RelativeMovementX += (PosX - Private->PointerPreviousX);
> 
> +      Private->PointerPreviousX                = PosX;
> 
> +      Private->PointerStateChanged             = TRUE;
> 
> +    }
> 
> +
> 
> +    if (Private->PointerPreviousY != PosY) {
> 
> +      Private->PointerState.RelativeMovementY += (PosY - Private->PointerPreviousY);
> 
> +      Private->PointerPreviousY                = PosY;
> 
> +      Private->PointerStateChanged             = TRUE;
> 
> +    }
> 
> +
> 
> +    Private->PointerState.RelativeMovementZ  = 0;
> 
> +    return 0;
> 
> +
> 
> +  case WM_LBUTTONDOWN:
> 
> +    Private->PointerState.LeftButton = TRUE;
> 
> +    Private->PointerStateChanged     = TRUE;
> 
> +    return 0;
> 
> +
> 
> +  case WM_LBUTTONUP:
> 
> +    Private->PointerState.LeftButton = FALSE;
> 
> +    Private->PointerStateChanged     = TRUE;
> 
> +    return 0;
> 
> +
> 
> +  case WM_RBUTTONDOWN:
> 
> +    Private->PointerState.RightButton = TRUE;
> 
> +    Private->PointerStateChanged      = TRUE;
> 
> +    return 0;
> 
> +
> 
> +  case WM_RBUTTONUP:
> 
> +    Private->PointerState.RightButton = FALSE;
> 
> +    Private->PointerStateChanged      = TRUE;
> 
> +    return 0;
> 
> +
> 
>    case WM_CLOSE:
> 
>      //
> 
>      // This close message is issued by user, core is not aware of this,
> 
> diff --git a/EmulatorPkg/Win/Host/WinGop.h b/EmulatorPkg/Win/Host/WinGop.h
> index aa41db6dbc8c..5943ca93b22f 100644
> --- a/EmulatorPkg/Win/Host/WinGop.h
> +++ b/EmulatorPkg/Win/Host/WinGop.h
> @@ -22,6 +22,7 @@ Abstract:
> 
> 
>  #include <Protocol/EmuIoThunk.h>
> 
>  #include <Protocol/EmuGraphicsWindow.h>
> 
> +#include <Protocol/SimplePointer.h>
> 
>  #include <Protocol/SimpleTextIn.h>
> 
>  #include <Protocol/SimpleTextInEx.h>
> 
>  #include <Protocol/GraphicsOutput.h>
> 
> @@ -109,6 +110,10 @@ typedef struct {
>    BOOLEAN                           ScrollLock;
> 
>    BOOLEAN                           CapsLock;
> 
>    BOOLEAN                           IsPartialKeySupport;
> 
> +  INT32                             PointerPreviousX;
> 
> +  INT32                             PointerPreviousY;
> 
> +  BOOLEAN                           PointerStateChanged;
> 
> +  EFI_SIMPLE_POINTER_STATE          PointerState;
> 
>  } GRAPHICS_PRIVATE_DATA;
> 
>  #define GRAPHICS_PRIVATE_DATA_SIGNATURE  SIGNATURE_32 ('g', 'f', 'x', 'd')
> 
>  #define GRAPHICS_PRIVATE_DATA_FROM_THIS(a)  \
> 
> diff --git a/EmulatorPkg/Win/Host/WinInclude.h b/EmulatorPkg/Win/Host/WinInclude.h
> index ae02770d9fb0..8a9ae7d7465b 100644
> --- a/EmulatorPkg/Win/Host/WinInclude.h
> +++ b/EmulatorPkg/Win/Host/WinInclude.h
> @@ -40,6 +40,7 @@ typedef UINT32 size_t ;
>  #endif
> 
> 
> 
>  #include "windows.h"
> 
> +#include "windowsx.h"
> 
> 
> 
>  #undef GUID
> 
>  #undef _LIST_ENTRY
> 
> --
> 2.23.0.windows.1


  reply	other threads:[~2019-09-25 22:32 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <d65f328a1d27ba0b84917426d86c14718187ed42.1569329065.git.mhaeuser@outlook.de>
2019-09-24 12:46 ` [PATCH] WinHost: Add SimplePointer support Marvin Häuser
2019-09-25 22:32   ` Ni, Ray [this message]
2019-09-26 16:37     ` Marvin Häuser
2019-09-26 18:44       ` Ni, Ray
2019-10-20  9:30         ` Marvin Häuser
2019-10-21  2:17           ` [edk2-devel] " Ni, Ray

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=734D49CCEBEEF84792F5B80ED585239D5C2F2205@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox