2020-03-02 20:00:01 +01:00
|
|
|
/*
|
|
|
|
* a class for mouse support
|
|
|
|
*/
|
2020-03-03 15:17:39 +01:00
|
|
|
|
|
|
|
#include <Platform.h>
|
|
|
|
|
2020-03-02 20:00:01 +01:00
|
|
|
#include "XPointer.h"
|
2020-03-02 13:00:24 +01:00
|
|
|
#include "libegint.h" //this includes platform.h
|
|
|
|
#include "../refit/screen.h"
|
2020-03-03 21:44:07 +01:00
|
|
|
#include "menu.h"
|
2020-03-02 13:00:24 +01:00
|
|
|
|
|
|
|
#ifndef DEBUG_ALL
|
|
|
|
#define DEBUG_MOUSE 1
|
|
|
|
#else
|
|
|
|
#define DEBUG_MOUSE DEBUG_ALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DEBUG_MOUSE == 0
|
|
|
|
#define DBG(...)
|
|
|
|
#else
|
|
|
|
#define DBG(...) DebugLog(DEBUG_MOUSE, __VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2020-03-07 07:37:19 +01:00
|
|
|
// Initial value, but later it will be theme dependent
|
|
|
|
#define POINTER_WIDTH 64
|
|
|
|
#define POINTER_HEIGHT 64
|
2020-03-02 20:00:01 +01:00
|
|
|
|
|
|
|
XPointer::XPointer()
|
2020-03-09 10:35:14 +01:00
|
|
|
: SimplePointerProtocol(NULL), PointerImage(NULL),
|
|
|
|
// newImage(POINTER_WIDTH, POINTER_HEIGHT),
|
|
|
|
oldImage(0, 0), Alive(false)
|
2020-03-02 20:00:01 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
XPointer::~XPointer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void XPointer::Hide()
|
|
|
|
{
|
2020-03-05 19:23:21 +01:00
|
|
|
if (Alive) {
|
2020-03-09 09:14:05 +01:00
|
|
|
oldImage.DrawWithoutCompose(oldPlace.XPos, oldPlace.YPos);
|
2020-03-02 20:00:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-03 15:17:39 +01:00
|
|
|
bool XPointer::isAlive()
|
|
|
|
{
|
|
|
|
return Alive;
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:00:01 +01:00
|
|
|
EFI_STATUS XPointer::MouseBirth()
|
|
|
|
{
|
2020-03-02 13:00:24 +01:00
|
|
|
EFI_STATUS Status = EFI_UNSUPPORTED;
|
|
|
|
|
|
|
|
if (!gSettings.PointerEnabled) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SimplePointerProtocol) { //do not double
|
2020-03-07 07:43:50 +01:00
|
|
|
// DBG("Mouse is already here\n");
|
2020-03-03 15:17:39 +01:00
|
|
|
Draw();
|
2020-03-02 13:00:24 +01:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
2020-03-02 20:00:01 +01:00
|
|
|
|
2020-03-02 13:00:24 +01:00
|
|
|
// Try first to use mouse from System Table
|
|
|
|
Status = gBS->HandleProtocol(gST->ConsoleInHandle, &gEfiSimplePointerProtocolGuid, (VOID**)&SimplePointerProtocol);
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
// not found, so use the first found device
|
|
|
|
DBG("MouseBirth: No mouse at ConIn, checking if any other device exists\n");
|
|
|
|
Status = gBS->LocateProtocol(&gEfiSimplePointerProtocolGuid, NULL, (VOID**)&SimplePointerProtocol);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EFI_ERROR(Status)) {
|
2020-03-07 07:43:50 +01:00
|
|
|
MsgLog("No mouse driver found!\n");
|
2020-03-07 07:37:19 +01:00
|
|
|
if (PointerImage) {
|
|
|
|
delete PointerImage;
|
|
|
|
PointerImage = NULL;
|
|
|
|
}
|
2020-03-02 13:00:24 +01:00
|
|
|
MouseEvent = NoEvents;
|
|
|
|
SimplePointerProtocol = NULL;
|
|
|
|
gSettings.PointerEnabled = FALSE;
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2020-03-07 07:37:19 +01:00
|
|
|
if (PointerImage && !PointerImage->isEmpty() ) {
|
2020-03-06 20:56:32 +01:00
|
|
|
delete PointerImage;
|
2020-03-07 07:37:19 +01:00
|
|
|
PointerImage = nullptr;
|
2020-03-02 13:00:24 +01:00
|
|
|
}
|
2020-03-07 07:37:19 +01:00
|
|
|
// Now update image because of other theme has other image
|
2020-03-06 20:56:32 +01:00
|
|
|
PointerImage = new XImage(BuiltinIcon(BUILTIN_ICON_POINTER));
|
2020-03-09 10:35:14 +01:00
|
|
|
oldImage.setSizeInPixels(PointerImage->GetWidth(), PointerImage->GetHeight());
|
2020-03-07 07:37:19 +01:00
|
|
|
LastClickTime = 0;
|
2020-03-02 13:00:24 +01:00
|
|
|
oldPlace.XPos = (INTN)(UGAWidth >> 2);
|
|
|
|
oldPlace.YPos = (INTN)(UGAHeight >> 2);
|
2020-03-07 07:37:19 +01:00
|
|
|
oldPlace.Width = PointerImage->GetWidth();
|
|
|
|
oldPlace.Height = PointerImage->GetHeight();
|
2020-03-02 13:00:24 +01:00
|
|
|
CopyMem(&newPlace, &oldPlace, sizeof(EG_RECT));
|
2020-03-03 15:17:39 +01:00
|
|
|
Draw();
|
2020-03-02 13:00:24 +01:00
|
|
|
MouseEvent = NoEvents;
|
2020-03-03 15:17:39 +01:00
|
|
|
Alive = true;
|
2020-03-02 20:00:01 +01:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2020-03-03 15:17:39 +01:00
|
|
|
VOID XPointer::Draw()
|
2020-03-02 13:00:24 +01:00
|
|
|
{
|
|
|
|
|
2020-03-07 07:37:19 +01:00
|
|
|
// take background image for later to restore background
|
2020-03-02 16:43:54 +01:00
|
|
|
oldImage.GetArea(newPlace);
|
2020-03-02 13:00:24 +01:00
|
|
|
CopyMem(&oldPlace, &newPlace, sizeof(EG_RECT)); //can we use oldPlace = newPlace; ?
|
2020-03-07 07:37:19 +01:00
|
|
|
PointerImage->Draw(newPlace.XPos, newPlace.YPos, 0.f); //zero means no scale
|
2020-03-02 13:00:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VOID XPointer::KillMouse()
|
|
|
|
{
|
2020-03-07 07:37:19 +01:00
|
|
|
|
2020-03-03 15:17:39 +01:00
|
|
|
Alive = false;
|
2020-03-02 13:00:24 +01:00
|
|
|
if (!SimplePointerProtocol) {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-07 07:37:19 +01:00
|
|
|
// DBG("KillMouse\n");
|
2020-03-02 13:00:24 +01:00
|
|
|
|
2020-03-06 20:56:32 +01:00
|
|
|
if (PointerImage) {
|
|
|
|
delete PointerImage;
|
|
|
|
PointerImage = nullptr;
|
|
|
|
}
|
|
|
|
|
2020-03-02 13:00:24 +01:00
|
|
|
MouseEvent = NoEvents;
|
|
|
|
SimplePointerProtocol = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID XPointer::UpdatePointer()
|
|
|
|
{
|
|
|
|
UINT64 Now;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_SIMPLE_POINTER_STATE tmpState;
|
|
|
|
EFI_SIMPLE_POINTER_MODE *CurrentMode;
|
|
|
|
INTN ScreenRelX;
|
|
|
|
INTN ScreenRelY;
|
|
|
|
|
|
|
|
// Now = gRT->GetTime(&Now, NULL);
|
|
|
|
Now = AsmReadTsc();
|
|
|
|
Status = SimplePointerProtocol->GetState(SimplePointerProtocol, &tmpState);
|
|
|
|
if (!EFI_ERROR(Status)) {
|
|
|
|
if (!State.LeftButton && tmpState.LeftButton) // press left
|
|
|
|
MouseEvent = LeftMouseDown;
|
|
|
|
else if (!State.RightButton && tmpState.RightButton) // press right
|
|
|
|
MouseEvent = RightMouseDown;
|
|
|
|
else if (State.LeftButton && !tmpState.LeftButton) { //release left
|
|
|
|
// time for double click 500ms into menu
|
|
|
|
if (TimeDiff(LastClickTime, Now) < gSettings.DoubleClickTime)
|
|
|
|
MouseEvent = DoubleClick;
|
|
|
|
else
|
|
|
|
MouseEvent = LeftClick;
|
|
|
|
LastClickTime = Now;
|
|
|
|
}
|
|
|
|
else if (State.RightButton && !tmpState.RightButton) //release right
|
|
|
|
MouseEvent = RightClick;
|
|
|
|
else if (State.RelativeMovementZ > 0)
|
|
|
|
MouseEvent = ScrollDown;
|
|
|
|
else if (State.RelativeMovementZ < 0)
|
|
|
|
MouseEvent = ScrollUp;
|
|
|
|
else if (State.RelativeMovementX || State.RelativeMovementY)
|
|
|
|
MouseEvent = MouseMove;
|
|
|
|
else
|
|
|
|
MouseEvent = NoEvents;
|
|
|
|
|
2020-03-09 02:12:24 +01:00
|
|
|
CopyMem(&State, &tmpState, sizeof(State));
|
2020-03-02 13:00:24 +01:00
|
|
|
CurrentMode = SimplePointerProtocol->Mode;
|
|
|
|
|
|
|
|
ScreenRelX = ((UGAWidth * State.RelativeMovementX / (INTN)CurrentMode->ResolutionX) * gSettings.PointerSpeed) >> 10;
|
|
|
|
if (gSettings.PointerMirror) {
|
|
|
|
newPlace.XPos -= ScreenRelX;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
newPlace.XPos += ScreenRelX;
|
|
|
|
}
|
|
|
|
if (newPlace.XPos < 0) newPlace.XPos = 0;
|
|
|
|
if (newPlace.XPos > UGAWidth - 1) newPlace.XPos = UGAWidth - 1;
|
|
|
|
|
|
|
|
// YPosPrev = newPlace.YPos;
|
|
|
|
ScreenRelY = ((UGAHeight * State.RelativeMovementY / (INTN)CurrentMode->ResolutionY) * gSettings.PointerSpeed) >> 10;
|
|
|
|
newPlace.YPos += ScreenRelY;
|
|
|
|
if (newPlace.YPos < 0) newPlace.YPos = 0;
|
|
|
|
if (newPlace.YPos > UGAHeight - 1) newPlace.YPos = UGAHeight - 1;
|
|
|
|
|
2020-03-10 09:05:37 +01:00
|
|
|
if ( CompareMem(&oldPlace, &newPlace, sizeof(__typeof__(oldPlace))) != 0 ) {
|
2020-03-09 02:12:24 +01:00
|
|
|
Hide();
|
|
|
|
Draw();
|
|
|
|
}
|
2020-03-02 13:00:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XPointer::MouseInRect(EG_RECT *Place)
|
|
|
|
{
|
|
|
|
return ((newPlace.XPos >= Place->XPos) &&
|
|
|
|
(newPlace.XPos < (Place->XPos + (INTN)Place->Width)) &&
|
|
|
|
(newPlace.YPos >= Place->YPos) &&
|
|
|
|
(newPlace.YPos < (Place->YPos + (INTN)Place->Height)));
|
|
|
|
}
|
|
|
|
|
|
|
|
EFI_STATUS XPointer::CheckMouseEvent(REFIT_MENU_SCREEN *Screen)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status = EFI_TIMEOUT;
|
|
|
|
// INTN EntryId;
|
|
|
|
|
|
|
|
Screen->mAction = ActionNone;
|
|
|
|
|
|
|
|
if (!Screen) {
|
|
|
|
return EFI_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsDragging && MouseEvent == MouseMove)
|
|
|
|
MouseEvent = NoEvents;
|
|
|
|
|
|
|
|
// if (MouseEvent != NoEvents){
|
|
|
|
if (ScrollEnabled && MouseInRect(&UpButton) && MouseEvent == LeftClick)
|
|
|
|
Screen->mAction = ActionScrollUp;
|
|
|
|
else if (ScrollEnabled && MouseInRect(&DownButton) && MouseEvent == LeftClick)
|
|
|
|
Screen->mAction = ActionScrollDown;
|
|
|
|
else if (ScrollEnabled && MouseInRect(&Scrollbar) && MouseEvent == LeftMouseDown) {
|
|
|
|
IsDragging = TRUE;
|
|
|
|
ScrollbarYMovement = 0;
|
|
|
|
ScrollbarOldPointerPlace.XPos = ScrollbarNewPointerPlace.XPos = newPlace.XPos;
|
|
|
|
ScrollbarOldPointerPlace.YPos = ScrollbarNewPointerPlace.YPos = newPlace.YPos;
|
|
|
|
}
|
|
|
|
else if (ScrollEnabled && IsDragging && MouseEvent == LeftClick) {
|
|
|
|
IsDragging = FALSE;
|
|
|
|
}
|
|
|
|
else if (ScrollEnabled && IsDragging && MouseEvent == MouseMove) {
|
|
|
|
Screen->mAction = ActionMoveScrollbar;
|
|
|
|
ScrollbarNewPointerPlace.XPos = newPlace.XPos;
|
|
|
|
ScrollbarNewPointerPlace.YPos = newPlace.YPos;
|
|
|
|
}
|
|
|
|
else if (ScrollEnabled && MouseInRect(&ScrollbarBackground) &&
|
|
|
|
MouseEvent == LeftClick) {
|
|
|
|
if (newPlace.YPos < Scrollbar.YPos) // up
|
|
|
|
Screen->mAction = ActionPageUp;
|
|
|
|
else // down
|
|
|
|
Screen->mAction = ActionPageDown;
|
|
|
|
// page up/down, like in OS X
|
|
|
|
}
|
|
|
|
else if (ScrollEnabled &&
|
|
|
|
MouseEvent == ScrollDown) {
|
|
|
|
Screen->mAction = ActionScrollDown;
|
|
|
|
}
|
|
|
|
else if (ScrollEnabled &&
|
|
|
|
MouseEvent == ScrollUp) {
|
|
|
|
Screen->mAction = ActionScrollUp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (UINTN EntryId = 0; EntryId < Screen->Entries.size(); EntryId++) {
|
|
|
|
if (MouseInRect(&(Screen->Entries[EntryId].Place))) {
|
|
|
|
switch (MouseEvent) {
|
|
|
|
case LeftClick:
|
|
|
|
Screen->mAction = Screen->Entries[EntryId].AtClick;
|
|
|
|
// DBG("Click\n");
|
|
|
|
break;
|
|
|
|
case RightClick:
|
|
|
|
Screen->mAction = Screen->Entries[EntryId].AtRightClick;
|
|
|
|
break;
|
|
|
|
case DoubleClick:
|
|
|
|
Screen->mAction = Screen->Entries[EntryId].AtDoubleClick;
|
|
|
|
break;
|
|
|
|
case ScrollDown:
|
|
|
|
Screen->mAction = ActionScrollDown;
|
|
|
|
break;
|
|
|
|
case ScrollUp:
|
|
|
|
Screen->mAction = ActionScrollUp;
|
|
|
|
break;
|
|
|
|
case MouseMove:
|
|
|
|
Screen->mAction = Screen->Entries[EntryId].AtMouseOver;
|
|
|
|
//how to do the action once?
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Screen->mAction = ActionNone;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Screen->mItemID = EntryId;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else { //click in milk
|
|
|
|
switch (MouseEvent) {
|
|
|
|
case LeftClick:
|
|
|
|
Screen->mAction = ActionDeselect;
|
|
|
|
break;
|
|
|
|
case RightClick:
|
|
|
|
Screen->mAction = ActionFinish;
|
|
|
|
break;
|
|
|
|
case ScrollDown:
|
|
|
|
Screen->mAction = ActionScrollDown;
|
|
|
|
break;
|
|
|
|
case ScrollUp:
|
|
|
|
Screen->mAction = ActionScrollUp;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Screen->mAction = ActionNone;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Screen->mItemID = 0xFFFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
if (Screen->mAction != ActionNone) {
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
MouseEvent = NoEvents; //clear event as set action
|
|
|
|
}
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|