forked from Kolyah35/minecraft-pe-0.6.1
49 lines
829 B
C++
Executable File
49 lines
829 B
C++
Executable File
#include "MouseHandler.h"
|
|
#include "player/input/ITurnInput.h"
|
|
|
|
#ifdef RPI
|
|
#include <SDL/SDL.h>
|
|
#endif
|
|
|
|
MouseHandler::MouseHandler( ITurnInput* turnInput )
|
|
: _turnInput(turnInput)
|
|
{}
|
|
|
|
MouseHandler::MouseHandler()
|
|
: _turnInput(0)
|
|
{}
|
|
|
|
MouseHandler::~MouseHandler() {
|
|
}
|
|
|
|
void MouseHandler::setTurnInput( ITurnInput* turnInput ) {
|
|
_turnInput = turnInput;
|
|
}
|
|
|
|
void MouseHandler::grab() {
|
|
xd = 0;
|
|
yd = 0;
|
|
|
|
#if defined(RPI)
|
|
//LOGI("Grabbing input!\n");
|
|
SDL_WM_GrabInput(SDL_GRAB_ON);
|
|
SDL_ShowCursor(0);
|
|
#endif
|
|
}
|
|
|
|
void MouseHandler::release() {
|
|
#if defined(RPI)
|
|
//LOGI("Releasing input!\n");
|
|
SDL_WM_GrabInput(SDL_GRAB_OFF);
|
|
SDL_ShowCursor(1);
|
|
#endif
|
|
}
|
|
|
|
void MouseHandler::poll() {
|
|
if (_turnInput != 0) {
|
|
TurnDelta td = _turnInput->getTurnDelta();
|
|
xd = td.x;
|
|
yd = td.y;
|
|
}
|
|
}
|