Fix #162: Center ingame mouse cursor after login

This commit is contained in:
kaetemi 2014-07-09 12:31:22 +02:00
parent 24e8caf0fb
commit 3650ef83b7
3 changed files with 9 additions and 5 deletions

View file

@ -59,6 +59,8 @@ namespace NLGUI
/// get buttons state /// get buttons state
NLMISC::TMouseButton getButtonState() const { return _Buttons; } NLMISC::TMouseButton getButtonState() const { return _Buttons; }
static const sint32 InvalidCoord = 0x80000000;
protected: protected:
// (x,y) is from the TopLeft corner of the window // (x,y) is from the TopLeft corner of the window
sint32 _PointerX; // Current pointer position (raw, before snapping) sint32 _PointerX; // Current pointer position (raw, before snapping)

View file

@ -25,7 +25,7 @@ namespace NLGUI
CViewBase( param ), CViewBase( param ),
_Buttons( NLMISC::noButton ) _Buttons( NLMISC::noButton )
{ {
_PointerX = _PointerY = _PointerOldX = _PointerOldY = _PointerDownX = _PointerDownY = 0; _PointerX = _PointerY = _PointerOldX = _PointerOldY = _PointerDownX = _PointerDownY = InvalidCoord;
_PointerDown = false; _PointerDown = false;
_PointerVisible = true; _PointerVisible = true;
} }

View file

@ -263,7 +263,6 @@ bool IsMouseFreeLook()
return MouseFreeLook; return MouseFreeLook;
} }
// ********************************************************************************* // *********************************************************************************
// Use this method to toggle the mouse (freelook -> cursor) // Use this method to toggle the mouse (freelook -> cursor)
void SetMouseCursor (bool updatePos) void SetMouseCursor (bool updatePos)
@ -287,8 +286,11 @@ void SetMouseCursor (bool updatePos)
{ {
sint32 ix, iy; sint32 ix, iy;
cursor->getPointerPos (ix, iy); cursor->getPointerPos (ix, iy);
x = (float)ix / (float)width; if (ix != CViewPointer::InvalidCoord && iy != CViewPointer::InvalidCoord)
y = (float)iy / (float)height; {
x = (float)ix / (float)width;
y = (float)iy / (float)height;
}
} }
} }